aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-04-22 09:22:47 +0000
committerdos-reis <gdr@axiomatics.org>2010-04-22 09:22:47 +0000
commit308aa20f031e73d86801a36eeda29424e65077b2 (patch)
tree6f01dd1af6f448e30729748febd2446523255563 /src
parent9fac9abefef7f727a59b7861317d148352a43d88 (diff)
downloadopen-axiom-308aa20f031e73d86801a36eeda29424e65077b2.tar.gz
* algebra/young.spad.pamphlet: 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/exposed.lsp.pamphlet4
-rw-r--r--src/algebra/young.spad.pamphlet85
-rw-r--r--src/share/algebra/browse.daase1272
-rw-r--r--src/share/algebra/category.daase1405
-rw-r--r--src/share/algebra/compress.daase1319
-rw-r--r--src/share/algebra/interp.daase9042
-rw-r--r--src/share/algebra/operation.daase25633
10 files changed, 19437 insertions, 19331 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 16bca349..f751bc9a 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-22 Gabriel Dos Reis <gdr@cs.tamu.edu>
+
+ * algebra/young.spad.pamphlet: New.
+
2010-04-21 Gabriel Dos Reis <gdr@cs.tamu.edu>
* algebra/irsn.spad.pamphlet (IrrRepSymNatPackage): Tidy.
diff --git a/src/algebra/Makefile.in b/src/algebra/Makefile.in
index 375128d5..346f6ec8 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 TALGOP
+ ITFORM ELABOR TALGOP YDIAGRAM
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 126fc757..e5f1d98f 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 TALGOP
+ ITFORM ELABOR TALGOP YDIAGRAM
axiom_algebra_layer_user_nrlibs = \
$(addsuffix .NRLIB/code.$(FASLEXT),$(axiom_algebra_layer_user))
diff --git a/src/algebra/exposed.lsp.pamphlet b/src/algebra/exposed.lsp.pamphlet
index dcc9d64c..f2b3646a 100644
--- a/src/algebra/exposed.lsp.pamphlet
+++ b/src/algebra/exposed.lsp.pamphlet
@@ -277,7 +277,6 @@
(|NumericComplexEigenPackage| . NCEP)
(|NumericRealEigenPackage| . NREP)
(|NumericContinuedFraction| . NCNTFRAC)
- (|Property| . PROPERTY)
(|Octonion| . OCT)
(|OctonionCategoryFunctions2| . OCTCT2)
(|OneDimensionalArray| . ARRAY1)
@@ -303,6 +302,7 @@
(|Pair| . PAIR)
(|Palette| . PALETTE)
(|PartialFraction| . PFR)
+ (|Partition| . PRTITION)
(|PatternFunctions2| . PATTERN2)
(|ParameterAst| . PARAMAST)
(|ParametricPlaneCurve| . PARPCURV)
@@ -339,6 +339,7 @@
(|PrimeField| . PF)
(|PrimitiveArrayFunctions2| . PRIMARR2)
(|PrintPackage| . PRINT)
+ (|Property| . PROPERTY)
(|PropositionalFormula| . PROPFRML)
(|QuadraticForm| . QFORM)
(|QuasiComponentPackage| . QCMPACK)
@@ -1046,7 +1047,6 @@
(|ParadoxicalCombinatorsForStreams| . YSTREAM)
(|ParametricLinearEquations| . PLEQN)
(|PartialFractionPackage| . PFRPAC)
- (|Partition| . PRTITION)
(|Pattern| . PATTERN)
(|PatternFunctions1| . PATTERN1)
(|PatternMatchFunctionSpace| . PMFS)
diff --git a/src/algebra/young.spad.pamphlet b/src/algebra/young.spad.pamphlet
new file mode 100644
index 00000000..df84cf01
--- /dev/null
+++ b/src/algebra/young.spad.pamphlet
@@ -0,0 +1,85 @@
+\documentclass{article}
+\usepackage{open-axiom}
+
+\author{Gabriel Dos~Reis}
+
+\begin{document}
+
+\begin{abstract}
+\end{abstract}
+
+\tableofcontents
+\eject
+
+
+\section{Young Diagram}
+
+<<domain YDIAGRAM YoungDiagram>>=
+++ Author: Gabriel Dos Reis
+++ Date Last Created: April 17, 2010
+++ Date Last Modified: April 17, 2010
+++ Description:
+++ This domain provides representations of Young diagrams.
+)abbrev domain YDIAGRAM YoungDiagram
+YoungDiagram(): Public == Private where
+ Public == Join(SetCategory,HomotopicTo Partition) with
+ youngDiagram: List PositiveInteger -> %
+ ++ \spad{youngDiagram l} returns an object representing a Young
+ ++ diagram with shape given by the list of integers \spad{l}
+ shape: % -> Partition
+ ++ \spad{shape x} returns the partition shaping \spad{x}.
+ Private == add
+ macro LP == List PositiveInteger
+ Rep == Partition
+ youngDiagram l == per partition l
+ shape x == rep x
+ coerce(x: %): Partition == rep x
+ coerce(p: Partition): % == per p
+ x = y == rep x = rep y
+ coerce(x: %): OutputForm ==
+ b := box empty()$OutputForm
+ pile [blankSeparate [b for i in 1..n] for n in shape(x)::LP]
+@
+
+
+
+\section{License}
+<<license>>=
+--Copyright (C) 2010, Gabriel Dos Reis.
+--All rights reserved.
+--
+--Redistribution and use in source and binary forms, with or without
+--modification, are permitted provided that the following conditions are
+--met:
+--
+-- - Redistributions of source code must retain the above copyright
+-- notice, this list of conditions and the following disclaimer.
+--
+-- - Redistributions in binary form must reproduce the above copyright
+-- notice, this list of conditions and the following disclaimer in
+-- the documentation and/or other materials provided with the
+-- distribution.
+--
+-- - Neither the name of The Numerical Algorithms Group Ltd. nor the
+-- names of its contributors may be used to endorse or promote products
+-- derived from this software without specific prior written permission.
+--
+--THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+--IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+--TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+--PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+--OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+--EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+--PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+--PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+--LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+--NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+--SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+@
+
+
+<<*>>=
+<<license>>
+
+<<domain YDIAGRAM YoungDiagram>>
+@
diff --git a/src/share/algebra/browse.daase b/src/share/algebra/browse.daase
index bc062c68..d57c53bf 100644
--- a/src/share/algebra/browse.daase
+++ b/src/share/algebra/browse.daase
@@ -1,12 +1,12 @@
-(2268323 . 3480886511)
+(2268689 . 3480912610)
(-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.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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}.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-4446 . T) (-4444 . T) (-4443 . T) ((-4451 "*") . T) (-4442 . T) (-4447 . T) (-4441 . T))
+((-4449 . T) (-4447 . T) (-4446 . T) ((-4454 "*") . T) (-4445 . T) (-4450 . T) (-4444 . 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.")))
@@ -56,14 +56,14 @@ NIL
((|constructor| (NIL "This domain represents the syntax for an add-expression.")) (|body| (((|SpadAst|) $) "base(\\spad{d}) returns the actual body of the add-domain expression \\spad{`d'}.")) (|base| (((|SpadAst|) $) "\\spad{base(d)} returns the base domain(\\spad{s}) of the add-domain expression.")))
NIL
NIL
-(-32 R -1708)
+(-32 R -1709)
((|constructor| (NIL "This package provides algebraic functions over an integral domain.")) (|iroot| ((|#2| |#1| (|Integer|)) "\\spad{iroot(p, n)} should be a non-exported function.")) (|definingPolynomial| ((|#2| |#2|) "\\spad{definingPolynomial(f)} returns the defining polynomial of \\spad{f} as an element of \\spad{F}. Error: if \\spad{f} is not a kernel.")) (|minPoly| (((|SparseUnivariatePolynomial| |#2|) (|Kernel| |#2|)) "\\spad{minPoly(k)} returns the defining polynomial of \\spad{k}.")) (** ((|#2| |#2| (|Fraction| (|Integer|))) "\\spad{x ** q} is \\spad{x} raised to the rational power \\spad{q}.")) (|droot| (((|OutputForm|) (|List| |#2|)) "\\spad{droot(l)} should be a non-exported function.")) (|inrootof| ((|#2| (|SparseUnivariatePolynomial| |#2|) |#2|) "\\spad{inrootof(p, x)} should be a non-exported function.")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is an algebraic operator,{} that is,{} an \\spad{n}th root or implicit algebraic operator.")) (|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 an algebraic operator,{} that is,{} an \\spad{n}th root or implicit algebraic operator.")) (|rootOf| ((|#2| (|SparseUnivariatePolynomial| |#2|) (|Symbol|)) "\\spad{rootOf(p, y)} returns \\spad{y} such that \\spad{p(y) = 0}. The object returned displays as \\spad{'y}.")))
NIL
((|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))))
(-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 -4449)))
+((|HasAttribute| |#1| (QUOTE -4452)))
(-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}.")))
-((-4449 . T) (-4450 . T))
+((-4452 . T) (-4453 . T))
NIL
(-37 S R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")))
@@ -82,17 +82,17 @@ NIL
NIL
(-38 R)
((|constructor| (NIL "The category of associative algebras (modules which are themselves rings). \\blankline")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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 -1708 UP UPUP -1932)
+(-40 -1709 UP UPUP -1574)
((|constructor| (NIL "Function field defined by \\spad{f}(\\spad{x},{} \\spad{y}) = 0.")) (|knownInfBasis| (((|Void|) (|NonNegativeInteger|)) "\\spad{knownInfBasis(n)} \\undocumented{}")))
-((-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))) (-2892 (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-373))) (-2892 (-12 (|HasCategory| (-413 |#2|) (QUOTE (-235))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (-2892 (-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)))) (-2892 (|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 -1708)
+((-4445 |has| (-413 |#2|) (-368)) (-4450 |has| (-413 |#2|) (-368)) (-4444 |has| (-413 |#2|) (-368)) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| (-413 |#2|) (QUOTE (-146))) (|HasCategory| (-413 |#2|) (QUOTE (-148))) (|HasCategory| (-413 |#2|) (QUOTE (-354))) (-2895 (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-373))) (-2895 (-12 (|HasCategory| (-413 |#2|) (QUOTE (-235))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (-2895 (-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)))) (-2895 (|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 -1709)
((|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")))
NIL
((-12 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -436) (|devaluate| |#1|)))))
@@ -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.")))
-((-4446 |has| |#1| (-562)) (-4444 . T) (-4443 . T))
+((-4449 |has| |#1| (-562)) (-4447 . T) (-4446 . 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.")))
-((-4449 . T) (-4450 . T))
-((-2892 (-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|))))))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))))
+((-4452 . T) (-4453 . T))
+((-2895 (-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|))))))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| (-570) (QUOTE (-856))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|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}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-4446 . T))
+((-4449 . 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}.")))
@@ -144,7 +144,7 @@ NIL
((|constructor| (NIL "\\spad{ApplyUnivariateSkewPolynomial} (internal) allows univariate skew polynomials to be applied to appropriate modules.")) (|apply| ((|#2| |#3| (|Mapping| |#2| |#2|) |#2|) "\\spad{apply(p, f, m)} returns \\spad{p(m)} where the action is given by \\spad{x m = f(m)}. \\spad{f} must be an \\spad{R}-pseudo linear map on \\spad{M}.")))
NIL
NIL
-(-54 |Base| R -1708)
+(-54 |Base| R -1709)
((|constructor| (NIL "This package apply rewrite rules to expressions,{} calling the pattern matcher.")) (|localUnquote| ((|#3| |#3| (|List| (|Symbol|))) "\\spad{localUnquote(f,ls)} is a local function.")) (|applyRules| ((|#3| (|List| (|RewriteRule| |#1| |#2| |#3|)) |#3| (|PositiveInteger|)) "\\spad{applyRules([r1,...,rn], expr, n)} applies the rules \\spad{r1},{}...,{}\\spad{rn} to \\spad{f} a most \\spad{n} times.") ((|#3| (|List| (|RewriteRule| |#1| |#2| |#3|)) |#3|) "\\spad{applyRules([r1,...,rn], expr)} applies the rules \\spad{r1},{}...,{}\\spad{rn} to \\spad{f} an unlimited number of times,{} \\spadignore{i.e.} until none of \\spad{r1},{}...,{}\\spad{rn} is applicable to the expression.")))
NIL
NIL
@@ -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")))
-((-4449 . T) (-4450 . T))
+((-4452 . T) (-4453 . 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}")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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 -3600)
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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 -3602)
((|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 -3600)
+(-62 -3602)
((|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 -3600)
+(-63 -3602)
((|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 -3600)
+(-64 -3602)
((|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 -3600)
+(-65 -3602)
((|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 -3600)
+(-66 -3602)
((|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 -3600)
+(-67 -3602)
((|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 -3600)
+(-68 -3602)
((|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 -3600)
+(-69 -3602)
((|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 -3600)
+(-70 -3602)
((|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 -3600)
+(-71 -3602)
((|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 -3600)
+(-72 -3602)
((|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 -3600)
+(-73 -3602)
((|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 -3600)
+(-74 -3602)
((|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 -3600)
+(-77 -3602)
((|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 -3600)
+(-78 -3602)
((|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 -3600)
+(-79 -3602)
((|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 -3600)
+(-80 -3602)
((|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 -3600)
+(-81 -3602)
((|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 -3600)
+(-82 -3602)
((|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 -3600)
+(-83 -3602)
((|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 -3600)
+(-84 -3602)
((|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 -3600)
+(-85 -3602)
((|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 -3600)
+(-86 -3602)
((|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 -3600)
+(-87 -3602)
((|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 -3600)
+(-88 -3602)
((|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 -3600)
+(-89 -3602)
((|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,8 +294,8 @@ 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}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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.")))
NIL
@@ -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\".")))
-((-4449 . T))
+((-4452 . 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.")))
-((-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))
+((-4452 . T) ((-4454 "*") . T) (-4453 . T) (-4449 . T) (-4447 . T) (-4446 . T) (-4445 . T) (-4450 . T) (-4444 . T) (-4443 . T) (-4442 . T) (-4441 . T) (-4440 . T) (-4448 . T) (-4451 . T) (|NullSquare| . T) (|JacobiIdentity| . T) (-4439 . 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}.")))
-((-4446 . T))
+((-4449 . 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}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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 (-4451 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4454 "*"))))
(-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")))
-((-4449 . T))
+((-4452 . 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,23 +358,23 @@ 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.")))
-((-4450 . T))
+((-4453 . 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.")))
-((-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))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (|HasCategory| (-570) (QUOTE (-146)))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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)))) (-2895 (-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}")))
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}")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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}")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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}.")))
@@ -392,22 +392,22 @@ NIL
((|constructor| (NIL "A basic operator is an object that can be applied to a list of arguments from a set,{} the result being a kernel over that set.")) (|setProperties| (($ $ (|AssociationList| (|String|) (|None|))) "\\spad{setProperties(op, l)} sets the property list of \\spad{op} to \\spad{l}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|setProperty| (($ $ (|Identifier|) (|None|)) "\\spad{setProperty(op, p, v)} attaches property \\spad{p} to \\spad{op},{} and sets its value to \\spad{v}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.") (($ $ (|String|) (|None|)) "\\spad{setProperty(op, s, v)} attaches property \\spad{s} to \\spad{op},{} and sets its value to \\spad{v}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|property| (((|Maybe| (|None|)) $ (|Identifier|)) "\\spad{property(op, p)} returns the value of property \\spad{p} if it is attached to \\spad{op},{} otherwise \\spad{nothing}.") (((|Union| (|None|) "failed") $ (|String|)) "\\spad{property(op, s)} returns the value of property \\spad{s} if it is attached to \\spad{op},{} and \"failed\" otherwise.")) (|deleteProperty!| (($ $ (|Identifier|)) "\\spad{deleteProperty!(op, p)} unattaches property \\spad{p} from \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.") (($ $ (|String|)) "\\spad{deleteProperty!(op, s)} unattaches property \\spad{s} from \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|assert| (($ $ (|Identifier|)) "\\spad{assert(op, p)} attaches property \\spad{p} to \\spad{op}. Argument \\spad{op} is modified \"in place\",{} \\spadignore{i.e.} no copy is made.")) (|has?| (((|Boolean|) $ (|Identifier|)) "\\spad{has?(op,p)} tests if property \\spad{s} is attached to \\spad{op}.")) (|input| (((|Union| (|Mapping| (|InputForm|) (|List| (|InputForm|))) "failed") $) "\\spad{input(op)} returns the \"\\%input\" property of \\spad{op} if it has one attached,{} \"failed\" otherwise.") (($ $ (|Mapping| (|InputForm|) (|List| (|InputForm|)))) "\\spad{input(op, foo)} attaches foo as the \"\\%input\" property of \\spad{op}. If \\spad{op} has a \"\\%input\" property \\spad{f},{} then \\spad{op(a1,...,an)} gets converted to InputForm as \\spad{f(a1,...,an)}.")) (|display| (($ $ (|Mapping| (|OutputForm|) (|OutputForm|))) "\\spad{display(op, foo)} attaches foo as the \"\\%display\" property of \\spad{op}. If \\spad{op} has a \"\\%display\" property \\spad{f},{} then \\spad{op(a)} gets converted to OutputForm as \\spad{f(a)}. Argument \\spad{op} must be unary.") (($ $ (|Mapping| (|OutputForm|) (|List| (|OutputForm|)))) "\\spad{display(op, foo)} attaches foo as the \"\\%display\" property of \\spad{op}. If \\spad{op} has a \"\\%display\" property \\spad{f},{} then \\spad{op(a1,...,an)} gets converted to OutputForm as \\spad{f(a1,...,an)}.") (((|Union| (|Mapping| (|OutputForm|) (|List| (|OutputForm|))) "failed") $) "\\spad{display(op)} returns the \"\\%display\" property of \\spad{op} if it has one attached,{} and \"failed\" otherwise.")) (|comparison| (($ $ (|Mapping| (|Boolean|) $ $)) "\\spad{comparison(op, foo?)} attaches foo? as the \"\\%less?\" property to \\spad{op}. If op1 and op2 have the same name,{} and one of them has a \"\\%less?\" property \\spad{f},{} then \\spad{f(op1, op2)} is called to decide whether \\spad{op1 < op2}.")) (|equality| (($ $ (|Mapping| (|Boolean|) $ $)) "\\spad{equality(op, foo?)} attaches foo? as the \"\\%equal?\" property to \\spad{op}. If op1 and op2 have the same name,{} and one of them has an \"\\%equal?\" property \\spad{f},{} then \\spad{f(op1, op2)} is called to decide whether op1 and op2 should be considered equal.")) (|weight| (($ $ (|NonNegativeInteger|)) "\\spad{weight(op, n)} attaches the weight \\spad{n} to \\spad{op}.") (((|NonNegativeInteger|) $) "\\spad{weight(op)} returns the weight attached to \\spad{op}.")) (|nary?| (((|Boolean|) $) "\\spad{nary?(op)} tests if \\spad{op} has arbitrary arity.")) (|unary?| (((|Boolean|) $) "\\spad{unary?(op)} tests if \\spad{op} is unary.")) (|nullary?| (((|Boolean|) $) "\\spad{nullary?(op)} tests if \\spad{op} is nullary.")) (|operator| (($ (|Symbol|) (|Arity|)) "\\spad{operator(f, a)} makes \\spad{f} into an operator of arity \\spad{a}.") (($ (|Symbol|) (|NonNegativeInteger|)) "\\spad{operator(f, n)} makes \\spad{f} into an \\spad{n}-ary operator.") (($ (|Symbol|)) "\\spad{operator(f)} makes \\spad{f} into an operator with arbitrary arity.")) (|copy| (($ $) "\\spad{copy(op)} returns a copy of \\spad{op}.")) (|properties| (((|AssociationList| (|String|) (|None|)) $) "\\spad{properties(op)} returns the list of all the properties currently attached to \\spad{op}.")))
NIL
NIL
-(-116 -1708 UP)
+(-116 -1709 UP)
((|constructor| (NIL "\\spadtype{BoundIntegerRoots} provides functions to find lower bounds on the integer roots of a polynomial.")) (|integerBound| (((|Integer|) |#2|) "\\spad{integerBound(p)} returns a lower bound on the negative integer roots of \\spad{p},{} and 0 if \\spad{p} has no negative integer roots.")))
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}.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-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))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-117 |#1|) (QUOTE (-916)))) (|HasCategory| (-117 |#1|) (QUOTE (-146)))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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)))) (-2895 (-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 -4450)))
+((|HasAttribute| |#1| (QUOTE -4453)))
(-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,15 +418,15 @@ 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")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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}}.")))
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}}.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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,20 +434,20 @@ 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")))
-((-4449 . T) (-4450 . T))
+((-4452 . T) (-4453 . 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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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.")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| (-130) (QUOTE (-856))) (|HasCategory| (-130) (LIST (QUOTE -313) (QUOTE (-130))))) (-12 (|HasCategory| (-130) (QUOTE (-1109))) (|HasCategory| (-130) (LIST (QUOTE -313) (QUOTE (-130)))))) (-2892 (-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)))) (-2892 (|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))))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| (-130) (QUOTE (-856))) (|HasCategory| (-130) (LIST (QUOTE -313) (QUOTE (-130))))) (-12 (|HasCategory| (-130) (QUOTE (-1109))) (|HasCategory| (-130) (LIST (QUOTE -313) (QUOTE (-130)))))) (-2895 (-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)))) (-2895 (|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.")))
NIL
@@ -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.")))
-(((-4451 "*") . T))
+(((-4454 "*") . T))
NIL
(-136 |minix| -2550 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,8 +498,8 @@ 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}.")))
-((-4449 . T) (-4439 . T) (-4450 . T))
-((-2892 (-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))))))
+((-4452 . T) (-4442 . T) (-4453 . T))
+((-2895 (-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}.")))
NIL
@@ -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.")))
-((-4446 . T))
+((-4449 . 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,9 +522,9 @@ NIL
NIL
(-148)
((|constructor| (NIL "Rings of Characteristic Zero.")))
-((-4446 . T))
+((-4449 . T))
NIL
-(-149 -1708 UP UPUP)
+(-149 -1709 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}.")))
NIL
NIL
@@ -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 -4449)))
+((|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasAttribute| |#1| (QUOTE -4452)))
(-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.")))
-((-4444 . T) (-4443 . T) (-4446 . T))
+((-4447 . T) (-4446 . T) (-4449 . 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.")))
@@ -564,7 +564,7 @@ NIL
((|constructor| (NIL "Color() specifies a domain of 27 colors provided in the \\Language{} system (the colors mix additively).")) (|color| (($ (|Integer|)) "\\spad{color(i)} returns a color of the indicated hue \\spad{i}.")) (|numberOfHues| (((|PositiveInteger|)) "\\spad{numberOfHues()} returns the number of total hues,{} set in totalHues.")) (|hue| (((|Integer|) $) "\\spad{hue(c)} returns the hue index of the indicated color \\spad{c}.")) (|blue| (($) "\\spad{blue()} returns the position of the blue hue from total hues.")) (|green| (($) "\\spad{green()} returns the position of the green hue from total hues.")) (|yellow| (($) "\\spad{yellow()} returns the position of the yellow hue from total hues.")) (|red| (($) "\\spad{red()} returns the position of the red hue from total hues.")) (+ (($ $ $) "\\spad{c1 + c2} additively mixes the two colors \\spad{c1} and \\spad{c2}.")) (* (($ (|DoubleFloat|) $) "\\spad{s * c},{} returns the color \\spad{c},{} whose weighted shade has been scaled by \\spad{s}.") (($ (|PositiveInteger|) $) "\\spad{s * c},{} returns the color \\spad{c},{} whose weighted shade has been scaled by \\spad{s}.")))
NIL
NIL
-(-159 R -1708)
+(-159 R -1709)
((|constructor| (NIL "Provides combinatorial functions over an integral domain.")) (|ipow| ((|#2| (|List| |#2|)) "\\spad{ipow(l)} should be local but conditional.")) (|iidprod| ((|#2| (|List| |#2|)) "\\spad{iidprod(l)} should be local but conditional.")) (|iidsum| ((|#2| (|List| |#2|)) "\\spad{iidsum(l)} should be local but conditional.")) (|iipow| ((|#2| (|List| |#2|)) "\\spad{iipow(l)} should be local but conditional.")) (|iiperm| ((|#2| (|List| |#2|)) "\\spad{iiperm(l)} should be local but conditional.")) (|iibinom| ((|#2| (|List| |#2|)) "\\spad{iibinom(l)} should be local but conditional.")) (|iifact| ((|#2| |#2|) "\\spad{iifact(x)} should be local but conditional.")) (|product| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{product(f(n), n = a..b)} returns \\spad{f}(a) * ... * \\spad{f}(\\spad{b}) as a formal product.") ((|#2| |#2| (|Symbol|)) "\\spad{product(f(n), n)} returns the formal product \\spad{P}(\\spad{n}) which verifies \\spad{P}(\\spad{n+1})\\spad{/P}(\\spad{n}) = \\spad{f}(\\spad{n}).")) (|summation| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{summation(f(n), n = a..b)} returns \\spad{f}(a) + ... + \\spad{f}(\\spad{b}) as a formal sum.") ((|#2| |#2| (|Symbol|)) "\\spad{summation(f(n), n)} returns the formal sum \\spad{S}(\\spad{n}) which verifies \\spad{S}(\\spad{n+1}) - \\spad{S}(\\spad{n}) = \\spad{f}(\\spad{n}).")) (|factorials| ((|#2| |#2| (|Symbol|)) "\\spad{factorials(f, x)} rewrites the permutations and binomials in \\spad{f} involving \\spad{x} in terms of factorials.") ((|#2| |#2|) "\\spad{factorials(f)} rewrites the permutations and binomials in \\spad{f} in terms of factorials.")) (|factorial| ((|#2| |#2|) "\\spad{factorial(n)} returns the factorial of \\spad{n},{} \\spadignore{i.e.} \\spad{n!}.")) (|permutation| ((|#2| |#2| |#2|) "\\spad{permutation(n, r)} returns the number of permutations of \\spad{n} objects taken \\spad{r} at a time,{} \\spadignore{i.e.} \\spad{n!/}(\\spad{n}-\\spad{r})!.")) (|binomial| ((|#2| |#2| |#2|) "\\spad{binomial(n, r)} returns the number of subsets of \\spad{r} objects taken among \\spad{n} objects,{} \\spadignore{i.e.} \\spad{n!/}(\\spad{r!} * (\\spad{n}-\\spad{r})!).")) (** ((|#2| |#2| |#2|) "\\spad{a ** b} is the formal exponential a**b.")) (|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 combinatorial operator.")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} is \\spad{true} if \\spad{op} is a combinatorial operator.")))
NIL
NIL
@@ -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 (-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))))
+((|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 -4448)) (|HasAttribute| |#2| (QUOTE -4451)) (|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})")))
-((-4442 -2892 (|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)) (-3175 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 -2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4448 |has| |#1| (-6 -4448)) (-4451 |has| |#1| (-6 -4451)) (-3178 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-4442 -2892 (|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)) (-3175 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-354))) (-2892 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-2892 (-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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-916))))) (-2892 (-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))))) (-2892 (|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)))) (-2892 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (|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))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368)))) (-2892 (-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))))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-354)))))
+((-4445 -2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4448 |has| |#1| (-6 -4448)) (-4451 |has| |#1| (-6 -4451)) (-3178 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-354))) (-2895 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-2895 (-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)))) (-2895 (|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)))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368))) (-12 (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-916))))) (-2895 (-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))))) (-2895 (|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)))) (-2895 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (|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))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-368)))) (-2895 (-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 -4448)) (|HasAttribute| |#1| (QUOTE -4451)) (-12 (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186))))) (-2895 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-311))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2895 (-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.")))
-(((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
-(((-4451 "*") . T) (-4442 . T) (-4447 . T) (-4441 . T) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") . T) (-4445 . T) (-4450 . T) (-4444 . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
@@ -688,7 +688,7 @@ NIL
((|constructor| (NIL "This domain provides implementations for constructors.")) (|findConstructor| (((|Maybe| $) (|Identifier|)) "\\spad{findConstructor(s)} attempts to find a constructor named \\spad{s}. If successful,{} returns that constructor; otherwise,{} returns \\spad{nothing}.")))
NIL
NIL
-(-190 R -1708)
+(-190 R -1709)
((|constructor| (NIL "\\spadtype{ComplexTrigonometricManipulations} provides function that compute the real and imaginary parts of complex functions.")) (|complexForm| (((|Complex| (|Expression| |#1|)) |#2|) "\\spad{complexForm(f)} returns \\spad{[real f, imag f]}.")) (|trigs| ((|#2| |#2|) "\\spad{trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (|real?| (((|Boolean|) |#2|) "\\spad{real?(f)} returns \\spad{true} if \\spad{f = real f}.")) (|imag| (((|Expression| |#1|) |#2|) "\\spad{imag(f)} returns the imaginary part of \\spad{f} where \\spad{f} is a complex function.")) (|real| (((|Expression| |#1|) |#2|) "\\spad{real(f)} returns the real part of \\spad{f} where \\spad{f} is a complex function.")) (|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
@@ -796,23 +796,23 @@ NIL
((|constructor| (NIL "\\indented{1}{This domain implements a simple view of a database whose fields are} indexed by symbols")) (- (($ $ $) "\\spad{db1-db2} returns the difference of databases \\spad{db1} and \\spad{db2} \\spadignore{i.e.} consisting of elements in \\spad{db1} but not in \\spad{db2}")) (+ (($ $ $) "\\spad{db1+db2} returns the merge of databases \\spad{db1} and \\spad{db2}")) (|fullDisplay| (((|Void|) $ (|PositiveInteger|) (|PositiveInteger|)) "\\spad{fullDisplay(db,start,end )} prints full details of entries in the range \\axiom{\\spad{start}..end} in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{fullDisplay(db)} prints full details of each entry in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{fullDisplay(x)} displays \\spad{x} in detail")) (|display| (((|Void|) $) "\\spad{display(db)} prints a summary line for each entry in \\axiom{\\spad{db}}.") (((|Void|) $) "\\spad{display(x)} displays \\spad{x} in some form")) (|elt| (((|DataList| (|String|)) $ (|Symbol|)) "\\spad{elt(db,s)} returns the \\axiom{\\spad{s}} field of each element of \\axiom{\\spad{db}}.") (($ $ (|QueryEquation|)) "\\spad{elt(db,q)} returns all elements of \\axiom{\\spad{db}} which satisfy \\axiom{\\spad{q}}.") (((|String|) $ (|Symbol|)) "\\spad{elt(x,s)} returns an element of \\spad{x} indexed by \\spad{s}")))
NIL
NIL
-(-217 -1708 UP UPUP R)
+(-217 -1709 UP UPUP R)
((|constructor| (NIL "This package provides functions for computing the residues of a function on an algebraic curve.")) (|doubleResultant| ((|#2| |#4| (|Mapping| |#2| |#2|)) "\\spad{doubleResultant(f, ')} returns \\spad{p}(\\spad{x}) whose roots are rational multiples of the residues of \\spad{f} at all its finite poles. Argument ' is the derivation to use.")))
NIL
NIL
-(-218 -1708 FP)
+(-218 -1709 FP)
((|constructor| (NIL "Package for the factorization of a univariate polynomial with coefficients in a finite field. The algorithm used is the \"distinct degree\" algorithm of Cantor-Zassenhaus,{} modified to use trace instead of the norm and a table for computing Frobenius as suggested by Naudin and Quitte .")) (|irreducible?| (((|Boolean|) |#2|) "\\spad{irreducible?(p)} tests whether the polynomial \\spad{p} is irreducible.")) (|tracePowMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{tracePowMod(u,k,v)} produces the sum of \\spad{u**(q**i)} for \\spad{i} running and \\spad{q=} size \\spad{F}")) (|trace2PowMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{trace2PowMod(u,k,v)} produces the sum of \\spad{u**(2**i)} for \\spad{i} running from 1 to \\spad{k} all computed modulo the polynomial \\spad{v}.")) (|exptMod| ((|#2| |#2| (|NonNegativeInteger|) |#2|) "\\spad{exptMod(u,k,v)} raises the polynomial \\spad{u} to the \\spad{k}th power modulo the polynomial \\spad{v}.")) (|separateFactors| (((|List| |#2|) (|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |prod| |#2|)))) "\\spad{separateFactors(lfact)} takes the list produced by \\spadfunFrom{separateDegrees}{DistinctDegreeFactorization} and produces the complete list of factors.")) (|separateDegrees| (((|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |prod| |#2|))) |#2|) "\\spad{separateDegrees(p)} splits the square free polynomial \\spad{p} into factors each of which is a product of irreducibles of the same degree.")) (|distdfact| (((|Record| (|:| |cont| |#1|) (|:| |factors| (|List| (|Record| (|:| |irr| |#2|) (|:| |pow| (|Integer|)))))) |#2| (|Boolean|)) "\\spad{distdfact(p,sqfrflag)} produces the complete factorization of the polynomial \\spad{p} returning an internal data structure. If argument \\spad{sqfrflag} is \\spad{true},{} the polynomial is assumed square free.")) (|factorSquareFree| (((|Factored| |#2|) |#2|) "\\spad{factorSquareFree(p)} produces the complete factorization of the square free polynomial \\spad{p}.")) (|factor| (((|Factored| |#2|) |#2|) "\\spad{factor(p)} produces the complete factorization of the polynomial \\spad{p}.")))
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.")))
-((-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))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (|HasCategory| (-570) (QUOTE (-146)))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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)))) (-2895 (-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.")))
NIL
NIL
-(-221 R -1708)
+(-221 R -1709)
((|constructor| (NIL "\\spadtype{ElementaryFunctionDefiniteIntegration} provides functions to compute definite integrals of elementary functions.")) (|innerint| (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|) (|Boolean|)) "\\spad{innerint(f, x, a, b, ignore?)} should be local but conditional")) (|integrate| (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|SegmentBinding| (|OrderedCompletion| |#2|)) (|String|)) "\\spad{integrate(f, x = a..b, \"noPole\")} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. If it is not possible to check whether \\spad{f} has a pole for \\spad{x} between a and \\spad{b} (because of parameters),{} then this function will assume that \\spad{f} has no such pole. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b} or if the last argument is not \"noPole\".") (((|Union| (|:| |f1| (|OrderedCompletion| |#2|)) (|:| |f2| (|List| (|OrderedCompletion| |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (|SegmentBinding| (|OrderedCompletion| |#2|))) "\\spad{integrate(f, x = a..b)} returns the integral of \\spad{f(x)dx} from a to \\spad{b}. Error: if \\spad{f} has a pole for \\spad{x} between a and \\spad{b}.")))
NIL
NIL
@@ -826,19 +826,19 @@ 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}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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}.")))
-((-4446 . T))
+((-4449 . T))
NIL
-(-226 R -1708)
+(-226 R -1709)
((|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.")))
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}.")))
-((-3167 . T) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-3170 . T) (-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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 (-4454 "*"))) (|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.")))
-((-4450 . T))
+((-4453 . 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}.")))
-((-4446 . T))
+((-4449 . 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.")))
-((-4446 . T))
+((-4449 . 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 -4449)))
+((|HasAttribute| |#1| (QUOTE -4452)))
(-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}.")))
-((-4450 . T))
+((-4453 . 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 -2550 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 -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))))
+((|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854))) (|HasAttribute| |#3| (QUOTE -4449)) (|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 -2550 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")))
-((-4443 |has| |#2| (-1058)) (-4444 |has| |#2| (-1058)) (-4446 |has| |#2| (-6 -4446)) ((-4451 "*") |has| |#2| (-174)) (-4449 . T))
+((-4446 |has| |#2| (-1058)) (-4447 |has| |#2| (-1058)) (-4449 |has| |#2| (-6 -4449)) ((-4454 "*") |has| |#2| (-174)) (-4452 . T))
NIL
(-241 -2550 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 -2550 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.")))
-((-4443 |has| |#2| (-1058)) (-4444 |has| |#2| (-1058)) (-4446 |has| |#2| (-6 -4446)) ((-4451 "*") |has| |#2| (-174)) (-4449 . T))
-((-2892 (-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)))))) (-2892 (-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))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2892 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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))) (-2892 (|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))) (-2892 (-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))))) (-2892 (-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)))))) (-2892 (-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))))) (-2892 (|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|)))))
+((-4446 |has| |#2| (-1058)) (-4447 |has| |#2| (-1058)) (-4449 |has| |#2| (-6 -4449)) ((-4454 "*") |has| |#2| (-174)) (-4452 . T))
+((-2895 (-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)))))) (-2895 (-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))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2895 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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))) (-2895 (|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))) (-2895 (-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))))) (-2895 (-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)))))) (-2895 (-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))))) (-2895 (|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 -4449)) (|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}.")))
-((-4442 . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) (-4446 . T) (-4447 . T) (-4449 . 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,16 +918,16 @@ 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}")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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}")))
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")))
-(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4454 "*") |has| |#2| (-174)) (-4445 |has| |#2| (-562)) (-4450 |has| |#2| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (-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.")))
-((-4446 -2892 (-1809 (|has| |#4| (-1058)) (|has| |#4| (-235))) (-1809 (|has| |#4| (-1058)) (|has| |#4| (-907 (-1186)))) (|has| |#4| (-6 -4446)) (-1809 (|has| |#4| (-1058)) (|has| |#4| (-645 (-570))))) (-4443 |has| |#4| (-1058)) (-4444 |has| |#4| (-1058)) ((-4451 "*") |has| |#4| (-174)) (-4449 . T))
-((-2892 (-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))) (-2892 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (QUOTE (-1058)))) (-2892 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-368)))) (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-799))) (-2892 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (QUOTE (-854)))) (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (QUOTE (-732))) (-2892 (|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)))) (-2892 (|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))) (-2892 (-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))))) (-2892 (-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)))))) (-2892 (-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)))) (-2892 (-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))))) (-2892 (|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)))) (-2892 (|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|)))))
+((-4449 -2895 (-1810 (|has| |#4| (-1058)) (|has| |#4| (-235))) (-1810 (|has| |#4| (-1058)) (|has| |#4| (-907 (-1186)))) (|has| |#4| (-6 -4449)) (-1810 (|has| |#4| (-1058)) (|has| |#4| (-645 (-570))))) (-4446 |has| |#4| (-1058)) (-4447 |has| |#4| (-1058)) ((-4454 "*") |has| |#4| (-174)) (-4452 . T))
+((-2895 (-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))) (-2895 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-368))) (|HasCategory| |#4| (QUOTE (-1058)))) (-2895 (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-368)))) (|HasCategory| |#4| (QUOTE (-1058))) (|HasCategory| |#4| (QUOTE (-174))) (|HasCategory| |#4| (QUOTE (-799))) (-2895 (|HasCategory| |#4| (QUOTE (-799))) (|HasCategory| |#4| (QUOTE (-854)))) (|HasCategory| |#4| (QUOTE (-854))) (|HasCategory| |#4| (QUOTE (-732))) (-2895 (|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)))) (-2895 (|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))) (-2895 (-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))))) (-2895 (-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)))))) (-2895 (-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)))) (-2895 (-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))))) (-2895 (|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)))) (-2895 (|HasAttribute| |#4| (QUOTE -4449)) (-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.")))
-((-4446 -2892 (-1809 (|has| |#3| (-1058)) (|has| |#3| (-235))) (-1809 (|has| |#3| (-1058)) (|has| |#3| (-907 (-1186)))) (|has| |#3| (-6 -4446)) (-1809 (|has| |#3| (-1058)) (|has| |#3| (-645 (-570))))) (-4443 |has| |#3| (-1058)) (-4444 |has| |#3| (-1058)) ((-4451 "*") |has| |#3| (-174)) (-4449 . T))
-((-2892 (-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))) (-2892 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2892 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-799))) (-2892 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854)))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-732))) (-2892 (|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)))) (-2892 (|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))) (-2892 (-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))))) (-2892 (-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)))))) (-2892 (-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)))) (-2892 (-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))))) (-2892 (|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)))) (-2892 (|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|)))))
+((-4449 -2895 (-1810 (|has| |#3| (-1058)) (|has| |#3| (-235))) (-1810 (|has| |#3| (-1058)) (|has| |#3| (-907 (-1186)))) (|has| |#3| (-6 -4449)) (-1810 (|has| |#3| (-1058)) (|has| |#3| (-645 (-570))))) (-4446 |has| |#3| (-1058)) (-4447 |has| |#3| (-1058)) ((-4454 "*") |has| |#3| (-174)) (-4452 . T))
+((-2895 (-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))) (-2895 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2895 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-799))) (-2895 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854)))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-732))) (-2895 (|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)))) (-2895 (|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))) (-2895 (-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))))) (-2895 (-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)))))) (-2895 (-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)))) (-2895 (-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))))) (-2895 (|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)))) (-2895 (|HasAttribute| |#3| (QUOTE -4449)) (-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.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . 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}.")))
-((-4449 . T) (-4450 . T))
+((-4452 . T) (-4453 . 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")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-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
@@ -1044,11 +1044,11 @@ NIL
((|constructor| (NIL "A domain used in the construction of the exterior algebra on a set \\spad{X} over a ring \\spad{R}. This domain represents the set of all ordered subsets of the set \\spad{X},{} assumed to be in correspondance with {1,{}2,{}3,{} ...}. The ordered subsets are themselves ordered lexicographically and are in bijective correspondance with an ordered basis of the exterior algebra. In this domain we are dealing strictly with the exponents of basis elements which can only be 0 or 1. \\blankline The multiplicative identity element of the exterior algebra corresponds to the empty subset of \\spad{X}. A coerce from List Integer to an ordered basis element is provided to allow the convenient input of expressions. Another exported function forgets the ordered structure and simply returns the list corresponding to an ordered subset.")) (|Nul| (($ (|NonNegativeInteger|)) "\\spad{Nul()} gives the basis element 1 for the algebra generated by \\spad{n} generators.")) (|exponents| (((|List| (|Integer|)) $) "\\spad{exponents(x)} converts a domain element into a list of zeros and ones corresponding to the exponents in the basis element that \\spad{x} represents.")) (|degree| (((|NonNegativeInteger|) $) "\\spad{degree(x)} gives the numbers of 1\\spad{'s} in \\spad{x},{} \\spadignore{i.e.} the number of non-zero exponents in the basis element that \\spad{x} represents.")) (|coerce| (($ (|List| (|Integer|))) "\\spad{coerce(l)} converts a list of 0\\spad{'s} and 1\\spad{'s} into a basis element,{} where 1 (respectively 0) designates that the variable of the corresponding index of \\spad{l} is (respectively,{} is not) present. Error: if an element of \\spad{l} is not 0 or 1.")))
NIL
NIL
-(-279 R -1708)
+(-279 R -1709)
((|constructor| (NIL "Provides elementary functions over an integral domain.")) (|localReal?| (((|Boolean|) |#2|) "\\spad{localReal?(x)} should be local but conditional")) (|specialTrigs| (((|Union| |#2| "failed") |#2| (|List| (|Record| (|:| |func| |#2|) (|:| |pole| (|Boolean|))))) "\\spad{specialTrigs(x,l)} should be local but conditional")) (|iiacsch| ((|#2| |#2|) "\\spad{iiacsch(x)} should be local but conditional")) (|iiasech| ((|#2| |#2|) "\\spad{iiasech(x)} should be local but conditional")) (|iiacoth| ((|#2| |#2|) "\\spad{iiacoth(x)} should be local but conditional")) (|iiatanh| ((|#2| |#2|) "\\spad{iiatanh(x)} should be local but conditional")) (|iiacosh| ((|#2| |#2|) "\\spad{iiacosh(x)} should be local but conditional")) (|iiasinh| ((|#2| |#2|) "\\spad{iiasinh(x)} should be local but conditional")) (|iicsch| ((|#2| |#2|) "\\spad{iicsch(x)} should be local but conditional")) (|iisech| ((|#2| |#2|) "\\spad{iisech(x)} should be local but conditional")) (|iicoth| ((|#2| |#2|) "\\spad{iicoth(x)} should be local but conditional")) (|iitanh| ((|#2| |#2|) "\\spad{iitanh(x)} should be local but conditional")) (|iicosh| ((|#2| |#2|) "\\spad{iicosh(x)} should be local but conditional")) (|iisinh| ((|#2| |#2|) "\\spad{iisinh(x)} should be local but conditional")) (|iiacsc| ((|#2| |#2|) "\\spad{iiacsc(x)} should be local but conditional")) (|iiasec| ((|#2| |#2|) "\\spad{iiasec(x)} should be local but conditional")) (|iiacot| ((|#2| |#2|) "\\spad{iiacot(x)} should be local but conditional")) (|iiatan| ((|#2| |#2|) "\\spad{iiatan(x)} should be local but conditional")) (|iiacos| ((|#2| |#2|) "\\spad{iiacos(x)} should be local but conditional")) (|iiasin| ((|#2| |#2|) "\\spad{iiasin(x)} should be local but conditional")) (|iicsc| ((|#2| |#2|) "\\spad{iicsc(x)} should be local but conditional")) (|iisec| ((|#2| |#2|) "\\spad{iisec(x)} should be local but conditional")) (|iicot| ((|#2| |#2|) "\\spad{iicot(x)} should be local but conditional")) (|iitan| ((|#2| |#2|) "\\spad{iitan(x)} should be local but conditional")) (|iicos| ((|#2| |#2|) "\\spad{iicos(x)} should be local but conditional")) (|iisin| ((|#2| |#2|) "\\spad{iisin(x)} should be local but conditional")) (|iilog| ((|#2| |#2|) "\\spad{iilog(x)} should be local but conditional")) (|iiexp| ((|#2| |#2|) "\\spad{iiexp(x)} should be local but conditional")) (|iisqrt3| ((|#2|) "\\spad{iisqrt3()} should be local but conditional")) (|iisqrt2| ((|#2|) "\\spad{iisqrt2()} should be local but conditional")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(p)} returns an elementary operator with the same symbol as \\spad{p}")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(p)} returns \\spad{true} if operator \\spad{p} is elementary")) (|pi| ((|#2|) "\\spad{pi()} returns the \\spad{pi} operator")) (|acsch| ((|#2| |#2|) "\\spad{acsch(x)} applies the inverse hyperbolic cosecant operator to \\spad{x}")) (|asech| ((|#2| |#2|) "\\spad{asech(x)} applies the inverse hyperbolic secant operator to \\spad{x}")) (|acoth| ((|#2| |#2|) "\\spad{acoth(x)} applies the inverse hyperbolic cotangent operator to \\spad{x}")) (|atanh| ((|#2| |#2|) "\\spad{atanh(x)} applies the inverse hyperbolic tangent operator to \\spad{x}")) (|acosh| ((|#2| |#2|) "\\spad{acosh(x)} applies the inverse hyperbolic cosine operator to \\spad{x}")) (|asinh| ((|#2| |#2|) "\\spad{asinh(x)} applies the inverse hyperbolic sine operator to \\spad{x}")) (|csch| ((|#2| |#2|) "\\spad{csch(x)} applies the hyperbolic cosecant operator to \\spad{x}")) (|sech| ((|#2| |#2|) "\\spad{sech(x)} applies the hyperbolic secant operator to \\spad{x}")) (|coth| ((|#2| |#2|) "\\spad{coth(x)} applies the hyperbolic cotangent operator to \\spad{x}")) (|tanh| ((|#2| |#2|) "\\spad{tanh(x)} applies the hyperbolic tangent operator to \\spad{x}")) (|cosh| ((|#2| |#2|) "\\spad{cosh(x)} applies the hyperbolic cosine operator to \\spad{x}")) (|sinh| ((|#2| |#2|) "\\spad{sinh(x)} applies the hyperbolic sine operator to \\spad{x}")) (|acsc| ((|#2| |#2|) "\\spad{acsc(x)} applies the inverse cosecant operator to \\spad{x}")) (|asec| ((|#2| |#2|) "\\spad{asec(x)} applies the inverse secant operator to \\spad{x}")) (|acot| ((|#2| |#2|) "\\spad{acot(x)} applies the inverse cotangent operator to \\spad{x}")) (|atan| ((|#2| |#2|) "\\spad{atan(x)} applies the inverse tangent operator to \\spad{x}")) (|acos| ((|#2| |#2|) "\\spad{acos(x)} applies the inverse cosine operator to \\spad{x}")) (|asin| ((|#2| |#2|) "\\spad{asin(x)} applies the inverse sine operator to \\spad{x}")) (|csc| ((|#2| |#2|) "\\spad{csc(x)} applies the cosecant operator to \\spad{x}")) (|sec| ((|#2| |#2|) "\\spad{sec(x)} applies the secant operator to \\spad{x}")) (|cot| ((|#2| |#2|) "\\spad{cot(x)} applies the cotangent operator to \\spad{x}")) (|tan| ((|#2| |#2|) "\\spad{tan(x)} applies the tangent operator to \\spad{x}")) (|cos| ((|#2| |#2|) "\\spad{cos(x)} applies the cosine operator to \\spad{x}")) (|sin| ((|#2| |#2|) "\\spad{sin(x)} applies the sine operator to \\spad{x}")) (|log| ((|#2| |#2|) "\\spad{log(x)} applies the logarithm operator to \\spad{x}")) (|exp| ((|#2| |#2|) "\\spad{exp(x)} applies the exponential operator to \\spad{x}")))
NIL
NIL
-(-280 R -1708)
+(-280 R -1709)
((|constructor| (NIL "ElementaryFunctionStructurePackage provides functions to test the algebraic independence of various elementary functions,{} using the Risch structure theorem (real and complex versions). It also provides transformations on elementary functions which are not considered simplifications.")) (|tanQ| ((|#2| (|Fraction| (|Integer|)) |#2|) "\\spad{tanQ(q,a)} is a local function with a conditional implementation.")) (|rootNormalize| ((|#2| |#2| (|Kernel| |#2|)) "\\spad{rootNormalize(f, k)} returns \\spad{f} rewriting either \\spad{k} which must be an \\spad{n}th-root in terms of radicals already in \\spad{f},{} or some radicals in \\spad{f} in terms of \\spad{k}.")) (|validExponential| (((|Union| |#2| "failed") (|List| (|Kernel| |#2|)) |#2| (|Symbol|)) "\\spad{validExponential([k1,...,kn],f,x)} returns \\spad{g} if \\spad{exp(f)=g} and \\spad{g} involves only \\spad{k1...kn},{} and \"failed\" otherwise.")) (|realElementary| ((|#2| |#2| (|Symbol|)) "\\spad{realElementary(f,x)} rewrites the kernels of \\spad{f} involving \\spad{x} in terms of the 4 fundamental real transcendental elementary functions: \\spad{log, exp, tan, atan}.") ((|#2| |#2|) "\\spad{realElementary(f)} rewrites \\spad{f} in terms of the 4 fundamental real transcendental elementary functions: \\spad{log, exp, tan, atan}.")) (|rischNormalize| (((|Record| (|:| |func| |#2|) (|:| |kers| (|List| (|Kernel| |#2|))) (|:| |vals| (|List| |#2|))) |#2| (|Symbol|)) "\\spad{rischNormalize(f, x)} returns \\spad{[g, [k1,...,kn], [h1,...,hn]]} such that \\spad{g = normalize(f, x)} and each \\spad{ki} was rewritten as \\spad{hi} during the normalization.")) (|normalize| ((|#2| |#2| (|Symbol|)) "\\spad{normalize(f, x)} rewrites \\spad{f} using the least possible number of real algebraically independent kernels involving \\spad{x}.") ((|#2| |#2|) "\\spad{normalize(f)} rewrites \\spad{f} using the least possible number of real algebraically independent kernels.")))
NIL
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}.")))
-((-4450 . T))
+((-4453 . 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 -4450)))
+((|HasAttribute| |#1| (QUOTE -4453)))
(-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| -3449 -2024 |exactQuo|)
+(-293 S R |Mod| -3547 -3183 |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")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4442 . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) (-4446 . T) (-4447 . T) (-4449 . 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,21 +1122,21 @@ 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.")))
-((-4446 -2892 (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4443 |has| |#1| (-1058)) (-4444 |has| |#1| (-1058)))
-((|HasCategory| |#1| (QUOTE (-368))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2892 (|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)))) (-2892 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2892 (|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)))) (-2892 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2892 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-732)))) (|HasCategory| |#1| (QUOTE (-479))) (-2892 (|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)))) (-2892 (|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))) (-2892 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-479)))) (-2892 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-732)))) (-2892 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-1058)))) (|HasCategory| |#1| (QUOTE (-25))) (|HasCategory| |#1| (QUOTE (-1121))) (|HasCategory| |#1| (QUOTE (-732))))
+((-4449 -2895 (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4446 |has| |#1| (-1058)) (-4447 |has| |#1| (-1058)))
+((|HasCategory| |#1| (QUOTE (-368))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2895 (|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)))) (-2895 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2895 (|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)))) (-2895 (|HasCategory| |#1| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2895 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-732)))) (|HasCategory| |#1| (QUOTE (-479))) (-2895 (|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)))) (-2895 (|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))) (-2895 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-479)))) (-2895 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-732)))) (-2895 (|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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#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
NIL
-(-301 -1708 S)
+(-301 -1709 S)
((|constructor| (NIL "This package allows a map from any expression space into any object to be lifted to a kernel over the expression set,{} using a given property of the operator of the kernel.")) (|map| ((|#2| (|Mapping| |#2| |#1|) (|String|) (|Kernel| |#1|)) "\\spad{map(f, p, k)} uses the property \\spad{p} of the operator of \\spad{k},{} in order to lift \\spad{f} and apply it to \\spad{k}.")))
NIL
NIL
-(-302 E -1708)
+(-302 E -1709)
((|constructor| (NIL "This package allows a mapping \\spad{E} \\spad{->} \\spad{F} to be lifted to a kernel over \\spad{E}; This lifting can fail if the operator of the kernel cannot be applied in \\spad{F}; Do not use this package with \\spad{E} = \\spad{F},{} since this may drop some properties of the operators.")) (|map| ((|#2| (|Mapping| |#2| |#1|) (|Kernel| |#1|)) "\\spad{map(f, k)} returns \\spad{g = op(f(a1),...,f(an))} where \\spad{k = op(a1,...,an)}.")))
NIL
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}.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
@@ -1184,7 +1184,7 @@ NIL
((|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| |#1|))) "\\spad{eval(f, [x1 = v1,...,xn = vn])} replaces \\spad{xi} by \\spad{vi} in \\spad{f}.") (($ $ (|Equation| |#1|)) "\\spad{eval(f,x = v)} replaces \\spad{x} by \\spad{v} in \\spad{f}.")))
NIL
NIL
-(-314 -1708)
+(-314 -1709)
((|constructor| (NIL "This package is to be used in conjuction with \\indented{12}{the CycleIndicators package. It provides an evaluation} \\indented{12}{function for SymmetricPolynomials.}")) (|eval| ((|#1| (|Mapping| |#1| (|Integer|)) (|SymmetricPolynomial| (|Fraction| (|Integer|)))) "\\spad{eval(f,s)} evaluates the cycle index \\spad{s} by applying \\indented{1}{the function \\spad{f} to each integer in a monomial partition,{}} \\indented{1}{forms their product and sums the results over all monomials.}")))
NIL
NIL
@@ -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))}.")))
-((-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))) (-2892 (|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)))) (-2892 (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-146))) (-12 (|HasCategory| (-1263 |#1| |#2| |#3| |#4|) (QUOTE (-916))) (|HasCategory| $ (QUOTE (-146))))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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)))) (-2895 (|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,9 +1210,9 @@ 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.")))
-((-4446 -2892 (-1809 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-12 (|has| |#1| (-562)) (-2892 (-1809 (|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)))
-((-2892 (|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))) (-2892 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-1058)))) (|HasCategory| |#1| (QUOTE (-21))) (-2892 (|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)))) (-2892 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-1121)))) (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2892 (|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))))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1121)))) (-2892 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))))) (-2892 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1121)))) (-2892 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))))) (-2892 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2892 (-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 -1708)
+((-4449 -2895 (-1810 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-12 (|has| |#1| (-562)) (-2895 (-1810 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (|has| |#1| (-1058)) (|has| |#1| (-479)))) (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4447 |has| |#1| (-174)) (-4446 |has| |#1| (-174)) ((-4454 "*") |has| |#1| (-562)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-562)) (-4444 |has| |#1| (-562)))
+((-2895 (|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))) (-2895 (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-1058)))) (|HasCategory| |#1| (QUOTE (-21))) (-2895 (|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)))) (-2895 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-1121)))) (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (-2895 (|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))))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1121)))) (-2895 (|HasCategory| |#1| (QUOTE (-21))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))))) (-2895 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-1121)))) (-2895 (|HasCategory| |#1| (QUOTE (-25))) (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -645) (QUOTE (-570)))))) (-2895 (|HasCategory| |#1| (QUOTE (-479))) (|HasCategory| |#1| (QUOTE (-1058)))) (-2895 (-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 -1709)
((|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)}.")))
NIL
NIL
@@ -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.")))
-(((-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))) (-2892 (|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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (|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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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.")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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,19 +1250,19 @@ 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.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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 -1708)
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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 -1709)
((|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.")))
NIL
((|HasCategory| |#2| (QUOTE (-373))))
-(-333 -1708)
+(-333 -1709)
((|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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
@@ -1284,15 +1284,15 @@ NIL
((|constructor| (NIL "\\indented{1}{Lift a map to finite divisors.} Author: Manuel Bronstein Date Created: 1988 Date Last Updated: 19 May 1993")) (|map| (((|FiniteDivisor| |#5| |#6| |#7| |#8|) (|Mapping| |#5| |#1|) (|FiniteDivisor| |#1| |#2| |#3| |#4|)) "\\spad{map(f,d)} \\undocumented{}")))
NIL
NIL
-(-339 S -1708 UP UPUP R)
+(-339 S -1709 UP UPUP R)
((|constructor| (NIL "This category describes finite rational divisors on a 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.")) (|generator| (((|Union| |#5| "failed") $) "\\spad{generator(d)} returns \\spad{f} if \\spad{(f) = d},{} \"failed\" if \\spad{d} is not principal.")) (|principal?| (((|Boolean|) $) "\\spad{principal?(D)} tests if the argument is the divisor of a function.")) (|reduce| (($ $) "\\spad{reduce(D)} converts \\spad{D} to some reduced form (the reduced forms can be differents in different implementations).")) (|decompose| (((|Record| (|:| |id| (|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|)) (|:| |principalPart| |#5|)) $) "\\spad{decompose(d)} returns \\spad{[id, f]} where \\spad{d = (id) + div(f)}.")) (|divisor| (($ |#5| |#3| |#3| |#3| |#2|) "\\spad{divisor(h, d, d', g, r)} returns the sum of all the finite points where \\spad{h/d} has residue \\spad{r}. \\spad{h} must be integral. \\spad{d} must be squarefree. \\spad{d'} is some derivative of \\spad{d} (not necessarily dd/dx). \\spad{g = gcd(d,discriminant)} contains the ramified zeros of \\spad{d}") (($ |#2| |#2| (|Integer|)) "\\spad{divisor(a, b, n)} makes the divisor \\spad{nP} where \\spad{P:} \\spad{(x = a, y = b)}. \\spad{P} is allowed to be singular if \\spad{n} is a multiple of the rank.") (($ |#2| |#2|) "\\spad{divisor(a, b)} makes the divisor \\spad{P:} \\spad{(x = a, y = b)}. Error: if \\spad{P} is singular.") (($ |#5|) "\\spad{divisor(g)} returns the divisor of the function \\spad{g}.") (($ (|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|)) "\\spad{divisor(I)} makes a divisor \\spad{D} from an ideal \\spad{I}.")) (|ideal| (((|FractionalIdeal| |#3| (|Fraction| |#3|) |#4| |#5|) $) "\\spad{ideal(D)} returns the ideal corresponding to a divisor \\spad{D}.")))
NIL
NIL
-(-340 -1708 UP UPUP R)
+(-340 -1709 UP UPUP R)
((|constructor| (NIL "This category describes finite rational divisors on a 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.")) (|generator| (((|Union| |#4| "failed") $) "\\spad{generator(d)} returns \\spad{f} if \\spad{(f) = d},{} \"failed\" if \\spad{d} is not principal.")) (|principal?| (((|Boolean|) $) "\\spad{principal?(D)} tests if the argument is the divisor of a function.")) (|reduce| (($ $) "\\spad{reduce(D)} converts \\spad{D} to some reduced form (the reduced forms can be differents in different implementations).")) (|decompose| (((|Record| (|:| |id| (|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) "\\spad{decompose(d)} returns \\spad{[id, f]} where \\spad{d = (id) + div(f)}.")) (|divisor| (($ |#4| |#2| |#2| |#2| |#1|) "\\spad{divisor(h, d, d', g, r)} returns the sum of all the finite points where \\spad{h/d} has residue \\spad{r}. \\spad{h} must be integral. \\spad{d} must be squarefree. \\spad{d'} is some derivative of \\spad{d} (not necessarily dd/dx). \\spad{g = gcd(d,discriminant)} contains the ramified zeros of \\spad{d}") (($ |#1| |#1| (|Integer|)) "\\spad{divisor(a, b, n)} makes the divisor \\spad{nP} where \\spad{P:} \\spad{(x = a, y = b)}. \\spad{P} is allowed to be singular if \\spad{n} is a multiple of the rank.") (($ |#1| |#1|) "\\spad{divisor(a, b)} makes the divisor \\spad{P:} \\spad{(x = a, y = b)}. Error: if \\spad{P} is singular.") (($ |#4|) "\\spad{divisor(g)} returns the divisor of the function \\spad{g}.") (($ (|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|)) "\\spad{divisor(I)} makes a divisor \\spad{D} from an ideal \\spad{I}.")) (|ideal| (((|FractionalIdeal| |#2| (|Fraction| |#2|) |#3| |#4|) $) "\\spad{ideal(D)} returns the ideal corresponding to a divisor \\spad{D}.")))
NIL
NIL
-(-341 -1708 UP UPUP R)
+(-341 -1709 UP UPUP R)
((|constructor| (NIL "This domains implements finite rational divisors on a 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.")) (|lSpaceBasis| (((|Vector| |#4|) $) "\\spad{lSpaceBasis(d)} returns a basis for \\spad{L(d) = {f | (f) >= -d}} as a module over \\spad{K[x]}.")) (|finiteBasis| (((|Vector| |#4|) $) "\\spad{finiteBasis(d)} returns a basis for \\spad{d} as a module over {\\em K[x]}.")))
NIL
NIL
@@ -1306,32 +1306,32 @@ 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.}")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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}.")))
NIL
NIL
-(-346 S -1708 UP UPUP)
+(-346 S -1709 UP UPUP)
((|constructor| (NIL "This category is a model for the function field of a plane algebraic curve.")) (|rationalPoints| (((|List| (|List| |#2|))) "\\spad{rationalPoints()} returns the list of all the affine rational points.")) (|nonSingularModel| (((|List| (|Polynomial| |#2|)) (|Symbol|)) "\\spad{nonSingularModel(u)} returns the equations in u1,{}...,{}un of an affine non-singular model for the curve.")) (|algSplitSimple| (((|Record| (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (|Mapping| |#3| |#3|)) "\\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| |#3| "failed")) "\\spad{hyperelliptic()} returns \\spad{p(x)} if the curve is the hyperelliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elliptic| (((|Union| |#3| "failed")) "\\spad{elliptic()} returns \\spad{p(x)} if the curve is the elliptic defined by \\spad{y**2 = p(x)},{} \"failed\" otherwise.")) (|elt| ((|#2| $ |#2| |#2|) "\\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| |#3| |#3|)) "\\spad{differentiate(x, d)} extends the derivation \\spad{d} from UP to \\$ and applies it to \\spad{x}.")) (|integralDerivationMatrix| (((|Record| (|:| |num| (|Matrix| |#3|)) (|:| |den| |#3|)) (|Mapping| |#3| |#3|)) "\\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| |#3|) |#3|) "\\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| |#3|)) (|:| |den| |#3|)) $) "\\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| |#3|) |#3|) "\\spad{represents([A0,...,A(n-1)],D)} returns \\spad{(A0 + A1 y +...+ A(n-1)*y**(n-1))/D}.")) (|yCoordinates| (((|Record| (|:| |num| (|Vector| |#3|)) (|:| |den| |#3|)) $) "\\spad{yCoordinates(f)} returns \\spad{[[A1,...,An], D]} such that \\spad{f = (A1 + A2 y +...+ An y**(n-1)) / D}.")) (|inverseIntegralMatrixAtInfinity| (((|Matrix| (|Fraction| |#3|))) "\\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| |#3|))) "\\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| |#3|))) "\\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| |#3|))) "\\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|) $ |#3|) "\\spad{integral?(f, p)} tests whether \\spad{f} is locally integral at \\spad{p(x) = 0}.") (((|Boolean|) $ |#2|) "\\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|) |#3|) "\\spad{ramified?(p)} tests whether \\spad{p(x) = 0} is ramified.") (((|Boolean|) |#2|) "\\spad{ramified?(a)} tests whether \\spad{x = a} is ramified.")) (|ramifiedAtInfinity?| (((|Boolean|)) "\\spad{ramifiedAtInfinity?()} tests if infinity is ramified.")) (|singular?| (((|Boolean|) |#3|) "\\spad{singular?(p)} tests whether \\spad{p(x) = 0} is singular.") (((|Boolean|) |#2|) "\\spad{singular?(a)} tests whether \\spad{x = a} is singular.")) (|singularAtInfinity?| (((|Boolean|)) "\\spad{singularAtInfinity?()} tests if there is a singularity at infinity.")) (|branchPoint?| (((|Boolean|) |#3|) "\\spad{branchPoint?(p)} tests whether \\spad{p(x) = 0} is a branch point.") (((|Boolean|) |#2|) "\\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|) |#2| |#2|) "\\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.")))
NIL
((|HasCategory| |#2| (QUOTE (-373))) (|HasCategory| |#2| (QUOTE (-368))))
-(-347 -1708 UP UPUP)
+(-347 -1709 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.")))
-((-4442 |has| (-413 |#2|) (-368)) (-4447 |has| (-413 |#2|) (-368)) (-4441 |has| (-413 |#2|) (-368)) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 |has| (-413 |#2|) (-368)) (-4450 |has| (-413 |#2|) (-368)) (-4444 |has| (-413 |#2|) (-368)) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|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))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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}.")))
NIL
@@ -1346,33 +1346,33 @@ 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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
-(-355 R UP -1708)
+(-355 R UP -1709)
((|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}")))
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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|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))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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}.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|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))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
-(-361 -1708 GF)
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
+(-361 -1709 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{}")))
NIL
NIL
@@ -1380,21 +1380,21 @@ NIL
((|constructor| (NIL "This package provides a number of functions for generating,{} counting and testing irreducible,{} normal,{} primitive,{} random polynomials over finite fields.")) (|reducedQPowers| (((|PrimitiveArray| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|)) "\\spad{reducedQPowers(f)} generates \\spad{[x,x**q,x**(q**2),...,x**(q**(n-1))]} reduced modulo \\spad{f} where \\spad{q = size()\\$GF} and \\spad{n = degree f}.")) (|leastAffineMultiple| (((|SparseUnivariatePolynomial| |#1|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{leastAffineMultiple(f)} computes the least affine polynomial which is divisible by the polynomial \\spad{f} over the finite field {\\em GF},{} \\spadignore{i.e.} a polynomial whose exponents are 0 or a power of \\spad{q},{} the size of {\\em GF}.")) (|random| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|) (|PositiveInteger|)) "\\spad{random(m,n)}\\$FFPOLY(\\spad{GF}) generates a random monic polynomial of degree \\spad{d} over the finite field {\\em GF},{} \\spad{d} between \\spad{m} and \\spad{n}.") (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{random(n)}\\$FFPOLY(\\spad{GF}) generates a random monic polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|nextPrimitiveNormalPoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextPrimitiveNormalPoly(f)} yields the next primitive normal polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g} or,{} in case these numbers are equal,{} if the {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than this number for \\spad{g}. If these numbers are equals,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than that for \\spad{g},{} or if the lists of exponents for \\spad{f} are lexicographically less than those for \\spad{g}. If these lists are also equal,{} the lists of coefficients are coefficients according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}. This operation is equivalent to nextNormalPrimitivePoly(\\spad{f}).")) (|nextNormalPrimitivePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextNormalPrimitivePoly(f)} yields the next normal primitive polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g} or if {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than this number for \\spad{g}. Otherwise,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than that for \\spad{g} or if the lists of exponents for \\spad{f} are lexicographically less than those for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}. This operation is equivalent to nextPrimitiveNormalPoly(\\spad{f}).")) (|nextNormalPoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextNormalPoly(f)} yields the next normal polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the coefficient of the term of degree {\\em n-1} of \\spad{f} is less than that for \\spad{g}. In case these numbers are equal,{} \\spad{f < g} if if the number of monomials of \\spad{f} is less that for \\spad{g} or if the list of exponents of \\spad{f} are lexicographically less than the corresponding list for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|nextPrimitivePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextPrimitivePoly(f)} yields the next primitive polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the {\\em lookup} of the constant term of \\spad{f} is less than this number for \\spad{g}. If these values are equal,{} then \\spad{f < g} if if the number of monomials of \\spad{f} is less than that for \\spad{g} or if the lists of exponents of \\spad{f} are lexicographically less than the corresponding list for \\spad{g}. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|nextIrreduciblePoly| (((|Union| (|SparseUnivariatePolynomial| |#1|) "failed") (|SparseUnivariatePolynomial| |#1|)) "\\spad{nextIrreduciblePoly(f)} yields the next monic irreducible polynomial over a finite field {\\em GF} of the same degree as \\spad{f} in the following order,{} or \"failed\" if there are no greater ones. Error: if \\spad{f} has degree 0. Note: the input polynomial \\spad{f} is made monic. Also,{} \\spad{f < g} if the number of monomials of \\spad{f} is less than this number for \\spad{g}. If \\spad{f} and \\spad{g} have the same number of monomials,{} the lists of exponents are compared lexicographically. If these lists are also equal,{} the lists of coefficients are compared according to the lexicographic ordering induced by the ordering of the elements of {\\em GF} given by {\\em lookup}.")) (|createPrimitiveNormalPoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createPrimitiveNormalPoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal and primitive polynomial of degree \\spad{n} over the field {\\em GF}. polynomial of degree \\spad{n} over the field {\\em GF}.")) (|createNormalPrimitivePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createNormalPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal and primitive polynomial of degree \\spad{n} over the field {\\em GF}. Note: this function is equivalent to createPrimitiveNormalPoly(\\spad{n})")) (|createNormalPoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createNormalPoly(n)}\\$FFPOLY(\\spad{GF}) generates a normal polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|createPrimitivePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) generates a primitive polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|createIrreduciblePoly| (((|SparseUnivariatePolynomial| |#1|) (|PositiveInteger|)) "\\spad{createIrreduciblePoly(n)}\\$FFPOLY(\\spad{GF}) generates a monic irreducible univariate polynomial of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfNormalPoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfNormalPoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of normal polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfPrimitivePoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfPrimitivePoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of primitive polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|numberOfIrreduciblePoly| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{numberOfIrreduciblePoly(n)}\\$FFPOLY(\\spad{GF}) yields the number of monic irreducible univariate polynomials of degree \\spad{n} over the finite field {\\em GF}.")) (|normal?| (((|Boolean|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{normal?(f)} tests whether the polynomial \\spad{f} over a finite field is normal,{} \\spadignore{i.e.} its roots are linearly independent over the field.")) (|primitive?| (((|Boolean|) (|SparseUnivariatePolynomial| |#1|)) "\\spad{primitive?(f)} tests whether the polynomial \\spad{f} over a finite field is primitive,{} \\spadignore{i.e.} all its roots are primitive.")))
NIL
NIL
-(-363 -1708 FP FPP)
+(-363 -1709 FP FPP)
((|constructor| (NIL "This package solves linear diophantine equations for Bivariate polynomials over finite fields")) (|solveLinearPolynomialEquation| (((|Union| (|List| |#3|) "failed") (|List| |#3|) |#3|) "\\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.")))
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}.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-373)))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-146))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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}}.")))
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.")))
-((-4446 . T))
+((-4449 . 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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4446 |has| |#1| (-562)) (-4444 . T) (-4443 . T))
+((-4449 |has| |#1| (-562)) (-4447 . T) (-4446 . 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.")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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 -4450)) (|HasCategory| |#2| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))))
+((|HasAttribute| |#1| (QUOTE -4453)) (|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]}.")))
-((-4449 . T))
+((-4452 . 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) (-4444 . T) (-4443 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4447 . T) (-4446 . 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}")))
-((-4446 . T))
+((-4449 . 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}.")))
-((-4432 . T) (-4440 . T) (-3167 . T) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4435 . T) (-4443 . T) (-3170 . T) (-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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}.")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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.")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-394)
((|constructor| (NIL "This domain provides an interface to names in the file system.")))
@@ -1514,13 +1514,13 @@ 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")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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")))
NIL
NIL
-(-398 -1708 UP UPUP R)
+(-398 -1709 UP UPUP R)
((|constructor| (NIL "\\indented{1}{Finds the order of a divisor over a finite field} Author: Manuel Bronstein Date Created: 1988 Date Last Updated: 11 Jul 1990")) (|order| (((|NonNegativeInteger|) (|FiniteDivisor| |#1| |#2| |#3| |#4|)) "\\spad{order(x)} \\undocumented")))
NIL
NIL
@@ -1544,11 +1544,11 @@ 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 -3600 |returnType| -3928 |symbols|)
+(-404 -3602 |returnType| -3931 |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
-(-405 -1708 UP)
+(-405 -1709 UP)
((|constructor| (NIL "\\indented{1}{Full partial fraction expansion of rational functions} Author: Manuel Bronstein Date Created: 9 December 1992 Date Last Updated: 6 October 1993 References: \\spad{M}.Bronstein & \\spad{B}.Salvy,{} \\indented{12}{Full Partial Fraction Decomposition of Rational Functions,{}} \\indented{12}{in Proceedings of ISSAC'93,{} Kiev,{} ACM Press.}")) (D (($ $ (|NonNegativeInteger|)) "\\spad{D(f, n)} returns the \\spad{n}-th derivative of \\spad{f}.") (($ $) "\\spad{D(f)} returns the derivative of \\spad{f}.")) (|differentiate| (($ $ (|NonNegativeInteger|)) "\\spad{differentiate(f, n)} returns the \\spad{n}-th derivative of \\spad{f}.") (($ $) "\\spad{differentiate(f)} returns the derivative of \\spad{f}.")) (|construct| (($ (|List| (|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |center| |#2|) (|:| |num| |#2|)))) "\\spad{construct(l)} is the inverse of fracPart.")) (|fracPart| (((|List| (|Record| (|:| |exponent| (|NonNegativeInteger|)) (|:| |center| |#2|) (|:| |num| |#2|))) $) "\\spad{fracPart(f)} returns the list of summands of the fractional part of \\spad{f}.")) (|polyPart| ((|#2| $) "\\spad{polyPart(f)} returns the polynomial part of \\spad{f}.")) (|fullPartialFraction| (($ (|Fraction| |#2|)) "\\spad{fullPartialFraction(f)} returns \\spad{[p, [[j, Dj, Hj]...]]} such that \\spad{f = p(x) + \\sum_{[j,Dj,Hj] in l} \\sum_{Dj(a)=0} Hj(a)/(x - a)\\^j}.")) (+ (($ |#2| $) "\\spad{p + x} returns the sum of \\spad{p} and \\spad{x}")))
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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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 -4432)) (|HasAttribute| |#1| (QUOTE -4440)))
+((|HasAttribute| |#1| (QUOTE -4435)) (|HasAttribute| |#1| (QUOTE -4443)))
(-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\".")))
-((-3167 . T) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-3170 . T) (-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-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))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-826))) (-2892 (|HasCategory| |#1| (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-856)))) (-2892 (-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)))) (-2892 (-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))))) (-2892 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834))))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+((-4439 -12 (|has| |#1| (-6 -4450)) (|has| |#1| (-458)) (|has| |#1| (-6 -4439))) (-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-1186)))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834)))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542))))) (|HasCategory| |#1| (QUOTE (-1031))) (|HasCategory| |#1| (QUOTE (-826))) (-2895 (|HasCategory| |#1| (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-856)))) (-2895 (-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)))) (-2895 (-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))))) (-2895 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (-12 (|HasCategory| |#1| (QUOTE (-551))) (|HasCategory| |#1| (QUOTE (-834))))) (-2895 (|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 -4450)) (|HasAttribute| |#1| (QUOTE -4439)) (|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)))) (-2895 (-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.")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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")))
@@ -1604,11 +1604,11 @@ NIL
((|constructor| (NIL "\\indented{1}{Lifting of morphisms to fractional ideals.} Author: Manuel Bronstein Date Created: 1 Feb 1989 Date Last Updated: 27 Feb 1990 Keywords: ideal,{} algebra,{} module.")) (|map| (((|FractionalIdeal| |#5| |#6| |#7| |#8|) (|Mapping| |#5| |#1|) (|FractionalIdeal| |#1| |#2| |#3| |#4|)) "\\spad{map(f,i)} \\undocumented{}")))
NIL
NIL
-(-419 R -1708 UP A)
+(-419 R -1709 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)}.")))
-((-4446 . T))
+((-4449 . T))
NIL
-(-420 R -1708 UP A |ibasis|)
+(-420 R -1709 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]}.")))
NIL
((|HasCategory| |#4| (LIST (QUOTE -1047) (|devaluate| |#2|))))
@@ -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.")))
-((-4446 |has| |#1| (-562)) (-4444 . T) (-4443 . T))
+((-4449 |has| |#1| (-562)) (-4447 . T) (-4446 . 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.")))
-((-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))) (-2892 (|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))))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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,17 +1654,17 @@ 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}.")))
-((-4449 . T) (-4439 . T) (-4450 . T))
+((-4452 . T) (-4442 . T) (-4453 . T))
NIL
-(-432 R -1708)
+(-432 R -1709)
((|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.")))
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")))
-((-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 -1708)
+((-4439 -12 (|has| |#1| (-6 -4439)) (|has| |#2| (-6 -4439))) (-4446 . T) (-4447 . T) (-4449 . T))
+((-12 (|HasAttribute| |#1| (QUOTE -4439)) (|HasAttribute| |#2| (QUOTE -4439))))
+(-434 R -1709)
((|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
NIL
@@ -1674,17 +1674,17 @@ 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}.")))
-((-4446 -2892 (|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)))
+((-4449 -2895 (|has| |#1| (-1058)) (|has| |#1| (-479))) (-4447 |has| |#1| (-174)) (-4446 |has| |#1| (-174)) ((-4454 "*") |has| |#1| (-562)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-562)) (-4444 |has| |#1| (-562)))
NIL
-(-437 R -1708)
+(-437 R -1709)
((|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.")))
NIL
NIL
-(-438 R -1708)
+(-438 R -1709)
((|constructor| (NIL "FunctionsSpacePrimitiveElement provides functions to compute primitive elements in functions spaces.")) (|primitiveElement| (((|Record| (|:| |primelt| |#2|) (|:| |pol1| (|SparseUnivariatePolynomial| |#2|)) (|:| |pol2| (|SparseUnivariatePolynomial| |#2|)) (|:| |prim| (|SparseUnivariatePolynomial| |#2|))) |#2| |#2|) "\\spad{primitiveElement(a1, a2)} returns \\spad{[a, q1, q2, q]} such that \\spad{k(a1, a2) = k(a)},{} \\spad{ai = qi(a)},{} and \\spad{q(a) = 0}. The minimal polynomial for a2 may involve \\spad{a1},{} but the minimal polynomial for \\spad{a1} may not involve a2; This operations uses \\spadfun{resultant}.") (((|Record| (|:| |primelt| |#2|) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#2|))) (|:| |prim| (|SparseUnivariatePolynomial| |#2|))) (|List| |#2|)) "\\spad{primitiveElement([a1,...,an])} returns \\spad{[a, [q1,...,qn], q]} such that then \\spad{k(a1,...,an) = k(a)},{} \\spad{ai = qi(a)},{} and \\spad{q(a) = 0}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.")))
NIL
((|HasCategory| |#2| (QUOTE (-27))))
-(-439 R -1708)
+(-439 R -1709)
((|constructor| (NIL "This package provides function which replaces transcendental kernels in a function space by random integers. The correspondence between the kernels and the integers is fixed between calls to new().")) (|newReduc| (((|Void|)) "\\spad{newReduc()} \\undocumented")) (|bringDown| (((|SparseUnivariatePolynomial| (|Fraction| (|Integer|))) |#2| (|Kernel| |#2|)) "\\spad{bringDown(f,k)} \\undocumented") (((|Fraction| (|Integer|)) |#2|) "\\spad{bringDown(f)} \\undocumented")))
NIL
NIL
@@ -1692,7 +1692,7 @@ NIL
((|constructor| (NIL "Creates and manipulates objects which correspond to the basic FORTRAN data types: REAL,{} INTEGER,{} COMPLEX,{} LOGICAL and CHARACTER")) (= (((|Boolean|) $ $) "\\spad{x=y} tests for equality")) (|logical?| (((|Boolean|) $) "\\spad{logical?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type LOGICAL.")) (|character?| (((|Boolean|) $) "\\spad{character?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type CHARACTER.")) (|doubleComplex?| (((|Boolean|) $) "\\spad{doubleComplex?(t)} tests whether \\spad{t} is equivalent to the (non-standard) FORTRAN type DOUBLE COMPLEX.")) (|complex?| (((|Boolean|) $) "\\spad{complex?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type COMPLEX.")) (|integer?| (((|Boolean|) $) "\\spad{integer?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type INTEGER.")) (|double?| (((|Boolean|) $) "\\spad{double?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type DOUBLE PRECISION")) (|real?| (((|Boolean|) $) "\\spad{real?(t)} tests whether \\spad{t} is equivalent to the FORTRAN type REAL.")) (|coerce| (((|SExpression|) $) "\\spad{coerce(x)} returns the \\spad{s}-expression associated with \\spad{x}") (((|Symbol|) $) "\\spad{coerce(x)} returns the symbol associated with \\spad{x}") (($ (|Symbol|)) "\\spad{coerce(s)} transforms the symbol \\spad{s} into an element of FortranScalarType provided \\spad{s} is one of real,{} complex,{}double precision,{} logical,{} integer,{} character,{} REAL,{} COMPLEX,{} LOGICAL,{} INTEGER,{} CHARACTER,{} DOUBLE PRECISION") (($ (|String|)) "\\spad{coerce(s)} transforms the string \\spad{s} into an element of FortranScalarType provided \\spad{s} is one of \"real\",{} \"double precision\",{} \"complex\",{} \"logical\",{} \"integer\",{} \"character\",{} \"REAL\",{} \"COMPLEX\",{} \"LOGICAL\",{} \"INTEGER\",{} \"CHARACTER\",{} \"DOUBLE PRECISION\"")))
NIL
NIL
-(-441 R -1708 UP)
+(-441 R -1709 UP)
((|constructor| (NIL "\\indented{1}{Used internally by IR2F} Author: Manuel Bronstein Date Created: 12 May 1988 Date Last Updated: 22 September 1993 Keywords: function,{} space,{} polynomial,{} factoring")) (|anfactor| (((|Union| (|Factored| (|SparseUnivariatePolynomial| (|AlgebraicNumber|))) "failed") |#3|) "\\spad{anfactor(p)} tries to factor \\spad{p} over algebraic numbers,{} returning \"failed\" if it cannot")) (|UP2ifCan| (((|Union| (|:| |overq| (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) (|:| |overan| (|SparseUnivariatePolynomial| (|AlgebraicNumber|))) (|:| |failed| (|Boolean|))) |#3|) "\\spad{UP2ifCan(x)} should be local but conditional.")) (|qfactor| (((|Union| (|Factored| (|SparseUnivariatePolynomial| (|Fraction| (|Integer|)))) "failed") |#3|) "\\spad{qfactor(p)} tries to factor \\spad{p} over fractions of integers,{} returning \"failed\" if it cannot")) (|ffactor| (((|Factored| |#3|) |#3|) "\\spad{ffactor(p)} tries to factor a univariate polynomial \\spad{p} over \\spad{F}")))
NIL
((|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-48)))))
@@ -1724,7 +1724,7 @@ NIL
((|constructor| (NIL "\\spadtype{GaloisGroupFactorizer} provides functions to factor resolvents.")) (|btwFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|) (|Set| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{btwFact(p,sqf,pd,r)} returns the factorization of \\spad{p},{} the result is a Record such that \\spad{contp=}content \\spad{p},{} \\spad{factors=}List of irreducible factors of \\spad{p} with exponent. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors). \\spad{pd} is the \\spadtype{Set} of possible degrees. \\spad{r} is a lower bound for the number of factors of \\spad{p}. Please do not use this function in your code because its design may change.")) (|henselFact| (((|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|)))))) |#1| (|Boolean|)) "\\spad{henselFact(p,sqf)} returns the factorization of \\spad{p},{} the result is a Record such that \\spad{contp=}content \\spad{p},{} \\spad{factors=}List of irreducible factors of \\spad{p} with exponent. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors).")) (|factorOfDegree| (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|) (|Boolean|)) "\\spad{factorOfDegree(d,p,listOfDegrees,r,sqf)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees},{} and that \\spad{p} has at least \\spad{r} factors. If \\spad{sqf=true} the polynomial is assumed to be square free (\\spadignore{i.e.} without repeated factors).") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factorOfDegree(d,p,listOfDegrees,r)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees},{} and that \\spad{p} has at least \\spad{r} factors.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factorOfDegree(d,p,listOfDegrees)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1| (|NonNegativeInteger|)) "\\spad{factorOfDegree(d,p,r)} returns a factor of \\spad{p} of degree \\spad{d} knowing that \\spad{p} has at least \\spad{r} factors.") (((|Union| |#1| "failed") (|PositiveInteger|) |#1|) "\\spad{factorOfDegree(d,p)} returns a factor of \\spad{p} of degree \\spad{d}.")) (|factorSquareFree| (((|Factored| |#1|) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,d,r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{d} divides the degree of all factors of \\spad{p} and that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,listOfDegrees,r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees} and that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factorSquareFree(p,listOfDegrees)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{factorSquareFree(p,r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has at least \\spad{r} factors. \\spad{f} is supposed not having any repeated factor (this is not checked).") (((|Factored| |#1|) |#1|) "\\spad{factorSquareFree(p)} returns the factorization of \\spad{p} which is supposed not having any repeated factor (this is not checked).")) (|factor| (((|Factored| |#1|) |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{factor(p,d,r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{d} divides the degree of all factors of \\spad{p} and that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|)) (|NonNegativeInteger|)) "\\spad{factor(p,listOfDegrees,r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm,{} knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees} and that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1| (|List| (|NonNegativeInteger|))) "\\spad{factor(p,listOfDegrees)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has for possible splitting of its degree \\spad{listOfDegrees}.") (((|Factored| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{factor(p,r)} factorizes the polynomial \\spad{p} using the single factor bound algorithm and knowing that \\spad{p} has at least \\spad{r} factors.") (((|Factored| |#1|) |#1|) "\\spad{factor(p)} returns the factorization of \\spad{p} over the integers.")) (|tryFunctionalDecomposition| (((|Boolean|) (|Boolean|)) "\\spad{tryFunctionalDecomposition(b)} chooses whether factorizers have to look for functional decomposition of polynomials (\\spad{true}) or not (\\spad{false}). Returns the previous value.")) (|tryFunctionalDecomposition?| (((|Boolean|)) "\\spad{tryFunctionalDecomposition?()} returns \\spad{true} if factorizers try functional decomposition of polynomials before factoring them.")) (|eisensteinIrreducible?| (((|Boolean|) |#1|) "\\spad{eisensteinIrreducible?(p)} returns \\spad{true} if \\spad{p} can be shown to be irreducible by Eisenstein\\spad{'s} criterion,{} \\spad{false} is inconclusive.")) (|useEisensteinCriterion| (((|Boolean|) (|Boolean|)) "\\spad{useEisensteinCriterion(b)} chooses whether factorizers check Eisenstein\\spad{'s} criterion before factoring: \\spad{true} for using it,{} \\spad{false} else. Returns the previous value.")) (|useEisensteinCriterion?| (((|Boolean|)) "\\spad{useEisensteinCriterion?()} returns \\spad{true} if factorizers check Eisenstein\\spad{'s} criterion before factoring.")) (|useSingleFactorBound| (((|Boolean|) (|Boolean|)) "\\spad{useSingleFactorBound(b)} chooses the algorithm to be used by the factorizers: \\spad{true} for algorithm with single factor bound,{} \\spad{false} for algorithm with overall bound. Returns the previous value.")) (|useSingleFactorBound?| (((|Boolean|)) "\\spad{useSingleFactorBound?()} returns \\spad{true} if algorithm with single factor bound is used for factorization,{} \\spad{false} for algorithm with overall bound.")) (|modularFactor| (((|Record| (|:| |prime| (|Integer|)) (|:| |factors| (|List| |#1|))) |#1|) "\\spad{modularFactor(f)} chooses a \"good\" prime and returns the factorization of \\spad{f} modulo this prime in a form that may be used by \\spadfunFrom{completeHensel}{GeneralHenselPackage}. If prime is zero it means that \\spad{f} has been proved to be irreducible over the integers or that \\spad{f} is a unit (\\spadignore{i.e.} 1 or \\spad{-1}). \\spad{f} shall be primitive (\\spadignore{i.e.} content(\\spad{p})\\spad{=1}) and square free (\\spadignore{i.e.} without repeated factors).")) (|numberOfFactors| (((|NonNegativeInteger|) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|))))) "\\spad{numberOfFactors(ddfactorization)} returns the number of factors of the polynomial \\spad{f} modulo \\spad{p} where \\spad{ddfactorization} is the distinct degree factorization of \\spad{f} computed by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} for some prime \\spad{p}.")) (|stopMusserTrials| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{stopMusserTrials(n)} sets to \\spad{n} the bound on the number of factors for which \\spadfun{modularFactor} stops to look for an other prime. You will have to remember that the step of recombining the extraneous factors may take up to \\spad{2**n} trials. Returns the previous value.") (((|PositiveInteger|)) "\\spad{stopMusserTrials()} returns the bound on the number of factors for which \\spadfun{modularFactor} stops to look for an other prime. You will have to remember that the step of recombining the extraneous factors may take up to \\spad{2**stopMusserTrials()} trials.")) (|musserTrials| (((|PositiveInteger|) (|PositiveInteger|)) "\\spad{musserTrials(n)} sets to \\spad{n} the number of primes to be tried in \\spadfun{modularFactor} and returns the previous value.") (((|PositiveInteger|)) "\\spad{musserTrials()} returns the number of primes that are tried in \\spadfun{modularFactor}.")) (|degreePartition| (((|Multiset| (|NonNegativeInteger|)) (|List| (|Record| (|:| |factor| |#1|) (|:| |degree| (|Integer|))))) "\\spad{degreePartition(ddfactorization)} returns the degree partition of the polynomial \\spad{f} modulo \\spad{p} where \\spad{ddfactorization} is the distinct degree factorization of \\spad{f} computed by \\spadfunFrom{ddFact}{ModularDistinctDegreeFactorizer} for some prime \\spad{p}.")) (|makeFR| (((|Factored| |#1|) (|Record| (|:| |contp| (|Integer|)) (|:| |factors| (|List| (|Record| (|:| |irr| |#1|) (|:| |pow| (|Integer|))))))) "\\spad{makeFR(flist)} turns the final factorization of henselFact into a \\spadtype{Factored} object.")))
NIL
NIL
-(-449 R UP -1708)
+(-449 R UP -1709)
((|constructor| (NIL "\\spadtype{GaloisGroupFactorizationUtilities} provides functions that will be used by the factorizer.")) (|length| ((|#3| |#2|) "\\spad{length(p)} returns the sum of the absolute values of the coefficients of the polynomial \\spad{p}.")) (|height| ((|#3| |#2|) "\\spad{height(p)} returns the maximal absolute value of the coefficients of the polynomial \\spad{p}.")) (|infinityNorm| ((|#3| |#2|) "\\spad{infinityNorm(f)} returns the maximal absolute value of the coefficients of the polynomial \\spad{f}.")) (|quadraticNorm| ((|#3| |#2|) "\\spad{quadraticNorm(f)} returns the \\spad{l2} norm of the polynomial \\spad{f}.")) (|norm| ((|#3| |#2| (|PositiveInteger|)) "\\spad{norm(f,p)} returns the \\spad{lp} norm of the polynomial \\spad{f}.")) (|singleFactorBound| (((|Integer|) |#2|) "\\spad{singleFactorBound(p,r)} returns a bound on the infinite norm of the factor of \\spad{p} with smallest Bombieri\\spad{'s} norm. \\spad{p} shall be of degree higher or equal to 2.") (((|Integer|) |#2| (|NonNegativeInteger|)) "\\spad{singleFactorBound(p,r)} returns a bound on the infinite norm of the factor of \\spad{p} with smallest Bombieri\\spad{'s} norm. \\spad{r} is a lower bound for the number of factors of \\spad{p}. \\spad{p} shall be of degree higher or equal to 2.")) (|rootBound| (((|Integer|) |#2|) "\\spad{rootBound(p)} returns a bound on the largest norm of the complex roots of \\spad{p}.")) (|bombieriNorm| ((|#3| |#2| (|PositiveInteger|)) "\\spad{bombieriNorm(p,n)} returns the \\spad{n}th Bombieri\\spad{'s} norm of \\spad{p}.") ((|#3| |#2|) "\\spad{bombieriNorm(p)} returns quadratic Bombieri\\spad{'s} norm of \\spad{p}.")) (|beauzamyBound| (((|Integer|) |#2|) "\\spad{beauzamyBound(p)} returns a bound on the larger coefficient of any factor of \\spad{p}.")))
NIL
NIL
@@ -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}.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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")))
-((-4446 |has| (-413 (-959 |#1|)) (-562)) (-4444 . T) (-4443 . T))
+((-4449 |has| (-413 (-959 |#1|)) (-562)) (-4447 . T) (-4446 . 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")))
-(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4454 "*") |has| |#2| (-174)) (-4445 |has| |#2| (-562)) (-4450 |has| |#2| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (-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")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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}}.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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}.")))
@@ -1836,7 +1836,7 @@ NIL
((|constructor| (NIL "GradedModule(\\spad{R},{}\\spad{E}) denotes ``E-graded \\spad{R}-module\\spad{''},{} \\spadignore{i.e.} collection of \\spad{R}-modules indexed by an abelian monoid \\spad{E}. An element \\spad{g} of \\spad{G[s]} for some specific \\spad{s} in \\spad{E} is said to be an element of \\spad{G} with {\\em degree} \\spad{s}. Sums are defined in each module \\spad{G[s]} so two elements of \\spad{G} have a sum if they have the same degree. \\blankline Morphisms can be defined and composed by degree to give the mathematical category of graded modules.")) (+ (($ $ $) "\\spad{g+h} is the sum of \\spad{g} and \\spad{h} in the module of elements of the same degree as \\spad{g} and \\spad{h}. Error: if \\spad{g} and \\spad{h} have different degrees.")) (- (($ $ $) "\\spad{g-h} is the difference of \\spad{g} and \\spad{h} in the module of elements of the same degree as \\spad{g} and \\spad{h}. Error: if \\spad{g} and \\spad{h} have different degrees.") (($ $) "\\spad{-g} is the additive inverse of \\spad{g} in the module of elements of the same grade as \\spad{g}.")) (* (($ $ |#1|) "\\spad{g*r} is right module multiplication.") (($ |#1| $) "\\spad{r*g} is left module multiplication.")) ((|Zero|) (($) "0 denotes the zero of degree 0.")) (|degree| ((|#2| $) "\\spad{degree(g)} names the degree of \\spad{g}. The set of all elements of a given degree form an \\spad{R}-module.")))
NIL
NIL
-(-477 |lv| -1708 R)
+(-477 |lv| -1709 R)
((|constructor| (NIL "\\indented{1}{Author : \\spad{P}.Gianni,{} Summer \\spad{'88},{} revised November \\spad{'89}} Solve systems of polynomial equations using Groebner bases Total order Groebner bases are computed and then converted to lex ones This package is mostly intended for internal use.")) (|genericPosition| (((|Record| (|:| |dpolys| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |coords| (|List| (|Integer|)))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{genericPosition(lp,lv)} puts a radical zero dimensional ideal in general position,{} for system \\spad{lp} in variables \\spad{lv}.")) (|testDim| (((|Union| (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) "failed") (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{testDim(lp,lv)} tests if the polynomial system \\spad{lp} in variables \\spad{lv} is zero dimensional.")) (|groebSolve| (((|List| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|OrderedVariableList| |#1|))) "\\spad{groebSolve(lp,lv)} reduces the polynomial system \\spad{lp} in variables \\spad{lv} to triangular form. Algorithm based on groebner bases algorithm with linear algebra for change of ordering. Preprocessing for the general solver. The polynomials in input are of type \\spadtype{DMP}.")))
NIL
NIL
@@ -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}.")))
-((-4446 . T))
+((-4449 . 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.")))
-(((-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))) (-2892 (|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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (|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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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.")))
-((-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-856))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))))
+((-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-856))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#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)}")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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}.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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,29 +1870,29 @@ 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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#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")))
-(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4454 "*") |has| |#2| (-174)) (-4445 |has| |#2| (-562)) (-4450 |has| |#2| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
(-488 -2550 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}.")))
-((-4443 |has| |#2| (-1058)) (-4444 |has| |#2| (-1058)) (-4446 |has| |#2| (-6 -4446)) ((-4451 "*") |has| |#2| (-174)) (-4449 . T))
-((-2892 (-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)))))) (-2892 (-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))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2892 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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))) (-2892 (|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))) (-2892 (-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))))) (-2892 (-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)))))) (-2892 (-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))))) (-2892 (|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|)))))
+((-4446 |has| |#2| (-1058)) (-4447 |has| |#2| (-1058)) (-4449 |has| |#2| (-6 -4449)) ((-4454 "*") |has| |#2| (-174)) (-4452 . T))
+((-2895 (-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)))))) (-2895 (-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))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2895 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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))) (-2895 (|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))) (-2895 (-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))))) (-2895 (-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)))))) (-2895 (-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))))) (-2895 (|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 -4449)) (|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}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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 -1708 UP UPUP R)
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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 -1709 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.")))
NIL
NIL
@@ -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.")))
-((-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))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (|HasCategory| (-570) (QUOTE (-146)))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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)))) (-2895 (-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 -4449)) (|HasAttribute| |#1| (QUOTE -4450)) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))))
+((|HasAttribute| |#1| (QUOTE -4452)) (|HasAttribute| |#1| (QUOTE -4453)) (|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
@@ -1928,33 +1928,33 @@ NIL
((|constructor| (NIL "Category for the hyperbolic trigonometric functions.")) (|tanh| (($ $) "\\spad{tanh(x)} returns the hyperbolic tangent of \\spad{x}.")) (|sinh| (($ $) "\\spad{sinh(x)} returns the hyperbolic sine of \\spad{x}.")) (|sech| (($ $) "\\spad{sech(x)} returns the hyperbolic secant of \\spad{x}.")) (|csch| (($ $) "\\spad{csch(x)} returns the hyperbolic cosecant of \\spad{x}.")) (|coth| (($ $) "\\spad{coth(x)} returns the hyperbolic cotangent of \\spad{x}.")) (|cosh| (($ $) "\\spad{cosh(x)} returns the hyperbolic cosine of \\spad{x}.")))
NIL
NIL
-(-500 -1708 UP |AlExt| |AlPol|)
+(-500 -1709 UP |AlExt| |AlPol|)
((|constructor| (NIL "Factorization of univariate polynomials with coefficients in an algebraic extension of a field over which we can factor UP\\spad{'s}.")) (|factor| (((|Factored| |#4|) |#4| (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{factor(p, f)} returns a prime factorisation of \\spad{p}; \\spad{f} is a factorisation map for elements of UP.")))
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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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")))
NIL
NIL
-(-505 R UP -1708)
+(-505 R UP -1709)
((|constructor| (NIL "This package contains functions used in the packages FunctionFieldIntegralBasis and NumberFieldIntegralBasis.")) (|moduleSum| (((|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) (|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|))) (|Record| (|:| |basis| (|Matrix| |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (|Matrix| |#1|)))) "\\spad{moduleSum(m1,m2)} returns the sum of two modules in the framed algebra \\spad{F}. Each module \\spad{mi} is represented as follows: \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,w2,...,wn} and \\spad{mi} is a record \\spad{[basis,basisDen,basisInv]}. If \\spad{basis} is the matrix \\spad{(aij, i = 1..n, j = 1..n)},{} then a basis \\spad{v1,...,vn} for \\spad{mi} is given by \\spad{vi = (1/basisDen) * sum(aij * wj, j = 1..n)},{} \\spadignore{i.e.} the \\spad{i}th row of '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)}.")) (|idealiserMatrix| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{idealiserMatrix(m1, m2)} returns the matrix representing the linear conditions on the Ring associatied with an ideal defined by \\spad{m1} and \\spad{m2}.")) (|idealiser| (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|) |#1|) "\\spad{idealiser(m1,m2,d)} computes the order of an ideal defined by \\spad{m1} and \\spad{m2} where \\spad{d} is the known part of the denominator") (((|Matrix| |#1|) (|Matrix| |#1|) (|Matrix| |#1|)) "\\spad{idealiser(m1,m2)} computes the order of an ideal defined by \\spad{m1} and \\spad{m2}")) (|leastPower| (((|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{leastPower(p,n)} returns \\spad{e},{} where \\spad{e} is the smallest integer such that \\spad{p **e >= n}")) (|divideIfCan!| ((|#1| (|Matrix| |#1|) (|Matrix| |#1|) |#1| (|Integer|)) "\\spad{divideIfCan!(matrix,matrixOut,prime,n)} attempts to divide the entries of \\spad{matrix} by \\spad{prime} and store the result in \\spad{matrixOut}. If it is successful,{} 1 is returned and if not,{} \\spad{prime} is returned. Here both \\spad{matrix} and \\spad{matrixOut} are \\spad{n}-by-\\spad{n} upper triangular matrices.")) (|matrixGcd| ((|#1| (|Matrix| |#1|) |#1| (|NonNegativeInteger|)) "\\spad{matrixGcd(mat,sing,n)} is \\spad{gcd(sing,g)} where \\spad{g} is the \\spad{gcd} of the entries of the \\spad{n}-by-\\spad{n} upper-triangular matrix \\spad{mat}.")) (|diagonalProduct| ((|#1| (|Matrix| |#1|)) "\\spad{diagonalProduct(m)} returns the product of the elements on the diagonal of the matrix \\spad{m}")) (|squareFree| (((|Factored| $) $) "\\spad{squareFree(x)} returns a square-free factorisation of \\spad{x}")))
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}.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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)}.")))
@@ -1968,7 +1968,7 @@ NIL
((|constructor| (NIL "InnerCommonDenominator 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|)) |#4|) "\\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| |#4|) "\\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| |#4|) "\\spad{commonDenominator([q1,...,qn])} returns a common denominator \\spad{d} for \\spad{q1},{}...,{}\\spad{qn}.")))
NIL
NIL
-(-510 -1708 |Expon| |VarSet| |DPoly|)
+(-510 -1709 |Expon| |VarSet| |DPoly|)
((|constructor| (NIL "This domain represents polynomial ideals with coefficients in any field and supports the basic ideal operations,{} including intersection sum and quotient. An ideal is represented by a list of polynomials (the generators of the ideal) and a boolean that is \\spad{true} if the generators are a Groebner basis. The algorithms used are based on Groebner basis computations. The ordering is determined by the datatype of the input polynomials. Users may use refinements of total degree orderings.")) (|relationsIdeal| (((|SuchThat| (|List| (|Polynomial| |#1|)) (|List| (|Equation| (|Polynomial| |#1|)))) (|List| |#4|)) "\\spad{relationsIdeal(polyList)} returns the ideal of relations among the polynomials in \\spad{polyList}.")) (|saturate| (($ $ |#4| (|List| |#3|)) "\\spad{saturate(I,f,lvar)} is the saturation with respect to the prime principal ideal which is generated by \\spad{f} in the polynomial ring \\spad{F[lvar]}.") (($ $ |#4|) "\\spad{saturate(I,f)} is the saturation of the ideal \\spad{I} with respect to the multiplicative set generated by the polynomial \\spad{f}.")) (|coerce| (($ (|List| |#4|)) "\\spad{coerce(polyList)} converts the list of polynomials \\spad{polyList} to an ideal.")) (|generators| (((|List| |#4|) $) "\\spad{generators(I)} returns a list of generators for the ideal \\spad{I}.")) (|groebner?| (((|Boolean|) $) "\\spad{groebner?(I)} tests if the generators of the ideal \\spad{I} are a Groebner basis.")) (|groebnerIdeal| (($ (|List| |#4|)) "\\spad{groebnerIdeal(polyList)} constructs the ideal generated by the list of polynomials \\spad{polyList} which are assumed to be a Groebner basis. Note: this operation avoids a Groebner basis computation.")) (|ideal| (($ (|List| |#4|)) "\\spad{ideal(polyList)} constructs the ideal generated by the list of polynomials \\spad{polyList}.")) (|leadingIdeal| (($ $) "\\spad{leadingIdeal(I)} is the ideal generated by the leading terms of the elements of the ideal \\spad{I}.")) (|dimension| (((|Integer|) $) "\\spad{dimension(I)} gives the dimension of the ideal \\spad{I}. in the ring \\spad{F[lvar]},{} where lvar are the variables appearing in \\spad{I}") (((|Integer|) $ (|List| |#3|)) "\\spad{dimension(I,lvar)} gives the dimension of the ideal \\spad{I},{} in the ring \\spad{F[lvar]}")) (|backOldPos| (($ (|Record| (|:| |mval| (|Matrix| |#1|)) (|:| |invmval| (|Matrix| |#1|)) (|:| |genIdeal| $))) "\\spad{backOldPos(genPos)} takes the result produced by \\spadfunFrom{generalPosition}{PolynomialIdeals} and performs the inverse transformation,{} returning the original ideal \\spad{backOldPos(generalPosition(I,listvar))} = \\spad{I}.")) (|generalPosition| (((|Record| (|:| |mval| (|Matrix| |#1|)) (|:| |invmval| (|Matrix| |#1|)) (|:| |genIdeal| $)) $ (|List| |#3|)) "\\spad{generalPosition(I,listvar)} perform a random linear transformation on the variables in \\spad{listvar} and returns the transformed ideal along with the change of basis matrix.")) (|groebner| (($ $) "\\spad{groebner(I)} returns a set of generators of \\spad{I} that are a Groebner basis for \\spad{I}.")) (|quotient| (($ $ |#4|) "\\spad{quotient(I,f)} computes the quotient of the ideal \\spad{I} by the principal ideal generated by the polynomial \\spad{f},{} \\spad{(I:(f))}.") (($ $ $) "\\spad{quotient(I,J)} computes the quotient of the ideals \\spad{I} and \\spad{J},{} \\spad{(I:J)}.")) (|intersect| (($ (|List| $)) "\\spad{intersect(LI)} computes the intersection of the list of ideals \\spad{LI}.") (($ $ $) "\\spad{intersect(I,J)} computes the intersection of the ideals \\spad{I} and \\spad{J}.")) (|zeroDim?| (((|Boolean|) $) "\\spad{zeroDim?(I)} tests if the ideal \\spad{I} is zero dimensional,{} \\spadignore{i.e.} all its associated primes are maximal,{} in the ring \\spad{F[lvar]},{} where lvar are the variables appearing in \\spad{I}") (((|Boolean|) $ (|List| |#3|)) "\\spad{zeroDim?(I,lvar)} tests if the ideal \\spad{I} is zero dimensional,{} \\spadignore{i.e.} all its associated primes are maximal,{} in the ring \\spad{F[lvar]}")) (|inRadical?| (((|Boolean|) |#4| $) "\\spad{inRadical?(f,I)} tests if some power of the polynomial \\spad{f} belongs to the ideal \\spad{I}.")) (|in?| (((|Boolean|) $ $) "\\spad{in?(I,J)} tests if the ideal \\spad{I} is contained in the ideal \\spad{J}.")) (|element?| (((|Boolean|) |#4| $) "\\spad{element?(f,I)} tests whether the polynomial \\spad{f} belongs to the ideal \\spad{I}.")) (|zero?| (((|Boolean|) $) "\\spad{zero?(I)} tests whether the ideal \\spad{I} is the zero ideal")) (|one?| (((|Boolean|) $) "\\spad{one?(I)} tests whether the ideal \\spad{I} is the unit ideal,{} \\spadignore{i.e.} contains 1.")) (+ (($ $ $) "\\spad{I+J} computes the ideal generated by the union of \\spad{I} and \\spad{J}.")) (** (($ $ (|NonNegativeInteger|)) "\\spad{I**n} computes the \\spad{n}th power of the ideal \\spad{I}.")) (* (($ $ $) "\\spad{I*J} computes the product of the ideal \\spad{I} and \\spad{J}.")))
NIL
((|HasCategory| |#3| (LIST (QUOTE -620) (QUOTE (-1186)))))
@@ -2018,36 +2018,36 @@ 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}")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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'.")))
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}.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|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))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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.")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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 -4450)))
+((|HasAttribute| |#3| (QUOTE -4453)))
(-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 -4450)))
+((|HasAttribute| |#7| (QUOTE -4453)))
(-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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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 (-4454 "*"))) (|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
@@ -2080,7 +2080,7 @@ NIL
((|constructor| (NIL "\\indented{2}{IndexedExponents of an ordered set of variables gives a representation} for the degree of polynomials in commuting variables. It gives an ordered pairing of non negative integer exponents with variables")))
NIL
NIL
-(-538 K -1708 |Par|)
+(-538 K -1709 |Par|)
((|constructor| (NIL "This package is the inner package to be used by NumericRealEigenPackage and NumericComplexEigenPackage for the computation of numeric eigenvalues and eigenvectors.")) (|innerEigenvectors| (((|List| (|Record| (|:| |outval| |#2|) (|:| |outmult| (|Integer|)) (|:| |outvect| (|List| (|Matrix| |#2|))))) (|Matrix| |#1|) |#3| (|Mapping| (|Factored| (|SparseUnivariatePolynomial| |#1|)) (|SparseUnivariatePolynomial| |#1|))) "\\spad{innerEigenvectors(m,eps,factor)} computes explicitly the eigenvalues and the correspondent eigenvectors of the matrix \\spad{m}. The parameter \\spad{eps} determines the type of the output,{} \\spad{factor} is the univariate factorizer to \\spad{br} used to reduce the characteristic polynomial into irreducible factors.")) (|solve1| (((|List| |#2|) (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{solve1(pol, eps)} finds the roots of the univariate polynomial polynomial \\spad{pol} to precision eps. If \\spad{K} is \\spad{Fraction Integer} then only the real roots are returned,{} if \\spad{K} is \\spad{Complex Fraction Integer} then all roots are found.")) (|charpol| (((|SparseUnivariatePolynomial| |#1|) (|Matrix| |#1|)) "\\spad{charpol(m)} computes the characteristic polynomial of a matrix \\spad{m} with entries in \\spad{K}. This function returns a polynomial over \\spad{K},{} while the general one (that is in EiegenPackage) returns Fraction \\spad{P} \\spad{K}")))
NIL
NIL
@@ -2104,7 +2104,7 @@ NIL
((|constructor| (NIL "This package computes infinite products of univariate Taylor series over an integral domain of characteristic 0.")) (|generalInfiniteProduct| ((|#2| |#2| (|Integer|) (|Integer|)) "\\spad{generalInfiniteProduct(f(x),a,d)} computes \\spad{product(n=a,a+d,a+2*d,...,f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|oddInfiniteProduct| ((|#2| |#2|) "\\spad{oddInfiniteProduct(f(x))} computes \\spad{product(n=1,3,5...,f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|evenInfiniteProduct| ((|#2| |#2|) "\\spad{evenInfiniteProduct(f(x))} computes \\spad{product(n=2,4,6...,f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")) (|infiniteProduct| ((|#2| |#2|) "\\spad{infiniteProduct(f(x))} computes \\spad{product(n=1,2,3...,f(x**n))}. The series \\spad{f(x)} should have constant coefficient 1.")))
NIL
NIL
-(-544 K -1708 |Par|)
+(-544 K -1709 |Par|)
((|constructor| (NIL "This is an internal package for computing approximate solutions to systems of polynomial equations. The parameter \\spad{K} specifies the coefficient field of the input polynomials and must be either \\spad{Fraction(Integer)} or \\spad{Complex(Fraction Integer)}. The parameter \\spad{F} specifies where the solutions must lie and can be one of the following: \\spad{Float},{} \\spad{Fraction(Integer)},{} \\spad{Complex(Float)},{} \\spad{Complex(Fraction Integer)}. The last parameter specifies the type of the precision operand and must be either \\spad{Fraction(Integer)} or \\spad{Float}.")) (|makeEq| (((|List| (|Equation| (|Polynomial| |#2|))) (|List| |#2|) (|List| (|Symbol|))) "\\spad{makeEq(lsol,lvar)} returns a list of equations formed by corresponding members of \\spad{lvar} and \\spad{lsol}.")) (|innerSolve| (((|List| (|List| |#2|)) (|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|)) |#3|) "\\spad{innerSolve(lnum,lden,lvar,eps)} returns a list of solutions of the system of polynomials \\spad{lnum},{} with the side condition that none of the members of \\spad{lden} vanish identically on any solution. Each solution is expressed as a list corresponding to the list of variables in \\spad{lvar} and with precision specified by \\spad{eps}.")) (|innerSolve1| (((|List| |#2|) (|Polynomial| |#1|) |#3|) "\\spad{innerSolve1(p,eps)} returns the list of the zeros of the polynomial \\spad{p} with precision \\spad{eps}.") (((|List| |#2|) (|SparseUnivariatePolynomial| |#1|) |#3|) "\\spad{innerSolve1(up,eps)} returns the list of the zeros of the univariate polynomial \\spad{up} with precision \\spad{eps}.")))
NIL
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.")))
-((-4447 . T) (-4448 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4450 . T) (-4451 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-552)
((|constructor| (NIL "This domain is a datatype for (signed) integer values of precision 16 bits.")))
@@ -2154,13 +2154,13 @@ NIL
NIL
(-556 |Key| |Entry| |addDom|)
((|constructor| (NIL "This domain is used to provide a conditional \"add\" domain for the implementation of \\spadtype{Table}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
-(-557 R -1708)
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+(-557 R -1709)
((|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
NIL
-(-558 R0 -1708 UP UPUP R)
+(-558 R0 -1709 UP UPUP R)
((|constructor| (NIL "This package provides functions for integrating a function on an algebraic curve.")) (|palginfieldint| (((|Union| |#5| "failed") |#5| (|Mapping| |#3| |#3|)) "\\spad{palginfieldint(f, d)} returns an algebraic function \\spad{g} such that \\spad{dg = f} if such a \\spad{g} exists,{} \"failed\" otherwise. Argument \\spad{f} must be a pure algebraic function.")) (|palgintegrate| (((|IntegrationResult| |#5|) |#5| (|Mapping| |#3| |#3|)) "\\spad{palgintegrate(f, d)} integrates \\spad{f} with respect to the derivation \\spad{d}. Argument \\spad{f} must be a pure algebraic function.")) (|algintegrate| (((|IntegrationResult| |#5|) |#5| (|Mapping| |#3| |#3|)) "\\spad{algintegrate(f, d)} integrates \\spad{f} with respect to the derivation \\spad{d}.")))
NIL
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.")))
-((-3167 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-3170 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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,9 +2178,9 @@ 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.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
-(-563 R -1708)
+(-563 R -1709)
((|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.")))
NIL
NIL
@@ -2192,7 +2192,7 @@ NIL
((|constructor| (NIL "\\blankline")) (|entry| (((|Record| (|:| |endPointContinuity| (|Union| (|:| |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| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |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")))) (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{entry(n)} \\undocumented{}")) (|entries| (((|List| (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |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| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |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"))))))) $) "\\spad{entries(x)} \\undocumented{}")) (|showAttributes| (((|Union| (|Record| (|:| |endPointContinuity| (|Union| (|:| |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| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |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") (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{showAttributes(x)} \\undocumented{}")) (|insert!| (($ (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |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| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |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"))))))) "\\spad{insert!(r)} inserts an entry \\spad{r} into theIFTable")) (|fTable| (($ (|List| (|Record| (|:| |key| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |endPointContinuity| (|Union| (|:| |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| (|Union| (|:| |str| (|Stream| (|DoubleFloat|))) (|:| |notEvaluated| "Internal singularities not yet evaluated"))) (|:| |range| (|Union| (|:| |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")))))))) "\\spad{fTable(l)} creates a functions table from the elements of \\spad{l}.")) (|keys| (((|List| (|Record| (|:| |var| (|Symbol|)) (|:| |fn| (|Expression| (|DoubleFloat|))) (|:| |range| (|Segment| (|OrderedCompletion| (|DoubleFloat|)))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) $) "\\spad{keys(f)} returns the list of keys of \\spad{f}")) (|clearTheFTable| (((|Void|)) "\\spad{clearTheFTable()} clears the current table of functions.")) (|showTheFTable| (($) "\\spad{showTheFTable()} returns the current table of functions.")))
NIL
NIL
-(-566 R -1708 L)
+(-566 R -1709 L)
((|constructor| (NIL "This internal package rationalises integrands on curves of the form: \\indented{2}{\\spad{y\\^2 = a x\\^2 + b x + c}} \\indented{2}{\\spad{y\\^2 = (a x + b) / (c x + d)}} \\indented{2}{\\spad{f(x, y) = 0} where \\spad{f} has degree 1 in \\spad{x}} The rationalization is done for integration,{} limited integration,{} extended integration and the risch differential equation.")) (|palgLODE0| (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgLODE0(op,g,x,y,z,t,c)} returns the solution of \\spad{op f = g} Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,y)dx = c f(t,y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}.") (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgLODE0(op, g, x, y, d, p)} returns the solution of \\spad{op f = g}. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}.")) (|lift| (((|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) (|SparseUnivariatePolynomial| |#2|) (|Kernel| |#2|)) "\\spad{lift(u,k)} \\undocumented")) (|multivariate| ((|#2| (|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) (|Kernel| |#2|) |#2|) "\\spad{multivariate(u,k,f)} \\undocumented")) (|univariate| (((|SparseUnivariatePolynomial| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|SparseUnivariatePolynomial| |#2|)) "\\spad{univariate(f,k,k,p)} \\undocumented")) (|palgRDE0| (((|Union| |#2| "failed") |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|)) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgRDE0(f, g, x, y, foo, t, c)} returns a function \\spad{z(x,y)} such that \\spad{dz/dx + n * df/dx z(x,y) = g(x,y)} if such a \\spad{z} exists,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,y)dx = c f(t,y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{foo},{} called by \\spad{foo(a, b, x)},{} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}.") (((|Union| |#2| "failed") |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|)) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgRDE0(f, g, x, y, foo, d, p)} returns a function \\spad{z(x,y)} such that \\spad{dz/dx + n * df/dx z(x,y) = g(x,y)} if such a \\spad{z} exists,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}. Argument \\spad{foo},{} called by \\spad{foo(a, b, x)},{} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}.")) (|palglimint0| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palglimint0(f, x, y, [u1,...,un], z, t, c)} returns functions \\spad{[h,[[ci, ui]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,...,un]} and \\spad{d(h + sum(ci log(ui)))/dx = f(x,y)} if such functions exist,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,y)dx = c f(t,y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}.") (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palglimint0(f, x, y, [u1,...,un], d, p)} returns functions \\spad{[h,[[ci, ui]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,...,un]} and \\spad{d(h + sum(ci log(ui)))/dx = f(x,y)} if such functions exist,{} and \"failed\" otherwise. Argument \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2y(x)\\^2 = P(x)}.")) (|palgextint0| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgextint0(f, x, y, g, z, t, c)} returns functions \\spad{[h, d]} such that \\spad{dh/dx = f(x,y) - d g},{} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,y)dx = c f(t,y) dy},{} and \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{z} is a dummy variable not appearing in \\spad{f(x,y)}. The operation returns \"failed\" if no such functions exist.") (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgextint0(f, x, y, g, d, p)} returns functions \\spad{[h, c]} such that \\spad{dh/dx = f(x,y) - c g},{} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2 y(x)\\^2 = P(x)},{} or \"failed\" if no such functions exist.")) (|palgint0| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|Fraction| (|SparseUnivariatePolynomial| |#2|))) "\\spad{palgint0(f, x, y, z, t, c)} returns the integral of \\spad{f(x,y)dx} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{f(x,y)dx = c f(t,y) dy}; \\spad{c} and \\spad{t} are rational functions of \\spad{y}. Argument \\spad{z} is a dummy variable not appearing in \\spad{f(x,y)}.") (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) "\\spad{palgint0(f, x, y, d, p)} returns the integral of \\spad{f(x,y)dx} where \\spad{y} is an algebraic function of \\spad{x} satisfying \\spad{d(x)\\^2 y(x)\\^2 = P(x)}.")))
NIL
((|HasCategory| |#3| (LIST (QUOTE -662) (|devaluate| |#2|))))
@@ -2200,31 +2200,31 @@ NIL
((|constructor| (NIL "This package provides various number theoretic functions on the integers.")) (|sumOfKthPowerDivisors| (((|Integer|) (|Integer|) (|NonNegativeInteger|)) "\\spad{sumOfKthPowerDivisors(n,k)} returns the sum of the \\spad{k}th powers of the integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. the sum of the \\spad{k}th powers of the divisors of \\spad{n} is often denoted by \\spad{sigma_k(n)}.")) (|sumOfDivisors| (((|Integer|) (|Integer|)) "\\spad{sumOfDivisors(n)} returns the sum of the integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. The sum of the divisors of \\spad{n} is often denoted by \\spad{sigma(n)}.")) (|numberOfDivisors| (((|Integer|) (|Integer|)) "\\spad{numberOfDivisors(n)} returns the number of integers between 1 and \\spad{n} (inclusive) which divide \\spad{n}. The number of divisors of \\spad{n} is often denoted by \\spad{tau(n)}.")) (|moebiusMu| (((|Integer|) (|Integer|)) "\\spad{moebiusMu(n)} returns the Moebius function \\spad{mu(n)}. \\spad{mu(n)} is either \\spad{-1},{}0 or 1 as follows: \\spad{mu(n) = 0} if \\spad{n} is divisible by a square > 1,{} \\spad{mu(n) = (-1)^k} if \\spad{n} is square-free and has \\spad{k} distinct prime divisors.")) (|legendre| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{legendre(a,p)} returns the Legendre symbol \\spad{L(a/p)}. \\spad{L(a/p) = (-1)**((p-1)/2) mod p} (\\spad{p} prime),{} which is 0 if \\spad{a} is 0,{} 1 if \\spad{a} is a quadratic residue \\spad{mod p} and \\spad{-1} otherwise. Note: because the primality test is expensive,{} if it is known that \\spad{p} is prime then use \\spad{jacobi(a,p)}.")) (|jacobi| (((|Integer|) (|Integer|) (|Integer|)) "\\spad{jacobi(a,b)} returns the Jacobi symbol \\spad{J(a/b)}. When \\spad{b} is odd,{} \\spad{J(a/b) = product(L(a/p) for p in factor b )}. Note: by convention,{} 0 is returned if \\spad{gcd(a,b) ~= 1}. Iterative \\spad{O(log(b)^2)} version coded by Michael Monagan June 1987.")) (|harmonic| (((|Fraction| (|Integer|)) (|Integer|)) "\\spad{harmonic(n)} returns the \\spad{n}th harmonic number. This is \\spad{H[n] = sum(1/k,k=1..n)}.")) (|fibonacci| (((|Integer|) (|Integer|)) "\\spad{fibonacci(n)} returns the \\spad{n}th Fibonacci number. the Fibonacci numbers \\spad{F[n]} are defined by \\spad{F[0] = F[1] = 1} and \\spad{F[n] = F[n-1] + F[n-2]}. The algorithm has running time \\spad{O(log(n)^3)}. Reference: Knuth,{} The Art of Computer Programming Vol 2,{} Semi-Numerical Algorithms.")) (|eulerPhi| (((|Integer|) (|Integer|)) "\\spad{eulerPhi(n)} returns the number of integers between 1 and \\spad{n} (including 1) which are relatively prime to \\spad{n}. This is the Euler phi function \\spad{\\phi(n)} is also called the totient function.")) (|euler| (((|Integer|) (|Integer|)) "\\spad{euler(n)} returns the \\spad{n}th Euler number. This is \\spad{2^n E(n,1/2)},{} where \\spad{E(n,x)} is the \\spad{n}th Euler polynomial.")) (|divisors| (((|List| (|Integer|)) (|Integer|)) "\\spad{divisors(n)} returns a list of the divisors of \\spad{n}.")) (|chineseRemainder| (((|Integer|) (|Integer|) (|Integer|) (|Integer|) (|Integer|)) "\\spad{chineseRemainder(x1,m1,x2,m2)} returns \\spad{w},{} where \\spad{w} is such that \\spad{w = x1 mod m1} and \\spad{w = x2 mod m2}. Note: \\spad{m1} and \\spad{m2} must be relatively prime.")) (|bernoulli| (((|Fraction| (|Integer|)) (|Integer|)) "\\spad{bernoulli(n)} returns the \\spad{n}th Bernoulli number. this is \\spad{B(n,0)},{} where \\spad{B(n,x)} is the \\spad{n}th Bernoulli polynomial.")))
NIL
NIL
-(-568 -1708 UP UPUP R)
+(-568 -1709 UP UPUP R)
((|constructor| (NIL "algebraic Hermite redution.")) (|HermiteIntegrate| (((|Record| (|:| |answer| |#4|) (|:| |logpart| |#4|)) |#4| (|Mapping| |#2| |#2|)) "\\spad{HermiteIntegrate(f, ')} returns \\spad{[g,h]} such that \\spad{f = g' + h} and \\spad{h} has a only simple finite normal poles.")))
NIL
NIL
-(-569 -1708 UP)
+(-569 -1709 UP)
((|constructor| (NIL "Hermite integration,{} transcendental case.")) (|HermiteIntegrate| (((|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |logpart| (|Fraction| |#2|)) (|:| |specpart| (|Fraction| |#2|)) (|:| |polypart| |#2|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{HermiteIntegrate(f, D)} returns \\spad{[g, h, s, p]} such that \\spad{f = Dg + h + s + p},{} \\spad{h} has a squarefree denominator normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and all the squarefree factors of the denominator of \\spad{s} are special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D}. Furthermore,{} \\spad{h} and \\spad{s} have no polynomial parts. \\spad{D} is the derivation to use on \\spadtype{UP}.")))
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.")))
-((-4431 . T) (-4437 . T) (-4441 . T) (-4436 . T) (-4447 . T) (-4448 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4434 . T) (-4440 . T) (-4444 . T) (-4439 . T) (-4450 . T) (-4451 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
NIL
NIL
-(-572 R -1708 L)
+(-572 R -1709 L)
((|constructor| (NIL "This package provides functions for integration,{} limited integration,{} extended integration and the risch differential equation for pure algebraic integrands.")) (|palgLODE| (((|Record| (|:| |particular| (|Union| |#2| "failed")) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Symbol|)) "\\spad{palgLODE(op, g, kx, y, x)} returns the solution of \\spad{op f = g}. \\spad{y} is an algebraic function of \\spad{x}.")) (|palgRDE| (((|Union| |#2| "failed") |#2| |#2| |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|Mapping| (|Union| |#2| "failed") |#2| |#2| (|Symbol|))) "\\spad{palgRDE(nfp, f, g, x, y, foo)} returns a function \\spad{z(x,y)} such that \\spad{dz/dx + n * df/dx z(x,y) = g(x,y)} if such a \\spad{z} exists,{} \"failed\" otherwise; \\spad{y} is an algebraic function of \\spad{x}; \\spad{foo(a, b, x)} is a function that solves \\spad{du/dx + n * da/dx u(x) = u(x)} for an unknown \\spad{u(x)} not involving \\spad{y}. \\spad{nfp} is \\spad{n * df/dx}.")) (|palglimint| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) (|List| |#2|)) "\\spad{palglimint(f, x, y, [u1,...,un])} returns functions \\spad{[h,[[ci, ui]]]} such that the \\spad{ui}\\spad{'s} are among \\spad{[u1,...,un]} and \\spad{d(h + sum(ci log(ui)))/dx = f(x,y)} if such functions exist,{} \"failed\" otherwise; \\spad{y} is an algebraic function of \\spad{x}.")) (|palgextint| (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") |#2| (|Kernel| |#2|) (|Kernel| |#2|) |#2|) "\\spad{palgextint(f, x, y, g)} returns functions \\spad{[h, c]} such that \\spad{dh/dx = f(x,y) - c g},{} where \\spad{y} is an algebraic function of \\spad{x}; returns \"failed\" if no such functions exist.")) (|palgint| (((|IntegrationResult| |#2|) |#2| (|Kernel| |#2|) (|Kernel| |#2|)) "\\spad{palgint(f, x, y)} returns the integral of \\spad{f(x,y)dx} where \\spad{y} is an algebraic function of \\spad{x}.")))
NIL
((|HasCategory| |#3| (LIST (QUOTE -662) (|devaluate| |#2|))))
-(-573 R -1708)
+(-573 R -1709)
((|constructor| (NIL "\\spadtype{PatternMatchIntegration} provides functions that use the pattern matcher to find some indefinite and definite integrals involving special functions and found in the litterature.")) (|pmintegrate| (((|Union| |#2| "failed") |#2| (|Symbol|) (|OrderedCompletion| |#2|) (|OrderedCompletion| |#2|)) "\\spad{pmintegrate(f, x = a..b)} returns the integral of \\spad{f(x)dx} from a to \\spad{b} if it can be found by the built-in pattern matching rules.") (((|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|)) "\\spad{pmintegrate(f, x)} returns either \"failed\" or \\spad{[g,h]} such that \\spad{integrate(f,x) = g + integrate(h,x)}.")) (|pmComplexintegrate| (((|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|)) "\\spad{pmComplexintegrate(f, x)} returns either \"failed\" or \\spad{[g,h]} such that \\spad{integrate(f,x) = g + integrate(h,x)}. It only looks for special complex integrals that pmintegrate does not return.")) (|splitConstant| (((|Record| (|:| |const| |#2|) (|:| |nconst| |#2|)) |#2| (|Symbol|)) "\\spad{splitConstant(f, x)} returns \\spad{[c, g]} such that \\spad{f = c * g} and \\spad{c} does not involve \\spad{t}.")))
NIL
((-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-1148)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-635)))))
-(-574 -1708 UP)
+(-574 -1709 UP)
((|constructor| (NIL "This package provides functions for the base case of the Risch algorithm.")) (|limitedint| (((|Union| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|)))))) "failed") (|Fraction| |#2|) (|List| (|Fraction| |#2|))) "\\spad{limitedint(f, [g1,...,gn])} returns fractions \\spad{[h,[[ci, gi]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,...,gn]},{} \\spad{ci' = 0},{} and \\spad{(h+sum(ci log(gi)))' = f},{} if possible,{} \"failed\" otherwise.")) (|extendedint| (((|Union| (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{extendedint(f, g)} returns fractions \\spad{[h, c]} such that \\spad{c' = 0} and \\spad{h' = f - cg},{} if \\spad{(h, c)} exist,{} \"failed\" otherwise.")) (|infieldint| (((|Union| (|Fraction| |#2|) "failed") (|Fraction| |#2|)) "\\spad{infieldint(f)} returns \\spad{g} such that \\spad{g' = f} or \"failed\" if the integral of \\spad{f} is not a rational function.")) (|integrate| (((|IntegrationResult| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{integrate(f)} returns \\spad{g} such that \\spad{g' = f}.")))
NIL
NIL
@@ -2232,27 +2232,27 @@ NIL
((|constructor| (NIL "Provides integer testing and retraction functions. Date Created: March 1990 Date Last Updated: 9 April 1991")) (|integerIfCan| (((|Union| (|Integer|) "failed") |#1|) "\\spad{integerIfCan(x)} returns \\spad{x} as an integer,{} \"failed\" if \\spad{x} is not an integer.")) (|integer?| (((|Boolean|) |#1|) "\\spad{integer?(x)} is \\spad{true} if \\spad{x} is an integer,{} \\spad{false} otherwise.")) (|integer| (((|Integer|) |#1|) "\\spad{integer(x)} returns \\spad{x} as an integer; error if \\spad{x} is not an integer.")))
NIL
NIL
-(-576 -1708)
+(-576 -1709)
((|constructor| (NIL "This package provides functions for the integration of rational functions.")) (|extendedIntegrate| (((|Union| (|Record| (|:| |ratpart| (|Fraction| (|Polynomial| |#1|))) (|:| |coeff| (|Fraction| (|Polynomial| |#1|)))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|Fraction| (|Polynomial| |#1|))) "\\spad{extendedIntegrate(f, x, g)} returns fractions \\spad{[h, c]} such that \\spad{dc/dx = 0} and \\spad{dh/dx = f - cg},{} if \\spad{(h, c)} exist,{} \"failed\" otherwise.")) (|limitedIntegrate| (((|Union| (|Record| (|:| |mainpart| (|Fraction| (|Polynomial| |#1|))) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| (|Polynomial| |#1|))) (|:| |logand| (|Fraction| (|Polynomial| |#1|))))))) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|) (|List| (|Fraction| (|Polynomial| |#1|)))) "\\spad{limitedIntegrate(f, x, [g1,...,gn])} returns fractions \\spad{[h, [[ci,gi]]]} such that the \\spad{gi}\\spad{'s} are among \\spad{[g1,...,gn]},{} \\spad{dci/dx = 0},{} and \\spad{d(h + sum(ci log(gi)))/dx = f} if possible,{} \"failed\" otherwise.")) (|infieldIntegrate| (((|Union| (|Fraction| (|Polynomial| |#1|)) "failed") (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{infieldIntegrate(f, x)} returns a fraction \\spad{g} such that \\spad{dg/dx = f} if \\spad{g} exists,{} \"failed\" otherwise.")) (|internalIntegrate| (((|IntegrationResult| (|Fraction| (|Polynomial| |#1|))) (|Fraction| (|Polynomial| |#1|)) (|Symbol|)) "\\spad{internalIntegrate(f, x)} returns \\spad{g} such that \\spad{dg/dx = f}.")))
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.")))
-((-3167 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-3170 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
NIL
NIL
-(-579 R -1708)
+(-579 R -1709)
((|constructor| (NIL "\\indented{1}{Tools for the integrator} Author: Manuel Bronstein Date Created: 25 April 1990 Date Last Updated: 9 June 1993 Keywords: elementary,{} function,{} integration.")) (|intPatternMatch| (((|IntegrationResult| |#2|) |#2| (|Symbol|) (|Mapping| (|IntegrationResult| |#2|) |#2| (|Symbol|)) (|Mapping| (|Union| (|Record| (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (|Symbol|))) "\\spad{intPatternMatch(f, x, int, pmint)} tries to integrate \\spad{f} first by using the integration function \\spad{int},{} and then by using the pattern match intetgration function \\spad{pmint} on any remaining unintegrable part.")) (|mkPrim| ((|#2| |#2| (|Symbol|)) "\\spad{mkPrim(f, x)} makes the logs in \\spad{f} which are linear in \\spad{x} primitive with respect to \\spad{x}.")) (|removeConstantTerm| ((|#2| |#2| (|Symbol|)) "\\spad{removeConstantTerm(f, x)} returns \\spad{f} minus any additive constant with respect to \\spad{x}.")) (|vark| (((|List| (|Kernel| |#2|)) (|List| |#2|) (|Symbol|)) "\\spad{vark([f1,...,fn],x)} returns the set-theoretic union of \\spad{(varselect(f1,x),...,varselect(fn,x))}.")) (|union| (((|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|))) "\\spad{union(l1, l2)} returns set-theoretic union of \\spad{l1} and \\spad{l2}.")) (|ksec| (((|Kernel| |#2|) (|Kernel| |#2|) (|List| (|Kernel| |#2|)) (|Symbol|)) "\\spad{ksec(k, [k1,...,kn], x)} returns the second top-level \\spad{ki} after \\spad{k} involving \\spad{x}.")) (|kmax| (((|Kernel| |#2|) (|List| (|Kernel| |#2|))) "\\spad{kmax([k1,...,kn])} returns the top-level \\spad{ki} for integration.")) (|varselect| (((|List| (|Kernel| |#2|)) (|List| (|Kernel| |#2|)) (|Symbol|)) "\\spad{varselect([k1,...,kn], x)} returns the \\spad{ki} which involve \\spad{x}.")))
NIL
((-12 (|HasCategory| |#1| (LIST (QUOTE -620) (LIST (QUOTE -899) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (LIST (QUOTE -893) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-288))) (|HasCategory| |#2| (QUOTE (-635))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186))))) (-12 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-288)))) (|HasCategory| |#1| (QUOTE (-562))))
-(-580 -1708 UP)
+(-580 -1709 UP)
((|constructor| (NIL "This package provides functions for the transcendental case of the Risch algorithm.")) (|monomialIntPoly| (((|Record| (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (|Mapping| |#2| |#2|)) "\\spad{monomialIntPoly(p, ')} returns [\\spad{q},{} \\spad{r}] such that \\spad{p = q' + r} and \\spad{degree(r) < degree(t')}. Error if \\spad{degree(t') < 2}.")) (|monomialIntegrate| (((|Record| (|:| |ir| (|IntegrationResult| (|Fraction| |#2|))) (|:| |specpart| (|Fraction| |#2|)) (|:| |polypart| |#2|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomialIntegrate(f, ')} returns \\spad{[ir, s, p]} such that \\spad{f = ir' + s + p} and all the squarefree factors of the denominator of \\spad{s} are special \\spad{w}.\\spad{r}.\\spad{t} the derivation '.")) (|expintfldpoly| (((|Union| (|LaurentPolynomial| |#1| |#2|) "failed") (|LaurentPolynomial| |#1| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|)) "\\spad{expintfldpoly(p, foo)} returns \\spad{q} such that \\spad{p' = q} or \"failed\" if no such \\spad{q} exists. Argument foo is a Risch differential equation function on \\spad{F}.")) (|primintfldpoly| (((|Union| |#2| "failed") |#2| (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) "\\spad{primintfldpoly(p, ', t')} returns \\spad{q} such that \\spad{p' = q} or \"failed\" if no such \\spad{q} exists. Argument \\spad{t'} is the derivative of the primitive generating the extension.")) (|primlimintfrac| (((|Union| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|)))))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|List| (|Fraction| |#2|))) "\\spad{primlimintfrac(f, ', [u1,...,un])} returns \\spad{[v, [c1,...,cn]]} such that \\spad{ci' = 0} and \\spad{f = v' + +/[ci * ui'/ui]}. Error: if \\spad{degree numer f >= degree denom f}.")) (|primextintfrac| (((|Union| (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Fraction| |#2|)) "\\spad{primextintfrac(f, ', g)} returns \\spad{[v, c]} such that \\spad{f = v' + c g} and \\spad{c' = 0}. Error: if \\spad{degree numer f >= degree denom f} or if \\spad{degree numer g >= degree denom g} or if \\spad{denom g} is not squarefree.")) (|explimitedint| (((|Union| (|Record| (|:| |answer| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|))))))) (|:| |a0| |#1|)) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|) (|List| (|Fraction| |#2|))) "\\spad{explimitedint(f, ', foo, [u1,...,un])} returns \\spad{[v, [c1,...,cn], a]} such that \\spad{ci' = 0},{} \\spad{f = v' + a + reduce(+,[ci * ui'/ui])},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}. Returns \"failed\" if no such \\spad{v},{} \\spad{ci},{} a exist. Argument \\spad{foo} is a Risch differential equation function on \\spad{F}.")) (|primlimitedint| (((|Union| (|Record| (|:| |answer| (|Record| (|:| |mainpart| (|Fraction| |#2|)) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| (|Fraction| |#2|)) (|:| |logand| (|Fraction| |#2|))))))) (|:| |a0| |#1|)) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (|List| (|Fraction| |#2|))) "\\spad{primlimitedint(f, ', foo, [u1,...,un])} returns \\spad{[v, [c1,...,cn], a]} such that \\spad{ci' = 0},{} \\spad{f = v' + a + reduce(+,[ci * ui'/ui])},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Returns \"failed\" if no such \\spad{v},{} \\spad{ci},{} a exist. Argument \\spad{foo} is an extended integration function on \\spad{F}.")) (|expextendedint| (((|Union| (|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |a0| |#1|)) (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|) (|Fraction| |#2|)) "\\spad{expextendedint(f, ', foo, g)} returns either \\spad{[v, c]} such that \\spad{f = v' + c g} and \\spad{c' = 0},{} or \\spad{[v, a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}. Returns \"failed\" if neither case can hold. Argument \\spad{foo} is a Risch differential equation function on \\spad{F}.")) (|primextendedint| (((|Union| (|Record| (|:| |answer| (|Fraction| |#2|)) (|:| |a0| |#1|)) (|Record| (|:| |ratpart| (|Fraction| |#2|)) (|:| |coeff| (|Fraction| |#2|))) "failed") (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (|Fraction| |#2|)) "\\spad{primextendedint(f, ', foo, g)} returns either \\spad{[v, c]} such that \\spad{f = v' + c g} and \\spad{c' = 0},{} or \\spad{[v, a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Returns \"failed\" if neither case can hold. Argument \\spad{foo} is an extended integration function on \\spad{F}.")) (|tanintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|List| |#1|) "failed") (|Integer|) |#1| |#1|)) "\\spad{tanintegrate(f, ', foo)} returns \\spad{[g, a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}; Argument foo is a Risch differential system solver on \\spad{F}.")) (|expintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Record| (|:| |ans| |#1|) (|:| |right| |#1|) (|:| |sol?| (|Boolean|))) (|Integer|) |#1|)) "\\spad{expintegrate(f, ', foo)} returns \\spad{[g, a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in \\spad{F}; Argument foo is a Risch differential equation solver on \\spad{F}.")) (|primintegrate| (((|Record| (|:| |answer| (|IntegrationResult| (|Fraction| |#2|))) (|:| |a0| |#1|)) (|Fraction| |#2|) (|Mapping| |#2| |#2|) (|Mapping| (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) "\\spad{primintegrate(f, ', foo)} returns \\spad{[g, a]} such that \\spad{f = g' + a},{} and \\spad{a = 0} or \\spad{a} has no integral in UP. Argument foo is an extended integration function on \\spad{F}.")))
NIL
NIL
-(-581 R -1708)
+(-581 R -1709)
((|constructor| (NIL "This package computes the inverse Laplace Transform.")) (|inverseLaplace| (((|Union| |#2| "failed") |#2| (|Symbol|) (|Symbol|)) "\\spad{inverseLaplace(f, s, t)} returns the Inverse Laplace transform of \\spad{f(s)} using \\spad{t} as the new variable or \"failed\" if unable to find a closed form.")))
NIL
NIL
@@ -2274,21 +2274,21 @@ 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.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
NIL
NIL
-(-589 R -1708)
+(-589 R -1709)
((|constructor| (NIL "This package allows a sum of logs over the roots of a polynomial to be expressed as explicit logarithms and arc tangents,{} provided that the indexing polynomial can be factored into quadratics.")) (|complexExpand| ((|#2| (|IntegrationResult| |#2|)) "\\spad{complexExpand(i)} returns the expanded complex function corresponding to \\spad{i}.")) (|expand| (((|List| |#2|) (|IntegrationResult| |#2|)) "\\spad{expand(i)} returns the list of possible real functions corresponding to \\spad{i}.")) (|split| (((|IntegrationResult| |#2|) (|IntegrationResult| |#2|)) "\\spad{split(u(x) + sum_{P(a)=0} Q(a,x))} returns \\spad{u(x) + sum_{P1(a)=0} Q(a,x) + ... + sum_{Pn(a)=0} Q(a,x)} where \\spad{P1},{}...,{}\\spad{Pn} are the factors of \\spad{P}.")))
NIL
NIL
-(-590 E -1708)
+(-590 E -1709)
((|constructor| (NIL "\\indented{1}{Internally used by the integration packages} Author: Manuel Bronstein Date Created: 1987 Date Last Updated: 12 August 1992 Keywords: integration.")) (|map| (((|Union| (|Record| (|:| |mainpart| |#2|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") (|Mapping| |#2| |#1|) (|Union| (|Record| (|:| |mainpart| |#1|) (|:| |limitedlogs| (|List| (|Record| (|:| |coeff| |#1|) (|:| |logand| |#1|))))) "failed")) "\\spad{map(f,ufe)} \\undocumented") (((|Union| |#2| "failed") (|Mapping| |#2| |#1|) (|Union| |#1| "failed")) "\\spad{map(f,ue)} \\undocumented") (((|Union| (|Record| (|:| |ratpart| |#2|) (|:| |coeff| |#2|)) "failed") (|Mapping| |#2| |#1|) (|Union| (|Record| (|:| |ratpart| |#1|) (|:| |coeff| |#1|)) "failed")) "\\spad{map(f,ure)} \\undocumented") (((|IntegrationResult| |#2|) (|Mapping| |#2| |#1|) (|IntegrationResult| |#1|)) "\\spad{map(f,ire)} \\undocumented")))
NIL
NIL
@@ -2296,9 +2296,9 @@ NIL
((|constructor| (NIL "This domain provides representations for the intermediate form data structure used by the Spad elaborator.")) (|irDef| (($ (|Identifier|) (|InternalTypeForm|) $) "\\spad{irDef(f,ts,e)} returns an IR representation for a definition of a function named \\spad{f},{} with signature \\spad{ts} and body \\spad{e}.")) (|irCtor| (($ (|Identifier|) (|InternalTypeForm|)) "\\spad{irCtor(n,t)} returns an IR for a constructor reference of type designated by the type form \\spad{t}")) (|irVar| (($ (|Identifier|) (|InternalTypeForm|)) "\\spad{irVar(x,t)} returns an IR for a variable reference of type designated by the type form \\spad{t}")))
NIL
NIL
-(-592 -1708)
+(-592 -1709)
((|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}.")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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,19 +2326,19 @@ NIL
NIL
(-599 |mn|)
((|constructor| (NIL "This domain implements low-level strings")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| (-145) (QUOTE (-856))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145))))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145)))))) (-2892 (|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)))) (-2892 (|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))))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| (-145) (QUOTE (-856))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145))))) (-12 (|HasCategory| (-145) (QUOTE (-1109))) (|HasCategory| (-145) (LIST (QUOTE -313) (QUOTE (-145)))))) (-2895 (|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)))) (-2895 (|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)}.")))
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}.")))
-(((-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))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2895 (|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 -3802) (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.}")))
-(((-4451 "*") |has| |#1| (-562)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-562)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . 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")))
@@ -2352,7 +2352,7 @@ NIL
((|constructor| (NIL "Functions defined on streams with entries in two sets.")) (|map| (((|Stream| |#3|) (|Mapping| |#3| |#1| |#2|) (|InfiniteTuple| |#1|) (|Stream| |#2|)) "\\spad{map(f,a,b)} \\undocumented") (((|Stream| |#3|) (|Mapping| |#3| |#1| |#2|) (|Stream| |#1|) (|InfiniteTuple| |#2|)) "\\spad{map(f,a,b)} \\undocumented") (((|InfiniteTuple| |#3|) (|Mapping| |#3| |#1| |#2|) (|InfiniteTuple| |#1|) (|InfiniteTuple| |#2|)) "\\spad{map(f,a,b)} \\undocumented")))
NIL
NIL
-(-606 R -1708 FG)
+(-606 R -1709 FG)
((|constructor| (NIL "This package provides transformations from trigonometric functions to exponentials and logarithms,{} and back. \\spad{F} and \\spad{FG} should be the same type of function space.")) (|trigs2explogs| ((|#3| |#3| (|List| (|Kernel| |#3|)) (|List| (|Symbol|))) "\\spad{trigs2explogs(f, [k1,...,kn], [x1,...,xm])} rewrites all the trigonometric functions appearing in \\spad{f} and involving one of the \\spad{xi's} in terms of complex logarithms and exponentials. A kernel of the form \\spad{tan(u)} is expressed using \\spad{exp(u)**2} if it is one of the \\spad{ki's},{} in terms of \\spad{exp(2*u)} otherwise.")) (|explogs2trigs| (((|Complex| |#2|) |#3|) "\\spad{explogs2trigs(f)} rewrites all the complex logs and exponentials appearing in \\spad{f} in terms of trigonometric functions.")) (F2FG ((|#3| |#2|) "\\spad{F2FG(a + sqrt(-1) b)} returns \\spad{a + i b}.")) (FG2F ((|#2| |#3|) "\\spad{FG2F(a + i b)} returns \\spad{a + sqrt(-1) b}.")) (GF2FG ((|#3| (|Complex| |#2|)) "\\spad{GF2FG(a + i b)} returns \\spad{a + i b} viewed as a function with the \\spad{i} pushed down into the coefficient domain.")))
NIL
NIL
@@ -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.")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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 -4450)) (|HasCategory| |#2| (QUOTE (-856))) (|HasAttribute| |#1| (QUOTE -4449)) (|HasCategory| |#3| (QUOTE (-1109))))
+((|HasAttribute| |#1| (QUOTE -4453)) (|HasCategory| |#2| (QUOTE (-856))) (|HasAttribute| |#1| (QUOTE -4452)) (|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).")))
-((-4446 -2892 (-1809 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))) (-4444 . T) (-4443 . T))
-((-2892 (|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|)))) (-2892 (-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|))))
+((-4449 -2895 (-1810 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))) (-4447 . T) (-4446 . T))
+((-2895 (|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|)))) (-2895 (-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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#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 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#1|)))))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#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 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#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}.")))
-((-4450 . T))
+((-4453 . 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")))
@@ -2412,7 +2412,7 @@ NIL
((|constructor| (NIL "A is convertible to \\spad{B} means any element of A can be converted into an element of \\spad{B},{} but not automatically by the interpreter.")) (|convert| ((|#1| $) "\\spad{convert(a)} transforms a into an element of \\spad{S}.")))
NIL
NIL
-(-621 -1708 UP)
+(-621 -1709 UP)
((|constructor| (NIL "\\spadtype{Kovacic} provides a modified Kovacic\\spad{'s} algorithm for solving explicitely irreducible 2nd order linear ordinary differential equations.")) (|kovacic| (((|Union| (|SparseUnivariatePolynomial| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{kovacic(a_0,a_1,a_2,ezfactor)} returns either \"failed\" or \\spad{P}(\\spad{u}) such that \\spad{\\$e^{\\int(-a_1/2a_2)} e^{\\int u}\\$} is a solution of \\indented{5}{\\spad{\\$a_2 y'' + a_1 y' + a0 y = 0\\$}} whenever \\spad{u} is a solution of \\spad{P u = 0}. The equation must be already irreducible over the rational functions. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|Union| (|SparseUnivariatePolynomial| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{kovacic(a_0,a_1,a_2)} returns either \"failed\" or \\spad{P}(\\spad{u}) such that \\spad{\\$e^{\\int(-a_1/2a_2)} e^{\\int u}\\$} is a solution of \\indented{5}{\\spad{a_2 y'' + a_1 y' + a0 y = 0}} whenever \\spad{u} is a solution of \\spad{P u = 0}. The equation must be already irreducible over the rational functions.")))
NIL
NIL
@@ -2434,19 +2434,19 @@ 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.")))
-((-4446 . T))
+((-4449 . 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}.")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . T))
((|HasCategory| |#1| (QUOTE (-854))))
-(-628 R -1708)
+(-628 R -1709)
((|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.")))
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")))
-((-4444 . T) (-4443 . T) ((-4451 "*") . T) (-4442 . T) (-4446 . T))
+((-4447 . T) (-4446 . T) ((-4454 "*") . T) (-4445 . T) (-4449 . 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}}.")))
-((-4446 . T))
+((-4449 . 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}}.")))
@@ -2472,30 +2472,30 @@ NIL
((|constructor| (NIL "Category for the transcendental Liouvillian functions.")) (|erf| (($ $) "\\spad{erf(x)} returns the error function of \\spad{x},{} \\spadignore{i.e.} \\spad{2 / sqrt(\\%pi)} times the integral of \\spad{exp(-x**2) dx}.")) (|dilog| (($ $) "\\spad{dilog(x)} returns the dilogarithm of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{log(x) / (1 - x) dx}.")) (|li| (($ $) "\\spad{li(x)} returns the logarithmic integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{dx / log(x)}.")) (|Ci| (($ $) "\\spad{Ci(x)} returns the cosine integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{cos(x) / x dx}.")) (|Si| (($ $) "\\spad{Si(x)} returns the sine integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{sin(x) / x dx}.")) (|Ei| (($ $) "\\spad{Ei(x)} returns the exponential integral of \\spad{x},{} \\spadignore{i.e.} the integral of \\spad{exp(x)/x dx}.")))
NIL
NIL
-(-636 R -1708)
+(-636 R -1709)
((|constructor| (NIL "This package provides liouvillian functions over an integral domain.")) (|integral| ((|#2| |#2| (|SegmentBinding| |#2|)) "\\spad{integral(f,x = a..b)} denotes the definite integral of \\spad{f} with respect to \\spad{x} from \\spad{a} to \\spad{b}.") ((|#2| |#2| (|Symbol|)) "\\spad{integral(f,x)} indefinite integral of \\spad{f} with respect to \\spad{x}.")) (|dilog| ((|#2| |#2|) "\\spad{dilog(f)} denotes the dilogarithm")) (|erf| ((|#2| |#2|) "\\spad{erf(f)} denotes the error function")) (|li| ((|#2| |#2|) "\\spad{li(f)} denotes the logarithmic integral")) (|Ci| ((|#2| |#2|) "\\spad{Ci(f)} denotes the cosine integral")) (|Si| ((|#2| |#2|) "\\spad{Si(f)} denotes the sine integral")) (|Ei| ((|#2| |#2|) "\\spad{Ei(f)} denotes the exponential integral")) (|operator| (((|BasicOperator|) (|BasicOperator|)) "\\spad{operator(op)} returns the Liouvillian operator based on \\spad{op}")) (|belong?| (((|Boolean|) (|BasicOperator|)) "\\spad{belong?(op)} checks if \\spad{op} is Liouvillian")))
NIL
NIL
-(-637 |lv| -1708)
+(-637 |lv| -1709)
((|constructor| (NIL "\\indented{1}{Given a Groebner basis \\spad{B} with respect to the total degree ordering for} a zero-dimensional ideal \\spad{I},{} compute a Groebner basis with respect to the lexicographical ordering by using linear algebra.")) (|transform| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|)) "\\spad{transform }\\undocumented")) (|choosemon| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{choosemon }\\undocumented")) (|intcompBasis| (((|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{intcompBasis }\\undocumented")) (|anticoord| (((|DistributedMultivariatePolynomial| |#1| |#2|) (|List| |#2|) (|DistributedMultivariatePolynomial| |#1| |#2|) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{anticoord }\\undocumented")) (|coord| (((|Vector| |#2|) (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{coord }\\undocumented")) (|computeBasis| (((|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{computeBasis }\\undocumented")) (|minPol| (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|)) "\\spad{minPol }\\undocumented") (((|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|)) (|OrderedVariableList| |#1|)) "\\spad{minPol }\\undocumented")) (|totolex| (((|List| (|DistributedMultivariatePolynomial| |#1| |#2|)) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{totolex }\\undocumented")) (|groebgen| (((|Record| (|:| |glbase| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |glval| (|List| (|Integer|)))) (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{groebgen }\\undocumented")) (|linGenPos| (((|Record| (|:| |gblist| (|List| (|DistributedMultivariatePolynomial| |#1| |#2|))) (|:| |gvlist| (|List| (|Integer|)))) (|List| (|HomogeneousDistributedMultivariatePolynomial| |#1| |#2|))) "\\spad{linGenPos }\\undocumented")))
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.")))
-((-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2340) (QUOTE (-52))))))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-1168) (QUOTE (-856))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 (-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 (|:| -2106 (-1168)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (QUOTE (-1109))))
+((-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2340) (QUOTE (-52))))))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-1168) (QUOTE (-856))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 (-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 (|:| -2107 (-1168)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 (-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) (-4444 . T) (-4443 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4447 . T) (-4446 . 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).")))
-((-4446 -2892 (-1809 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))) (-4444 . T) (-4443 . T))
-((-2892 (|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|)))) (-2892 (-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|))))
+((-4449 -2895 (-1810 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))) (-4447 . T) (-4446 . T))
+((-2895 (|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|)))) (-2895 (-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))}.")))
NIL
@@ -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
-((-1795 (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-368))))
+((-1796 (|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}.")))
-((-4446 . T))
+((-4449 . 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,8 +2530,8 @@ 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.")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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.")))
NIL
@@ -2542,8 +2542,8 @@ 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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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")))
NIL
@@ -2555,22 +2555,22 @@ 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 -4450)))
+((|HasAttribute| |#1| (QUOTE -4453)))
(-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
NIL
-(-658 R -1708 L)
+(-658 R -1709 L)
((|constructor| (NIL "\\spad{ElementaryFunctionLODESolver} provides the top-level functions for finding closed form solutions of linear ordinary differential equations and initial value problems.")) (|solve| (((|Union| |#2| "failed") |#3| |#2| (|Symbol|) |#2| (|List| |#2|)) "\\spad{solve(op, g, x, a, [y0,...,ym])} returns either the solution of the initial value problem \\spad{op y = g, y(a) = y0, y'(a) = y1,...} or \"failed\" if the solution cannot be found; \\spad{x} is the dependent variable.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) "failed") |#3| |#2| (|Symbol|)) "\\spad{solve(op, g, x)} returns either a solution of the ordinary differential equation \\spad{op y = g} or \"failed\" if no non-trivial solution can be found; When found,{} the solution is returned in the form \\spad{[h, [b1,...,bm]]} where \\spad{h} is a particular solution and and \\spad{[b1,...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{op y = 0}. A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; \\spad{x} is the dependent variable.")))
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}}")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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}")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . T))
NIL
-(-663 -1708 UP)
+(-663 -1709 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 -2832)
+(-664 A -1444)
((|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}}")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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) (-4444 . T) (-4443 . T))
+((|JacobiIdentity| . T) (|NullSquare| . T) (-4447 . T) (-4446 . 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,13 +2618,13 @@ 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}.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . T))
NIL
-(-673 -1708)
+(-673 -1709)
((|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}.")))
NIL
NIL
-(-674 -1708 |Row| |Col| M)
+(-674 -1709 |Row| |Col| M)
((|constructor| (NIL "This package solves linear system in the matrix form \\spad{AX = B}.")) (|rank| (((|NonNegativeInteger|) |#4| |#3|) "\\spad{rank(A,B)} computes the rank of the complete matrix \\spad{(A|B)} of the linear system \\spad{AX = B}.")) (|hasSolution?| (((|Boolean|) |#4| |#3|) "\\spad{hasSolution?(A,B)} tests if the linear system \\spad{AX = B} has a solution.")) (|particularSolution| (((|Union| |#3| "failed") |#4| |#3|) "\\spad{particularSolution(A,B)} finds a particular solution of the linear system \\spad{AX = B}.")) (|solve| (((|List| (|Record| (|:| |particular| (|Union| |#3| "failed")) (|:| |basis| (|List| |#3|)))) |#4| (|List| |#3|)) "\\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| |#3| "failed")) (|:| |basis| (|List| |#3|))) |#4| |#3|) "\\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}.")))
NIL
NIL
@@ -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.")))
-((-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)))) (-2892 (-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))) (-2892 (|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))))
+((-4449 . T) (-4452 . T) (-4446 . T) (-4447 . T))
+((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasAttribute| |#2| (QUOTE (-4454 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2895 (-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))) (-2895 (|HasAttribute| |#2| (QUOTE (-4454 "*"))) (|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
@@ -2655,7 +2655,7 @@ NIL
(-681 R)
((|constructor| (NIL "This domain represents three dimensional matrices over a general object type")) (|matrixDimensions| (((|Vector| (|NonNegativeInteger|)) $) "\\spad{matrixDimensions(x)} returns the dimensions of a matrix")) (|matrixConcat3D| (($ (|Symbol|) $ $) "\\spad{matrixConcat3D(s,x,y)} concatenates two 3-\\spad{D} matrices along a specified axis")) (|coerce| (((|PrimitiveArray| (|PrimitiveArray| (|PrimitiveArray| |#1|))) $) "\\spad{coerce(x)} moves from the domain to the representation type") (($ (|PrimitiveArray| (|PrimitiveArray| (|PrimitiveArray| |#1|)))) "\\spad{coerce(p)} moves from the representation type (PrimitiveArray PrimitiveArray PrimitiveArray \\spad{R}) to the domain")) (|setelt!| ((|#1| $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|) |#1|) "\\spad{setelt!(x,i,j,k,s)} (or \\spad{x}.\\spad{i}.\\spad{j}.k:=s) sets a specific element of the array to some value of type \\spad{R}")) (|elt| ((|#1| $ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{elt(x,i,j,k)} extract an element from the matrix \\spad{x}")) (|construct| (($ (|List| (|List| (|List| |#1|)))) "\\spad{construct(lll)} creates a 3-\\spad{D} matrix from a List List List \\spad{R} \\spad{lll}")) (|plus| (($ $ $) "\\spad{plus(x,y)} adds two matrices,{} term by term we note that they must be the same size")) (|identityMatrix| (($ (|NonNegativeInteger|)) "\\spad{identityMatrix(n)} create an identity matrix we note that this must be square")) (|zeroMatrix| (($ (|NonNegativeInteger|) (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{zeroMatrix(i,j,k)} create a matrix with all zero terms")))
NIL
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (QUOTE (-1058))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))))
(-682)
((|constructor| (NIL "This domain represents the syntax of a macro definition.")) (|body| (((|SpadAst|) $) "\\spad{body(m)} returns the right hand side of the definition \\spad{`m'}.")) (|head| (((|HeadAst|) $) "\\spad{head(m)} returns the head of the macro definition \\spad{`m'}. This is a list of identifiers starting with the name of the macro followed by the name of the parameters,{} if any.")))
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 (-4451 "*"))) (|HasCategory| |#2| (QUOTE (-311))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-562))))
+((|HasAttribute| |#2| (QUOTE (-4454 "*"))) (|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")))
-((-4449 . T) (-4450 . T))
+((-4452 . T) (-4453 . 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.")))
-((-4449 . T) (-4450 . T))
-((-2892 (-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))) (-2892 (-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|)))))
+((-4452 . T) (-4453 . T))
+((-2895 (-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))) (-2895 (-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 (-4454 "*"))) (|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
@@ -2720,7 +2720,7 @@ NIL
((|constructor| (NIL "This domain implements the notion of optional value,{} where a computation may fail to produce expected value.")) (|nothing| (($) "\\spad{nothing} represents failure or absence of value.")) (|autoCoerce| ((|#1| $) "\\spad{autoCoerce} is a courtesy coercion function used by the compiler in case it knows that \\spad{`x'} really is a \\spadtype{T}.")) (|case| (((|Boolean|) $ (|[\|\|]| |nothing|)) "\\spad{x case nothing} holds if the value for \\spad{x} is missing.") (((|Boolean|) $ (|[\|\|]| |#1|)) "\\spad{x case T} returns \\spad{true} if \\spad{x} is actually a data of type \\spad{T}.")) (|just| (($ |#1|) "\\spad{just x} injects the value \\spad{`x'} into \\%.")))
NIL
NIL
-(-698 S -1708 FLAF FLAS)
+(-698 S -1709 FLAF FLAS)
((|constructor| (NIL "\\indented{1}{\\spadtype{MultiVariableCalculusFunctions} Package provides several} \\indented{1}{functions for multivariable calculus.} These include gradient,{} hessian and jacobian,{} divergence and laplacian. Various forms for banded and sparse storage of matrices are included.")) (|bandedJacobian| (((|Matrix| |#2|) |#3| |#4| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{bandedJacobian(vf,xlist,kl,ku)} computes the jacobian,{} the matrix of first partial derivatives,{} of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist},{} \\spad{kl} is the number of nonzero subdiagonals,{} \\spad{ku} is the number of nonzero superdiagonals,{} kl+ku+1 being actual bandwidth. Stores the nonzero band in a matrix,{} dimensions kl+ku+1 by \\#xlist. The upper triangle is in the top \\spad{ku} rows,{} the diagonal is in row ku+1,{} the lower triangle in the last \\spad{kl} rows. Entries in a column in the band store correspond to entries in same column of full store. (The notation conforms to LAPACK/NAG-\\spad{F07} conventions.)")) (|jacobian| (((|Matrix| |#2|) |#3| |#4|) "\\spad{jacobian(vf,xlist)} computes the jacobian,{} the matrix of first partial derivatives,{} of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist}.")) (|bandedHessian| (((|Matrix| |#2|) |#2| |#4| (|NonNegativeInteger|)) "\\spad{bandedHessian(v,xlist,k)} computes the hessian,{} the matrix of second partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist},{} \\spad{k} is the semi-bandwidth,{} the number of nonzero subdiagonals,{} 2*k+1 being actual bandwidth. Stores the nonzero band in lower triangle in a matrix,{} dimensions \\spad{k+1} by \\#xlist,{} whose rows are the vectors formed by diagonal,{} subdiagonal,{} etc. of the real,{} full-matrix,{} hessian. (The notation conforms to LAPACK/NAG-\\spad{F07} conventions.)")) (|hessian| (((|Matrix| |#2|) |#2| |#4|) "\\spad{hessian(v,xlist)} computes the hessian,{} the matrix of second partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")) (|laplacian| ((|#2| |#2| |#4|) "\\spad{laplacian(v,xlist)} computes the laplacian of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")) (|divergence| ((|#2| |#3| |#4|) "\\spad{divergence(vf,xlist)} computes the divergence of the vector field \\spad{vf},{} \\spad{vf} a vector function of the variables listed in \\spad{xlist}.")) (|gradient| (((|Vector| |#2|) |#2| |#4|) "\\spad{gradient(v,xlist)} computes the gradient,{} the vector of first partial derivatives,{} of the scalar field \\spad{v},{} \\spad{v} a function of the variables listed in \\spad{xlist}.")))
NIL
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")))
-((-4442 . T) (-4447 |has| (-705) (-368)) (-4441 |has| (-705) (-368)) (-3175 . 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))) (-2892 (|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))) (-2892 (|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))))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-368))) (-12 (|HasCategory| (-705) (QUOTE (-354))) (|HasCategory| (-705) (QUOTE (-916))))) (-2892 (-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))) (-2892 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-368)))) (-2892 (-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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-146)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-354)))))
+((-4445 . T) (-4450 |has| (-705) (-368)) (-4444 |has| (-705) (-368)) (-3178 . T) (-4451 |has| (-705) (-6 -4451)) (-4448 |has| (-705) (-6 -4448)) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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))) (-2895 (|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))))) (-2895 (|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)))) (-2895 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-368))) (-12 (|HasCategory| (-705) (QUOTE (-354))) (|HasCategory| (-705) (QUOTE (-916))))) (-2895 (-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))) (-2895 (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-368)))) (-2895 (-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 -4451)) (|HasAttribute| (-705) (QUOTE -4448)) (-12 (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (-2895 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-705) (QUOTE (-311))) (|HasCategory| (-705) (QUOTE (-916)))) (|HasCategory| (-705) (QUOTE (-146)))) (-2895 (-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}.")))
-((-4450 . T))
+((-4453 . 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}.")))
@@ -2744,13 +2744,13 @@ NIL
((|constructor| (NIL "\\indented{1}{<description of package>} Author: Jim Wen Date Created: \\spad{??} Date Last Updated: October 1991 by Jon Steinbach Keywords: Examples: References:")) (|ptFunc| (((|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|))) "\\spad{ptFunc(a,b,c,d)} is an internal function exported in order to compile packages.")) (|meshPar1Var| (((|ThreeSpace| (|DoubleFloat|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Expression| (|Integer|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar1Var(s,t,u,f,s1,l)} \\undocumented")) (|meshFun2Var| (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Union| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "undefined") (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshFun2Var(f,g,s1,s2,l)} \\undocumented")) (|meshPar2Var| (((|ThreeSpace| (|DoubleFloat|)) (|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(sp,f,s1,s2,l)} \\undocumented") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|Point| (|DoubleFloat|)) (|DoubleFloat|) (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(f,s1,s2,l)} \\undocumented") (((|ThreeSpace| (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) (|Union| (|Mapping| (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|) (|DoubleFloat|)) "undefined") (|Segment| (|DoubleFloat|)) (|Segment| (|DoubleFloat|)) (|List| (|DrawOption|))) "\\spad{meshPar2Var(f,g,h,j,s1,s2,l)} \\undocumented")))
NIL
NIL
-(-704 OV E -1708 PG)
+(-704 OV E -1709 PG)
((|constructor| (NIL "Package for factorization of multivariate polynomials over finite fields.")) (|factor| (((|Factored| (|SparseUnivariatePolynomial| |#4|)) (|SparseUnivariatePolynomial| |#4|)) "\\spad{factor(p)} produces the complete factorization of the multivariate polynomial \\spad{p} over a finite field. \\spad{p} is represented as a univariate polynomial with multivariate coefficients over a finite field.") (((|Factored| |#4|) |#4|) "\\spad{factor(p)} produces the complete factorization of the multivariate polynomial \\spad{p} over a finite field.")))
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}")))
-((-3167 . T) (-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-3170 . T) (-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}")))
-((-4448 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4451 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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")))
@@ -2776,7 +2776,7 @@ NIL
((|constructor| (NIL "MakeRecord is used internally by the interpreter to create record types which are used for doing parallel iterations on streams.")) (|makeRecord| (((|Record| (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) "\\spad{makeRecord(a,b)} creates a record object with type Record(part1:S,{} part2:R),{} where part1 is \\spad{a} and part2 is \\spad{b}.")))
NIL
NIL
-(-712 S -2942 I)
+(-712 S -2945 I)
((|constructor| (NIL "transforms top-level objects into compiled functions.")) (|compiledFunction| (((|Mapping| |#3| |#2|) |#1| (|Symbol|)) "\\spad{compiledFunction(expr, x)} returns a function \\spad{f: D -> I} defined by \\spad{f(x) == expr}. Function \\spad{f} is compiled and directly applicable to objects of type \\spad{D}.")) (|unaryFunction| (((|Mapping| |#3| |#2|) (|Symbol|)) "\\spad{unaryFunction(a)} is a local function")))
NIL
NIL
@@ -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)}.}")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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| -3449 -2024 |exactQuo|)
+(-717 R |Mod| -3547 -3183 |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")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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")))
-(((-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))) (-2892 (|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)))) (-2892 (|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))))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4448 |has| |#1| (-368)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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))))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|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 -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-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}.")))
-((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
+((-4447 |has| |#1| (-174)) (-4446 |has| |#1| (-174)) (-4449 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))))
-(-721 R |Mod| -3449 -2024 |exactQuo|)
+(-721 R |Mod| -3547 -3183 |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")))
-((-4446 . T))
+((-4449 . 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")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . T))
NIL
-(-724 -1708)
+(-724 -1709)
((|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]]}.")))
-((-4446 . T))
+((-4449 . 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.")))
-((-4442 |has| |#1| (-368)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 |has| |#1| (-368)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
@@ -2860,7 +2860,7 @@ NIL
((|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.")))
NIL
NIL
-(-733 -1708 UP)
+(-733 -1709 UP)
((|constructor| (NIL "Tools for handling monomial extensions.")) (|decompose| (((|Record| (|:| |poly| |#2|) (|:| |normal| (|Fraction| |#2|)) (|:| |special| (|Fraction| |#2|))) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{decompose(f, D)} returns \\spad{[p,n,s]} such that \\spad{f = p+n+s},{} all the squarefree factors of \\spad{denom(n)} are normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} \\spad{denom(s)} is special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and \\spad{n} and \\spad{s} are proper fractions (no pole at infinity). \\spad{D} is the derivation to use.")) (|normalDenom| ((|#2| (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{normalDenom(f, D)} returns the product of all the normal factors of \\spad{denom(f)}. \\spad{D} is the derivation to use.")) (|splitSquarefree| (((|Record| (|:| |normal| (|Factored| |#2|)) (|:| |special| (|Factored| |#2|))) |#2| (|Mapping| |#2| |#2|)) "\\spad{splitSquarefree(p, D)} returns \\spad{[n_1 n_2\\^2 ... n_m\\^m, s_1 s_2\\^2 ... s_q\\^q]} such that \\spad{p = n_1 n_2\\^2 ... n_m\\^m s_1 s_2\\^2 ... s_q\\^q},{} each \\spad{n_i} is normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D} and each \\spad{s_i} is special \\spad{w}.\\spad{r}.\\spad{t} \\spad{D}. \\spad{D} is the derivation to use.")) (|split| (((|Record| (|:| |normal| |#2|) (|:| |special| |#2|)) |#2| (|Mapping| |#2| |#2|)) "\\spad{split(p, D)} returns \\spad{[n,s]} such that \\spad{p = n s},{} all the squarefree factors of \\spad{n} are normal \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D},{} and \\spad{s} is special \\spad{w}.\\spad{r}.\\spad{t}. \\spad{D}. \\spad{D} is the derivation to use.")))
NIL
NIL
@@ -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.")))
-(((-4451 "*") |has| |#2| (-174)) (-4442 |has| |#2| (-562)) (-4447 |has| |#2| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#2| (QUOTE (-916))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4454 "*") |has| |#2| (-174)) (-4445 |has| |#2| (-562)) (-4450 |has| |#2| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (-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}.")))
-((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
+((-4447 |has| |#1| (-174)) (-4446 |has| |#1| (-174)) (-4449 . 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.")))
-((-4439 . T) (-4450 . T))
+((-4442 . T) (-4453 . 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}.")))
-((-4449 . T) (-4439 . T) (-4450 . T))
+((-4452 . T) (-4442 . T) (-4453 . 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}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4444 . T) (-4443 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4447 . T) (-4446 . T) (-4449 . 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}.")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . 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}.")))
@@ -3012,11 +3012,11 @@ NIL
((|constructor| (NIL "This package computes explicitly eigenvalues and eigenvectors of matrices with entries over the complex rational numbers. The results are expressed either as complex floating numbers or as complex rational numbers depending on the type of the precision parameter.")) (|complexEigenvectors| (((|List| (|Record| (|:| |outval| (|Complex| |#1|)) (|:| |outmult| (|Integer|)) (|:| |outvect| (|List| (|Matrix| (|Complex| |#1|)))))) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) |#1|) "\\spad{complexEigenvectors(m,eps)} returns a list of records each one containing a complex eigenvalue,{} its algebraic multiplicity,{} and a list of associated eigenvectors. All these results are computed to precision \\spad{eps} and are expressed as complex floats or complex rational numbers depending on the type of \\spad{eps} (float or rational).")) (|complexEigenvalues| (((|List| (|Complex| |#1|)) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) |#1|) "\\spad{complexEigenvalues(m,eps)} computes the eigenvalues of the matrix \\spad{m} to precision \\spad{eps}. The eigenvalues are expressed as complex floats or complex rational numbers depending on the type of \\spad{eps} (float or rational).")) (|characteristicPolynomial| (((|Polynomial| (|Complex| (|Fraction| (|Integer|)))) (|Matrix| (|Complex| (|Fraction| (|Integer|)))) (|Symbol|)) "\\spad{characteristicPolynomial(m,x)} returns the characteristic polynomial of the matrix \\spad{m} expressed as polynomial over Complex Rationals with variable \\spad{x}.") (((|Polynomial| (|Complex| (|Fraction| (|Integer|)))) (|Matrix| (|Complex| (|Fraction| (|Integer|))))) "\\spad{characteristicPolynomial(m)} returns the characteristic polynomial of the matrix \\spad{m} expressed as polynomial over complex rationals with a new symbol as variable.")))
NIL
NIL
-(-771 -1708)
+(-771 -1709)
((|constructor| (NIL "\\spadtype{NumericContinuedFraction} provides functions \\indented{2}{for converting floating point numbers to continued fractions.}")) (|continuedFraction| (((|ContinuedFraction| (|Integer|)) |#1|) "\\spad{continuedFraction(f)} converts the floating point number \\spad{f} to a reduced continued fraction.")))
NIL
NIL
-(-772 P -1708)
+(-772 P -1709)
((|constructor| (NIL "This package provides a division and related operations for \\spadtype{MonogenicLinearOperator}\\spad{s} over a \\spadtype{Field}. Since the multiplication is in general non-commutative,{} these operations all have left- and right-hand versions. This package provides the operations based on left-division.")) (|leftLcm| ((|#1| |#1| |#1|) "\\spad{leftLcm(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.")) (|leftGcd| ((|#1| |#1| |#1|) "\\spad{leftGcd(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 left-division.")) (|leftExactQuotient| (((|Union| |#1| "failed") |#1| |#1|) "\\spad{leftExactQuotient(a,b)} computes the value \\spad{q},{} if it exists,{} \\indented{1}{such that \\spad{a = b*q}.}")) (|leftRemainder| ((|#1| |#1| |#1|) "\\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| ((|#1| |#1| |#1|) "\\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| |#1|) (|:| |remainder| |#1|)) |#1| |#1|) "\\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{''}.")))
NIL
NIL
@@ -3024,7 +3024,7 @@ NIL
NIL
NIL
NIL
-(-774 UP -1708)
+(-774 UP -1709)
((|constructor| (NIL "In this package \\spad{F} is a framed algebra over the integers (typically \\spad{F = Z[a]} for some algebraic integer a). The package provides functions to compute the integral closure of \\spad{Z} in the quotient quotient field of \\spad{F}.")) (|localIntegralBasis| (((|Record| (|:| |basis| (|Matrix| (|Integer|))) (|:| |basisDen| (|Integer|)) (|:| |basisInv| (|Matrix| (|Integer|)))) (|Integer|)) "\\spad{integralBasis(p)} returns a record \\spad{[basis,basisDen,basisInv]} containing information regarding the local integral closure of \\spad{Z} at the prime \\spad{p} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{Z}-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)}.")) (|integralBasis| (((|Record| (|:| |basis| (|Matrix| (|Integer|))) (|:| |basisDen| (|Integer|)) (|:| |basisInv| (|Matrix| (|Integer|))))) "\\spad{integralBasis()} returns a record \\spad{[basis,basisDen,basisInv]} containing information regarding the integral closure of \\spad{Z} in the quotient field of \\spad{F},{} where \\spad{F} is a framed algebra with \\spad{Z}-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)}.")) (|discriminant| (((|Integer|)) "\\spad{discriminant()} returns the discriminant of the integral closure of \\spad{Z} in the quotient field of the framed algebra \\spad{F}.")))
NIL
NIL
@@ -3038,9 +3038,9 @@ 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.")))
-(((-4451 "*") . T))
+(((-4454 "*") . T))
NIL
-(-778 R -1708)
+(-778 R -1709)
((|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.")))
NIL
NIL
@@ -3060,7 +3060,7 @@ NIL
((|constructor| (NIL "A package for computing normalized assocites of univariate polynomials with coefficients in a tower of simple extensions of a field.\\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 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}{[3] \\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.}")) (|normInvertible?| (((|List| (|Record| (|:| |val| (|Boolean|)) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{normInvertible?(\\spad{p},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|outputArgs| (((|Void|) (|String|) (|String|) |#4| |#5|) "\\axiom{outputArgs(\\spad{s1},{}\\spad{s2},{}\\spad{p},{}\\spad{ts})} is an internal subroutine,{} exported only for developement.")) (|normalize| (((|List| (|Record| (|:| |val| |#4|) (|:| |tower| |#5|))) |#4| |#5|) "\\axiom{normalize(\\spad{p},{}\\spad{ts})} normalizes \\axiom{\\spad{p}} \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")) (|normalizedAssociate| ((|#4| |#4| |#5|) "\\axiom{normalizedAssociate(\\spad{p},{}\\spad{ts})} returns a normalized polynomial \\axiom{\\spad{n}} \\spad{w}.\\spad{r}.\\spad{t}. \\spad{ts} such that \\axiom{\\spad{n}} and \\axiom{\\spad{p}} are associates \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts} and assuming that \\axiom{\\spad{p}} is invertible \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")) (|recip| (((|Record| (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) "\\axiom{recip(\\spad{p},{}\\spad{ts})} returns the inverse of \\axiom{\\spad{p}} \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts} assuming that \\axiom{\\spad{p}} is invertible \\spad{w}.\\spad{r}.\\spad{t} \\spad{ts}.")))
NIL
NIL
-(-783 -1708 |ExtF| |SUEx| |ExtP| |n|)
+(-783 -1709 |ExtF| |SUEx| |ExtP| |n|)
((|constructor| (NIL "This package \\undocumented")) (|Frobenius| ((|#4| |#4|) "\\spad{Frobenius(x)} \\undocumented")) (|retractIfCan| (((|Union| (|SparseUnivariatePolynomial| (|SparseUnivariatePolynomial| |#1|)) "failed") |#4|) "\\spad{retractIfCan(x)} \\undocumented")) (|normFactors| (((|List| |#4|) |#4|) "\\spad{normFactors(x)} \\undocumented")))
NIL
NIL
@@ -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.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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))))) (-2892 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1795 (|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)))))) (-2892 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1795 (|HasCategory| |#1| (QUOTE (-551)))) (-1795 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1795 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570))))) (-1795 (|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)))) (-1795 (|HasCategory| |#1| (LIST (QUOTE -1001) (QUOTE (-570))))))) (|HasAttribute| |#1| (QUOTE -4447)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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))))) (-2895 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1796 (|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)))))) (-2895 (-12 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1796 (|HasCategory| |#1| (QUOTE (-551)))) (-1796 (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))) (-12 (|HasCategory| |#2| (LIST (QUOTE -620) (QUOTE (-1186)))) (-1796 (|HasCategory| |#1| (LIST (QUOTE -38) (QUOTE (-570))))) (-1796 (|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)))) (-1796 (|HasCategory| |#1| (LIST (QUOTE -1001) (QUOTE (-570))))))) (|HasAttribute| |#1| (QUOTE -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-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)}")))
-(((-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))) (-2892 (|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)))) (-2892 (|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))))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4448 |has| |#1| (-368)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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))))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|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 -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-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.}")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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,25 +3142,25 @@ 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}.")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . T))
NIL
-(-804 -2892 R OS S)
+(-804 -2895 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}.")))
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}.")))
-((-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|))) (-2892 (|HasCategory| (-1008 |#1|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2892 (|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)))))
+((-4446 . T) (-4447 . T) (-4449 . 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|))) (-2895 (|HasCategory| (-1008 |#1|) (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2895 (|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.")))
NIL
NIL
-(-807 R -1708 L)
+(-807 R -1709 L)
((|constructor| (NIL "Solution of linear ordinary differential equations,{} constant coefficient case.")) (|constDsolve| (((|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#3| |#2| (|Symbol|)) "\\spad{constDsolve(op, g, x)} returns \\spad{[f, [y1,...,ym]]} where \\spad{f} is a particular solution of the equation \\spad{op y = g},{} and the \\spad{yi}\\spad{'s} form a basis for the solutions of \\spad{op y = 0}.")))
NIL
NIL
-(-808 R -1708)
+(-808 R -1709)
((|constructor| (NIL "\\spad{ElementaryFunctionODESolver} provides the top-level functions for finding closed form solutions of ordinary differential equations and initial value problems.")) (|solve| (((|Union| |#2| "failed") |#2| (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{solve(eq, y, x = a, [y0,...,ym])} returns either the solution of the initial value problem \\spad{eq, y(a) = y0, y'(a) = y1,...} or \"failed\" if the solution cannot be found; error if the equation is not one linear ordinary or of the form \\spad{dy/dx = f(x,y)}.") (((|Union| |#2| "failed") (|Equation| |#2|) (|BasicOperator|) (|Equation| |#2|) (|List| |#2|)) "\\spad{solve(eq, y, x = a, [y0,...,ym])} returns either the solution of the initial value problem \\spad{eq, y(a) = y0, y'(a) = y1,...} or \"failed\" if the solution cannot be found; error if the equation is not one linear ordinary or of the form \\spad{dy/dx = f(x,y)}.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#2| "failed") |#2| (|BasicOperator|) (|Symbol|)) "\\spad{solve(eq, y, x)} returns either a solution of the ordinary differential equation \\spad{eq} or \"failed\" if no non-trivial solution can be found; If the equation is linear ordinary,{} a solution is of the form \\spad{[h, [b1,...,bm]]} where \\spad{h} is a particular solution and and \\spad{[b1,...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{f(x,y) = 0}; A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; If the equation is of the form {dy/dx = \\spad{f}(\\spad{x},{}\\spad{y})},{} a solution is of the form \\spad{h(x,y)} where \\spad{h(x,y) = c} is a first integral of the equation for any constant \\spad{c}.") (((|Union| (|Record| (|:| |particular| |#2|) (|:| |basis| (|List| |#2|))) |#2| "failed") (|Equation| |#2|) (|BasicOperator|) (|Symbol|)) "\\spad{solve(eq, y, x)} returns either a solution of the ordinary differential equation \\spad{eq} or \"failed\" if no non-trivial solution can be found; If the equation is linear ordinary,{} a solution is of the form \\spad{[h, [b1,...,bm]]} where \\spad{h} is a particular solution and \\spad{[b1,...bm]} are linearly independent solutions of the associated homogenuous equation \\spad{f(x,y) = 0}; A full basis for the solutions of the homogenuous equation is not always returned,{} only the solutions which were found; If the equation is of the form {dy/dx = \\spad{f}(\\spad{x},{}\\spad{y})},{} a solution is of the form \\spad{h(x,y)} where \\spad{h(x,y) = c} is a first integral of the equation for any constant \\spad{c}; error if the equation is not one of those 2 forms.") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|List| |#2|) (|List| (|BasicOperator|)) (|Symbol|)) "\\spad{solve([eq_1,...,eq_n], [y_1,...,y_n], x)} returns either \"failed\" or,{} if the equations form a fist order linear system,{} a solution of the form \\spad{[y_p, [b_1,...,b_n]]} where \\spad{h_p} is a particular solution and \\spad{[b_1,...b_m]} are linearly independent solutions of the associated homogenuous system. error if the equations do not form a first order linear system") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|List| (|Equation| |#2|)) (|List| (|BasicOperator|)) (|Symbol|)) "\\spad{solve([eq_1,...,eq_n], [y_1,...,y_n], x)} returns either \"failed\" or,{} if the equations form a fist order linear system,{} a solution of the form \\spad{[y_p, [b_1,...,b_n]]} where \\spad{h_p} is a particular solution and \\spad{[b_1,...b_m]} are linearly independent solutions of the associated homogenuous system. error if the equations do not form a first order linear system") (((|Union| (|List| (|Vector| |#2|)) "failed") (|Matrix| |#2|) (|Symbol|)) "\\spad{solve(m, x)} returns a basis for the solutions of \\spad{D y = m y}. \\spad{x} is the dependent variable.") (((|Union| (|Record| (|:| |particular| (|Vector| |#2|)) (|:| |basis| (|List| (|Vector| |#2|)))) "failed") (|Matrix| |#2|) (|Vector| |#2|) (|Symbol|)) "\\spad{solve(m, v, x)} returns \\spad{[v_p, [v_1,...,v_m]]} such that the solutions of the system \\spad{D y = m y + v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{D y = m y}. \\spad{x} is the dependent variable.")))
NIL
NIL
@@ -3168,7 +3168,7 @@ NIL
((|constructor| (NIL "\\axiom{ODEIntensityFunctionsTable()} provides a dynamic table and a set of functions to store details found out about sets of ODE\\spad{'s}.")) (|showIntensityFunctions| (((|Union| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|))) "failed") (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{showIntensityFunctions(k)} returns the entries in the table of intensity functions \\spad{k}.")) (|insert!| (($ (|Record| (|:| |key| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|)))))) "\\spad{insert!(r)} inserts an entry \\spad{r} into theIFTable")) (|iFTable| (($ (|List| (|Record| (|:| |key| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) (|:| |entry| (|Record| (|:| |stiffness| (|Float|)) (|:| |stability| (|Float|)) (|:| |expense| (|Float|)) (|:| |accuracy| (|Float|)) (|:| |intermediateResults| (|Float|))))))) "\\spad{iFTable(l)} creates an intensity-functions table from the elements of \\spad{l}.")) (|keys| (((|List| (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) $) "\\spad{keys(tab)} returns the list of keys of \\spad{f}")) (|clearTheIFTable| (((|Void|)) "\\spad{clearTheIFTable()} clears the current table of intensity functions.")) (|showTheIFTable| (($) "\\spad{showTheIFTable()} returns the current table of intensity functions.")))
NIL
NIL
-(-810 R -1708)
+(-810 R -1709)
((|constructor| (NIL "\\spadtype{ODEIntegration} provides an interface to the integrator. This package is intended for use by the differential equations solver but not at top-level.")) (|diff| (((|Mapping| |#2| |#2|) (|Symbol|)) "\\spad{diff(x)} returns the derivation with respect to \\spad{x}.")) (|expint| ((|#2| |#2| (|Symbol|)) "\\spad{expint(f, x)} returns e^{the integral of \\spad{f} with respect to \\spad{x}}.")) (|int| ((|#2| |#2| (|Symbol|)) "\\spad{int(f, x)} returns the integral of \\spad{f} with respect to \\spad{x}.")))
NIL
NIL
@@ -3176,11 +3176,11 @@ NIL
((|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalODEProblem|) (|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 ODE problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} listed in \\axiom{\\spad{R}} of \\axiom{category} \\axiomType{OrdinaryDifferentialEquationsSolverCategory} 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. It predicts the likely most effective NAG numerical Library routine to solve the input set of ODEs by checking various attributes of the system of ODEs and calculating a measure of compatibility of each routine to these attributes.") (((|Record| (|:| |measure| (|Float|)) (|:| |name| (|String|)) (|:| |explanations| (|List| (|String|)))) (|NumericalODEProblem|)) "\\spad{measure(prob)} is a top level ANNA function for identifying the most appropriate numerical routine from those in the routines table provided for solving the numerical ODE problem defined by \\axiom{\\spad{prob}}. \\blankline It calls each \\axiom{domain} of \\axiom{category} \\axiomType{OrdinaryDifferentialEquationsSolverCategory} 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. It predicts the likely most effective NAG numerical Library routine to solve the input set of ODEs by checking various attributes of the system of ODEs and calculating a measure of compatibility of each routine to these attributes.")) (|solve| (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|List| (|Float|)) (|Float|) (|Float|)) "\\spad{solve(f,xStart,xEnd,yInitial,G,intVals,epsabs,epsrel)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to an absolute error requirement \\axiom{\\spad{epsabs}} and relative error \\axiom{\\spad{epsrel}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} 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 The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,xStart,xEnd,yInitial,G,intVals,tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} 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 The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,xStart,xEnd,yInitial,intVals,tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The values of \\spad{Y}[1]..\\spad{Y}[\\spad{n}] will be output for the values of \\spad{X} in \\axiom{\\spad{intVals}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} 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 The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Expression| (|Float|)) (|Float|)) "\\spad{solve(f,xStart,xEnd,yInitial,G,tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. The calculation will stop if the function \\spad{G}(\\spad{X},{}\\spad{Y}[1],{}..,{}\\spad{Y}[\\spad{n}]) evaluates to zero before \\spad{X} = \\spad{xEnd}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} 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 The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|)) (|Float|)) "\\spad{solve(f,xStart,xEnd,yInitial,tol)} is a top level ANNA function to solve numerically a system of ordinary differential equations,{} \\axiom{\\spad{f}},{} \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}] from \\axiom{\\spad{xStart}} to \\axiom{\\spad{xEnd}} with the initial values for \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (\\axiom{\\spad{yInitial}}) to a tolerance \\axiom{\\spad{tol}}. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} 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 The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|Vector| (|Expression| (|Float|))) (|Float|) (|Float|) (|List| (|Float|))) "\\spad{solve(f,xStart,xEnd,yInitial)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with a starting value for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions) and a final value of \\spad{X}. A default value is used for the accuracy requirement. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} 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 The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|NumericalODEProblem|) (|RoutinesTable|)) "\\spad{solve(odeProblem,R)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with starting values for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions),{} a final value of \\spad{X},{} an accuracy requirement and any intermediate points at which the result is required. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} contained in the table of routines \\axiom{\\spad{R}} 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 The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.") (((|Result|) (|NumericalODEProblem|)) "\\spad{solve(odeProblem)} is a top level ANNA function to solve numerically a system of ordinary differential equations \\spadignore{i.e.} equations for the derivatives \\spad{Y}[1]'..\\spad{Y}[\\spad{n}]' defined in terms of \\spad{X},{}\\spad{Y}[1]..\\spad{Y}[\\spad{n}],{} together with starting values for \\spad{X} and \\spad{Y}[1]..\\spad{Y}[\\spad{n}] (called the initial conditions),{} a final value of \\spad{X},{} an accuracy requirement and any intermediate points at which the result is required. \\blankline It iterates over the \\axiom{domains} of \\axiomType{OrdinaryDifferentialEquationsSolverCategory} 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 The method used to perform the numerical process will be one of the routines contained in the NAG numerical Library. The function predicts the likely most effective routine by checking various attributes of the system of ODE\\spad{'s} and calculating a measure of compatibility of each routine to these attributes. \\blankline It then calls the resulting `best' routine.")))
NIL
NIL
-(-812 -1708 UP UPUP R)
+(-812 -1709 UP UPUP R)
((|constructor| (NIL "In-field solution of an linear ordinary differential equation,{} pure algebraic case.")) (|algDsolve| (((|Record| (|:| |particular| (|Union| |#4| "failed")) (|:| |basis| (|List| |#4|))) (|LinearOrdinaryDifferentialOperator1| |#4|) |#4|) "\\spad{algDsolve(op, g)} returns \\spad{[\"failed\", []]} if the equation \\spad{op y = g} has no solution in \\spad{R}. Otherwise,{} it returns \\spad{[f, [y1,...,ym]]} where \\spad{f} is a particular rational solution and the \\spad{y_i's} form a basis for the solutions in \\spad{R} of the homogeneous equation.")))
NIL
NIL
-(-813 -1708 UP L LQ)
+(-813 -1709 UP L LQ)
((|constructor| (NIL "\\spad{PrimitiveRatDE} provides functions for in-field solutions of linear \\indented{1}{ordinary differential equations,{} in the transcendental case.} \\indented{1}{The derivation to use is given by the parameter \\spad{L}.}")) (|splitDenominator| (((|Record| (|:| |eq| |#3|) (|:| |rh| (|List| (|Fraction| |#2|)))) |#4| (|List| (|Fraction| |#2|))) "\\spad{splitDenominator(op, [g1,...,gm])} returns \\spad{op0, [h1,...,hm]} such that the equations \\spad{op y = c1 g1 + ... + cm gm} and \\spad{op0 y = c1 h1 + ... + cm hm} have the same solutions.")) (|indicialEquation| ((|#2| |#4| |#1|) "\\spad{indicialEquation(op, a)} returns the indicial equation of \\spad{op} at \\spad{a}.") ((|#2| |#3| |#1|) "\\spad{indicialEquation(op, a)} returns the indicial equation of \\spad{op} at \\spad{a}.")) (|indicialEquations| (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#4| |#2|) "\\spad{indicialEquations(op, p)} returns \\spad{[[d1,e1],...,[dq,eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op} above the roots of \\spad{p},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#4|) "\\spad{indicialEquations op} returns \\spad{[[d1,e1],...,[dq,eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#3| |#2|) "\\spad{indicialEquations(op, p)} returns \\spad{[[d1,e1],...,[dq,eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op} above the roots of \\spad{p},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.") (((|List| (|Record| (|:| |center| |#2|) (|:| |equation| |#2|))) |#3|) "\\spad{indicialEquations op} returns \\spad{[[d1,e1],...,[dq,eq]]} where the \\spad{d_i}\\spad{'s} are the affine singularities of \\spad{op},{} and the \\spad{e_i}\\spad{'s} are the indicial equations at each \\spad{d_i}.")) (|denomLODE| ((|#2| |#3| (|List| (|Fraction| |#2|))) "\\spad{denomLODE(op, [g1,...,gm])} returns a polynomial \\spad{d} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{p/d} for some polynomial \\spad{p}.") (((|Union| |#2| "failed") |#3| (|Fraction| |#2|)) "\\spad{denomLODE(op, g)} returns a polynomial \\spad{d} such that any rational solution of \\spad{op y = g} is of the form \\spad{p/d} for some polynomial \\spad{p},{} and \"failed\",{} if the equation has no rational solution.")))
NIL
NIL
@@ -3188,41 +3188,41 @@ NIL
((|retract| (((|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|))) $) "\\spad{retract(x)} \\undocumented{}")) (|coerce| (($ (|Record| (|:| |xinit| (|DoubleFloat|)) (|:| |xend| (|DoubleFloat|)) (|:| |fn| (|Vector| (|Expression| (|DoubleFloat|)))) (|:| |yinit| (|List| (|DoubleFloat|))) (|:| |intvals| (|List| (|DoubleFloat|))) (|:| |g| (|Expression| (|DoubleFloat|))) (|:| |abserr| (|DoubleFloat|)) (|:| |relerr| (|DoubleFloat|)))) "\\spad{coerce(x)} \\undocumented{}")))
NIL
NIL
-(-815 -1708 UP L LQ)
+(-815 -1709 UP L LQ)
((|constructor| (NIL "In-field solution of Riccati equations,{} primitive case.")) (|changeVar| ((|#3| |#3| (|Fraction| |#2|)) "\\spad{changeVar(+/[ai D^i], a)} returns the operator \\spad{+/[ai (D+a)^i]}.") ((|#3| |#3| |#2|) "\\spad{changeVar(+/[ai D^i], a)} returns the operator \\spad{+/[ai (D+a)^i]}.")) (|singRicDE| (((|List| (|Record| (|:| |frac| (|Fraction| |#2|)) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#2|) |#2| (|SparseUnivariatePolynomial| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{singRicDE(op, zeros, ezfactor)} returns \\spad{[[f1, L1], [f2, L2], ... , [fk, Lk]]} such that the singular part of any rational solution of the associated Riccati equation of \\spad{op y=0} must be one of the \\spad{fi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z=y e^{-int p}} is \\spad{Li z=0}. \\spad{zeros(C(x),H(x,y))} returns all the \\spad{P_i(x)}\\spad{'s} such that \\spad{H(x,P_i(x)) = 0 modulo C(x)}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.")) (|polyRicDE| (((|List| (|Record| (|:| |poly| |#2|) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#1|) |#2|)) "\\spad{polyRicDE(op, zeros)} returns \\spad{[[p1, L1], [p2, L2], ... , [pk, Lk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y=0} must be one of the \\spad{pi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z=y e^{-int p}} is \\spad{Li z =0}. \\spad{zeros} is a zero finder in \\spad{UP}.")) (|constantCoefficientRicDE| (((|List| (|Record| (|:| |constant| |#1|) (|:| |eq| |#3|))) |#3| (|Mapping| (|List| |#1|) |#2|)) "\\spad{constantCoefficientRicDE(op, ric)} returns \\spad{[[a1, L1], [a2, L2], ... , [ak, Lk]]} such that any rational solution with no polynomial part of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{ai}\\spad{'s} in which case the equation for \\spad{z = y e^{-int ai}} is \\spad{Li z = 0}. \\spad{ric} is a Riccati equation solver over \\spad{F},{} whose input is the associated linear equation.")) (|leadingCoefficientRicDE| (((|List| (|Record| (|:| |deg| (|NonNegativeInteger|)) (|:| |eq| |#2|))) |#3|) "\\spad{leadingCoefficientRicDE(op)} returns \\spad{[[m1, p1], [m2, p2], ... , [mk, pk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must have degree \\spad{mj} for some \\spad{j},{} and its leading coefficient is then a zero of \\spad{pj}. In addition,{}\\spad{m1>m2> ... >mk}.")) (|denomRicDE| ((|#2| |#3|) "\\spad{denomRicDE(op)} returns a polynomial \\spad{d} such that any rational solution of the associated Riccati equation of \\spad{op y = 0} is of the form \\spad{p/d + q'/q + r} for some polynomials \\spad{p} and \\spad{q} and a reduced \\spad{r}. Also,{} \\spad{deg(p) < deg(d)} and {\\spad{gcd}(\\spad{d},{}\\spad{q}) = 1}.")))
NIL
NIL
-(-816 -1708 UP)
+(-816 -1709 UP)
((|constructor| (NIL "\\spad{RationalLODE} provides functions for in-field solutions of linear \\indented{1}{ordinary differential equations,{} in the rational case.}")) (|indicialEquationAtInfinity| ((|#2| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))) "\\spad{indicialEquationAtInfinity op} returns the indicial equation of \\spad{op} at infinity.") ((|#2| (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{indicialEquationAtInfinity op} returns the indicial equation of \\spad{op} at infinity.")) (|ratDsolve| (((|Record| (|:| |basis| (|List| (|Fraction| |#2|))) (|:| |mat| (|Matrix| |#1|))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|List| (|Fraction| |#2|))) "\\spad{ratDsolve(op, [g1,...,gm])} returns \\spad{[[h1,...,hq], M]} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{d1 h1 + ... + dq hq} where \\spad{M [d1,...,dq,c1,...,cm] = 0}.") (((|Record| (|:| |particular| (|Union| (|Fraction| |#2|) "failed")) (|:| |basis| (|List| (|Fraction| |#2|)))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{ratDsolve(op, g)} returns \\spad{[\"failed\", []]} if the equation \\spad{op y = g} has no rational solution. Otherwise,{} it returns \\spad{[f, [y1,...,ym]]} where \\spad{f} is a particular rational solution and the \\spad{yi}\\spad{'s} form a basis for the rational solutions of the homogeneous equation.") (((|Record| (|:| |basis| (|List| (|Fraction| |#2|))) (|:| |mat| (|Matrix| |#1|))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|List| (|Fraction| |#2|))) "\\spad{ratDsolve(op, [g1,...,gm])} returns \\spad{[[h1,...,hq], M]} such that any rational solution of \\spad{op y = c1 g1 + ... + cm gm} is of the form \\spad{d1 h1 + ... + dq hq} where \\spad{M [d1,...,dq,c1,...,cm] = 0}.") (((|Record| (|:| |particular| (|Union| (|Fraction| |#2|) "failed")) (|:| |basis| (|List| (|Fraction| |#2|)))) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Fraction| |#2|)) "\\spad{ratDsolve(op, g)} returns \\spad{[\"failed\", []]} if the equation \\spad{op y = g} has no rational solution. Otherwise,{} it returns \\spad{[f, [y1,...,ym]]} where \\spad{f} is a particular rational solution and the \\spad{yi}\\spad{'s} form a basis for the rational solutions of the homogeneous equation.")))
NIL
NIL
-(-817 -1708 L UP A LO)
+(-817 -1709 L UP A LO)
((|constructor| (NIL "Elimination of an algebraic from the coefficentss of a linear ordinary differential equation.")) (|reduceLODE| (((|Record| (|:| |mat| (|Matrix| |#2|)) (|:| |vec| (|Vector| |#1|))) |#5| |#4|) "\\spad{reduceLODE(op, g)} returns \\spad{[m, v]} such that any solution in \\spad{A} of \\spad{op z = g} is of the form \\spad{z = (z_1,...,z_m) . (b_1,...,b_m)} where the \\spad{b_i's} are the basis of \\spad{A} over \\spad{F} returned by \\spadfun{basis}() from \\spad{A},{} and the \\spad{z_i's} satisfy the differential system \\spad{M.z = v}.")))
NIL
NIL
-(-818 -1708 UP)
+(-818 -1709 UP)
((|constructor| (NIL "In-field solution of Riccati equations,{} rational case.")) (|polyRicDE| (((|List| (|Record| (|:| |poly| |#2|) (|:| |eq| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{polyRicDE(op, zeros)} returns \\spad{[[p1, L1], [p2, L2], ... , [pk,Lk]]} such that the polynomial part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{pi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z = y e^{-int p}} is \\spad{Li z = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.")) (|singRicDE| (((|List| (|Record| (|:| |frac| (|Fraction| |#2|)) (|:| |eq| (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))))) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{singRicDE(op, ezfactor)} returns \\spad{[[f1,L1], [f2,L2],..., [fk,Lk]]} such that the singular \\spad{++} part of any rational solution of the associated Riccati equation of \\spad{op y = 0} must be one of the \\spad{fi}\\spad{'s} (up to the constant coefficient),{} in which case the equation for \\spad{z = y e^{-int ai}} is \\spad{Li z = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.")) (|ricDsolve| (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op, ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|))) "\\spad{ricDsolve(op)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op, ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|))) "\\spad{ricDsolve(op)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op, zeros, ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator2| |#2| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{ricDsolve(op, zeros)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|) (|Mapping| (|Factored| |#2|) |#2|)) "\\spad{ricDsolve(op, zeros, ezfactor)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}. Argument \\spad{ezfactor} is a factorisation in \\spad{UP},{} not necessarily into irreducibles.") (((|List| (|Fraction| |#2|)) (|LinearOrdinaryDifferentialOperator1| (|Fraction| |#2|)) (|Mapping| (|List| |#1|) |#2|)) "\\spad{ricDsolve(op, zeros)} returns the rational solutions of the associated Riccati equation of \\spad{op y = 0}. \\spad{zeros} is a zero finder in \\spad{UP}.")))
NIL
((|HasCategory| |#1| (QUOTE (-27))))
-(-819 -1708 LO)
+(-819 -1709 LO)
((|constructor| (NIL "SystemODESolver provides tools for triangulating and solving some systems of linear ordinary differential equations.")) (|solveInField| (((|Record| (|:| |particular| (|Union| (|Vector| |#1|) "failed")) (|:| |basis| (|List| (|Vector| |#1|)))) (|Matrix| |#2|) (|Vector| |#1|) (|Mapping| (|Record| (|:| |particular| (|Union| |#1| "failed")) (|:| |basis| (|List| |#1|))) |#2| |#1|)) "\\spad{solveInField(m, v, solve)} returns \\spad{[[v_1,...,v_m], v_p]} such that the solutions in \\spad{F} of the system \\spad{m x = v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{m x = 0}. Argument \\spad{solve} is a function for solving a single linear ordinary differential equation in \\spad{F}.")) (|solve| (((|Union| (|Record| (|:| |particular| (|Vector| |#1|)) (|:| |basis| (|Matrix| |#1|))) "failed") (|Matrix| |#1|) (|Vector| |#1|) (|Mapping| (|Union| (|Record| (|:| |particular| |#1|) (|:| |basis| (|List| |#1|))) "failed") |#2| |#1|)) "\\spad{solve(m, v, solve)} returns \\spad{[[v_1,...,v_m], v_p]} such that the solutions in \\spad{F} of the system \\spad{D x = m x + v} are \\spad{v_p + c_1 v_1 + ... + c_m v_m} where the \\spad{c_i's} are constants,{} and the \\spad{v_i's} form a basis for the solutions of \\spad{D x = m x}. Argument \\spad{solve} is a function for solving a single linear ordinary differential equation in \\spad{F}.")) (|triangulate| (((|Record| (|:| |mat| (|Matrix| |#2|)) (|:| |vec| (|Vector| |#1|))) (|Matrix| |#2|) (|Vector| |#1|)) "\\spad{triangulate(m, v)} returns \\spad{[m_0, v_0]} such that \\spad{m_0} is upper triangular and the system \\spad{m_0 x = v_0} is equivalent to \\spad{m x = v}.") (((|Record| (|:| A (|Matrix| |#1|)) (|:| |eqs| (|List| (|Record| (|:| C (|Matrix| |#1|)) (|:| |g| (|Vector| |#1|)) (|:| |eq| |#2|) (|:| |rh| |#1|))))) (|Matrix| |#1|) (|Vector| |#1|)) "\\spad{triangulate(M,v)} returns \\spad{A,[[C_1,g_1,L_1,h_1],...,[C_k,g_k,L_k,h_k]]} such that under the change of variable \\spad{y = A z},{} the first order linear system \\spad{D y = M y + v} is uncoupled as \\spad{D z_i = C_i z_i + g_i} and each \\spad{C_i} is a companion matrix corresponding to the scalar equation \\spad{L_i z_j = h_i}.")))
NIL
NIL
-(-820 -1708 LODO)
+(-820 -1709 LODO)
((|constructor| (NIL "\\spad{ODETools} provides tools for the linear ODE solver.")) (|particularSolution| (((|Union| |#1| "failed") |#2| |#1| (|List| |#1|) (|Mapping| |#1| |#1|)) "\\spad{particularSolution(op, g, [f1,...,fm], I)} returns a particular solution \\spad{h} of the equation \\spad{op y = g} where \\spad{[f1,...,fm]} are linearly independent and \\spad{op(fi)=0}. The value \"failed\" is returned if no particular solution is found. Note: the method of variations of parameters is used.")) (|variationOfParameters| (((|Union| (|Vector| |#1|) "failed") |#2| |#1| (|List| |#1|)) "\\spad{variationOfParameters(op, g, [f1,...,fm])} returns \\spad{[u1,...,um]} such that a particular solution of the equation \\spad{op y = g} is \\spad{f1 int(u1) + ... + fm int(um)} where \\spad{[f1,...,fm]} are linearly independent and \\spad{op(fi)=0}. The value \"failed\" is returned if \\spad{m < n} and no particular solution is found.")) (|wronskianMatrix| (((|Matrix| |#1|) (|List| |#1|) (|NonNegativeInteger|)) "\\spad{wronskianMatrix([f1,...,fn], q, D)} returns the \\spad{q x n} matrix \\spad{m} whose i^th row is \\spad{[f1^(i-1),...,fn^(i-1)]}.") (((|Matrix| |#1|) (|List| |#1|)) "\\spad{wronskianMatrix([f1,...,fn])} returns the \\spad{n x n} matrix \\spad{m} whose i^th row is \\spad{[f1^(i-1),...,fn^(i-1)]}.")))
NIL
NIL
(-821 -2550 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}.")))
-((-4443 |has| |#2| (-1058)) (-4444 |has| |#2| (-1058)) (-4446 |has| |#2| (-6 -4446)) ((-4451 "*") |has| |#2| (-174)) (-4449 . T))
-((-2892 (-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)))))) (-2892 (-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))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2892 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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))) (-2892 (|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))) (-2892 (-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))))) (-2892 (-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)))))) (-2892 (-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))))) (-2892 (|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|)))))
+((-4446 |has| |#2| (-1058)) (-4447 |has| |#2| (-1058)) (-4449 |has| |#2| (-6 -4449)) ((-4454 "*") |has| |#2| (-174)) (-4452 . T))
+((-2895 (-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)))))) (-2895 (-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))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-1058)))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368)))) (|HasCategory| |#2| (QUOTE (-1058))) (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-799))) (-2895 (|HasCategory| |#2| (QUOTE (-799))) (|HasCategory| |#2| (QUOTE (-854)))) (|HasCategory| |#2| (QUOTE (-854))) (|HasCategory| |#2| (QUOTE (-732))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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))) (-2895 (|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))) (-2895 (-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))))) (-2895 (-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)))))) (-2895 (-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))))) (-2895 (|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 -4449)) (|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")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-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.")))
-(((-4451 "*") |has| |#2| (-368)) (-4442 |has| |#2| (-368)) (-4447 |has| |#2| (-368)) (-4441 |has| |#2| (-368)) (-4446 . T) (-4444 . T) (-4443 . T))
+(((-4454 "*") |has| |#2| (-368)) (-4445 |has| |#2| (-368)) (-4450 |has| |#2| (-368)) (-4444 |has| |#2| (-368)) (-4449 . T) (-4447 . T) (-4446 . 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")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-4449 . T) (-4439 . T) (-4450 . T))
+((-4452 . T) (-4442 . T) (-4453 . 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,8 +3286,8 @@ 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.")))
-((-4446 |has| |#1| (-854)))
-((|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (QUOTE (-21))) (-2892 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-854)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2892 (|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-551))))
+((-4449 |has| |#1| (-854)))
+((|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (QUOTE (-21))) (-2895 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-854)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2895 (|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}.")))
NIL
@@ -3298,7 +3298,7 @@ NIL
NIL
(-842 R)
((|constructor| (NIL "Algebra of ADDITIVE operators over a ring.")))
-((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
+((-4447 |has| |#1| (-174)) (-4446 |has| |#1| (-174)) (-4449 . 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,8 +3326,8 @@ 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.")))
-((-4446 |has| |#1| (-854)))
-((|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (QUOTE (-21))) (-2892 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-854)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2892 (|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570))))) (|HasCategory| |#1| (LIST (QUOTE -1047) (QUOTE (-570)))) (|HasCategory| |#1| (QUOTE (-551))))
+((-4449 |has| |#1| (-854)))
+((|HasCategory| |#1| (QUOTE (-854))) (|HasCategory| |#1| (QUOTE (-21))) (-2895 (|HasCategory| |#1| (QUOTE (-21))) (|HasCategory| |#1| (QUOTE (-854)))) (|HasCategory| |#1| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (-2895 (|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 \\%.")))
NIL
@@ -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.")))
-((-4446 . T))
+((-4449 . 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)}.}")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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| -3225)
+(-860 R |sigma| -3229)
((|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.")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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| -3225)
+(-861 |x| R |sigma| -3229)
((|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}.")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . 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)")))
-((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
+((-4447 |has| |#1| (-174)) (-4446 |has| |#1| (-174)) (-4449 . 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,24 +3430,24 @@ 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}.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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).")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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).")))
-((-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))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-876 |#1|) (QUOTE (-916)))) (|HasCategory| (-876 |#1|) (QUOTE (-146)))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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)))) (-2895 (-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)}.")))
-((-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))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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)))) (-2895 (-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'}.")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-12 (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))))) (-12 (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))))
(-880)
((|constructor| (NIL "This domain describes four groups of color shades (palettes).")) (|coerce| (($ (|Color|)) "\\spad{coerce(c)} sets the average shade for the palette to that of the indicated color \\spad{c}.")) (|shade| (((|Integer|) $) "\\spad{shade(p)} returns the shade index of the indicated palette \\spad{p}.")) (|hue| (((|Color|) $) "\\spad{hue(p)} returns the hue field of the indicated palette \\spad{p}.")) (|light| (($ (|Color|)) "\\spad{light(c)} sets the shade of a hue,{} \\spad{c},{} to it\\spad{'s} highest value.")) (|pastel| (($ (|Color|)) "\\spad{pastel(c)} sets the shade of a hue,{} \\spad{c},{} above bright,{} but below light.")) (|bright| (($ (|Color|)) "\\spad{bright(c)} sets the shade of a hue,{} \\spad{c},{} above dim,{} but below pastel.")) (|dim| (($ (|Color|)) "\\spad{dim(c)} sets the shade of a hue,{} \\spad{c},{} above dark,{} but below bright.")) (|dark| (($ (|Color|)) "\\spad{dark(c)} sets the shade of the indicated hue of \\spad{c} to it\\spad{'s} lowest value.")))
NIL
@@ -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 (-1795 (|HasCategory| |#2| (QUOTE (-1058)))) (-1795 (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (-1795 (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))
+((-12 (-1796 (|HasCategory| |#2| (QUOTE (-1058)))) (-1796 (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-1186)))))) (-12 (|HasCategory| |#2| (QUOTE (-1058))) (-1796 (|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
@@ -3516,7 +3516,7 @@ NIL
((|constructor| (NIL "A PatternMatchResult is an object internally returned by the pattern matcher; It is either a failed match,{} or a list of matches of the form (var,{} expr) meaning that the variable var matches the expression expr.")) (|satisfy?| (((|Union| (|Boolean|) "failed") $ (|Pattern| |#1|)) "\\spad{satisfy?(r, p)} returns \\spad{true} if the matches satisfy the top-level predicate of \\spad{p},{} \\spad{false} if they don\\spad{'t},{} and \"failed\" if not enough variables of \\spad{p} are matched in \\spad{r} to decide.")) (|construct| (($ (|List| (|Record| (|:| |key| (|Symbol|)) (|:| |entry| |#2|)))) "\\spad{construct([v1,e1],...,[vn,en])} returns the match result containing the matches (\\spad{v1},{}e1),{}...,{}(\\spad{vn},{}en).")) (|destruct| (((|List| (|Record| (|:| |key| (|Symbol|)) (|:| |entry| |#2|))) $) "\\spad{destruct(r)} returns the list of matches (var,{} expr) in \\spad{r}. Error: if \\spad{r} is a failed match.")) (|addMatchRestricted| (($ (|Pattern| |#1|) |#2| $ |#2|) "\\spad{addMatchRestricted(var, expr, r, val)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} provided that \\spad{expr} satisfies the predicates attached to \\spad{var},{} that \\spad{var} is not matched to another expression already,{} and that either \\spad{var} is an optional pattern variable or that \\spad{expr} is not equal to val (usually an identity).")) (|insertMatch| (($ (|Pattern| |#1|) |#2| $) "\\spad{insertMatch(var, expr, r)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} without checking predicates or previous matches for \\spad{var}.")) (|addMatch| (($ (|Pattern| |#1|) |#2| $) "\\spad{addMatch(var, expr, r)} adds the match (\\spad{var},{} \\spad{expr}) in \\spad{r},{} provided that \\spad{expr} satisfies the predicates attached to \\spad{var},{} and that \\spad{var} is not matched to another expression already.")) (|getMatch| (((|Union| |#2| "failed") (|Pattern| |#1|) $) "\\spad{getMatch(var, r)} returns the expression that \\spad{var} matches in the result \\spad{r},{} and \"failed\" if \\spad{var} is not matched in \\spad{r}.")) (|union| (($ $ $) "\\spad{union(a, b)} makes the set-union of two match results.")) (|new| (($) "\\spad{new()} returns a new empty match result.")) (|failed| (($) "\\spad{failed()} returns a failed match.")) (|failed?| (((|Boolean|) $) "\\spad{failed?(r)} tests if \\spad{r} is a failed match.")))
NIL
NIL
-(-897 R -2942)
+(-897 R -2945)
((|constructor| (NIL "Tools for patterns.")) (|badValues| (((|List| |#2|) (|Pattern| |#1|)) "\\spad{badValues(p)} returns the list of \"bad values\" for \\spad{p}; \\spad{p} is not allowed to match any of its \"bad values\".")) (|addBadValue| (((|Pattern| |#1|) (|Pattern| |#1|) |#2|) "\\spad{addBadValue(p, v)} adds \\spad{v} to the list of \"bad values\" for \\spad{p}; \\spad{p} is not allowed to match any of its \"bad values\".")) (|satisfy?| (((|Boolean|) (|List| |#2|) (|Pattern| |#1|)) "\\spad{satisfy?([v1,...,vn], p)} returns \\spad{f(v1,...,vn)} where \\spad{f} is the top-level predicate attached to \\spad{p}.") (((|Boolean|) |#2| (|Pattern| |#1|)) "\\spad{satisfy?(v, p)} returns \\spad{f}(\\spad{v}) where \\spad{f} is the predicate attached to \\spad{p}.")) (|predicate| (((|Mapping| (|Boolean|) |#2|) (|Pattern| |#1|)) "\\spad{predicate(p)} returns the predicate attached to \\spad{p},{} the constant function \\spad{true} if \\spad{p} has no predicates attached to it.")) (|suchThat| (((|Pattern| |#1|) (|Pattern| |#1|) (|List| (|Symbol|)) (|Mapping| (|Boolean|) (|List| |#2|))) "\\spad{suchThat(p, [a1,...,an], f)} returns a copy of \\spad{p} with the top-level predicate set to \\spad{f(a1,...,an)}.") (((|Pattern| |#1|) (|Pattern| |#1|) (|List| (|Mapping| (|Boolean|) |#2|))) "\\spad{suchThat(p, [f1,...,fn])} makes a copy of \\spad{p} and adds the predicate \\spad{f1} and ... and \\spad{fn} to the copy,{} which is returned.") (((|Pattern| |#1|) (|Pattern| |#1|) (|Mapping| (|Boolean|) |#2|)) "\\spad{suchThat(p, f)} makes a copy of \\spad{p} and adds the predicate \\spad{f} to the copy,{} which is returned.")))
NIL
NIL
@@ -3540,7 +3540,7 @@ NIL
((|PDESolve| (((|Result|) (|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|DoubleFloat|)))) "\\spad{PDESolve(args)} performs the integration of the function given the strategy or method returned by \\axiomFun{measure}.")) (|measure| (((|Record| (|:| |measure| (|Float|)) (|:| |explanations| (|String|))) (|RoutinesTable|) (|Record| (|:| |pde| (|List| (|Expression| (|DoubleFloat|)))) (|:| |constraints| (|List| (|Record| (|:| |start| (|DoubleFloat|)) (|:| |finish| (|DoubleFloat|)) (|:| |grid| (|NonNegativeInteger|)) (|:| |boundaryType| (|Integer|)) (|:| |dStart| (|Matrix| (|DoubleFloat|))) (|:| |dFinish| (|Matrix| (|DoubleFloat|)))))) (|:| |f| (|List| (|List| (|Expression| (|DoubleFloat|))))) (|:| |st| (|String|)) (|:| |tol| (|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.")))
NIL
NIL
-(-903 UP -1708)
+(-903 UP -1709)
((|constructor| (NIL "This package \\undocumented")) (|rightFactorCandidate| ((|#1| |#1| (|NonNegativeInteger|)) "\\spad{rightFactorCandidate(p,n)} \\undocumented")) (|leftFactor| (((|Union| |#1| "failed") |#1| |#1|) "\\spad{leftFactor(p,q)} \\undocumented")) (|decompose| (((|Union| (|Record| (|:| |left| |#1|) (|:| |right| |#1|)) "failed") |#1| (|NonNegativeInteger|) (|NonNegativeInteger|)) "\\spad{decompose(up,m,n)} \\undocumented") (((|List| |#1|) |#1|) "\\spad{decompose(up)} \\undocumented")))
NIL
NIL
@@ -3558,19 +3558,19 @@ 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}.")))
-((-4446 . T))
+((-4449 . 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")))
NIL
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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)))))
(-909 |n| R)
((|constructor| (NIL "Permanent implements the functions {\\em permanent},{} the permanent for square matrices.")) (|permanent| ((|#2| (|SquareMatrix| |#1| |#2|)) "\\spad{permanent(x)} computes the permanent of a square matrix \\spad{x}. The {\\em permanent} is equivalent to the \\spadfun{determinant} except that coefficients have no change of sign. This function is much more difficult to compute than the {\\em determinant}. The formula used is by \\spad{H}.\\spad{J}. Ryser,{} improved by [Nijenhuis and Wilf,{} \\spad{Ch}. 19]. Note: permanent(\\spad{x}) choose one of three algorithms,{} depending on the underlying ring \\spad{R} and on \\spad{n},{} the number of rows (and columns) of \\spad{x:}\\begin{items} \\item 1. if 2 has an inverse in \\spad{R} we can use the algorithm of \\indented{3}{[Nijenhuis and Wilf,{} \\spad{ch}.19,{}\\spad{p}.158]; if 2 has no inverse,{}} \\indented{3}{some modifications are necessary:} \\item 2. if {\\em n > 6} and \\spad{R} is an integral domain with characteristic \\indented{3}{different from 2 (the algorithm works if and only 2 is not a} \\indented{3}{zero-divisor of \\spad{R} and {\\em characteristic()\\$R ~= 2},{}} \\indented{3}{but how to check that for any given \\spad{R} ?),{}} \\indented{3}{the local function {\\em permanent2} is called;} \\item 3. else,{} the local function {\\em permanent3} is called \\indented{3}{(works for all commutative rings \\spad{R}).} \\end{items}")))
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.")))
-((-4446 . T))
+((-4449 . 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,8 +3578,8 @@ 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.")))
-((-4446 . T))
-((-2892 (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-856)))) (|HasCategory| |#1| (QUOTE (-373))) (|HasCategory| |#1| (QUOTE (-856))))
+((-4449 . T))
+((-2895 (|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.")))
NIL
@@ -3594,13 +3594,13 @@ 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}.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
((|HasCategory| $ (QUOTE (-148))) (|HasCategory| $ (QUOTE (-146))) (|HasCategory| $ (QUOTE (-373))))
-(-918 R0 -1708 UP UPUP R)
+(-918 R0 -1709 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")))
NIL
NIL
@@ -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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
@@ -3628,7 +3628,7 @@ NIL
((|constructor| (NIL "PermutationGroupExamples provides permutation groups for some classes of groups: symmetric,{} alternating,{} dihedral,{} cyclic,{} direct products of cyclic,{} which are in fact the finite abelian groups of symmetric groups called Young subgroups. Furthermore,{} Rubik\\spad{'s} group as permutation group of 48 integers and a list of sporadic simple groups derived from the atlas of finite groups.")) (|youngGroup| (((|PermutationGroup| (|Integer|)) (|Partition|)) "\\spad{youngGroup(lambda)} constructs the direct product of the symmetric groups given by the parts of the partition {\\em lambda}.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{youngGroup([n1,...,nk])} constructs the direct product of the symmetric groups {\\em Sn1},{}...,{}{\\em Snk}.")) (|rubiksGroup| (((|PermutationGroup| (|Integer|))) "\\spad{rubiksGroup constructs} the permutation group representing Rubic\\spad{'s} Cube acting on integers {\\em 10*i+j} for {\\em 1 <= i <= 6},{} {\\em 1 <= j <= 8}. The faces of Rubik\\spad{'s} Cube are labelled in the obvious way Front,{} Right,{} Up,{} Down,{} Left,{} Back and numbered from 1 to 6 in this given ordering,{} the pieces on each face (except the unmoveable center piece) are clockwise numbered from 1 to 8 starting with the piece in the upper left corner. The moves of the cube are represented as permutations on these pieces,{} represented as a two digit integer {\\em ij} where \\spad{i} is the numer of theface (1 to 6) and \\spad{j} is the number of the piece on this face. The remaining ambiguities are resolved by looking at the 6 generators,{} which represent a 90 degree turns of the faces,{} or from the following pictorial description. Permutation group representing Rubic\\spad{'s} Cube acting on integers 10*i+j for 1 \\spad{<=} \\spad{i} \\spad{<=} 6,{} 1 \\spad{<=} \\spad{j} \\spad{<=8}. \\blankline\\begin{verbatim}Rubik's Cube: +-----+ +-- B where: marks Side # : / U /|/ / / | F(ront) <-> 1 L --> +-----+ R| R(ight) <-> 2 | | + U(p) <-> 3 | F | / D(own) <-> 4 | |/ L(eft) <-> 5 +-----+ B(ack) <-> 6 ^ | DThe Cube's surface: The pieces on each side +---+ (except the unmoveable center |567| piece) are clockwise numbered |4U8| from 1 to 8 starting with the |321| piece in the upper left +---+---+---+ corner (see figure on the |781|123|345| left). The moves of the cube |6L2|8F4|2R6| are represented as |543|765|187| permutations on these pieces. +---+---+---+ Each of the pieces is |123| represented as a two digit |8D4| integer ij where i is the |765| # of the side ( 1 to 6 for +---+ F to B (see table above )) |567| and j is the # of the piece. |4B8| |321| +---+\\end{verbatim}")) (|janko2| (((|PermutationGroup| (|Integer|))) "\\spad{janko2 constructs} the janko group acting on the integers 1,{}...,{}100.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{janko2(li)} constructs the janko group acting on the 100 integers given in the list {\\em li}. Note: duplicates in the list will be removed. Error: if {\\em li} has less or more than 100 different entries")) (|mathieu24| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu24 constructs} the mathieu group acting on the integers 1,{}...,{}24.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu24(li)} constructs the mathieu group acting on the 24 integers given in the list {\\em li}. Note: duplicates in the list will be removed. Error: if {\\em li} has less or more than 24 different entries.")) (|mathieu23| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu23 constructs} the mathieu group acting on the integers 1,{}...,{}23.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu23(li)} constructs the mathieu group acting on the 23 integers given in the list {\\em li}. Note: duplicates in the list will be removed. Error: if {\\em li} has less or more than 23 different entries.")) (|mathieu22| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu22 constructs} the mathieu group acting on the integers 1,{}...,{}22.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu22(li)} constructs the mathieu group acting on the 22 integers given in the list {\\em li}. Note: duplicates in the list will be removed. Error: if {\\em li} has less or more than 22 different entries.")) (|mathieu12| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu12 constructs} the mathieu group acting on the integers 1,{}...,{}12.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu12(li)} constructs the mathieu group acting on the 12 integers given in the list {\\em li}. Note: duplicates in the list will be removed Error: if {\\em li} has less or more than 12 different entries.")) (|mathieu11| (((|PermutationGroup| (|Integer|))) "\\spad{mathieu11 constructs} the mathieu group acting on the integers 1,{}...,{}11.") (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{mathieu11(li)} constructs the mathieu group acting on the 11 integers given in the list {\\em li}. Note: duplicates in the list will be removed. error,{} if {\\em li} has less or more than 11 different entries.")) (|dihedralGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{dihedralGroup([i1,...,ik])} constructs the dihedral group of order 2k acting on the integers out of {\\em i1},{}...,{}{\\em ik}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{dihedralGroup(n)} constructs the dihedral group of order 2n acting on integers 1,{}...,{}\\spad{N}.")) (|cyclicGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{cyclicGroup([i1,...,ik])} constructs the cyclic group of order \\spad{k} acting on the integers {\\em i1},{}...,{}{\\em ik}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{cyclicGroup(n)} constructs the cyclic group of order \\spad{n} acting on the integers 1,{}...,{}\\spad{n}.")) (|abelianGroup| (((|PermutationGroup| (|Integer|)) (|List| (|PositiveInteger|))) "\\spad{abelianGroup([n1,...,nk])} constructs the abelian group that is the direct product of cyclic groups with order {\\em ni}.")) (|alternatingGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{alternatingGroup(li)} constructs the alternating group acting on the integers in the list {\\em li},{} generators are in general the {\\em n-2}-cycle {\\em (li.3,...,li.n)} and the 3-cycle {\\em (li.1,li.2,li.3)},{} if \\spad{n} is odd and product of the 2-cycle {\\em (li.1,li.2)} with {\\em n-2}-cycle {\\em (li.3,...,li.n)} and the 3-cycle {\\em (li.1,li.2,li.3)},{} if \\spad{n} is even. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{alternatingGroup(n)} constructs the alternating group {\\em An} acting on the integers 1,{}...,{}\\spad{n},{} generators are in general the {\\em n-2}-cycle {\\em (3,...,n)} and the 3-cycle {\\em (1,2,3)} if \\spad{n} is odd and the product of the 2-cycle {\\em (1,2)} with {\\em n-2}-cycle {\\em (3,...,n)} and the 3-cycle {\\em (1,2,3)} if \\spad{n} is even.")) (|symmetricGroup| (((|PermutationGroup| (|Integer|)) (|List| (|Integer|))) "\\spad{symmetricGroup(li)} constructs the symmetric group acting on the integers in the list {\\em li},{} generators are the cycle given by {\\em li} and the 2-cycle {\\em (li.1,li.2)}. Note: duplicates in the list will be removed.") (((|PermutationGroup| (|Integer|)) (|PositiveInteger|)) "\\spad{symmetricGroup(n)} constructs the symmetric group {\\em Sn} acting on the integers 1,{}...,{}\\spad{n},{} generators are the {\\em n}-cycle {\\em (1,...,n)} and the 2-cycle {\\em (1,2)}.")))
NIL
NIL
-(-925 -1708)
+(-925 -1709)
((|constructor| (NIL "Groebner functions for \\spad{P} \\spad{F} \\indented{2}{This package is an interface package to the groebner basis} package which allows you to compute groebner bases for polynomials in either lexicographic ordering or total degree ordering refined by reverse lex. The input is the ordinary polynomial type which is internally converted to a type with the required ordering. The resulting grobner basis is converted back to ordinary polynomials. The ordering among the variables is controlled by an explicit list of variables which is passed as a second argument. The coefficient domain is allowed to be any \\spad{gcd} domain,{} but the groebner basis is computed as if the polynomials were over a field.")) (|totalGroebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{totalGroebner(lp,lv)} computes Groebner basis for the list of polynomials \\spad{lp} with the terms ordered first by total degree and then refined by reverse lexicographic ordering. The variables are ordered by their position in the list \\spad{lv}.")) (|lexGroebner| (((|List| (|Polynomial| |#1|)) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{lexGroebner(lp,lv)} computes Groebner basis for the list of polynomials \\spad{lp} in lexicographic order. The variables are ordered by their position in the list \\spad{lv}.")))
NIL
NIL
@@ -3638,17 +3638,17 @@ 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)}")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
-(((-4451 "*") . T))
+(((-4454 "*") . T))
NIL
-(-929 -1708 P)
+(-929 -1709 P)
((|constructor| (NIL "This package exports interpolation algorithms")) (|LagrangeInterpolation| ((|#2| (|List| |#1|) (|List| |#1|)) "\\spad{LagrangeInterpolation(l1,l2)} \\undocumented")))
NIL
NIL
-(-930 |xx| -1708)
+(-930 |xx| -1709)
((|constructor| (NIL "This package exports interpolation algorithms")) (|interpolate| (((|SparseUnivariatePolynomial| |#2|) (|List| |#2|) (|List| |#2|)) "\\spad{interpolate(lf,lg)} \\undocumented") (((|UnivariatePolynomial| |#1| |#2|) (|UnivariatePolynomial| |#1| |#2|) (|List| |#2|) (|List| |#2|)) "\\spad{interpolate(u,lf,lg)} \\undocumented")))
NIL
NIL
@@ -3672,7 +3672,7 @@ NIL
((|constructor| (NIL "This package exports plotting tools")) (|calcRanges| (((|List| (|Segment| (|DoubleFloat|))) (|List| (|List| (|Point| (|DoubleFloat|))))) "\\spad{calcRanges(l)} \\undocumented")))
NIL
NIL
-(-936 R -1708)
+(-936 R -1709)
((|constructor| (NIL "Attaching assertions to symbols for pattern matching; Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|multiple| ((|#2| |#2|) "\\spad{multiple(x)} tells the pattern matcher that \\spad{x} should preferably match a multi-term quantity in a sum or product. For matching on lists,{} multiple(\\spad{x}) tells the pattern matcher that \\spad{x} should match a list instead of an element of a list. Error: if \\spad{x} is not a symbol.")) (|optional| ((|#2| |#2|) "\\spad{optional(x)} tells the pattern matcher that \\spad{x} can match an identity (0 in a sum,{} 1 in a product or exponentiation). Error: if \\spad{x} is not a symbol.")) (|constant| ((|#2| |#2|) "\\spad{constant(x)} tells the pattern matcher that \\spad{x} should match only the symbol \\spad{'x} and no other quantity. Error: if \\spad{x} is not a symbol.")) (|assert| ((|#2| |#2| (|Identifier|)) "\\spad{assert(x, s)} makes the assertion \\spad{s} about \\spad{x}. Error: if \\spad{x} is not a symbol.")))
NIL
NIL
@@ -3684,7 +3684,7 @@ NIL
((|constructor| (NIL "This packages provides tools for matching recursively in type towers.")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) |#2| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|)) "\\spad{patternMatch(expr, pat, res)} matches the pattern \\spad{pat} to the expression \\spad{expr}; res contains the variables of \\spad{pat} which are already matched and their matches. Note: this function handles type towers by changing the predicates and calling the matching function provided by \\spad{A}.")) (|fixPredicate| (((|Mapping| (|Boolean|) |#2|) (|Mapping| (|Boolean|) |#3|)) "\\spad{fixPredicate(f)} returns \\spad{g} defined by \\spad{g}(a) = \\spad{f}(a::B).")))
NIL
NIL
-(-939 S R -1708)
+(-939 S R -1709)
((|constructor| (NIL "This package provides pattern matching functions on function spaces.")) (|patternMatch| (((|PatternMatchResult| |#1| |#3|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#3|)) "\\spad{patternMatch(expr, pat, res)} matches the pattern \\spad{pat} to the expression \\spad{expr}; res contains the variables of \\spad{pat} which are already matched and their matches.")))
NIL
NIL
@@ -3704,11 +3704,11 @@ NIL
((|constructor| (NIL "This package provides pattern matching functions on polynomials.")) (|patternMatch| (((|PatternMatchResult| |#1| |#5|) |#5| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|)) "\\spad{patternMatch(p, pat, res)} matches the pattern \\spad{pat} to the polynomial \\spad{p}; res contains the variables of \\spad{pat} which are already matched and their matches.") (((|PatternMatchResult| |#1| |#5|) |#5| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|) (|Mapping| (|PatternMatchResult| |#1| |#5|) |#3| (|Pattern| |#1|) (|PatternMatchResult| |#1| |#5|))) "\\spad{patternMatch(p, pat, res, vmatch)} matches the pattern \\spad{pat} to the polynomial \\spad{p}. \\spad{res} contains the variables of \\spad{pat} which are already matched and their matches; vmatch is the matching function to use on the variables.")))
NIL
((|HasCategory| |#3| (LIST (QUOTE -893) (|devaluate| |#1|))))
-(-944 R -1708 -2942)
+(-944 R -1709 -2945)
((|constructor| (NIL "Attaching predicates to symbols for pattern matching. Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|suchThat| ((|#2| |#2| (|List| (|Mapping| (|Boolean|) |#3|))) "\\spad{suchThat(x, [f1, f2, ..., fn])} attaches the predicate \\spad{f1} and \\spad{f2} and ... and \\spad{fn} to \\spad{x}. Error: if \\spad{x} is not a symbol.") ((|#2| |#2| (|Mapping| (|Boolean|) |#3|)) "\\spad{suchThat(x, foo)} attaches the predicate foo to \\spad{x}; error if \\spad{x} is not a symbol.")))
NIL
NIL
-(-945 -2942)
+(-945 -2945)
((|constructor| (NIL "Attaching predicates to symbols for pattern matching. Date Created: 21 Mar 1989 Date Last Updated: 23 May 1990")) (|suchThat| (((|Expression| (|Integer|)) (|Symbol|) (|List| (|Mapping| (|Boolean|) |#1|))) "\\spad{suchThat(x, [f1, f2, ..., fn])} attaches the predicate \\spad{f1} and \\spad{f2} and ... and \\spad{fn} to \\spad{x}.") (((|Expression| (|Integer|)) (|Symbol|) (|Mapping| (|Boolean|) |#1|)) "\\spad{suchThat(x, foo)} attaches the predicate foo to \\spad{x}.")))
NIL
NIL
@@ -3730,8 +3730,8 @@ NIL
NIL
(-950 R)
((|constructor| (NIL "This domain implements points in coordinate space")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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}.")))
NIL
@@ -3751,12 +3751,12 @@ 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 -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)))))
+((|HasCategory| |#2| (QUOTE (-916))) (|HasAttribute| |#2| (QUOTE -4450)) (|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}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
NIL
-(-957 E V R P -1708)
+(-957 E V R P -1709)
((|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}.")))
NIL
NIL
@@ -3766,9 +3766,9 @@ 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}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
-(-960 E V R P -1708)
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(-960 E V R P -1709)
((|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
((|HasCategory| |#3| (QUOTE (-458))))
@@ -3790,13 +3790,13 @@ 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")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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}.")))
NIL
NIL
-(-967 -1708)
+(-967 -1709)
((|constructor| (NIL "PrimitiveElement provides functions to compute primitive elements in algebraic extensions.")) (|primitiveElement| (((|Record| (|:| |coef| (|List| (|Integer|))) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#1|))) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|)) (|Symbol|)) "\\spad{primitiveElement([p1,...,pn], [a1,...,an], a)} returns \\spad{[[c1,...,cn], [q1,...,qn], q]} such that then \\spad{k(a1,...,an) = k(a)},{} where \\spad{a = a1 c1 + ... + an cn},{} \\spad{ai = qi(a)},{} and \\spad{q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.") (((|Record| (|:| |coef| (|List| (|Integer|))) (|:| |poly| (|List| (|SparseUnivariatePolynomial| |#1|))) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|List| (|Polynomial| |#1|)) (|List| (|Symbol|))) "\\spad{primitiveElement([p1,...,pn], [a1,...,an])} returns \\spad{[[c1,...,cn], [q1,...,qn], q]} such that then \\spad{k(a1,...,an) = k(a)},{} where \\spad{a = a1 c1 + ... + an cn},{} \\spad{ai = qi(a)},{} and \\spad{q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. This operation uses the technique of \\spadglossSee{groebner bases}{Groebner basis}.") (((|Record| (|:| |coef1| (|Integer|)) (|:| |coef2| (|Integer|)) (|:| |prim| (|SparseUnivariatePolynomial| |#1|))) (|Polynomial| |#1|) (|Symbol|) (|Polynomial| |#1|) (|Symbol|)) "\\spad{primitiveElement(p1, a1, p2, a2)} returns \\spad{[c1, c2, q]} such that \\spad{k(a1, a2) = k(a)} where \\spad{a = c1 a1 + c2 a2, and q(a) = 0}. The \\spad{pi}\\spad{'s} are the defining polynomials for the \\spad{ai}\\spad{'s}. The \\spad{p2} may involve \\spad{a1},{} but \\spad{p1} must not involve a2. This operation uses \\spadfun{resultant}.")))
NIL
NIL
@@ -3810,12 +3810,12 @@ 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}")))
-(((-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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2892 (|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)))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2895 (|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 -4450)))
(-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")))
-((-4446 -12 (|has| |#2| (-479)) (|has| |#1| (-479))))
-((-2892 (-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)))) (-2892 (-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)))) (-2892 (-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)))) (-2892 (-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)))) (-2892 (-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)))))
+((-4449 -12 (|has| |#2| (-479)) (|has| |#1| (-479))))
+((-2895 (-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)))) (-2895 (-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)))) (-2895 (-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)))) (-2895 (-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)))) (-2895 (-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}")))
NIL
@@ -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}.")))
-((-4449 . T) (-4450 . T))
+((-4452 . T) (-4453 . 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}}")))
@@ -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}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4449 . T))
+((-4452 . 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}.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . T))
NIL
(-990 R1 R2)
((|constructor| (NIL "This package \\undocumented")) (|map| (((|Point| |#2|) (|Mapping| |#2| |#1|) (|Point| |#1|)) "\\spad{map(f,p)} \\undocumented")))
@@ -3904,7 +3904,7 @@ NIL
((|constructor| (NIL "This package \\undocumented{}")) (|map| ((|#4| (|Mapping| |#4| (|Polynomial| |#1|)) |#4|) "\\spad{map(f,p)} \\undocumented{}")) (|pushup| ((|#4| |#4| (|List| |#3|)) "\\spad{pushup(p,lv)} \\undocumented{}") ((|#4| |#4| |#3|) "\\spad{pushup(p,v)} \\undocumented{}")) (|pushdown| ((|#4| |#4| (|List| |#3|)) "\\spad{pushdown(p,lv)} \\undocumented{}") ((|#4| |#4| |#3|) "\\spad{pushdown(p,v)} \\undocumented{}")) (|variable| (((|Union| $ "failed") (|Symbol|)) "\\spad{variable(s)} makes an element from symbol \\spad{s} or fails")) (|convert| (((|Symbol|) $) "\\spad{convert(x)} converts \\spad{x} to a symbol")))
NIL
NIL
-(-994 K R UP -1708)
+(-994 K R UP -1709)
((|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 monogenic algebra over \\spad{R}. We require that \\spad{F} is monogenic,{} \\spadignore{i.e.} that \\spad{F = K[x,y]/(f(x,y))},{} because the integral basis algorithm used will factor the polynomial \\spad{f(x,y)}. 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.")) (|reducedDiscriminant| ((|#2| |#3|) "\\spad{reducedDiscriminant(up)} \\undocumented")) (|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 the framed algebra \\spad{F}. \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,w2,...,wn}. If '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 'basis' contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix 'basisInv' contains the coordinates of \\spad{wi} with respect to the basis \\spad{v1,...,vn}: if '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 the framed algebra \\spad{F}. \\spad{F} is a framed algebra with \\spad{R}-module basis \\spad{w1,w2,...,wn}. If '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 'basis' contains the coordinates of the \\spad{i}th basis vector. Similarly,{} the \\spad{i}th row of the matrix 'basisInv' contains the coordinates of \\spad{wi} with respect to the basis \\spad{v1,...,vn}: if 'basisInv' is the matrix \\spad{(bij, i = 1..n, j = 1..n)},{} then \\spad{wi = sum(bij * vj, j = 1..n)}.")))
NIL
NIL
@@ -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}.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4449 . T) (-4450 . T))
+((-4452 . T) (-4453 . 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}.")))
-((-4442 |has| |#1| (-294)) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 |has| |#1| (-294)) (-4446 . T) (-4447 . T) (-4449 . 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,12 +3962,12 @@ 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.}")))
-((-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))) (-2892 (|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)))) (-2892 (|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))))
+((-4445 |has| |#1| (-294)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (LIST (QUOTE -620) (QUOTE (-542)))) (|HasCategory| |#1| (QUOTE (-368))) (-2895 (|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)))) (-2895 (|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}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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}.")))
NIL
@@ -3976,14 +3976,14 @@ NIL
((|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}.")))
NIL
NIL
-(-1012 -1708 UP UPUP |radicnd| |n|)
+(-1012 -1709 UP UPUP |radicnd| |n|)
((|constructor| (NIL "Function field defined by y**n = \\spad{f}(\\spad{x}).")))
-((-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))) (-2892 (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-373))) (-2892 (-12 (|HasCategory| (-413 |#2|) (QUOTE (-235))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (-2892 (-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)))) (-2892 (|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)))))
+((-4445 |has| (-413 |#2|) (-368)) (-4450 |has| (-413 |#2|) (-368)) (-4444 |has| (-413 |#2|) (-368)) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| (-413 |#2|) (QUOTE (-146))) (|HasCategory| (-413 |#2|) (QUOTE (-148))) (|HasCategory| (-413 |#2|) (QUOTE (-354))) (-2895 (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (|HasCategory| (-413 |#2|) (QUOTE (-368))) (|HasCategory| (-413 |#2|) (QUOTE (-373))) (-2895 (-12 (|HasCategory| (-413 |#2|) (QUOTE (-235))) (|HasCategory| (-413 |#2|) (QUOTE (-368)))) (|HasCategory| (-413 |#2|) (QUOTE (-354)))) (-2895 (-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)))) (-2895 (|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.")))
-((-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))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| (-570) (QUOTE (-916)))) (|HasCategory| (-570) (QUOTE (-146)))))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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)))) (-2895 (-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}.")))
NIL
@@ -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 -4450)) (|HasCategory| |#2| (QUOTE (-1109))))
+((|HasAttribute| |#1| (QUOTE -4453)) (|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,21 +4014,21 @@ 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}}")))
-((-4442 . T) (-4447 . T) (-4441 . T) (-4444 . T) (-4443 . T) ((-4451 "*") . T) (-4446 . T))
+((-4445 . T) (-4450 . T) (-4444 . T) (-4447 . T) (-4446 . T) ((-4454 "*") . T) (-4449 . T))
NIL
-(-1022 R -1708)
+(-1022 R -1709)
((|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.")))
NIL
NIL
-(-1023 R -1708)
+(-1023 R -1709)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} elementary case.} Author: Manuel Bronstein Date Created: 12 August 1992 Date Last Updated: 17 August 1992 Keywords: elementary,{} function,{} integration.")) (|rischDEsys| (((|Union| (|List| |#2|) "failed") (|Integer|) |#2| |#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{rischDEsys(n, f, g_1, g_2, x,lim,ext)} returns \\spad{y_1.y_2} such that \\spad{(dy1/dx,dy2/dx) + ((0, - n df/dx),(n df/dx,0)) (y1,y2) = (g1,g2)} if \\spad{y_1,y_2} exist,{} \"failed\" otherwise. \\spad{lim} is a limited integration function,{} \\spad{ext} is an extended integration function.")))
NIL
NIL
-(-1024 -1708 UP)
+(-1024 -1709 UP)
((|constructor| (NIL "\\indented{1}{Risch differential equation,{} transcendental case.} Author: Manuel Bronstein Date Created: Jan 1988 Date Last Updated: 2 November 1995")) (|polyRDE| (((|Union| (|:| |ans| (|Record| (|:| |ans| |#2|) (|:| |nosol| (|Boolean|)))) (|:| |eq| (|Record| (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (|Integer|)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (|Integer|) (|Mapping| |#2| |#2|)) "\\spad{polyRDE(a, B, C, n, D)} returns either: 1. \\spad{[Q, b]} such that \\spad{degree(Q) <= n} and \\indented{3}{\\spad{a Q'+ B Q = C} if \\spad{b = true},{} \\spad{Q} is a partial solution} \\indented{3}{otherwise.} 2. \\spad{[B1, C1, m, \\alpha, \\beta]} such that any polynomial solution \\indented{3}{of degree at most \\spad{n} of \\spad{A Q' + BQ = C} must be of the form} \\indented{3}{\\spad{Q = \\alpha H + \\beta} where \\spad{degree(H) <= m} and} \\indented{3}{\\spad{H} satisfies \\spad{H' + B1 H = C1}.} \\spad{D} is the derivation to use.")) (|baseRDE| (((|Record| (|:| |ans| (|Fraction| |#2|)) (|:| |nosol| (|Boolean|))) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{baseRDE(f, g)} returns a \\spad{[y, b]} such that \\spad{y' + fy = g} if \\spad{b = true},{} \\spad{y} is a partial solution otherwise (no solution in that case). \\spad{D} is the derivation to use.")) (|monomRDE| (((|Union| (|Record| (|:| |a| |#2|) (|:| |b| (|Fraction| |#2|)) (|:| |c| (|Fraction| |#2|)) (|:| |t| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomRDE(f,g,D)} returns \\spad{[A, B, C, T]} such that \\spad{y' + f y = g} has a solution if and only if \\spad{y = Q / T},{} where \\spad{Q} satisfies \\spad{A Q' + B Q = C} and has no normal pole. A and \\spad{T} are polynomials and \\spad{B} and \\spad{C} have no normal poles. \\spad{D} is the derivation to use.")))
NIL
NIL
-(-1025 -1708 UP)
+(-1025 -1709 UP)
((|constructor| (NIL "\\indented{1}{Risch differential equation system,{} transcendental case.} Author: Manuel Bronstein Date Created: 17 August 1992 Date Last Updated: 3 February 1994")) (|baseRDEsys| (((|Union| (|List| (|Fraction| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|)) "\\spad{baseRDEsys(f, g1, g2)} returns fractions \\spad{y_1.y_2} such that \\spad{(y1', y2') + ((0, -f), (f, 0)) (y1,y2) = (g1,g2)} if \\spad{y_1,y_2} exist,{} \"failed\" otherwise.")) (|monomRDEsys| (((|Union| (|Record| (|:| |a| |#2|) (|:| |b| (|Fraction| |#2|)) (|:| |h| |#2|) (|:| |c1| (|Fraction| |#2|)) (|:| |c2| (|Fraction| |#2|)) (|:| |t| |#2|)) "failed") (|Fraction| |#2|) (|Fraction| |#2|) (|Fraction| |#2|) (|Mapping| |#2| |#2|)) "\\spad{monomRDEsys(f,g1,g2,D)} returns \\spad{[A, B, H, C1, C2, T]} such that \\spad{(y1', y2') + ((0, -f), (f, 0)) (y1,y2) = (g1,g2)} has a solution if and only if \\spad{y1 = Q1 / T, y2 = Q2 / T},{} where \\spad{B,C1,C2,Q1,Q2} have no normal poles and satisfy A \\spad{(Q1', Q2') + ((H, -B), (B, H)) (Q1,Q2) = (C1,C2)} \\spad{D} is the derivation to use.")))
NIL
NIL
@@ -4062,9 +4062,9 @@ 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")))
-((-4442 . T) (-4447 . T) (-4441 . T) (-4444 . T) (-4443 . T) ((-4451 "*") . T) (-4446 . T))
-((-2892 (|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 -1708 L)
+((-4445 . T) (-4450 . T) (-4444 . T) (-4447 . T) (-4446 . T) ((-4454 "*") . T) (-4449 . T))
+((-2895 (|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 -1709 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}.")))
NIL
NIL
@@ -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.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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 (-4451 "*"))))
+((|HasAttribute| |#1| (QUOTE (-4454 "*"))))
(-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
@@ -4100,14 +4100,14 @@ NIL
((|constructor| (NIL "This package provides coercions for the special types \\spadtype{Exit} and \\spadtype{Void}.")) (|coerce| ((|#1| (|Exit|)) "\\spad{coerce(e)} is never really evaluated. This coercion is used for formal type correctness when a function will not return directly to its caller.") (((|Void|) |#1|) "\\spad{coerce(s)} throws all information about \\spad{s} away. This coercion allows values of any type to appear in contexts where they will not be used. For example,{} it allows the resolution of different types in the \\spad{then} and \\spad{else} branches when an \\spad{if} is in a context where the resulting value is not used.")))
NIL
NIL
-(-1043 -1708 |Expon| |VarSet| |FPol| |LFPol|)
+(-1043 -1709 |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")))
-(((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.}")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (QUOTE (-1186))) (LIST (QUOTE |:|) (QUOTE -2340) (QUOTE (-52))))))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-1186) (QUOTE (-856))) (|HasCategory| (-52) (QUOTE (-1109))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (QUOTE (-1186))) (LIST (QUOTE |:|) (QUOTE -2340) (QUOTE (-52))))))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-1186) (QUOTE (-856))) (|HasCategory| (-52) (QUOTE (-1109))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-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}.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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,9 +4162,9 @@ 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.")))
-((-4446 . T))
+((-4449 . T))
NIL
-(-1059 |xx| -1708)
+(-1059 |xx| -1709)
((|constructor| (NIL "This package exports rational interpolation algorithms")))
NIL
NIL
@@ -4178,12 +4178,12 @@ 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")))
-((-4449 . T) (-4444 . T) (-4443 . T))
+((-4452 . T) (-4447 . T) (-4446 . 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}.")))
-((-4449 . T) (-4444 . T) (-4443 . T))
-((|HasCategory| |#3| (QUOTE (-174))) (-2892 (-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)))) (-2892 (|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)))))
+((-4452 . T) (-4447 . T) (-4446 . T))
+((|HasCategory| |#3| (QUOTE (-174))) (-2895 (-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)))) (-2895 (|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}.")))
NIL
@@ -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.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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.")))
-((-4437 . T) (-4441 . T) (-4436 . T) (-4447 . T) (-4448 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4440 . T) (-4444 . T) (-4439 . T) (-4450 . T) (-4451 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (QUOTE (-1186))) (LIST (QUOTE |:|) (QUOTE -2340) (QUOTE (-52))))))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-1186) (QUOTE (-856))) (|HasCategory| (-52) (QUOTE (-1109))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (QUOTE (-1186))) (LIST (QUOTE |:|) (QUOTE -2340) (QUOTE (-52))))))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-52) (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| (-52) (QUOTE (-1109))) (|HasCategory| (-52) (LIST (QUOTE -313) (QUOTE (-52))))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (QUOTE (-1109))) (|HasCategory| (-1186) (QUOTE (-856))) (|HasCategory| (-52) (QUOTE (-1109))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-52) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 (-1186)) (|:| -2340 (-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}}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . 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}.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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.")))
@@ -4268,11 +4268,11 @@ NIL
((|constructor| (NIL "This domain implements named rules")) (|name| (((|Symbol|) $) "\\spad{name(x)} returns the symbol")))
NIL
NIL
-(-1085 |Base| R -1708)
+(-1085 |Base| R -1709)
((|constructor| (NIL "\\indented{1}{Rules for the pattern matcher} Author: Manuel Bronstein Date Created: 24 Oct 1988 Date Last Updated: 26 October 1993 Keywords: pattern,{} matching,{} rule.")) (|quotedOperators| (((|List| (|Symbol|)) $) "\\spad{quotedOperators(r)} returns the list of operators on the right hand side of \\spad{r} that are considered quoted,{} that is they are not evaluated during any rewrite,{} but just applied formally to their arguments.")) (|elt| ((|#3| $ |#3| (|PositiveInteger|)) "\\spad{elt(r,f,n)} or \\spad{r}(\\spad{f},{} \\spad{n}) applies the rule \\spad{r} to \\spad{f} at most \\spad{n} times.")) (|rhs| ((|#3| $) "\\spad{rhs(r)} returns the right hand side of the rule \\spad{r}.")) (|lhs| ((|#3| $) "\\spad{lhs(r)} returns the left hand side of the rule \\spad{r}.")) (|pattern| (((|Pattern| |#1|) $) "\\spad{pattern(r)} returns the pattern corresponding to the left hand side of the rule \\spad{r}.")) (|suchThat| (($ $ (|List| (|Symbol|)) (|Mapping| (|Boolean|) (|List| |#3|))) "\\spad{suchThat(r, [a1,...,an], f)} returns the rewrite rule \\spad{r} with the predicate \\spad{f(a1,...,an)} attached to it.")) (|rule| (($ |#3| |#3| (|List| (|Symbol|))) "\\spad{rule(f, g, [f1,...,fn])} creates the rewrite rule \\spad{f == eval(eval(g, g is f), [f1,...,fn])},{} that is a rule with left-hand side \\spad{f} and right-hand side \\spad{g}; The symbols \\spad{f1},{}...,{}\\spad{fn} are the operators that are considered quoted,{} that is they are not evaluated during any rewrite,{} but just applied formally to their arguments.") (($ |#3| |#3|) "\\spad{rule(f, g)} creates the rewrite rule: \\spad{f == eval(g, g is f)},{} with left-hand side \\spad{f} and right-hand side \\spad{g}.")))
NIL
NIL
-(-1086 |Base| R -1708)
+(-1086 |Base| R -1709)
((|constructor| (NIL "A ruleset is a set of pattern matching rules grouped together.")) (|elt| ((|#3| $ |#3| (|PositiveInteger|)) "\\spad{elt(r,f,n)} or \\spad{r}(\\spad{f},{} \\spad{n}) applies all the rules of \\spad{r} to \\spad{f} at most \\spad{n} times.")) (|rules| (((|List| (|RewriteRule| |#1| |#2| |#3|)) $) "\\spad{rules(r)} returns the rules contained in \\spad{r}.")) (|ruleset| (($ (|List| (|RewriteRule| |#1| |#2| |#3|))) "\\spad{ruleset([r1,...,rn])} creates the rule set \\spad{{r1,...,rn}}.")))
NIL
NIL
@@ -4286,8 +4286,8 @@ 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.")))
-((-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))) (-2892 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-354)))) (-2892 (-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)))) (-2892 (|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)))))
+((-4445 |has| |#1| (-368)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-354))) (-2895 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-354)))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-373))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-235))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-354)))) (-2895 (-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)))) (-2895 (|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}.")))
NIL
@@ -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")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-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}.")))
-((-4439 . T))
+((-4442 . 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,8 +4374,8 @@ 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)}}")))
-((-4449 . T) (-4439 . T) (-4450 . T))
-((-2892 (-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|)))))
+((-4452 . T) (-4442 . T) (-4453 . T))
+((-2895 (-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.")))
NIL
@@ -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.}")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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| (|PositiveInteger|)) (|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| (|PositiveInteger|)) (|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| (|PositiveInteger|))) "\\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}.")))
-((-4443 |has| |#3| (-1058)) (-4444 |has| |#3| (-1058)) (-4446 |has| |#3| (-6 -4446)) ((-4451 "*") |has| |#3| (-174)) (-4449 . T))
-((-2892 (-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)))))) (-2892 (-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))) (-2892 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2892 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-799))) (-2892 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854)))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-732))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (|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))) (-2892 (|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))) (-2892 (-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))))) (-2892 (-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)))))) (-2892 (-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))))) (-2892 (|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|)))))
+((-4446 |has| |#3| (-1058)) (-4447 |has| |#3| (-1058)) (-4449 |has| |#3| (-6 -4449)) ((-4454 "*") |has| |#3| (-174)) (-4452 . T))
+((-2895 (-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)))))) (-2895 (-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))) (-2895 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368))) (|HasCategory| |#3| (QUOTE (-1058)))) (-2895 (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-368)))) (|HasCategory| |#3| (QUOTE (-1058))) (|HasCategory| |#3| (QUOTE (-174))) (|HasCategory| |#3| (QUOTE (-799))) (-2895 (|HasCategory| |#3| (QUOTE (-799))) (|HasCategory| |#3| (QUOTE (-854)))) (|HasCategory| |#3| (QUOTE (-854))) (|HasCategory| |#3| (QUOTE (-732))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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)))) (-2895 (|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))) (-2895 (|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))) (-2895 (-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))))) (-2895 (-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)))))) (-2895 (-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))))) (-2895 (|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 -4449)) (|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
@@ -4428,7 +4428,7 @@ NIL
((|constructor| (NIL "This domain represents a signature AST. A signature AST \\indented{2}{is a description of an exported operation,{} \\spadignore{e.g.} its name,{} result} \\indented{2}{type,{} and the list of its argument types.}")) (|signature| (((|Signature|) $) "\\spad{signature(s)} returns AST of the declared signature for \\spad{`s'}.")) (|name| (((|Identifier|) $) "\\spad{name(s)} returns the name of the signature \\spad{`s'}.")) (|signatureAst| (($ (|Identifier|) (|Signature|)) "\\spad{signatureAst(n,s,t)} builds the signature AST \\spad{n:} \\spad{s} \\spad{->} \\spad{t}")))
NIL
NIL
-(-1125 R -1708)
+(-1125 R -1709)
((|constructor| (NIL "This package provides functions to determine the sign of an elementary function around a point or infinity.")) (|sign| (((|Union| (|Integer|) "failed") |#2| (|Symbol|) |#2| (|String|)) "\\spad{sign(f, x, a, s)} returns the sign of \\spad{f} as \\spad{x} nears \\spad{a} from below if \\spad{s} is \"left\",{} or above if \\spad{s} is \"right\".") (((|Union| (|Integer|) "failed") |#2| (|Symbol|) (|OrderedCompletion| |#2|)) "\\spad{sign(f, x, a)} returns the sign of \\spad{f} as \\spad{x} nears \\spad{a},{} from both sides if \\spad{a} is finite.") (((|Union| (|Integer|) "failed") |#2|) "\\spad{sign(f)} returns the sign of \\spad{f} if it is constant everywhere.")))
NIL
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.")))
-((-4437 . T) (-4441 . T) (-4436 . T) (-4447 . T) (-4448 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4440 . T) (-4444 . T) (-4439 . T) (-4450 . T) (-4451 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . 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}.")))
-((-4449 . T) (-4450 . T))
+((-4452 . T) (-4453 . 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 (-4451 "*"))) (|HasCategory| |#3| (QUOTE (-174))))
+((|HasCategory| |#3| (QUOTE (-368))) (|HasAttribute| |#3| (QUOTE (-4454 "*"))) (|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.")))
-((-4449 . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4452 . T) (-4446 . T) (-4447 . T) (-4449 . 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,17 +4466,17 @@ 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.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#1| (QUOTE (-916))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2892 (|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)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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 -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-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}.")))
-(((-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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (-2895 (|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}")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . T))
NIL
-(-1137 UP -1708)
+(-1137 UP -1709)
((|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")))
NIL
NIL
@@ -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.")))
-((-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))) (-2892 (|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)))))
+((-4452 . T) (-4453 . 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))) (-2895 (|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}.")))
-((-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)))) (-2892 (-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))) (-2892 (|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))))
+((-4449 . T) (-4441 |has| |#2| (-6 (-4454 "*"))) (-4452 . T) (-4446 . T) (-4447 . T))
+((|HasCategory| |#2| (LIST (QUOTE -907) (QUOTE (-1186)))) (|HasCategory| |#2| (QUOTE (-235))) (|HasAttribute| |#2| (QUOTE (-4454 "*"))) (|HasCategory| |#2| (LIST (QUOTE -645) (QUOTE (-570)))) (|HasCategory| |#2| (LIST (QUOTE -1047) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (LIST (QUOTE -1047) (QUOTE (-570)))) (-2895 (-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))) (-2895 (|HasAttribute| |#2| (QUOTE (-4454 "*"))) (|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.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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,12 +4550,12 @@ 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.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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}.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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})}.")))
NIL
@@ -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.")))
-((-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-856))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))))
+((-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| |#1| (QUOTE (-856))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#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.")))
-((-4450 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4453 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . T))
NIL
(-1168)
NIL
-((-4450 . T) (-4449 . T))
-((-2892 (-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))))))
+((-4453 . T) (-4452 . T))
+((-2895 (-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.")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#1|)))))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| (-1168) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (QUOTE (-1168))) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#1|)))))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (QUOTE (-1109))) (|HasCategory| (-1168) (QUOTE (-856))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#1| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 (-1168)) (|:| -2340 |#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,9 +4638,9 @@ 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.")))
-(((-4451 "*") -2892 (-1809 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-826))) (|has| |#1| (-174)) (-1809 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-916)))) (-4442 -2892 (-1809 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-826))) (|has| |#1| (-562)) (-1809 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-916)))) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (-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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2892 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-148)))) (-2892 (-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|)))))) (-2892 (-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))) (-2892 (|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)))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-2892 (-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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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))) (-2892 (-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)))) (-2892 (-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)))))) (-2892 (-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)))) (-2892 (-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 -1708)
+(((-4454 "*") -2895 (-1810 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-826))) (|has| |#1| (-174)) (-1810 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-916)))) (-4445 -2895 (-1810 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-826))) (|has| |#1| (-562)) (-1810 (|has| |#1| (-368)) (|has| (-1184 |#1| |#2| |#3|) (-916)))) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (-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))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2895 (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-148)))) (-2895 (-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|)))))) (-2895 (-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))) (-2895 (|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)))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1184 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-2895 (-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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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))) (-2895 (-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)))) (-2895 (-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)))))) (-2895 (-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)))) (-2895 (-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 -1709)
((|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
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.")))
-(((-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))) (-2892 (|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)))) (-2892 (|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))))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (|HasCategory| |#1| (QUOTE (-146)))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4448 |has| |#1| (-368)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-916))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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))))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-458))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (|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 -4450)) (|HasCategory| |#1| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-916)))) (-2895 (-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}.")))
-(((-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))) (-2892 (|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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (|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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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}.")))
-(((-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))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasCategory| |#1| (QUOTE (-368))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2895 (|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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasCategory| |#1| (QUOTE (-368))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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")))
-(((-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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2892 (|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)))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-6 -4450)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-148))) (-2895 (|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 -4450)))
(-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,8 +4726,8 @@ 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}")))
-((-4449 . T) (-4450 . T))
-((-12 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2106) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2892 (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))))
+((-4452 . T) (-4453 . T))
+((-12 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -313) (LIST (QUOTE -2) (LIST (QUOTE |:|) (QUOTE -2107) (|devaluate| |#1|)) (LIST (QUOTE |:|) (QUOTE -2340) (|devaluate| |#2|)))))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#2| (QUOTE (-1109)))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -620) (QUOTE (-542)))) (-12 (|HasCategory| |#2| (QUOTE (-1109))) (|HasCategory| |#2| (LIST (QUOTE -313) (|devaluate| |#2|)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (QUOTE (-1109))) (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#2| (QUOTE (-1109))) (-2895 (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868))))) (|HasCategory| |#2| (LIST (QUOTE -619) (QUOTE (-868)))) (|HasCategory| (-2 (|:| -2107 |#1|) (|:| -2340 |#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
@@ -4742,7 +4742,7 @@ NIL
NIL
(-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})}.")))
-((-4450 . T))
+((-4453 . T))
NIL
(-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.")))
@@ -4782,8 +4782,8 @@ NIL
NIL
(-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}.")))
-((-4450 . T) (-4449 . T))
-((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2892 (-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)))))
+((-4453 . T) (-4452 . T))
+((-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (|HasCategory| |#1| (QUOTE (-1109))) (-2895 (-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)))))
(-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
@@ -4792,7 +4792,7 @@ NIL
((|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
-(-1216 R -1708)
+(-1216 R -1709)
((|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
@@ -4800,7 +4800,7 @@ NIL
((|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
-(-1218 R -1708)
+(-1218 R -1709)
((|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|)))))
@@ -4810,12 +4810,12 @@ NIL
((|HasCategory| |#4| (QUOTE (-373))))
(-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.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . T))
NIL
(-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}.")))
-(((-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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-146))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-368))))
(-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
@@ -4828,7 +4828,7 @@ NIL
((|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)))))
-(-1225 -1708)
+(-1225 -1709)
((|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
@@ -4854,7 +4854,7 @@ NIL
NIL
(-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.")))
-((-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-1232)
((|constructor| (NIL "This domain is a datatype for (unsigned) integer values of precision 16 bits.")))
@@ -4878,7 +4878,7 @@ NIL
NIL
(-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.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-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)}.")))
@@ -4886,16 +4886,16 @@ NIL
((|HasCategory| |#2| (QUOTE (-368))))
(-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)}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-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)}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (|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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-146))))) (-2892 (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-148))))) (-2892 (-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)))))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-235)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasCategory| (-570) (QUOTE (-1121))) (-2892 (|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)))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-2892 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856))))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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)))) (-2892 (-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))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (|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))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (|HasCategory| |#1| (QUOTE (-146))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-146))))) (-2895 (|HasCategory| |#1| (QUOTE (-148))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-148))))) (-2895 (-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)))))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-235)))) (|HasSignature| |#1| (LIST (QUOTE *) (LIST (|devaluate| |#1|) (QUOTE (-570)) (|devaluate| |#1|))))) (|HasCategory| (-570) (QUOTE (-1121))) (-2895 (|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)))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-2895 (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-826)))) (-12 (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-856))))) (-2895 (|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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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)))) (-2895 (-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.")))
-(((-4451 "*") -2892 (-1809 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-826))) (|has| |#1| (-174)) (-1809 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-916)))) (-4442 -2892 (-1809 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-826))) (|has| |#1| (-562)) (-1809 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-916)))) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
-((-2892 (-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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2892 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-148)))) (-2892 (-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|)))))) (-2892 (-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))) (-2892 (|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)))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-2892 (-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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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))) (-2892 (-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)))) (-2892 (-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)))))) (-2892 (-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)))) (-2892 (-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)))))
+(((-4454 "*") -2895 (-1810 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-826))) (|has| |#1| (-174)) (-1810 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-916)))) (-4445 -2895 (-1810 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-826))) (|has| |#1| (-562)) (-1810 (|has| |#1| (-368)) (|has| (-1269 |#1| |#2| |#3|) (-916)))) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
+((-2895 (-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))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-146))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-146)))) (-2895 (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-148))) (|HasCategory| |#1| (QUOTE (-368)))) (|HasCategory| |#1| (QUOTE (-148)))) (-2895 (-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|)))))) (-2895 (-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))) (-2895 (|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)))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-12 (|HasCategory| (-1269 |#1| |#2| |#3|) (QUOTE (-826))) (|HasCategory| |#1| (QUOTE (-368)))) (-2895 (-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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-570))))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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))) (-2895 (-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)))) (-2895 (-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)))))) (-2895 (-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)))) (-2895 (-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
@@ -4930,8 +4930,8 @@ NIL
NIL
(-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}")))
-(((-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))) (-2892 (|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)))) (-2892 (|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))))) (-2892 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2892 (|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)))) (-2892 (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (|HasCategory| |#2| (QUOTE (-146)))))
+(((-4454 "*") |has| |#2| (-174)) (-4445 |has| |#2| (-562)) (-4448 |has| |#2| (-368)) (-4450 |has| |#2| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#2| (QUOTE (-916))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-174))) (-2895 (|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)))) (-2895 (|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))))) (-2895 (|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|HasCategory| |#2| (QUOTE (-368))) (|HasCategory| |#2| (QUOTE (-458))) (|HasCategory| |#2| (QUOTE (-562))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (|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 -4450)) (|HasCategory| |#2| (QUOTE (-458))) (-12 (|HasCategory| $ (QUOTE (-146))) (|HasCategory| |#2| (QUOTE (-916)))) (-2895 (-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
@@ -4942,15 +4942,15 @@ 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))))
(-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}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4445 |has| |#1| (-368)) (-4447 |has| |#1| (-6 -4447)) (-4444 . T) (-4443 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4448 |has| |#1| (-368)) (-4450 |has| |#1| (-6 -4450)) (-4447 . T) (-4446 . T) (-4449 . T))
NIL
(-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 -3799) (LIST (|devaluate| |#2|) (QUOTE (-1186))))))
+((|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 -3802) (LIST (|devaluate| |#2|) (QUOTE (-1186))))))
(-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.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-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}.")))
@@ -4962,7 +4962,7 @@ NIL
NIL
(-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.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-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)}.")))
@@ -4970,24 +4970,24 @@ NIL
NIL
(-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)}.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4447 |has| |#1| (-368)) (-4441 |has| |#1| (-368)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-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)}.")))
-(((-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))) (-2892 (|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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))) (|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (|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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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}.")))
-(((-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))) (-2892 (|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))) (-2892 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4450 |has| |#1| (-368)) (-4444 |has| |#1| (-368)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (|HasCategory| |#1| (QUOTE (-174))) (-2895 (|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))) (-2895 (|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasCategory| |#1| (QUOTE (-562)))) (-2895 (|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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (LIST (QUOTE -413) (QUOTE (-570)))))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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))}.")))
-(((-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))) (-2892 (|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))))
+(((-4454 "*") |has| (-1262 |#2| |#3| |#4|) (-174)) (-4445 |has| (-1262 |#2| |#3| |#4|) (-562)) (-4446 . T) (-4447 . T) (-4449 . 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))) (-2895 (|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 -4450)))
+((|HasAttribute| |#1| (QUOTE -4453)))
(-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
@@ -4999,20 +4999,20 @@ NIL
(-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 (-1212))) (|HasSignature| |#2| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -2898) (LIST (|devaluate| |#2|) (|devaluate| |#2|) (QUOTE (-1186))))) (|HasCategory| |#2| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#2| (QUOTE (-368))))
+((|HasCategory| |#2| (LIST (QUOTE -29) (QUOTE (-570)))) (|HasCategory| |#2| (QUOTE (-966))) (|HasCategory| |#2| (QUOTE (-1212))) (|HasSignature| |#2| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#2|)))) (|HasSignature| |#2| (LIST (QUOTE -2023) (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.")))
-(((-4451 "*") |has| |#1| (-174)) (-4442 |has| |#1| (-562)) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-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}.")))
-(((-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))) (-2892 (|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 -3799) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasCategory| |#1| (QUOTE (-368))) (-2892 (-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 -2898) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (LIST (LIST (QUOTE -650) (QUOTE (-1186))) (|devaluate| |#1|)))))))
+(((-4454 "*") |has| |#1| (-174)) (-4445 |has| |#1| (-562)) (-4446 . T) (-4447 . T) (-4449 . T))
+((|HasCategory| |#1| (LIST (QUOTE -38) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasCategory| |#1| (QUOTE (-562))) (-2895 (|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 -3802) (LIST (|devaluate| |#1|) (QUOTE (-1186)))))) (|HasSignature| |#1| (LIST (QUOTE **) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-777))))) (|HasCategory| |#1| (QUOTE (-368))) (-2895 (-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 -2023) (LIST (|devaluate| |#1|) (|devaluate| |#1|) (QUOTE (-1186))))) (|HasSignature| |#1| (LIST (QUOTE -1755) (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
-(-1271 -1708 UP L UTS)
+(-1271 -1709 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))))
@@ -5030,7 +5030,7 @@ 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))))
(-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.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . T))
NIL
(-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}.")))
@@ -5038,8 +5038,8 @@ NIL
NIL
(-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.")))
-((-4450 . T) (-4449 . T))
-((-2892 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2892 (-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)))) (-2892 (|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|)))))
+((-4453 . T) (-4452 . T))
+((-2895 (-12 (|HasCategory| |#1| (QUOTE (-856))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|)))) (-12 (|HasCategory| |#1| (QUOTE (-1109))) (|HasCategory| |#1| (LIST (QUOTE -313) (|devaluate| |#1|))))) (-2895 (-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)))) (-2895 (|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|)))))
(-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
@@ -5066,13 +5066,13 @@ NIL
NIL
(-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}.")))
-((-4444 . T) (-4443 . T))
+((-4447 . T) (-4446 . T))
NIL
(-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
-(-1286 K R UP -1708)
+(-1286 K R UP -1709)
((|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
@@ -5086,71 +5086,75 @@ NIL
NIL
(-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)")))
-((-4444 |has| |#1| (-174)) (-4443 |has| |#1| (-174)) (-4446 . T))
+((-4447 |has| |#1| (-174)) (-4446 |has| |#1| (-174)) (-4449 . T))
((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))))
(-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}}.")))
-((-4450 . T) (-4449 . T))
+((-4453 . T) (-4452 . 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)))))
(-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})")))
-((-4443 . T) (-4444 . T) (-4446 . T))
+((-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-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.")))
-((-4446 . T) (-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T))
-((|HasCategory| |#2| (QUOTE (-174))) (|HasAttribute| |#2| (QUOTE -4442)))
+((-4449 . T) (-4445 |has| |#2| (-6 -4445)) (-4447 . T) (-4446 . T))
+((|HasCategory| |#2| (QUOTE (-174))) (|HasAttribute| |#2| (QUOTE -4445)))
(-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
(-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}.")))
-((-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
+((-4445 |has| |#2| (-6 -4445)) (-4447 . T) (-4446 . T) (-4449 . T))
NIL
-(-1295 S -1708)
+(-1295 S -1709)
((|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))))
-(-1296 -1708)
+(-1296 -1709)
((|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}.")))
-((-4441 . T) (-4447 . T) (-4442 . T) ((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+((-4444 . T) (-4450 . T) (-4445 . T) ((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
(-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}}.")))
-((-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)))
+((-4445 |has| |#2| (-6 -4445)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#2| (QUOTE (-174))) (|HasCategory| |#2| (LIST (QUOTE -723) (LIST (QUOTE -413) (QUOTE (-570))))) (|HasAttribute| |#2| (QUOTE -4445)))
(-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}.")))
-((-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
+((-4445 |has| |#2| (-6 -4445)) (-4447 . T) (-4446 . T) (-4449 . T))
NIL
(-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.")))
-((-4442 |has| |#1| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#1| (QUOTE (-174))) (|HasAttribute| |#1| (QUOTE -4442)))
+((-4445 |has| |#1| (-6 -4445)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#1| (QUOTE (-174))) (|HasAttribute| |#1| (QUOTE -4445)))
(-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}.")))
-((-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)))
+((-4449 . T) (-4450 |has| |#1| (-6 -4450)) (-4445 |has| |#1| (-6 -4445)) (-4447 . T) (-4446 . T))
+((|HasCategory| |#1| (QUOTE (-174))) (|HasCategory| |#1| (QUOTE (-368))) (|HasAttribute| |#1| (QUOTE -4449)) (|HasAttribute| |#1| (QUOTE -4450)) (|HasAttribute| |#1| (QUOTE -4445)))
(-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.")))
-((-4442 |has| |#2| (-6 -4442)) (-4444 . T) (-4443 . T) (-4446 . T))
-((|HasCategory| |#2| (QUOTE (-174))) (|HasAttribute| |#2| (QUOTE -4442)))
-(-1302 A)
+((-4445 |has| |#2| (-6 -4445)) (-4447 . T) (-4446 . T) (-4449 . T))
+((|HasCategory| |#2| (QUOTE (-174))) (|HasAttribute| |#2| (QUOTE -4445)))
+(-1302)
+((|constructor| (NIL "This domain provides representations of Young diagrams.")) (|shape| (((|Partition|) $) "\\spad{shape x} returns the partition shaping \\spad{x}.")) (|youngDiagram| (($ (|List| (|PositiveInteger|))) "\\spad{youngDiagram l} returns an object representing a Young diagram with shape given by the list of integers \\spad{l}")))
+NIL
+NIL
+(-1303 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
-(-1303 R |ls| |ls2|)
+(-1304 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
-(-1304 R)
+(-1305 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
-(-1305 |p|)
+(-1306 |p|)
((|constructor| (NIL "IntegerMod(\\spad{n}) creates the ring of integers reduced modulo the integer \\spad{n}.")))
-(((-4451 "*") . T) (-4443 . T) (-4444 . T) (-4446 . T))
+(((-4454 "*") . T) (-4446 . T) (-4447 . T) (-4449 . T))
NIL
NIL
NIL
@@ -5168,4 +5172,4 @@ NIL
NIL
NIL
NIL
-((-3 NIL 2268303 2268308 2268313 2268318) (-2 NIL 2268283 2268288 2268293 2268298) (-1 NIL 2268263 2268268 2268273 2268278) (0 NIL 2268243 2268248 2268253 2268258) (-1305 "ZMOD.spad" 2268052 2268065 2268181 2268238) (-1304 "ZLINDEP.spad" 2267118 2267129 2268042 2268047) (-1303 "ZDSOLVE.spad" 2257063 2257085 2267108 2267113) (-1302 "YSTREAM.spad" 2256558 2256569 2257053 2257058) (-1301 "XRPOLY.spad" 2255778 2255798 2256414 2256483) (-1300 "XPR.spad" 2253573 2253586 2255496 2255595) (-1299 "XPOLY.spad" 2253128 2253139 2253429 2253498) (-1298 "XPOLYC.spad" 2252447 2252463 2253054 2253123) (-1297 "XPBWPOLY.spad" 2250884 2250904 2252227 2252296) (-1296 "XF.spad" 2249347 2249362 2250786 2250879) (-1295 "XF.spad" 2247790 2247807 2249231 2249236) (-1294 "XFALG.spad" 2244838 2244854 2247716 2247785) (-1293 "XEXPPKG.spad" 2244089 2244115 2244828 2244833) (-1292 "XDPOLY.spad" 2243703 2243719 2243945 2244014) (-1291 "XALG.spad" 2243363 2243374 2243659 2243698) (-1290 "WUTSET.spad" 2239202 2239219 2243009 2243036) (-1289 "WP.spad" 2238401 2238445 2239060 2239127) (-1288 "WHILEAST.spad" 2238199 2238208 2238391 2238396) (-1287 "WHEREAST.spad" 2237870 2237879 2238189 2238194) (-1286 "WFFINTBS.spad" 2235533 2235555 2237860 2237865) (-1285 "WEIER.spad" 2233755 2233766 2235523 2235528) (-1284 "VSPACE.spad" 2233428 2233439 2233723 2233750) (-1283 "VSPACE.spad" 2233121 2233134 2233418 2233423) (-1282 "VOID.spad" 2232798 2232807 2233111 2233116) (-1281 "VIEW.spad" 2230478 2230487 2232788 2232793) (-1280 "VIEWDEF.spad" 2225679 2225688 2230468 2230473) (-1279 "VIEW3D.spad" 2209640 2209649 2225669 2225674) (-1278 "VIEW2D.spad" 2197531 2197540 2209630 2209635) (-1277 "VECTOR.spad" 2196205 2196216 2196456 2196483) (-1276 "VECTOR2.spad" 2194844 2194857 2196195 2196200) (-1275 "VECTCAT.spad" 2192748 2192759 2194812 2194839) (-1274 "VECTCAT.spad" 2190459 2190472 2192525 2192530) (-1273 "VARIABLE.spad" 2190239 2190254 2190449 2190454) (-1272 "UTYPE.spad" 2189883 2189892 2190229 2190234) (-1271 "UTSODETL.spad" 2189178 2189202 2189839 2189844) (-1270 "UTSODE.spad" 2187394 2187414 2189168 2189173) (-1269 "UTS.spad" 2182198 2182226 2185861 2185958) (-1268 "UTSCAT.spad" 2179677 2179693 2182096 2182193) (-1267 "UTSCAT.spad" 2176800 2176818 2179221 2179226) (-1266 "UTS2.spad" 2176395 2176430 2176790 2176795) (-1265 "URAGG.spad" 2171068 2171079 2176385 2176390) (-1264 "URAGG.spad" 2165705 2165718 2171024 2171029) (-1263 "UPXSSING.spad" 2163350 2163376 2164786 2164919) (-1262 "UPXS.spad" 2160504 2160532 2161482 2161631) (-1261 "UPXSCONS.spad" 2158263 2158283 2158636 2158785) (-1260 "UPXSCCA.spad" 2156834 2156854 2158109 2158258) (-1259 "UPXSCCA.spad" 2155547 2155569 2156824 2156829) (-1258 "UPXSCAT.spad" 2154136 2154152 2155393 2155542) (-1257 "UPXS2.spad" 2153679 2153732 2154126 2154131) (-1256 "UPSQFREE.spad" 2152093 2152107 2153669 2153674) (-1255 "UPSCAT.spad" 2149704 2149728 2151991 2152088) (-1254 "UPSCAT.spad" 2147021 2147047 2149310 2149315) (-1253 "UPOLYC.spad" 2142061 2142072 2146863 2147016) (-1252 "UPOLYC.spad" 2136993 2137006 2141797 2141802) (-1251 "UPOLYC2.spad" 2136464 2136483 2136983 2136988) (-1250 "UP.spad" 2133663 2133678 2134050 2134203) (-1249 "UPMP.spad" 2132563 2132576 2133653 2133658) (-1248 "UPDIVP.spad" 2132128 2132142 2132553 2132558) (-1247 "UPDECOMP.spad" 2130373 2130387 2132118 2132123) (-1246 "UPCDEN.spad" 2129582 2129598 2130363 2130368) (-1245 "UP2.spad" 2128946 2128967 2129572 2129577) (-1244 "UNISEG.spad" 2128299 2128310 2128865 2128870) (-1243 "UNISEG2.spad" 2127796 2127809 2128255 2128260) (-1242 "UNIFACT.spad" 2126899 2126911 2127786 2127791) (-1241 "ULS.spad" 2117457 2117485 2118544 2118973) (-1240 "ULSCONS.spad" 2109853 2109873 2110223 2110372) (-1239 "ULSCCAT.spad" 2107590 2107610 2109699 2109848) (-1238 "ULSCCAT.spad" 2105435 2105457 2107546 2107551) (-1237 "ULSCAT.spad" 2103667 2103683 2105281 2105430) (-1236 "ULS2.spad" 2103181 2103234 2103657 2103662) (-1235 "UINT8.spad" 2103058 2103067 2103171 2103176) (-1234 "UINT64.spad" 2102934 2102943 2103048 2103053) (-1233 "UINT32.spad" 2102810 2102819 2102924 2102929) (-1232 "UINT16.spad" 2102686 2102695 2102800 2102805) (-1231 "UFD.spad" 2101751 2101760 2102612 2102681) (-1230 "UFD.spad" 2100878 2100889 2101741 2101746) (-1229 "UDVO.spad" 2099759 2099768 2100868 2100873) (-1228 "UDPO.spad" 2097252 2097263 2099715 2099720) (-1227 "TYPE.spad" 2097184 2097193 2097242 2097247) (-1226 "TYPEAST.spad" 2097103 2097112 2097174 2097179) (-1225 "TWOFACT.spad" 2095755 2095770 2097093 2097098) (-1224 "TUPLE.spad" 2095241 2095252 2095654 2095659) (-1223 "TUBETOOL.spad" 2092108 2092117 2095231 2095236) (-1222 "TUBE.spad" 2090755 2090772 2092098 2092103) (-1221 "TS.spad" 2089354 2089370 2090320 2090417) (-1220 "TSETCAT.spad" 2076481 2076498 2089322 2089349) (-1219 "TSETCAT.spad" 2063594 2063613 2076437 2076442) (-1218 "TRMANIP.spad" 2057960 2057977 2063300 2063305) (-1217 "TRIMAT.spad" 2056923 2056948 2057950 2057955) (-1216 "TRIGMNIP.spad" 2055450 2055467 2056913 2056918) (-1215 "TRIGCAT.spad" 2054962 2054971 2055440 2055445) (-1214 "TRIGCAT.spad" 2054472 2054483 2054952 2054957) (-1213 "TREE.spad" 2053047 2053058 2054079 2054106) (-1212 "TRANFUN.spad" 2052886 2052895 2053037 2053042) (-1211 "TRANFUN.spad" 2052723 2052734 2052876 2052881) (-1210 "TOPSP.spad" 2052397 2052406 2052713 2052718) (-1209 "TOOLSIGN.spad" 2052060 2052071 2052387 2052392) (-1208 "TEXTFILE.spad" 2050621 2050630 2052050 2052055) (-1207 "TEX.spad" 2047767 2047776 2050611 2050616) (-1206 "TEX1.spad" 2047323 2047334 2047757 2047762) (-1205 "TEMUTL.spad" 2046878 2046887 2047313 2047318) (-1204 "TBCMPPK.spad" 2044971 2044994 2046868 2046873) (-1203 "TBAGG.spad" 2044021 2044044 2044951 2044966) (-1202 "TBAGG.spad" 2043079 2043104 2044011 2044016) (-1201 "TANEXP.spad" 2042487 2042498 2043069 2043074) (-1200 "TALGOP.spad" 2042211 2042222 2042477 2042482) (-1199 "TABLE.spad" 2040622 2040645 2040892 2040919) (-1198 "TABLEAU.spad" 2040103 2040114 2040612 2040617) (-1197 "TABLBUMP.spad" 2036906 2036917 2040093 2040098) (-1196 "SYSTEM.spad" 2036134 2036143 2036896 2036901) (-1195 "SYSSOLP.spad" 2033617 2033628 2036124 2036129) (-1194 "SYSPTR.spad" 2033516 2033525 2033607 2033612) (-1193 "SYSNNI.spad" 2032698 2032709 2033506 2033511) (-1192 "SYSINT.spad" 2032102 2032113 2032688 2032693) (-1191 "SYNTAX.spad" 2028308 2028317 2032092 2032097) (-1190 "SYMTAB.spad" 2026376 2026385 2028298 2028303) (-1189 "SYMS.spad" 2022399 2022408 2026366 2026371) (-1188 "SYMPOLY.spad" 2021406 2021417 2021488 2021615) (-1187 "SYMFUNC.spad" 2020907 2020918 2021396 2021401) (-1186 "SYMBOL.spad" 2018410 2018419 2020897 2020902) (-1185 "SWITCH.spad" 2015181 2015190 2018400 2018405) (-1184 "SUTS.spad" 2012086 2012114 2013648 2013745) (-1183 "SUPXS.spad" 2009227 2009255 2010218 2010367) (-1182 "SUP.spad" 2006040 2006051 2006813 2006966) (-1181 "SUPFRACF.spad" 2005145 2005163 2006030 2006035) (-1180 "SUP2.spad" 2004537 2004550 2005135 2005140) (-1179 "SUMRF.spad" 2003511 2003522 2004527 2004532) (-1178 "SUMFS.spad" 2003148 2003165 2003501 2003506) (-1177 "SULS.spad" 1993693 1993721 1994793 1995222) (-1176 "SUCHTAST.spad" 1993462 1993471 1993683 1993688) (-1175 "SUCH.spad" 1993144 1993159 1993452 1993457) (-1174 "SUBSPACE.spad" 1985259 1985274 1993134 1993139) (-1173 "SUBRESP.spad" 1984429 1984443 1985215 1985220) (-1172 "STTF.spad" 1980528 1980544 1984419 1984424) (-1171 "STTFNC.spad" 1976996 1977012 1980518 1980523) (-1170 "STTAYLOR.spad" 1969631 1969642 1976877 1976882) (-1169 "STRTBL.spad" 1968136 1968153 1968285 1968312) (-1168 "STRING.spad" 1967545 1967554 1967559 1967586) (-1167 "STRICAT.spad" 1967333 1967342 1967513 1967540) (-1166 "STREAM.spad" 1964251 1964262 1966858 1966873) (-1165 "STREAM3.spad" 1963824 1963839 1964241 1964246) (-1164 "STREAM2.spad" 1962952 1962965 1963814 1963819) (-1163 "STREAM1.spad" 1962658 1962669 1962942 1962947) (-1162 "STINPROD.spad" 1961594 1961610 1962648 1962653) (-1161 "STEP.spad" 1960795 1960804 1961584 1961589) (-1160 "STEPAST.spad" 1960029 1960038 1960785 1960790) (-1159 "STBL.spad" 1958555 1958583 1958722 1958737) (-1158 "STAGG.spad" 1957630 1957641 1958545 1958550) (-1157 "STAGG.spad" 1956703 1956716 1957620 1957625) (-1156 "STACK.spad" 1956060 1956071 1956310 1956337) (-1155 "SREGSET.spad" 1953764 1953781 1955706 1955733) (-1154 "SRDCMPK.spad" 1952325 1952345 1953754 1953759) (-1153 "SRAGG.spad" 1947468 1947477 1952293 1952320) (-1152 "SRAGG.spad" 1942631 1942642 1947458 1947463) (-1151 "SQMATRIX.spad" 1940247 1940265 1941163 1941250) (-1150 "SPLTREE.spad" 1934799 1934812 1939683 1939710) (-1149 "SPLNODE.spad" 1931387 1931400 1934789 1934794) (-1148 "SPFCAT.spad" 1930196 1930205 1931377 1931382) (-1147 "SPECOUT.spad" 1928748 1928757 1930186 1930191) (-1146 "SPADXPT.spad" 1920343 1920352 1928738 1928743) (-1145 "spad-parser.spad" 1919808 1919817 1920333 1920338) (-1144 "SPADAST.spad" 1919509 1919518 1919798 1919803) (-1143 "SPACEC.spad" 1903708 1903719 1919499 1919504) (-1142 "SPACE3.spad" 1903484 1903495 1903698 1903703) (-1141 "SORTPAK.spad" 1903033 1903046 1903440 1903445) (-1140 "SOLVETRA.spad" 1900796 1900807 1903023 1903028) (-1139 "SOLVESER.spad" 1899324 1899335 1900786 1900791) (-1138 "SOLVERAD.spad" 1895350 1895361 1899314 1899319) (-1137 "SOLVEFOR.spad" 1893812 1893830 1895340 1895345) (-1136 "SNTSCAT.spad" 1893412 1893429 1893780 1893807) (-1135 "SMTS.spad" 1891684 1891710 1892977 1893074) (-1134 "SMP.spad" 1889159 1889179 1889549 1889676) (-1133 "SMITH.spad" 1888004 1888029 1889149 1889154) (-1132 "SMATCAT.spad" 1886114 1886144 1887948 1887999) (-1131 "SMATCAT.spad" 1884156 1884188 1885992 1885997) (-1130 "SKAGG.spad" 1883119 1883130 1884124 1884151) (-1129 "SINT.spad" 1882059 1882068 1882985 1883114) (-1128 "SIMPAN.spad" 1881787 1881796 1882049 1882054) (-1127 "SIG.spad" 1881117 1881126 1881777 1881782) (-1126 "SIGNRF.spad" 1880235 1880246 1881107 1881112) (-1125 "SIGNEF.spad" 1879514 1879531 1880225 1880230) (-1124 "SIGAST.spad" 1878899 1878908 1879504 1879509) (-1123 "SHP.spad" 1876827 1876842 1878855 1878860) (-1122 "SHDP.spad" 1866538 1866565 1867047 1867178) (-1121 "SGROUP.spad" 1866146 1866155 1866528 1866533) (-1120 "SGROUP.spad" 1865752 1865763 1866136 1866141) (-1119 "SGCF.spad" 1858891 1858900 1865742 1865747) (-1118 "SFRTCAT.spad" 1857821 1857838 1858859 1858886) (-1117 "SFRGCD.spad" 1856884 1856904 1857811 1857816) (-1116 "SFQCMPK.spad" 1851521 1851541 1856874 1856879) (-1115 "SFORT.spad" 1850960 1850974 1851511 1851516) (-1114 "SEXOF.spad" 1850803 1850843 1850950 1850955) (-1113 "SEX.spad" 1850695 1850704 1850793 1850798) (-1112 "SEXCAT.spad" 1848296 1848336 1850685 1850690) (-1111 "SET.spad" 1846620 1846631 1847717 1847756) (-1110 "SETMN.spad" 1845070 1845087 1846610 1846615) (-1109 "SETCAT.spad" 1844392 1844401 1845060 1845065) (-1108 "SETCAT.spad" 1843712 1843723 1844382 1844387) (-1107 "SETAGG.spad" 1840261 1840272 1843692 1843707) (-1106 "SETAGG.spad" 1836818 1836831 1840251 1840256) (-1105 "SEQAST.spad" 1836521 1836530 1836808 1836813) (-1104 "SEGXCAT.spad" 1835677 1835690 1836511 1836516) (-1103 "SEG.spad" 1835490 1835501 1835596 1835601) (-1102 "SEGCAT.spad" 1834415 1834426 1835480 1835485) (-1101 "SEGBIND.spad" 1834173 1834184 1834362 1834367) (-1100 "SEGBIND2.spad" 1833871 1833884 1834163 1834168) (-1099 "SEGAST.spad" 1833585 1833594 1833861 1833866) (-1098 "SEG2.spad" 1833020 1833033 1833541 1833546) (-1097 "SDVAR.spad" 1832296 1832307 1833010 1833015) (-1096 "SDPOL.spad" 1829722 1829733 1830013 1830140) (-1095 "SCPKG.spad" 1827811 1827822 1829712 1829717) (-1094 "SCOPE.spad" 1826964 1826973 1827801 1827806) (-1093 "SCACHE.spad" 1825660 1825671 1826954 1826959) (-1092 "SASTCAT.spad" 1825569 1825578 1825650 1825655) (-1091 "SAOS.spad" 1825441 1825450 1825559 1825564) (-1090 "SAERFFC.spad" 1825154 1825174 1825431 1825436) (-1089 "SAE.spad" 1823329 1823345 1823940 1824075) (-1088 "SAEFACT.spad" 1823030 1823050 1823319 1823324) (-1087 "RURPK.spad" 1820689 1820705 1823020 1823025) (-1086 "RULESET.spad" 1820142 1820166 1820679 1820684) (-1085 "RULE.spad" 1818382 1818406 1820132 1820137) (-1084 "RULECOLD.spad" 1818234 1818247 1818372 1818377) (-1083 "RTVALUE.spad" 1817969 1817978 1818224 1818229) (-1082 "RSTRCAST.spad" 1817686 1817695 1817959 1817964) (-1081 "RSETGCD.spad" 1814064 1814084 1817676 1817681) (-1080 "RSETCAT.spad" 1804000 1804017 1814032 1814059) (-1079 "RSETCAT.spad" 1793956 1793975 1803990 1803995) (-1078 "RSDCMPK.spad" 1792408 1792428 1793946 1793951) (-1077 "RRCC.spad" 1790792 1790822 1792398 1792403) (-1076 "RRCC.spad" 1789174 1789206 1790782 1790787) (-1075 "RPTAST.spad" 1788876 1788885 1789164 1789169) (-1074 "RPOLCAT.spad" 1768236 1768251 1788744 1788871) (-1073 "RPOLCAT.spad" 1747309 1747326 1767819 1767824) (-1072 "ROUTINE.spad" 1743192 1743201 1745956 1745983) (-1071 "ROMAN.spad" 1742520 1742529 1743058 1743187) (-1070 "ROIRC.spad" 1741600 1741632 1742510 1742515) (-1069 "RNS.spad" 1740503 1740512 1741502 1741595) (-1068 "RNS.spad" 1739492 1739503 1740493 1740498) (-1067 "RNG.spad" 1739227 1739236 1739482 1739487) (-1066 "RNGBIND.spad" 1738387 1738401 1739182 1739187) (-1065 "RMODULE.spad" 1738152 1738163 1738377 1738382) (-1064 "RMCAT2.spad" 1737572 1737629 1738142 1738147) (-1063 "RMATRIX.spad" 1736396 1736415 1736739 1736778) (-1062 "RMATCAT.spad" 1731975 1732006 1736352 1736391) (-1061 "RMATCAT.spad" 1727444 1727477 1731823 1731828) (-1060 "RLINSET.spad" 1726838 1726849 1727434 1727439) (-1059 "RINTERP.spad" 1726726 1726746 1726828 1726833) (-1058 "RING.spad" 1726196 1726205 1726706 1726721) (-1057 "RING.spad" 1725674 1725685 1726186 1726191) (-1056 "RIDIST.spad" 1725066 1725075 1725664 1725669) (-1055 "RGCHAIN.spad" 1723649 1723665 1724551 1724578) (-1054 "RGBCSPC.spad" 1723430 1723442 1723639 1723644) (-1053 "RGBCMDL.spad" 1722960 1722972 1723420 1723425) (-1052 "RF.spad" 1720602 1720613 1722950 1722955) (-1051 "RFFACTOR.spad" 1720064 1720075 1720592 1720597) (-1050 "RFFACT.spad" 1719799 1719811 1720054 1720059) (-1049 "RFDIST.spad" 1718795 1718804 1719789 1719794) (-1048 "RETSOL.spad" 1718214 1718227 1718785 1718790) (-1047 "RETRACT.spad" 1717642 1717653 1718204 1718209) (-1046 "RETRACT.spad" 1717068 1717081 1717632 1717637) (-1045 "RETAST.spad" 1716880 1716889 1717058 1717063) (-1044 "RESULT.spad" 1714940 1714949 1715527 1715554) (-1043 "RESRING.spad" 1714287 1714334 1714878 1714935) (-1042 "RESLATC.spad" 1713611 1713622 1714277 1714282) (-1041 "REPSQ.spad" 1713342 1713353 1713601 1713606) (-1040 "REP.spad" 1710896 1710905 1713332 1713337) (-1039 "REPDB.spad" 1710603 1710614 1710886 1710891) (-1038 "REP2.spad" 1700261 1700272 1710445 1710450) (-1037 "REP1.spad" 1694457 1694468 1700211 1700216) (-1036 "REGSET.spad" 1692254 1692271 1694103 1694130) (-1035 "REF.spad" 1691589 1691600 1692209 1692214) (-1034 "REDORDER.spad" 1690795 1690812 1691579 1691584) (-1033 "RECLOS.spad" 1689578 1689598 1690282 1690375) (-1032 "REALSOLV.spad" 1688718 1688727 1689568 1689573) (-1031 "REAL.spad" 1688590 1688599 1688708 1688713) (-1030 "REAL0Q.spad" 1685888 1685903 1688580 1688585) (-1029 "REAL0.spad" 1682732 1682747 1685878 1685883) (-1028 "RDUCEAST.spad" 1682453 1682462 1682722 1682727) (-1027 "RDIV.spad" 1682108 1682133 1682443 1682448) (-1026 "RDIST.spad" 1681675 1681686 1682098 1682103) (-1025 "RDETRS.spad" 1680539 1680557 1681665 1681670) (-1024 "RDETR.spad" 1678678 1678696 1680529 1680534) (-1023 "RDEEFS.spad" 1677777 1677794 1678668 1678673) (-1022 "RDEEF.spad" 1676787 1676804 1677767 1677772) (-1021 "RCFIELD.spad" 1673973 1673982 1676689 1676782) (-1020 "RCFIELD.spad" 1671245 1671256 1673963 1673968) (-1019 "RCAGG.spad" 1669173 1669184 1671235 1671240) (-1018 "RCAGG.spad" 1667028 1667041 1669092 1669097) (-1017 "RATRET.spad" 1666388 1666399 1667018 1667023) (-1016 "RATFACT.spad" 1666080 1666092 1666378 1666383) (-1015 "RANDSRC.spad" 1665399 1665408 1666070 1666075) (-1014 "RADUTIL.spad" 1665155 1665164 1665389 1665394) (-1013 "RADIX.spad" 1662076 1662090 1663622 1663715) (-1012 "RADFF.spad" 1660489 1660526 1660608 1660764) (-1011 "RADCAT.spad" 1660084 1660093 1660479 1660484) (-1010 "RADCAT.spad" 1659677 1659688 1660074 1660079) (-1009 "QUEUE.spad" 1659025 1659036 1659284 1659311) (-1008 "QUAT.spad" 1657606 1657617 1657949 1658014) (-1007 "QUATCT2.spad" 1657226 1657245 1657596 1657601) (-1006 "QUATCAT.spad" 1655396 1655407 1657156 1657221) (-1005 "QUATCAT.spad" 1653317 1653330 1655079 1655084) (-1004 "QUAGG.spad" 1652144 1652155 1653285 1653312) (-1003 "QQUTAST.spad" 1651912 1651921 1652134 1652139) (-1002 "QFORM.spad" 1651376 1651391 1651902 1651907) (-1001 "QFCAT.spad" 1650078 1650089 1651278 1651371) (-1000 "QFCAT.spad" 1648371 1648384 1649573 1649578) (-999 "QFCAT2.spad" 1648064 1648080 1648361 1648366) (-998 "QEQUAT.spad" 1647623 1647631 1648054 1648059) (-997 "QCMPACK.spad" 1642370 1642389 1647613 1647618) (-996 "QALGSET.spad" 1638449 1638481 1642284 1642289) (-995 "QALGSET2.spad" 1636445 1636463 1638439 1638444) (-994 "PWFFINTB.spad" 1633861 1633882 1636435 1636440) (-993 "PUSHVAR.spad" 1633200 1633219 1633851 1633856) (-992 "PTRANFN.spad" 1629328 1629338 1633190 1633195) (-991 "PTPACK.spad" 1626416 1626426 1629318 1629323) (-990 "PTFUNC2.spad" 1626239 1626253 1626406 1626411) (-989 "PTCAT.spad" 1625494 1625504 1626207 1626234) (-988 "PSQFR.spad" 1624801 1624825 1625484 1625489) (-987 "PSEUDLIN.spad" 1623687 1623697 1624791 1624796) (-986 "PSETPK.spad" 1609120 1609136 1623565 1623570) (-985 "PSETCAT.spad" 1603040 1603063 1609100 1609115) (-984 "PSETCAT.spad" 1596934 1596959 1602996 1603001) (-983 "PSCURVE.spad" 1595917 1595925 1596924 1596929) (-982 "PSCAT.spad" 1594700 1594729 1595815 1595912) (-981 "PSCAT.spad" 1593573 1593604 1594690 1594695) (-980 "PRTITION.spad" 1592658 1592666 1593563 1593568) (-979 "PRTDAST.spad" 1592377 1592385 1592648 1592653) (-978 "PRS.spad" 1581939 1581956 1592333 1592338) (-977 "PRQAGG.spad" 1581374 1581384 1581907 1581934) (-976 "PROPLOG.spad" 1580946 1580954 1581364 1581369) (-975 "PROPFUN2.spad" 1580569 1580582 1580936 1580941) (-974 "PROPFUN1.spad" 1579967 1579978 1580559 1580564) (-973 "PROPFRML.spad" 1578535 1578546 1579957 1579962) (-972 "PROPERTY.spad" 1578023 1578031 1578525 1578530) (-971 "PRODUCT.spad" 1575705 1575717 1575989 1576044) (-970 "PR.spad" 1574097 1574109 1574796 1574923) (-969 "PRINT.spad" 1573849 1573857 1574087 1574092) (-968 "PRIMES.spad" 1572102 1572112 1573839 1573844) (-967 "PRIMELT.spad" 1570183 1570197 1572092 1572097) (-966 "PRIMCAT.spad" 1569810 1569818 1570173 1570178) (-965 "PRIMARR.spad" 1568815 1568825 1568993 1569020) (-964 "PRIMARR2.spad" 1567582 1567594 1568805 1568810) (-963 "PREASSOC.spad" 1566964 1566976 1567572 1567577) (-962 "PPCURVE.spad" 1566101 1566109 1566954 1566959) (-961 "PORTNUM.spad" 1565876 1565884 1566091 1566096) (-960 "POLYROOT.spad" 1564725 1564747 1565832 1565837) (-959 "POLY.spad" 1562060 1562070 1562575 1562702) (-958 "POLYLIFT.spad" 1561325 1561348 1562050 1562055) (-957 "POLYCATQ.spad" 1559443 1559465 1561315 1561320) (-956 "POLYCAT.spad" 1552913 1552934 1559311 1559438) (-955 "POLYCAT.spad" 1545721 1545744 1552121 1552126) (-954 "POLY2UP.spad" 1545173 1545187 1545711 1545716) (-953 "POLY2.spad" 1544770 1544782 1545163 1545168) (-952 "POLUTIL.spad" 1543711 1543740 1544726 1544731) (-951 "POLTOPOL.spad" 1542459 1542474 1543701 1543706) (-950 "POINT.spad" 1541297 1541307 1541384 1541411) (-949 "PNTHEORY.spad" 1537999 1538007 1541287 1541292) (-948 "PMTOOLS.spad" 1536774 1536788 1537989 1537994) (-947 "PMSYM.spad" 1536323 1536333 1536764 1536769) (-946 "PMQFCAT.spad" 1535914 1535928 1536313 1536318) (-945 "PMPRED.spad" 1535393 1535407 1535904 1535909) (-944 "PMPREDFS.spad" 1534847 1534869 1535383 1535388) (-943 "PMPLCAT.spad" 1533927 1533945 1534779 1534784) (-942 "PMLSAGG.spad" 1533512 1533526 1533917 1533922) (-941 "PMKERNEL.spad" 1533091 1533103 1533502 1533507) (-940 "PMINS.spad" 1532671 1532681 1533081 1533086) (-939 "PMFS.spad" 1532248 1532266 1532661 1532666) (-938 "PMDOWN.spad" 1531538 1531552 1532238 1532243) (-937 "PMASS.spad" 1530548 1530556 1531528 1531533) (-936 "PMASSFS.spad" 1529515 1529531 1530538 1530543) (-935 "PLOTTOOL.spad" 1529295 1529303 1529505 1529510) (-934 "PLOT.spad" 1524218 1524226 1529285 1529290) (-933 "PLOT3D.spad" 1520682 1520690 1524208 1524213) (-932 "PLOT1.spad" 1519839 1519849 1520672 1520677) (-931 "PLEQN.spad" 1507129 1507156 1519829 1519834) (-930 "PINTERP.spad" 1506751 1506770 1507119 1507124) (-929 "PINTERPA.spad" 1506535 1506551 1506741 1506746) (-928 "PI.spad" 1506144 1506152 1506509 1506530) (-927 "PID.spad" 1505114 1505122 1506070 1506139) (-926 "PICOERCE.spad" 1504771 1504781 1505104 1505109) (-925 "PGROEB.spad" 1503372 1503386 1504761 1504766) (-924 "PGE.spad" 1494989 1494997 1503362 1503367) (-923 "PGCD.spad" 1493879 1493896 1494979 1494984) (-922 "PFRPAC.spad" 1493028 1493038 1493869 1493874) (-921 "PFR.spad" 1489691 1489701 1492930 1493023) (-920 "PFOTOOLS.spad" 1488949 1488965 1489681 1489686) (-919 "PFOQ.spad" 1488319 1488337 1488939 1488944) (-918 "PFO.spad" 1487738 1487765 1488309 1488314) (-917 "PF.spad" 1487312 1487324 1487543 1487636) (-916 "PFECAT.spad" 1484994 1485002 1487238 1487307) (-915 "PFECAT.spad" 1482704 1482714 1484950 1484955) (-914 "PFBRU.spad" 1480592 1480604 1482694 1482699) (-913 "PFBR.spad" 1478152 1478175 1480582 1480587) (-912 "PERM.spad" 1473837 1473847 1477982 1477997) (-911 "PERMGRP.spad" 1468599 1468609 1473827 1473832) (-910 "PERMCAT.spad" 1467157 1467167 1468579 1468594) (-909 "PERMAN.spad" 1465689 1465703 1467147 1467152) (-908 "PENDTREE.spad" 1465030 1465040 1465318 1465323) (-907 "PDRING.spad" 1463581 1463591 1465010 1465025) (-906 "PDRING.spad" 1462140 1462152 1463571 1463576) (-905 "PDEPROB.spad" 1461155 1461163 1462130 1462135) (-904 "PDEPACK.spad" 1455195 1455203 1461145 1461150) (-903 "PDECOMP.spad" 1454665 1454682 1455185 1455190) (-902 "PDECAT.spad" 1453021 1453029 1454655 1454660) (-901 "PCOMP.spad" 1452874 1452887 1453011 1453016) (-900 "PBWLB.spad" 1451462 1451479 1452864 1452869) (-899 "PATTERN.spad" 1446001 1446011 1451452 1451457) (-898 "PATTERN2.spad" 1445739 1445751 1445991 1445996) (-897 "PATTERN1.spad" 1444075 1444091 1445729 1445734) (-896 "PATRES.spad" 1441650 1441662 1444065 1444070) (-895 "PATRES2.spad" 1441322 1441336 1441640 1441645) (-894 "PATMATCH.spad" 1439519 1439550 1441030 1441035) (-893 "PATMAB.spad" 1438948 1438958 1439509 1439514) (-892 "PATLRES.spad" 1438034 1438048 1438938 1438943) (-891 "PATAB.spad" 1437798 1437808 1438024 1438029) (-890 "PARTPERM.spad" 1435076 1435084 1437788 1437793) (-889 "PARSURF.spad" 1434510 1434538 1435066 1435071) (-888 "PARSU2.spad" 1434307 1434323 1434500 1434505) (-887 "script-parser.spad" 1433827 1433835 1434297 1434302) (-886 "PARSCURV.spad" 1433261 1433289 1433817 1433822) (-885 "PARSC2.spad" 1433052 1433068 1433251 1433256) (-884 "PARPCURV.spad" 1432514 1432542 1433042 1433047) (-883 "PARPC2.spad" 1432305 1432321 1432504 1432509) (-882 "PARAMAST.spad" 1431433 1431441 1432295 1432300) (-881 "PAN2EXPR.spad" 1430845 1430853 1431423 1431428) (-880 "PALETTE.spad" 1429815 1429823 1430835 1430840) (-879 "PAIR.spad" 1428802 1428815 1429403 1429408) (-878 "PADICRC.spad" 1426136 1426154 1427307 1427400) (-877 "PADICRAT.spad" 1424151 1424163 1424372 1424465) (-876 "PADIC.spad" 1423846 1423858 1424077 1424146) (-875 "PADICCT.spad" 1422395 1422407 1423772 1423841) (-874 "PADEPAC.spad" 1421084 1421103 1422385 1422390) (-873 "PADE.spad" 1419836 1419852 1421074 1421079) (-872 "OWP.spad" 1419076 1419106 1419694 1419761) (-871 "OVERSET.spad" 1418649 1418657 1419066 1419071) (-870 "OVAR.spad" 1418430 1418453 1418639 1418644) (-869 "OUT.spad" 1417516 1417524 1418420 1418425) (-868 "OUTFORM.spad" 1406908 1406916 1417506 1417511) (-867 "OUTBFILE.spad" 1406326 1406334 1406898 1406903) (-866 "OUTBCON.spad" 1405332 1405340 1406316 1406321) (-865 "OUTBCON.spad" 1404336 1404346 1405322 1405327) (-864 "OSI.spad" 1403811 1403819 1404326 1404331) (-863 "OSGROUP.spad" 1403729 1403737 1403801 1403806) (-862 "ORTHPOL.spad" 1402214 1402224 1403646 1403651) (-861 "OREUP.spad" 1401667 1401695 1401894 1401933) (-860 "ORESUP.spad" 1400968 1400992 1401347 1401386) (-859 "OREPCTO.spad" 1398825 1398837 1400888 1400893) (-858 "OREPCAT.spad" 1392972 1392982 1398781 1398820) (-857 "OREPCAT.spad" 1387009 1387021 1392820 1392825) (-856 "ORDSET.spad" 1386181 1386189 1386999 1387004) (-855 "ORDSET.spad" 1385351 1385361 1386171 1386176) (-854 "ORDRING.spad" 1384741 1384749 1385331 1385346) (-853 "ORDRING.spad" 1384139 1384149 1384731 1384736) (-852 "ORDMON.spad" 1383994 1384002 1384129 1384134) (-851 "ORDFUNS.spad" 1383126 1383142 1383984 1383989) (-850 "ORDFIN.spad" 1382946 1382954 1383116 1383121) (-849 "ORDCOMP.spad" 1381411 1381421 1382493 1382522) (-848 "ORDCOMP2.spad" 1380704 1380716 1381401 1381406) (-847 "OPTPROB.spad" 1379342 1379350 1380694 1380699) (-846 "OPTPACK.spad" 1371751 1371759 1379332 1379337) (-845 "OPTCAT.spad" 1369430 1369438 1371741 1371746) (-844 "OPSIG.spad" 1369084 1369092 1369420 1369425) (-843 "OPQUERY.spad" 1368633 1368641 1369074 1369079) (-842 "OP.spad" 1368375 1368385 1368455 1368522) (-841 "OPERCAT.spad" 1367841 1367851 1368365 1368370) (-840 "OPERCAT.spad" 1367305 1367317 1367831 1367836) (-839 "ONECOMP.spad" 1366050 1366060 1366852 1366881) (-838 "ONECOMP2.spad" 1365474 1365486 1366040 1366045) (-837 "OMSERVER.spad" 1364480 1364488 1365464 1365469) (-836 "OMSAGG.spad" 1364268 1364278 1364436 1364475) (-835 "OMPKG.spad" 1362884 1362892 1364258 1364263) (-834 "OM.spad" 1361857 1361865 1362874 1362879) (-833 "OMLO.spad" 1361282 1361294 1361743 1361782) (-832 "OMEXPR.spad" 1361116 1361126 1361272 1361277) (-831 "OMERR.spad" 1360661 1360669 1361106 1361111) (-830 "OMERRK.spad" 1359695 1359703 1360651 1360656) (-829 "OMENC.spad" 1359039 1359047 1359685 1359690) (-828 "OMDEV.spad" 1353348 1353356 1359029 1359034) (-827 "OMCONN.spad" 1352757 1352765 1353338 1353343) (-826 "OINTDOM.spad" 1352520 1352528 1352683 1352752) (-825 "OFMONOID.spad" 1350643 1350653 1352476 1352481) (-824 "ODVAR.spad" 1349904 1349914 1350633 1350638) (-823 "ODR.spad" 1349548 1349574 1349716 1349865) (-822 "ODPOL.spad" 1346930 1346940 1347270 1347397) (-821 "ODP.spad" 1336777 1336797 1337150 1337281) (-820 "ODETOOLS.spad" 1335426 1335445 1336767 1336772) (-819 "ODESYS.spad" 1333120 1333137 1335416 1335421) (-818 "ODERTRIC.spad" 1329129 1329146 1333077 1333082) (-817 "ODERED.spad" 1328528 1328552 1329119 1329124) (-816 "ODERAT.spad" 1326143 1326160 1328518 1328523) (-815 "ODEPRRIC.spad" 1323180 1323202 1326133 1326138) (-814 "ODEPROB.spad" 1322437 1322445 1323170 1323175) (-813 "ODEPRIM.spad" 1319771 1319793 1322427 1322432) (-812 "ODEPAL.spad" 1319157 1319181 1319761 1319766) (-811 "ODEPACK.spad" 1305823 1305831 1319147 1319152) (-810 "ODEINT.spad" 1305258 1305274 1305813 1305818) (-809 "ODEIFTBL.spad" 1302653 1302661 1305248 1305253) (-808 "ODEEF.spad" 1298144 1298160 1302643 1302648) (-807 "ODECONST.spad" 1297681 1297699 1298134 1298139) (-806 "ODECAT.spad" 1296279 1296287 1297671 1297676) (-805 "OCT.spad" 1294415 1294425 1295129 1295168) (-804 "OCTCT2.spad" 1294061 1294082 1294405 1294410) (-803 "OC.spad" 1291857 1291867 1294017 1294056) (-802 "OC.spad" 1289378 1289390 1291540 1291545) (-801 "OCAMON.spad" 1289226 1289234 1289368 1289373) (-800 "OASGP.spad" 1289041 1289049 1289216 1289221) (-799 "OAMONS.spad" 1288563 1288571 1289031 1289036) (-798 "OAMON.spad" 1288424 1288432 1288553 1288558) (-797 "OAGROUP.spad" 1288286 1288294 1288414 1288419) (-796 "NUMTUBE.spad" 1287877 1287893 1288276 1288281) (-795 "NUMQUAD.spad" 1275853 1275861 1287867 1287872) (-794 "NUMODE.spad" 1267207 1267215 1275843 1275848) (-793 "NUMINT.spad" 1264773 1264781 1267197 1267202) (-792 "NUMFMT.spad" 1263613 1263621 1264763 1264768) (-791 "NUMERIC.spad" 1255727 1255737 1263418 1263423) (-790 "NTSCAT.spad" 1254235 1254251 1255695 1255722) (-789 "NTPOLFN.spad" 1253786 1253796 1254152 1254157) (-788 "NSUP.spad" 1246832 1246842 1251372 1251525) (-787 "NSUP2.spad" 1246224 1246236 1246822 1246827) (-786 "NSMP.spad" 1242454 1242473 1242762 1242889) (-785 "NREP.spad" 1240832 1240846 1242444 1242449) (-784 "NPCOEF.spad" 1240078 1240098 1240822 1240827) (-783 "NORMRETR.spad" 1239676 1239715 1240068 1240073) (-782 "NORMPK.spad" 1237578 1237597 1239666 1239671) (-781 "NORMMA.spad" 1237266 1237292 1237568 1237573) (-780 "NONE.spad" 1237007 1237015 1237256 1237261) (-779 "NONE1.spad" 1236683 1236693 1236997 1237002) (-778 "NODE1.spad" 1236170 1236186 1236673 1236678) (-777 "NNI.spad" 1235065 1235073 1236144 1236165) (-776 "NLINSOL.spad" 1233691 1233701 1235055 1235060) (-775 "NIPROB.spad" 1232232 1232240 1233681 1233686) (-774 "NFINTBAS.spad" 1229792 1229809 1232222 1232227) (-773 "NETCLT.spad" 1229766 1229777 1229782 1229787) (-772 "NCODIV.spad" 1227982 1227998 1229756 1229761) (-771 "NCNTFRAC.spad" 1227624 1227638 1227972 1227977) (-770 "NCEP.spad" 1225790 1225804 1227614 1227619) (-769 "NASRING.spad" 1225386 1225394 1225780 1225785) (-768 "NASRING.spad" 1224980 1224990 1225376 1225381) (-767 "NARNG.spad" 1224332 1224340 1224970 1224975) (-766 "NARNG.spad" 1223682 1223692 1224322 1224327) (-765 "NAGSP.spad" 1222759 1222767 1223672 1223677) (-764 "NAGS.spad" 1212420 1212428 1222749 1222754) (-763 "NAGF07.spad" 1210851 1210859 1212410 1212415) (-762 "NAGF04.spad" 1205253 1205261 1210841 1210846) (-761 "NAGF02.spad" 1199322 1199330 1205243 1205248) (-760 "NAGF01.spad" 1195083 1195091 1199312 1199317) (-759 "NAGE04.spad" 1188783 1188791 1195073 1195078) (-758 "NAGE02.spad" 1179443 1179451 1188773 1188778) (-757 "NAGE01.spad" 1175445 1175453 1179433 1179438) (-756 "NAGD03.spad" 1173449 1173457 1175435 1175440) (-755 "NAGD02.spad" 1166196 1166204 1173439 1173444) (-754 "NAGD01.spad" 1160489 1160497 1166186 1166191) (-753 "NAGC06.spad" 1156364 1156372 1160479 1160484) (-752 "NAGC05.spad" 1154865 1154873 1156354 1156359) (-751 "NAGC02.spad" 1154132 1154140 1154855 1154860) (-750 "NAALG.spad" 1153673 1153683 1154100 1154127) (-749 "NAALG.spad" 1153234 1153246 1153663 1153668) (-748 "MULTSQFR.spad" 1150192 1150209 1153224 1153229) (-747 "MULTFACT.spad" 1149575 1149592 1150182 1150187) (-746 "MTSCAT.spad" 1147669 1147690 1149473 1149570) (-745 "MTHING.spad" 1147328 1147338 1147659 1147664) (-744 "MSYSCMD.spad" 1146762 1146770 1147318 1147323) (-743 "MSET.spad" 1144720 1144730 1146468 1146507) (-742 "MSETAGG.spad" 1144565 1144575 1144688 1144715) (-741 "MRING.spad" 1141542 1141554 1144273 1144340) (-740 "MRF2.spad" 1141112 1141126 1141532 1141537) (-739 "MRATFAC.spad" 1140658 1140675 1141102 1141107) (-738 "MPRFF.spad" 1138698 1138717 1140648 1140653) (-737 "MPOLY.spad" 1136169 1136184 1136528 1136655) (-736 "MPCPF.spad" 1135433 1135452 1136159 1136164) (-735 "MPC3.spad" 1135250 1135290 1135423 1135428) (-734 "MPC2.spad" 1134896 1134929 1135240 1135245) (-733 "MONOTOOL.spad" 1133247 1133264 1134886 1134891) (-732 "MONOID.spad" 1132566 1132574 1133237 1133242) (-731 "MONOID.spad" 1131883 1131893 1132556 1132561) (-730 "MONOGEN.spad" 1130631 1130644 1131743 1131878) (-729 "MONOGEN.spad" 1129401 1129416 1130515 1130520) (-728 "MONADWU.spad" 1127431 1127439 1129391 1129396) (-727 "MONADWU.spad" 1125459 1125469 1127421 1127426) (-726 "MONAD.spad" 1124619 1124627 1125449 1125454) (-725 "MONAD.spad" 1123777 1123787 1124609 1124614) (-724 "MOEBIUS.spad" 1122513 1122527 1123757 1123772) (-723 "MODULE.spad" 1122383 1122393 1122481 1122508) (-722 "MODULE.spad" 1122273 1122285 1122373 1122378) (-721 "MODRING.spad" 1121608 1121647 1122253 1122268) (-720 "MODOP.spad" 1120273 1120285 1121430 1121497) (-719 "MODMONOM.spad" 1120004 1120022 1120263 1120268) (-718 "MODMON.spad" 1116799 1116815 1117518 1117671) (-717 "MODFIELD.spad" 1116161 1116200 1116701 1116794) (-716 "MMLFORM.spad" 1115021 1115029 1116151 1116156) (-715 "MMAP.spad" 1114763 1114797 1115011 1115016) (-714 "MLO.spad" 1113222 1113232 1114719 1114758) (-713 "MLIFT.spad" 1111834 1111851 1113212 1113217) (-712 "MKUCFUNC.spad" 1111369 1111387 1111824 1111829) (-711 "MKRECORD.spad" 1110973 1110986 1111359 1111364) (-710 "MKFUNC.spad" 1110380 1110390 1110963 1110968) (-709 "MKFLCFN.spad" 1109348 1109358 1110370 1110375) (-708 "MKBCFUNC.spad" 1108843 1108861 1109338 1109343) (-707 "MINT.spad" 1108282 1108290 1108745 1108838) (-706 "MHROWRED.spad" 1106793 1106803 1108272 1108277) (-705 "MFLOAT.spad" 1105313 1105321 1106683 1106788) (-704 "MFINFACT.spad" 1104713 1104735 1105303 1105308) (-703 "MESH.spad" 1102495 1102503 1104703 1104708) (-702 "MDDFACT.spad" 1100706 1100716 1102485 1102490) (-701 "MDAGG.spad" 1099997 1100007 1100686 1100701) (-700 "MCMPLX.spad" 1096008 1096016 1096622 1096823) (-699 "MCDEN.spad" 1095218 1095230 1095998 1096003) (-698 "MCALCFN.spad" 1092340 1092366 1095208 1095213) (-697 "MAYBE.spad" 1091624 1091635 1092330 1092335) (-696 "MATSTOR.spad" 1088932 1088942 1091614 1091619) (-695 "MATRIX.spad" 1087636 1087646 1088120 1088147) (-694 "MATLIN.spad" 1084980 1085004 1087520 1087525) (-693 "MATCAT.spad" 1076709 1076731 1084948 1084975) (-692 "MATCAT.spad" 1068310 1068334 1076551 1076556) (-691 "MATCAT2.spad" 1067592 1067640 1068300 1068305) (-690 "MAPPKG3.spad" 1066507 1066521 1067582 1067587) (-689 "MAPPKG2.spad" 1065845 1065857 1066497 1066502) (-688 "MAPPKG1.spad" 1064673 1064683 1065835 1065840) (-687 "MAPPAST.spad" 1063988 1063996 1064663 1064668) (-686 "MAPHACK3.spad" 1063800 1063814 1063978 1063983) (-685 "MAPHACK2.spad" 1063569 1063581 1063790 1063795) (-684 "MAPHACK1.spad" 1063213 1063223 1063559 1063564) (-683 "MAGMA.spad" 1061003 1061020 1063203 1063208) (-682 "MACROAST.spad" 1060582 1060590 1060993 1060998) (-681 "M3D.spad" 1058302 1058312 1059960 1059965) (-680 "LZSTAGG.spad" 1055540 1055550 1058292 1058297) (-679 "LZSTAGG.spad" 1052776 1052788 1055530 1055535) (-678 "LWORD.spad" 1049481 1049498 1052766 1052771) (-677 "LSTAST.spad" 1049265 1049273 1049471 1049476) (-676 "LSQM.spad" 1047495 1047509 1047889 1047940) (-675 "LSPP.spad" 1047030 1047047 1047485 1047490) (-674 "LSMP.spad" 1045880 1045908 1047020 1047025) (-673 "LSMP1.spad" 1043698 1043712 1045870 1045875) (-672 "LSAGG.spad" 1043367 1043377 1043666 1043693) (-671 "LSAGG.spad" 1043056 1043068 1043357 1043362) (-670 "LPOLY.spad" 1042010 1042029 1042912 1042981) (-669 "LPEFRAC.spad" 1041281 1041291 1042000 1042005) (-668 "LO.spad" 1040682 1040696 1041215 1041242) (-667 "LOGIC.spad" 1040284 1040292 1040672 1040677) (-666 "LOGIC.spad" 1039884 1039894 1040274 1040279) (-665 "LODOOPS.spad" 1038814 1038826 1039874 1039879) (-664 "LODO.spad" 1038198 1038214 1038494 1038533) (-663 "LODOF.spad" 1037244 1037261 1038155 1038160) (-662 "LODOCAT.spad" 1035910 1035920 1037200 1037239) (-661 "LODOCAT.spad" 1034574 1034586 1035866 1035871) (-660 "LODO2.spad" 1033847 1033859 1034254 1034293) (-659 "LODO1.spad" 1033247 1033257 1033527 1033566) (-658 "LODEEF.spad" 1032049 1032067 1033237 1033242) (-657 "LNAGG.spad" 1027881 1027891 1032039 1032044) (-656 "LNAGG.spad" 1023677 1023689 1027837 1027842) (-655 "LMOPS.spad" 1020445 1020462 1023667 1023672) (-654 "LMODULE.spad" 1020213 1020223 1020435 1020440) (-653 "LMDICT.spad" 1019500 1019510 1019764 1019791) (-652 "LLINSET.spad" 1018897 1018907 1019490 1019495) (-651 "LITERAL.spad" 1018803 1018814 1018887 1018892) (-650 "LIST.spad" 1016538 1016548 1017950 1017977) (-649 "LIST3.spad" 1015849 1015863 1016528 1016533) (-648 "LIST2.spad" 1014551 1014563 1015839 1015844) (-647 "LIST2MAP.spad" 1011454 1011466 1014541 1014546) (-646 "LINSET.spad" 1011076 1011086 1011444 1011449) (-645 "LINEXP.spad" 1010510 1010520 1011056 1011071) (-644 "LINDEP.spad" 1009319 1009331 1010422 1010427) (-643 "LIMITRF.spad" 1007247 1007257 1009309 1009314) (-642 "LIMITPS.spad" 1006150 1006163 1007237 1007242) (-641 "LIE.spad" 1004166 1004178 1005440 1005585) (-640 "LIECAT.spad" 1003642 1003652 1004092 1004161) (-639 "LIECAT.spad" 1003146 1003158 1003598 1003603) (-638 "LIB.spad" 1001196 1001204 1001805 1001820) (-637 "LGROBP.spad" 998549 998568 1001186 1001191) (-636 "LF.spad" 997504 997520 998539 998544) (-635 "LFCAT.spad" 996563 996571 997494 997499) (-634 "LEXTRIPK.spad" 992066 992081 996553 996558) (-633 "LEXP.spad" 990069 990096 992046 992061) (-632 "LETAST.spad" 989768 989776 990059 990064) (-631 "LEADCDET.spad" 988166 988183 989758 989763) (-630 "LAZM3PK.spad" 986870 986892 988156 988161) (-629 "LAUPOL.spad" 985563 985576 986463 986532) (-628 "LAPLACE.spad" 985146 985162 985553 985558) (-627 "LA.spad" 984586 984600 985068 985107) (-626 "LALG.spad" 984362 984372 984566 984581) (-625 "LALG.spad" 984146 984158 984352 984357) (-624 "KVTFROM.spad" 983881 983891 984136 984141) (-623 "KTVLOGIC.spad" 983393 983401 983871 983876) (-622 "KRCFROM.spad" 983131 983141 983383 983388) (-621 "KOVACIC.spad" 981854 981871 983121 983126) (-620 "KONVERT.spad" 981576 981586 981844 981849) (-619 "KOERCE.spad" 981313 981323 981566 981571) (-618 "KERNEL.spad" 979968 979978 981097 981102) (-617 "KERNEL2.spad" 979671 979683 979958 979963) (-616 "KDAGG.spad" 978780 978802 979651 979666) (-615 "KDAGG.spad" 977897 977921 978770 978775) (-614 "KAFILE.spad" 976860 976876 977095 977122) (-613 "JORDAN.spad" 974689 974701 976150 976295) (-612 "JOINAST.spad" 974383 974391 974679 974684) (-611 "JAVACODE.spad" 974249 974257 974373 974378) (-610 "IXAGG.spad" 972382 972406 974239 974244) (-609 "IXAGG.spad" 970370 970396 972229 972234) (-608 "IVECTOR.spad" 969140 969155 969295 969322) (-607 "ITUPLE.spad" 968301 968311 969130 969135) (-606 "ITRIGMNP.spad" 967140 967159 968291 968296) (-605 "ITFUN3.spad" 966646 966660 967130 967135) (-604 "ITFUN2.spad" 966390 966402 966636 966641) (-603 "ITFORM.spad" 965745 965753 966380 966385) (-602 "ITAYLOR.spad" 963739 963754 965609 965706) (-601 "ISUPS.spad" 956176 956191 962713 962810) (-600 "ISUMP.spad" 955677 955693 956166 956171) (-599 "ISTRING.spad" 954765 954778 954846 954873) (-598 "ISAST.spad" 954484 954492 954755 954760) (-597 "IRURPK.spad" 953201 953220 954474 954479) (-596 "IRSN.spad" 951173 951181 953191 953196) (-595 "IRRF2F.spad" 949658 949668 951129 951134) (-594 "IRREDFFX.spad" 949259 949270 949648 949653) (-593 "IROOT.spad" 947598 947608 949249 949254) (-592 "IR.spad" 945399 945413 947453 947480) (-591 "IRFORM.spad" 944723 944731 945389 945394) (-590 "IR2.spad" 943751 943767 944713 944718) (-589 "IR2F.spad" 942957 942973 943741 943746) (-588 "IPRNTPK.spad" 942717 942725 942947 942952) (-587 "IPF.spad" 942282 942294 942522 942615) (-586 "IPADIC.spad" 942043 942069 942208 942277) (-585 "IP4ADDR.spad" 941600 941608 942033 942038) (-584 "IOMODE.spad" 941122 941130 941590 941595) (-583 "IOBFILE.spad" 940483 940491 941112 941117) (-582 "IOBCON.spad" 940348 940356 940473 940478) (-581 "INVLAPLA.spad" 939997 940013 940338 940343) (-580 "INTTR.spad" 933379 933396 939987 939992) (-579 "INTTOOLS.spad" 931134 931150 932953 932958) (-578 "INTSLPE.spad" 930454 930462 931124 931129) (-577 "INTRVL.spad" 930020 930030 930368 930449) (-576 "INTRF.spad" 928444 928458 930010 930015) (-575 "INTRET.spad" 927876 927886 928434 928439) (-574 "INTRAT.spad" 926603 926620 927866 927871) (-573 "INTPM.spad" 924988 925004 926246 926251) (-572 "INTPAF.spad" 922852 922870 924920 924925) (-571 "INTPACK.spad" 913226 913234 922842 922847) (-570 "INT.spad" 912674 912682 913080 913221) (-569 "INTHERTR.spad" 911948 911965 912664 912669) (-568 "INTHERAL.spad" 911618 911642 911938 911943) (-567 "INTHEORY.spad" 908057 908065 911608 911613) (-566 "INTG0.spad" 901790 901808 907989 907994) (-565 "INTFTBL.spad" 895819 895827 901780 901785) (-564 "INTFACT.spad" 894878 894888 895809 895814) (-563 "INTEF.spad" 893263 893279 894868 894873) (-562 "INTDOM.spad" 891886 891894 893189 893258) (-561 "INTDOM.spad" 890571 890581 891876 891881) (-560 "INTCAT.spad" 888830 888840 890485 890566) (-559 "INTBIT.spad" 888337 888345 888820 888825) (-558 "INTALG.spad" 887525 887552 888327 888332) (-557 "INTAF.spad" 887025 887041 887515 887520) (-556 "INTABL.spad" 885543 885574 885706 885733) (-555 "INT8.spad" 885423 885431 885533 885538) (-554 "INT64.spad" 885302 885310 885413 885418) (-553 "INT32.spad" 885181 885189 885292 885297) (-552 "INT16.spad" 885060 885068 885171 885176) (-551 "INS.spad" 882563 882571 884962 885055) (-550 "INS.spad" 880152 880162 882553 882558) (-549 "INPSIGN.spad" 879600 879613 880142 880147) (-548 "INPRODPF.spad" 878696 878715 879590 879595) (-547 "INPRODFF.spad" 877784 877808 878686 878691) (-546 "INNMFACT.spad" 876759 876776 877774 877779) (-545 "INMODGCD.spad" 876247 876277 876749 876754) (-544 "INFSP.spad" 874544 874566 876237 876242) (-543 "INFPROD0.spad" 873624 873643 874534 874539) (-542 "INFORM.spad" 870823 870831 873614 873619) (-541 "INFORM1.spad" 870448 870458 870813 870818) (-540 "INFINITY.spad" 870000 870008 870438 870443) (-539 "INETCLTS.spad" 869977 869985 869990 869995) (-538 "INEP.spad" 868515 868537 869967 869972) (-537 "INDE.spad" 868244 868261 868505 868510) (-536 "INCRMAPS.spad" 867665 867675 868234 868239) (-535 "INBFILE.spad" 866737 866745 867655 867660) (-534 "INBFF.spad" 862531 862542 866727 866732) (-533 "INBCON.spad" 860821 860829 862521 862526) (-532 "INBCON.spad" 859109 859119 860811 860816) (-531 "INAST.spad" 858770 858778 859099 859104) (-530 "IMPTAST.spad" 858478 858486 858760 858765) (-529 "IMATRIX.spad" 857423 857449 857935 857962) (-528 "IMATQF.spad" 856517 856561 857379 857384) (-527 "IMATLIN.spad" 855122 855146 856473 856478) (-526 "ILIST.spad" 853780 853795 854305 854332) (-525 "IIARRAY2.spad" 853168 853206 853387 853414) (-524 "IFF.spad" 852578 852594 852849 852942) (-523 "IFAST.spad" 852192 852200 852568 852573) (-522 "IFARRAY.spad" 849685 849700 851375 851402) (-521 "IFAMON.spad" 849547 849564 849641 849646) (-520 "IEVALAB.spad" 848952 848964 849537 849542) (-519 "IEVALAB.spad" 848355 848369 848942 848947) (-518 "IDPO.spad" 848153 848165 848345 848350) (-517 "IDPOAMS.spad" 847909 847921 848143 848148) (-516 "IDPOAM.spad" 847629 847641 847899 847904) (-515 "IDPC.spad" 846567 846579 847619 847624) (-514 "IDPAM.spad" 846312 846324 846557 846562) (-513 "IDPAG.spad" 846059 846071 846302 846307) (-512 "IDENT.spad" 845709 845717 846049 846054) (-511 "IDECOMP.spad" 842948 842966 845699 845704) (-510 "IDEAL.spad" 837897 837936 842883 842888) (-509 "ICDEN.spad" 837086 837102 837887 837892) (-508 "ICARD.spad" 836277 836285 837076 837081) (-507 "IBPTOOLS.spad" 834884 834901 836267 836272) (-506 "IBITS.spad" 834087 834100 834520 834547) (-505 "IBATOOL.spad" 831064 831083 834077 834082) (-504 "IBACHIN.spad" 829571 829586 831054 831059) (-503 "IARRAY2.spad" 828559 828585 829178 829205) (-502 "IARRAY1.spad" 827604 827619 827742 827769) (-501 "IAN.spad" 825827 825835 827420 827513) (-500 "IALGFACT.spad" 825430 825463 825817 825822) (-499 "HYPCAT.spad" 824854 824862 825420 825425) (-498 "HYPCAT.spad" 824276 824286 824844 824849) (-497 "HOSTNAME.spad" 824084 824092 824266 824271) (-496 "HOMOTOP.spad" 823827 823837 824074 824079) (-495 "HOAGG.spad" 821109 821119 823817 823822) (-494 "HOAGG.spad" 818166 818178 820876 820881) (-493 "HEXADEC.spad" 816268 816276 816633 816726) (-492 "HEUGCD.spad" 815303 815314 816258 816263) (-491 "HELLFDIV.spad" 814893 814917 815293 815298) (-490 "HEAP.spad" 814285 814295 814500 814527) (-489 "HEADAST.spad" 813818 813826 814275 814280) (-488 "HDP.spad" 803661 803677 804038 804169) (-487 "HDMP.spad" 800875 800890 801491 801618) (-486 "HB.spad" 799126 799134 800865 800870) (-485 "HASHTBL.spad" 797596 797627 797807 797834) (-484 "HASAST.spad" 797312 797320 797586 797591) (-483 "HACKPI.spad" 796803 796811 797214 797307) (-482 "GTSET.spad" 795742 795758 796449 796476) (-481 "GSTBL.spad" 794261 794296 794435 794450) (-480 "GSERIES.spad" 791432 791459 792393 792542) (-479 "GROUP.spad" 790705 790713 791412 791427) (-478 "GROUP.spad" 789986 789996 790695 790700) (-477 "GROEBSOL.spad" 788480 788501 789976 789981) (-476 "GRMOD.spad" 787051 787063 788470 788475) (-475 "GRMOD.spad" 785620 785634 787041 787046) (-474 "GRIMAGE.spad" 778509 778517 785610 785615) (-473 "GRDEF.spad" 776888 776896 778499 778504) (-472 "GRAY.spad" 775351 775359 776878 776883) (-471 "GRALG.spad" 774428 774440 775341 775346) (-470 "GRALG.spad" 773503 773517 774418 774423) (-469 "GPOLSET.spad" 772957 772980 773185 773212) (-468 "GOSPER.spad" 772226 772244 772947 772952) (-467 "GMODPOL.spad" 771374 771401 772194 772221) (-466 "GHENSEL.spad" 770457 770471 771364 771369) (-465 "GENUPS.spad" 766750 766763 770447 770452) (-464 "GENUFACT.spad" 766327 766337 766740 766745) (-463 "GENPGCD.spad" 765913 765930 766317 766322) (-462 "GENMFACT.spad" 765365 765384 765903 765908) (-461 "GENEEZ.spad" 763316 763329 765355 765360) (-460 "GDMP.spad" 760372 760389 761146 761273) (-459 "GCNAALG.spad" 754295 754322 760166 760233) (-458 "GCDDOM.spad" 753471 753479 754221 754290) (-457 "GCDDOM.spad" 752709 752719 753461 753466) (-456 "GB.spad" 750235 750273 752665 752670) (-455 "GBINTERN.spad" 746255 746293 750225 750230) (-454 "GBF.spad" 742022 742060 746245 746250) (-453 "GBEUCLID.spad" 739904 739942 742012 742017) (-452 "GAUSSFAC.spad" 739217 739225 739894 739899) (-451 "GALUTIL.spad" 737543 737553 739173 739178) (-450 "GALPOLYU.spad" 735997 736010 737533 737538) (-449 "GALFACTU.spad" 734170 734189 735987 735992) (-448 "GALFACT.spad" 724359 724370 734160 734165) (-447 "FVFUN.spad" 721382 721390 724349 724354) (-446 "FVC.spad" 720434 720442 721372 721377) (-445 "FUNDESC.spad" 720112 720120 720424 720429) (-444 "FUNCTION.spad" 719961 719973 720102 720107) (-443 "FT.spad" 718258 718266 719951 719956) (-442 "FTEM.spad" 717423 717431 718248 718253) (-441 "FSUPFACT.spad" 716323 716342 717359 717364) (-440 "FST.spad" 714409 714417 716313 716318) (-439 "FSRED.spad" 713889 713905 714399 714404) (-438 "FSPRMELT.spad" 712771 712787 713846 713851) (-437 "FSPECF.spad" 710862 710878 712761 712766) (-436 "FS.spad" 705130 705140 710637 710857) (-435 "FS.spad" 699176 699188 704685 704690) (-434 "FSINT.spad" 698836 698852 699166 699171) (-433 "FSERIES.spad" 698027 698039 698656 698755) (-432 "FSCINT.spad" 697344 697360 698017 698022) (-431 "FSAGG.spad" 696461 696471 697300 697339) (-430 "FSAGG.spad" 695540 695552 696381 696386) (-429 "FSAGG2.spad" 694283 694299 695530 695535) (-428 "FS2UPS.spad" 688774 688808 694273 694278) (-427 "FS2.spad" 688421 688437 688764 688769) (-426 "FS2EXPXP.spad" 687546 687569 688411 688416) (-425 "FRUTIL.spad" 686500 686510 687536 687541) (-424 "FR.spad" 680216 680226 685524 685593) (-423 "FRNAALG.spad" 675335 675345 680158 680211) (-422 "FRNAALG.spad" 670466 670478 675291 675296) (-421 "FRNAAF2.spad" 669922 669940 670456 670461) (-420 "FRMOD.spad" 669332 669362 669853 669858) (-419 "FRIDEAL.spad" 668557 668578 669312 669327) (-418 "FRIDEAL2.spad" 668161 668193 668547 668552) (-417 "FRETRCT.spad" 667672 667682 668151 668156) (-416 "FRETRCT.spad" 667049 667061 667530 667535) (-415 "FRAMALG.spad" 665397 665410 667005 667044) (-414 "FRAMALG.spad" 663777 663792 665387 665392) (-413 "FRAC.spad" 660876 660886 661279 661452) (-412 "FRAC2.spad" 660481 660493 660866 660871) (-411 "FR2.spad" 659817 659829 660471 660476) (-410 "FPS.spad" 656632 656640 659707 659812) (-409 "FPS.spad" 653475 653485 656552 656557) (-408 "FPC.spad" 652521 652529 653377 653470) (-407 "FPC.spad" 651653 651663 652511 652516) (-406 "FPATMAB.spad" 651415 651425 651643 651648) (-405 "FPARFRAC.spad" 649902 649919 651405 651410) (-404 "FORTRAN.spad" 648408 648451 649892 649897) (-403 "FORT.spad" 647357 647365 648398 648403) (-402 "FORTFN.spad" 644527 644535 647347 647352) (-401 "FORTCAT.spad" 644211 644219 644517 644522) (-400 "FORMULA.spad" 641685 641693 644201 644206) (-399 "FORMULA1.spad" 641164 641174 641675 641680) (-398 "FORDER.spad" 640855 640879 641154 641159) (-397 "FOP.spad" 640056 640064 640845 640850) (-396 "FNLA.spad" 639480 639502 640024 640051) (-395 "FNCAT.spad" 638075 638083 639470 639475) (-394 "FNAME.spad" 637967 637975 638065 638070) (-393 "FMTC.spad" 637765 637773 637893 637962) (-392 "FMONOID.spad" 637430 637440 637721 637726) (-391 "FMONCAT.spad" 634583 634593 637420 637425) (-390 "FM.spad" 634278 634290 634517 634544) (-389 "FMFUN.spad" 631308 631316 634268 634273) (-388 "FMC.spad" 630360 630368 631298 631303) (-387 "FMCAT.spad" 628028 628046 630328 630355) (-386 "FM1.spad" 627385 627397 627962 627989) (-385 "FLOATRP.spad" 625120 625134 627375 627380) (-384 "FLOAT.spad" 618434 618442 624986 625115) (-383 "FLOATCP.spad" 615865 615879 618424 618429) (-382 "FLINEXP.spad" 615577 615587 615845 615860) (-381 "FLINEXP.spad" 615243 615255 615513 615518) (-380 "FLASORT.spad" 614569 614581 615233 615238) (-379 "FLALG.spad" 612215 612234 614495 614564) (-378 "FLAGG.spad" 609257 609267 612195 612210) (-377 "FLAGG.spad" 606200 606212 609140 609145) (-376 "FLAGG2.spad" 604925 604941 606190 606195) (-375 "FINRALG.spad" 602986 602999 604881 604920) (-374 "FINRALG.spad" 600973 600988 602870 602875) (-373 "FINITE.spad" 600125 600133 600963 600968) (-372 "FINAALG.spad" 589246 589256 600067 600120) (-371 "FINAALG.spad" 578379 578391 589202 589207) (-370 "FILE.spad" 577962 577972 578369 578374) (-369 "FILECAT.spad" 576488 576505 577952 577957) (-368 "FIELD.spad" 575894 575902 576390 576483) (-367 "FIELD.spad" 575386 575396 575884 575889) (-366 "FGROUP.spad" 574033 574043 575366 575381) (-365 "FGLMICPK.spad" 572820 572835 574023 574028) (-364 "FFX.spad" 572195 572210 572536 572629) (-363 "FFSLPE.spad" 571698 571719 572185 572190) (-362 "FFPOLY.spad" 562960 562971 571688 571693) (-361 "FFPOLY2.spad" 562020 562037 562950 562955) (-360 "FFP.spad" 561417 561437 561736 561829) (-359 "FF.spad" 560865 560881 561098 561191) (-358 "FFNBX.spad" 559377 559397 560581 560674) (-357 "FFNBP.spad" 557890 557907 559093 559186) (-356 "FFNB.spad" 556355 556376 557571 557664) (-355 "FFINTBAS.spad" 553869 553888 556345 556350) (-354 "FFIELDC.spad" 551446 551454 553771 553864) (-353 "FFIELDC.spad" 549109 549119 551436 551441) (-352 "FFHOM.spad" 547857 547874 549099 549104) (-351 "FFF.spad" 545292 545303 547847 547852) (-350 "FFCGX.spad" 544139 544159 545008 545101) (-349 "FFCGP.spad" 543028 543048 543855 543948) (-348 "FFCG.spad" 541820 541841 542709 542802) (-347 "FFCAT.spad" 534993 535015 541659 541815) (-346 "FFCAT.spad" 528245 528269 534913 534918) (-345 "FFCAT2.spad" 527992 528032 528235 528240) (-344 "FEXPR.spad" 519709 519755 527748 527787) (-343 "FEVALAB.spad" 519417 519427 519699 519704) (-342 "FEVALAB.spad" 518910 518922 519194 519199) (-341 "FDIV.spad" 518352 518376 518900 518905) (-340 "FDIVCAT.spad" 516416 516440 518342 518347) (-339 "FDIVCAT.spad" 514478 514504 516406 516411) (-338 "FDIV2.spad" 514134 514174 514468 514473) (-337 "FCTRDATA.spad" 513142 513150 514124 514129) (-336 "FCPAK1.spad" 511709 511717 513132 513137) (-335 "FCOMP.spad" 511088 511098 511699 511704) (-334 "FC.spad" 501095 501103 511078 511083) (-333 "FAXF.spad" 494066 494080 500997 501090) (-332 "FAXF.spad" 487089 487105 494022 494027) (-331 "FARRAY.spad" 485239 485249 486272 486299) (-330 "FAMR.spad" 483375 483387 485137 485234) (-329 "FAMR.spad" 481495 481509 483259 483264) (-328 "FAMONOID.spad" 481163 481173 481449 481454) (-327 "FAMONC.spad" 479459 479471 481153 481158) (-326 "FAGROUP.spad" 479083 479093 479355 479382) (-325 "FACUTIL.spad" 477287 477304 479073 479078) (-324 "FACTFUNC.spad" 476481 476491 477277 477282) (-323 "EXPUPXS.spad" 473314 473337 474613 474762) (-322 "EXPRTUBE.spad" 470602 470610 473304 473309) (-321 "EXPRODE.spad" 467762 467778 470592 470597) (-320 "EXPR.spad" 463037 463047 463751 464158) (-319 "EXPR2UPS.spad" 459159 459172 463027 463032) (-318 "EXPR2.spad" 458864 458876 459149 459154) (-317 "EXPEXPAN.spad" 455804 455829 456436 456529) (-316 "EXIT.spad" 455475 455483 455794 455799) (-315 "EXITAST.spad" 455211 455219 455465 455470) (-314 "EVALCYC.spad" 454671 454685 455201 455206) (-313 "EVALAB.spad" 454243 454253 454661 454666) (-312 "EVALAB.spad" 453813 453825 454233 454238) (-311 "EUCDOM.spad" 451387 451395 453739 453808) (-310 "EUCDOM.spad" 449023 449033 451377 451382) (-309 "ESTOOLS.spad" 440869 440877 449013 449018) (-308 "ESTOOLS2.spad" 440472 440486 440859 440864) (-307 "ESTOOLS1.spad" 440157 440168 440462 440467) (-306 "ES.spad" 432972 432980 440147 440152) (-305 "ES.spad" 425693 425703 432870 432875) (-304 "ESCONT.spad" 422486 422494 425683 425688) (-303 "ESCONT1.spad" 422235 422247 422476 422481) (-302 "ES2.spad" 421740 421756 422225 422230) (-301 "ES1.spad" 421310 421326 421730 421735) (-300 "ERROR.spad" 418637 418645 421300 421305) (-299 "EQTBL.spad" 417109 417131 417318 417345) (-298 "EQ.spad" 411914 411924 414701 414813) (-297 "EQ2.spad" 411632 411644 411904 411909) (-296 "EP.spad" 407958 407968 411622 411627) (-295 "ENV.spad" 406636 406644 407948 407953) (-294 "ENTIRER.spad" 406304 406312 406580 406631) (-293 "EMR.spad" 405511 405552 406230 406299) (-292 "ELTAGG.spad" 403765 403784 405501 405506) (-291 "ELTAGG.spad" 401983 402004 403721 403726) (-290 "ELTAB.spad" 401432 401450 401973 401978) (-289 "ELFUTS.spad" 400819 400838 401422 401427) (-288 "ELEMFUN.spad" 400508 400516 400809 400814) (-287 "ELEMFUN.spad" 400195 400205 400498 400503) (-286 "ELAGG.spad" 398166 398176 400175 400190) (-285 "ELAGG.spad" 396074 396086 398085 398090) (-284 "ELABOR.spad" 395420 395428 396064 396069) (-283 "ELABEXPR.spad" 394352 394360 395410 395415) (-282 "EFUPXS.spad" 391128 391158 394308 394313) (-281 "EFULS.spad" 387964 387987 391084 391089) (-280 "EFSTRUC.spad" 385979 385995 387954 387959) (-279 "EF.spad" 380755 380771 385969 385974) (-278 "EAB.spad" 379031 379039 380745 380750) (-277 "E04UCFA.spad" 378567 378575 379021 379026) (-276 "E04NAFA.spad" 378144 378152 378557 378562) (-275 "E04MBFA.spad" 377724 377732 378134 378139) (-274 "E04JAFA.spad" 377260 377268 377714 377719) (-273 "E04GCFA.spad" 376796 376804 377250 377255) (-272 "E04FDFA.spad" 376332 376340 376786 376791) (-271 "E04DGFA.spad" 375868 375876 376322 376327) (-270 "E04AGNT.spad" 371718 371726 375858 375863) (-269 "DVARCAT.spad" 368407 368417 371708 371713) (-268 "DVARCAT.spad" 365094 365106 368397 368402) (-267 "DSMP.spad" 362561 362575 362866 362993) (-266 "DROPT.spad" 356520 356528 362551 362556) (-265 "DROPT1.spad" 356185 356195 356510 356515) (-264 "DROPT0.spad" 351042 351050 356175 356180) (-263 "DRAWPT.spad" 349215 349223 351032 351037) (-262 "DRAW.spad" 342091 342104 349205 349210) (-261 "DRAWHACK.spad" 341399 341409 342081 342086) (-260 "DRAWCX.spad" 338869 338877 341389 341394) (-259 "DRAWCURV.spad" 338416 338431 338859 338864) (-258 "DRAWCFUN.spad" 327948 327956 338406 338411) (-257 "DQAGG.spad" 326126 326136 327916 327943) (-256 "DPOLCAT.spad" 321475 321491 325994 326121) (-255 "DPOLCAT.spad" 316910 316928 321431 321436) (-254 "DPMO.spad" 309136 309152 309274 309575) (-253 "DPMM.spad" 301375 301393 301500 301801) (-252 "DOMTMPLT.spad" 301035 301043 301365 301370) (-251 "DOMCTOR.spad" 300790 300798 301025 301030) (-250 "DOMAIN.spad" 299877 299885 300780 300785) (-249 "DMP.spad" 297137 297152 297707 297834) (-248 "DLP.spad" 296489 296499 297127 297132) (-247 "DLIST.spad" 295068 295078 295672 295699) (-246 "DLAGG.spad" 293485 293495 295058 295063) (-245 "DIVRING.spad" 293027 293035 293429 293480) (-244 "DIVRING.spad" 292613 292623 293017 293022) (-243 "DISPLAY.spad" 290803 290811 292603 292608) (-242 "DIRPROD.spad" 280383 280399 281023 281154) (-241 "DIRPROD2.spad" 279201 279219 280373 280378) (-240 "DIRPCAT.spad" 278145 278161 279065 279196) (-239 "DIRPCAT.spad" 276818 276836 277740 277745) (-238 "DIOSP.spad" 275643 275651 276808 276813) (-237 "DIOPS.spad" 274639 274649 275623 275638) (-236 "DIOPS.spad" 273609 273621 274595 274600) (-235 "DIFRING.spad" 272905 272913 273589 273604) (-234 "DIFRING.spad" 272209 272219 272895 272900) (-233 "DIFEXT.spad" 271380 271390 272189 272204) (-232 "DIFEXT.spad" 270468 270480 271279 271284) (-231 "DIAGG.spad" 270098 270108 270448 270463) (-230 "DIAGG.spad" 269736 269748 270088 270093) (-229 "DHMATRIX.spad" 268048 268058 269193 269220) (-228 "DFSFUN.spad" 261688 261696 268038 268043) (-227 "DFLOAT.spad" 258419 258427 261578 261683) (-226 "DFINTTLS.spad" 256650 256666 258409 258414) (-225 "DERHAM.spad" 254564 254596 256630 256645) (-224 "DEQUEUE.spad" 253888 253898 254171 254198) (-223 "DEGRED.spad" 253505 253519 253878 253883) (-222 "DEFINTRF.spad" 251042 251052 253495 253500) (-221 "DEFINTEF.spad" 249552 249568 251032 251037) (-220 "DEFAST.spad" 248920 248928 249542 249547) (-219 "DECIMAL.spad" 247026 247034 247387 247480) (-218 "DDFACT.spad" 244839 244856 247016 247021) (-217 "DBLRESP.spad" 244439 244463 244829 244834) (-216 "DBASE.spad" 243103 243113 244429 244434) (-215 "DATAARY.spad" 242565 242578 243093 243098) (-214 "D03FAFA.spad" 242393 242401 242555 242560) (-213 "D03EEFA.spad" 242213 242221 242383 242388) (-212 "D03AGNT.spad" 241299 241307 242203 242208) (-211 "D02EJFA.spad" 240761 240769 241289 241294) (-210 "D02CJFA.spad" 240239 240247 240751 240756) (-209 "D02BHFA.spad" 239729 239737 240229 240234) (-208 "D02BBFA.spad" 239219 239227 239719 239724) (-207 "D02AGNT.spad" 234033 234041 239209 239214) (-206 "D01WGTS.spad" 232352 232360 234023 234028) (-205 "D01TRNS.spad" 232329 232337 232342 232347) (-204 "D01GBFA.spad" 231851 231859 232319 232324) (-203 "D01FCFA.spad" 231373 231381 231841 231846) (-202 "D01ASFA.spad" 230841 230849 231363 231368) (-201 "D01AQFA.spad" 230287 230295 230831 230836) (-200 "D01APFA.spad" 229711 229719 230277 230282) (-199 "D01ANFA.spad" 229205 229213 229701 229706) (-198 "D01AMFA.spad" 228715 228723 229195 229200) (-197 "D01ALFA.spad" 228255 228263 228705 228710) (-196 "D01AKFA.spad" 227781 227789 228245 228250) (-195 "D01AJFA.spad" 227304 227312 227771 227776) (-194 "D01AGNT.spad" 223371 223379 227294 227299) (-193 "CYCLOTOM.spad" 222877 222885 223361 223366) (-192 "CYCLES.spad" 219669 219677 222867 222872) (-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 2268669 2268674 2268679 2268684) (-2 NIL 2268649 2268654 2268659 2268664) (-1 NIL 2268629 2268634 2268639 2268644) (0 NIL 2268609 2268614 2268619 2268624) (-1306 "ZMOD.spad" 2268418 2268431 2268547 2268604) (-1305 "ZLINDEP.spad" 2267484 2267495 2268408 2268413) (-1304 "ZDSOLVE.spad" 2257429 2257451 2267474 2267479) (-1303 "YSTREAM.spad" 2256924 2256935 2257419 2257424) (-1302 "YDIAGRAM.spad" 2256558 2256567 2256914 2256919) (-1301 "XRPOLY.spad" 2255778 2255798 2256414 2256483) (-1300 "XPR.spad" 2253573 2253586 2255496 2255595) (-1299 "XPOLY.spad" 2253128 2253139 2253429 2253498) (-1298 "XPOLYC.spad" 2252447 2252463 2253054 2253123) (-1297 "XPBWPOLY.spad" 2250884 2250904 2252227 2252296) (-1296 "XF.spad" 2249347 2249362 2250786 2250879) (-1295 "XF.spad" 2247790 2247807 2249231 2249236) (-1294 "XFALG.spad" 2244838 2244854 2247716 2247785) (-1293 "XEXPPKG.spad" 2244089 2244115 2244828 2244833) (-1292 "XDPOLY.spad" 2243703 2243719 2243945 2244014) (-1291 "XALG.spad" 2243363 2243374 2243659 2243698) (-1290 "WUTSET.spad" 2239202 2239219 2243009 2243036) (-1289 "WP.spad" 2238401 2238445 2239060 2239127) (-1288 "WHILEAST.spad" 2238199 2238208 2238391 2238396) (-1287 "WHEREAST.spad" 2237870 2237879 2238189 2238194) (-1286 "WFFINTBS.spad" 2235533 2235555 2237860 2237865) (-1285 "WEIER.spad" 2233755 2233766 2235523 2235528) (-1284 "VSPACE.spad" 2233428 2233439 2233723 2233750) (-1283 "VSPACE.spad" 2233121 2233134 2233418 2233423) (-1282 "VOID.spad" 2232798 2232807 2233111 2233116) (-1281 "VIEW.spad" 2230478 2230487 2232788 2232793) (-1280 "VIEWDEF.spad" 2225679 2225688 2230468 2230473) (-1279 "VIEW3D.spad" 2209640 2209649 2225669 2225674) (-1278 "VIEW2D.spad" 2197531 2197540 2209630 2209635) (-1277 "VECTOR.spad" 2196205 2196216 2196456 2196483) (-1276 "VECTOR2.spad" 2194844 2194857 2196195 2196200) (-1275 "VECTCAT.spad" 2192748 2192759 2194812 2194839) (-1274 "VECTCAT.spad" 2190459 2190472 2192525 2192530) (-1273 "VARIABLE.spad" 2190239 2190254 2190449 2190454) (-1272 "UTYPE.spad" 2189883 2189892 2190229 2190234) (-1271 "UTSODETL.spad" 2189178 2189202 2189839 2189844) (-1270 "UTSODE.spad" 2187394 2187414 2189168 2189173) (-1269 "UTS.spad" 2182198 2182226 2185861 2185958) (-1268 "UTSCAT.spad" 2179677 2179693 2182096 2182193) (-1267 "UTSCAT.spad" 2176800 2176818 2179221 2179226) (-1266 "UTS2.spad" 2176395 2176430 2176790 2176795) (-1265 "URAGG.spad" 2171068 2171079 2176385 2176390) (-1264 "URAGG.spad" 2165705 2165718 2171024 2171029) (-1263 "UPXSSING.spad" 2163350 2163376 2164786 2164919) (-1262 "UPXS.spad" 2160504 2160532 2161482 2161631) (-1261 "UPXSCONS.spad" 2158263 2158283 2158636 2158785) (-1260 "UPXSCCA.spad" 2156834 2156854 2158109 2158258) (-1259 "UPXSCCA.spad" 2155547 2155569 2156824 2156829) (-1258 "UPXSCAT.spad" 2154136 2154152 2155393 2155542) (-1257 "UPXS2.spad" 2153679 2153732 2154126 2154131) (-1256 "UPSQFREE.spad" 2152093 2152107 2153669 2153674) (-1255 "UPSCAT.spad" 2149704 2149728 2151991 2152088) (-1254 "UPSCAT.spad" 2147021 2147047 2149310 2149315) (-1253 "UPOLYC.spad" 2142061 2142072 2146863 2147016) (-1252 "UPOLYC.spad" 2136993 2137006 2141797 2141802) (-1251 "UPOLYC2.spad" 2136464 2136483 2136983 2136988) (-1250 "UP.spad" 2133663 2133678 2134050 2134203) (-1249 "UPMP.spad" 2132563 2132576 2133653 2133658) (-1248 "UPDIVP.spad" 2132128 2132142 2132553 2132558) (-1247 "UPDECOMP.spad" 2130373 2130387 2132118 2132123) (-1246 "UPCDEN.spad" 2129582 2129598 2130363 2130368) (-1245 "UP2.spad" 2128946 2128967 2129572 2129577) (-1244 "UNISEG.spad" 2128299 2128310 2128865 2128870) (-1243 "UNISEG2.spad" 2127796 2127809 2128255 2128260) (-1242 "UNIFACT.spad" 2126899 2126911 2127786 2127791) (-1241 "ULS.spad" 2117457 2117485 2118544 2118973) (-1240 "ULSCONS.spad" 2109853 2109873 2110223 2110372) (-1239 "ULSCCAT.spad" 2107590 2107610 2109699 2109848) (-1238 "ULSCCAT.spad" 2105435 2105457 2107546 2107551) (-1237 "ULSCAT.spad" 2103667 2103683 2105281 2105430) (-1236 "ULS2.spad" 2103181 2103234 2103657 2103662) (-1235 "UINT8.spad" 2103058 2103067 2103171 2103176) (-1234 "UINT64.spad" 2102934 2102943 2103048 2103053) (-1233 "UINT32.spad" 2102810 2102819 2102924 2102929) (-1232 "UINT16.spad" 2102686 2102695 2102800 2102805) (-1231 "UFD.spad" 2101751 2101760 2102612 2102681) (-1230 "UFD.spad" 2100878 2100889 2101741 2101746) (-1229 "UDVO.spad" 2099759 2099768 2100868 2100873) (-1228 "UDPO.spad" 2097252 2097263 2099715 2099720) (-1227 "TYPE.spad" 2097184 2097193 2097242 2097247) (-1226 "TYPEAST.spad" 2097103 2097112 2097174 2097179) (-1225 "TWOFACT.spad" 2095755 2095770 2097093 2097098) (-1224 "TUPLE.spad" 2095241 2095252 2095654 2095659) (-1223 "TUBETOOL.spad" 2092108 2092117 2095231 2095236) (-1222 "TUBE.spad" 2090755 2090772 2092098 2092103) (-1221 "TS.spad" 2089354 2089370 2090320 2090417) (-1220 "TSETCAT.spad" 2076481 2076498 2089322 2089349) (-1219 "TSETCAT.spad" 2063594 2063613 2076437 2076442) (-1218 "TRMANIP.spad" 2057960 2057977 2063300 2063305) (-1217 "TRIMAT.spad" 2056923 2056948 2057950 2057955) (-1216 "TRIGMNIP.spad" 2055450 2055467 2056913 2056918) (-1215 "TRIGCAT.spad" 2054962 2054971 2055440 2055445) (-1214 "TRIGCAT.spad" 2054472 2054483 2054952 2054957) (-1213 "TREE.spad" 2053047 2053058 2054079 2054106) (-1212 "TRANFUN.spad" 2052886 2052895 2053037 2053042) (-1211 "TRANFUN.spad" 2052723 2052734 2052876 2052881) (-1210 "TOPSP.spad" 2052397 2052406 2052713 2052718) (-1209 "TOOLSIGN.spad" 2052060 2052071 2052387 2052392) (-1208 "TEXTFILE.spad" 2050621 2050630 2052050 2052055) (-1207 "TEX.spad" 2047767 2047776 2050611 2050616) (-1206 "TEX1.spad" 2047323 2047334 2047757 2047762) (-1205 "TEMUTL.spad" 2046878 2046887 2047313 2047318) (-1204 "TBCMPPK.spad" 2044971 2044994 2046868 2046873) (-1203 "TBAGG.spad" 2044021 2044044 2044951 2044966) (-1202 "TBAGG.spad" 2043079 2043104 2044011 2044016) (-1201 "TANEXP.spad" 2042487 2042498 2043069 2043074) (-1200 "TALGOP.spad" 2042211 2042222 2042477 2042482) (-1199 "TABLE.spad" 2040622 2040645 2040892 2040919) (-1198 "TABLEAU.spad" 2040103 2040114 2040612 2040617) (-1197 "TABLBUMP.spad" 2036906 2036917 2040093 2040098) (-1196 "SYSTEM.spad" 2036134 2036143 2036896 2036901) (-1195 "SYSSOLP.spad" 2033617 2033628 2036124 2036129) (-1194 "SYSPTR.spad" 2033516 2033525 2033607 2033612) (-1193 "SYSNNI.spad" 2032698 2032709 2033506 2033511) (-1192 "SYSINT.spad" 2032102 2032113 2032688 2032693) (-1191 "SYNTAX.spad" 2028308 2028317 2032092 2032097) (-1190 "SYMTAB.spad" 2026376 2026385 2028298 2028303) (-1189 "SYMS.spad" 2022399 2022408 2026366 2026371) (-1188 "SYMPOLY.spad" 2021406 2021417 2021488 2021615) (-1187 "SYMFUNC.spad" 2020907 2020918 2021396 2021401) (-1186 "SYMBOL.spad" 2018410 2018419 2020897 2020902) (-1185 "SWITCH.spad" 2015181 2015190 2018400 2018405) (-1184 "SUTS.spad" 2012086 2012114 2013648 2013745) (-1183 "SUPXS.spad" 2009227 2009255 2010218 2010367) (-1182 "SUP.spad" 2006040 2006051 2006813 2006966) (-1181 "SUPFRACF.spad" 2005145 2005163 2006030 2006035) (-1180 "SUP2.spad" 2004537 2004550 2005135 2005140) (-1179 "SUMRF.spad" 2003511 2003522 2004527 2004532) (-1178 "SUMFS.spad" 2003148 2003165 2003501 2003506) (-1177 "SULS.spad" 1993693 1993721 1994793 1995222) (-1176 "SUCHTAST.spad" 1993462 1993471 1993683 1993688) (-1175 "SUCH.spad" 1993144 1993159 1993452 1993457) (-1174 "SUBSPACE.spad" 1985259 1985274 1993134 1993139) (-1173 "SUBRESP.spad" 1984429 1984443 1985215 1985220) (-1172 "STTF.spad" 1980528 1980544 1984419 1984424) (-1171 "STTFNC.spad" 1976996 1977012 1980518 1980523) (-1170 "STTAYLOR.spad" 1969631 1969642 1976877 1976882) (-1169 "STRTBL.spad" 1968136 1968153 1968285 1968312) (-1168 "STRING.spad" 1967545 1967554 1967559 1967586) (-1167 "STRICAT.spad" 1967333 1967342 1967513 1967540) (-1166 "STREAM.spad" 1964251 1964262 1966858 1966873) (-1165 "STREAM3.spad" 1963824 1963839 1964241 1964246) (-1164 "STREAM2.spad" 1962952 1962965 1963814 1963819) (-1163 "STREAM1.spad" 1962658 1962669 1962942 1962947) (-1162 "STINPROD.spad" 1961594 1961610 1962648 1962653) (-1161 "STEP.spad" 1960795 1960804 1961584 1961589) (-1160 "STEPAST.spad" 1960029 1960038 1960785 1960790) (-1159 "STBL.spad" 1958555 1958583 1958722 1958737) (-1158 "STAGG.spad" 1957630 1957641 1958545 1958550) (-1157 "STAGG.spad" 1956703 1956716 1957620 1957625) (-1156 "STACK.spad" 1956060 1956071 1956310 1956337) (-1155 "SREGSET.spad" 1953764 1953781 1955706 1955733) (-1154 "SRDCMPK.spad" 1952325 1952345 1953754 1953759) (-1153 "SRAGG.spad" 1947468 1947477 1952293 1952320) (-1152 "SRAGG.spad" 1942631 1942642 1947458 1947463) (-1151 "SQMATRIX.spad" 1940247 1940265 1941163 1941250) (-1150 "SPLTREE.spad" 1934799 1934812 1939683 1939710) (-1149 "SPLNODE.spad" 1931387 1931400 1934789 1934794) (-1148 "SPFCAT.spad" 1930196 1930205 1931377 1931382) (-1147 "SPECOUT.spad" 1928748 1928757 1930186 1930191) (-1146 "SPADXPT.spad" 1920343 1920352 1928738 1928743) (-1145 "spad-parser.spad" 1919808 1919817 1920333 1920338) (-1144 "SPADAST.spad" 1919509 1919518 1919798 1919803) (-1143 "SPACEC.spad" 1903708 1903719 1919499 1919504) (-1142 "SPACE3.spad" 1903484 1903495 1903698 1903703) (-1141 "SORTPAK.spad" 1903033 1903046 1903440 1903445) (-1140 "SOLVETRA.spad" 1900796 1900807 1903023 1903028) (-1139 "SOLVESER.spad" 1899324 1899335 1900786 1900791) (-1138 "SOLVERAD.spad" 1895350 1895361 1899314 1899319) (-1137 "SOLVEFOR.spad" 1893812 1893830 1895340 1895345) (-1136 "SNTSCAT.spad" 1893412 1893429 1893780 1893807) (-1135 "SMTS.spad" 1891684 1891710 1892977 1893074) (-1134 "SMP.spad" 1889159 1889179 1889549 1889676) (-1133 "SMITH.spad" 1888004 1888029 1889149 1889154) (-1132 "SMATCAT.spad" 1886114 1886144 1887948 1887999) (-1131 "SMATCAT.spad" 1884156 1884188 1885992 1885997) (-1130 "SKAGG.spad" 1883119 1883130 1884124 1884151) (-1129 "SINT.spad" 1882059 1882068 1882985 1883114) (-1128 "SIMPAN.spad" 1881787 1881796 1882049 1882054) (-1127 "SIG.spad" 1881117 1881126 1881777 1881782) (-1126 "SIGNRF.spad" 1880235 1880246 1881107 1881112) (-1125 "SIGNEF.spad" 1879514 1879531 1880225 1880230) (-1124 "SIGAST.spad" 1878899 1878908 1879504 1879509) (-1123 "SHP.spad" 1876827 1876842 1878855 1878860) (-1122 "SHDP.spad" 1866538 1866565 1867047 1867178) (-1121 "SGROUP.spad" 1866146 1866155 1866528 1866533) (-1120 "SGROUP.spad" 1865752 1865763 1866136 1866141) (-1119 "SGCF.spad" 1858891 1858900 1865742 1865747) (-1118 "SFRTCAT.spad" 1857821 1857838 1858859 1858886) (-1117 "SFRGCD.spad" 1856884 1856904 1857811 1857816) (-1116 "SFQCMPK.spad" 1851521 1851541 1856874 1856879) (-1115 "SFORT.spad" 1850960 1850974 1851511 1851516) (-1114 "SEXOF.spad" 1850803 1850843 1850950 1850955) (-1113 "SEX.spad" 1850695 1850704 1850793 1850798) (-1112 "SEXCAT.spad" 1848296 1848336 1850685 1850690) (-1111 "SET.spad" 1846620 1846631 1847717 1847756) (-1110 "SETMN.spad" 1845070 1845087 1846610 1846615) (-1109 "SETCAT.spad" 1844392 1844401 1845060 1845065) (-1108 "SETCAT.spad" 1843712 1843723 1844382 1844387) (-1107 "SETAGG.spad" 1840261 1840272 1843692 1843707) (-1106 "SETAGG.spad" 1836818 1836831 1840251 1840256) (-1105 "SEQAST.spad" 1836521 1836530 1836808 1836813) (-1104 "SEGXCAT.spad" 1835677 1835690 1836511 1836516) (-1103 "SEG.spad" 1835490 1835501 1835596 1835601) (-1102 "SEGCAT.spad" 1834415 1834426 1835480 1835485) (-1101 "SEGBIND.spad" 1834173 1834184 1834362 1834367) (-1100 "SEGBIND2.spad" 1833871 1833884 1834163 1834168) (-1099 "SEGAST.spad" 1833585 1833594 1833861 1833866) (-1098 "SEG2.spad" 1833020 1833033 1833541 1833546) (-1097 "SDVAR.spad" 1832296 1832307 1833010 1833015) (-1096 "SDPOL.spad" 1829722 1829733 1830013 1830140) (-1095 "SCPKG.spad" 1827811 1827822 1829712 1829717) (-1094 "SCOPE.spad" 1826964 1826973 1827801 1827806) (-1093 "SCACHE.spad" 1825660 1825671 1826954 1826959) (-1092 "SASTCAT.spad" 1825569 1825578 1825650 1825655) (-1091 "SAOS.spad" 1825441 1825450 1825559 1825564) (-1090 "SAERFFC.spad" 1825154 1825174 1825431 1825436) (-1089 "SAE.spad" 1823329 1823345 1823940 1824075) (-1088 "SAEFACT.spad" 1823030 1823050 1823319 1823324) (-1087 "RURPK.spad" 1820689 1820705 1823020 1823025) (-1086 "RULESET.spad" 1820142 1820166 1820679 1820684) (-1085 "RULE.spad" 1818382 1818406 1820132 1820137) (-1084 "RULECOLD.spad" 1818234 1818247 1818372 1818377) (-1083 "RTVALUE.spad" 1817969 1817978 1818224 1818229) (-1082 "RSTRCAST.spad" 1817686 1817695 1817959 1817964) (-1081 "RSETGCD.spad" 1814064 1814084 1817676 1817681) (-1080 "RSETCAT.spad" 1804000 1804017 1814032 1814059) (-1079 "RSETCAT.spad" 1793956 1793975 1803990 1803995) (-1078 "RSDCMPK.spad" 1792408 1792428 1793946 1793951) (-1077 "RRCC.spad" 1790792 1790822 1792398 1792403) (-1076 "RRCC.spad" 1789174 1789206 1790782 1790787) (-1075 "RPTAST.spad" 1788876 1788885 1789164 1789169) (-1074 "RPOLCAT.spad" 1768236 1768251 1788744 1788871) (-1073 "RPOLCAT.spad" 1747309 1747326 1767819 1767824) (-1072 "ROUTINE.spad" 1743192 1743201 1745956 1745983) (-1071 "ROMAN.spad" 1742520 1742529 1743058 1743187) (-1070 "ROIRC.spad" 1741600 1741632 1742510 1742515) (-1069 "RNS.spad" 1740503 1740512 1741502 1741595) (-1068 "RNS.spad" 1739492 1739503 1740493 1740498) (-1067 "RNG.spad" 1739227 1739236 1739482 1739487) (-1066 "RNGBIND.spad" 1738387 1738401 1739182 1739187) (-1065 "RMODULE.spad" 1738152 1738163 1738377 1738382) (-1064 "RMCAT2.spad" 1737572 1737629 1738142 1738147) (-1063 "RMATRIX.spad" 1736396 1736415 1736739 1736778) (-1062 "RMATCAT.spad" 1731975 1732006 1736352 1736391) (-1061 "RMATCAT.spad" 1727444 1727477 1731823 1731828) (-1060 "RLINSET.spad" 1726838 1726849 1727434 1727439) (-1059 "RINTERP.spad" 1726726 1726746 1726828 1726833) (-1058 "RING.spad" 1726196 1726205 1726706 1726721) (-1057 "RING.spad" 1725674 1725685 1726186 1726191) (-1056 "RIDIST.spad" 1725066 1725075 1725664 1725669) (-1055 "RGCHAIN.spad" 1723649 1723665 1724551 1724578) (-1054 "RGBCSPC.spad" 1723430 1723442 1723639 1723644) (-1053 "RGBCMDL.spad" 1722960 1722972 1723420 1723425) (-1052 "RF.spad" 1720602 1720613 1722950 1722955) (-1051 "RFFACTOR.spad" 1720064 1720075 1720592 1720597) (-1050 "RFFACT.spad" 1719799 1719811 1720054 1720059) (-1049 "RFDIST.spad" 1718795 1718804 1719789 1719794) (-1048 "RETSOL.spad" 1718214 1718227 1718785 1718790) (-1047 "RETRACT.spad" 1717642 1717653 1718204 1718209) (-1046 "RETRACT.spad" 1717068 1717081 1717632 1717637) (-1045 "RETAST.spad" 1716880 1716889 1717058 1717063) (-1044 "RESULT.spad" 1714940 1714949 1715527 1715554) (-1043 "RESRING.spad" 1714287 1714334 1714878 1714935) (-1042 "RESLATC.spad" 1713611 1713622 1714277 1714282) (-1041 "REPSQ.spad" 1713342 1713353 1713601 1713606) (-1040 "REP.spad" 1710896 1710905 1713332 1713337) (-1039 "REPDB.spad" 1710603 1710614 1710886 1710891) (-1038 "REP2.spad" 1700261 1700272 1710445 1710450) (-1037 "REP1.spad" 1694457 1694468 1700211 1700216) (-1036 "REGSET.spad" 1692254 1692271 1694103 1694130) (-1035 "REF.spad" 1691589 1691600 1692209 1692214) (-1034 "REDORDER.spad" 1690795 1690812 1691579 1691584) (-1033 "RECLOS.spad" 1689578 1689598 1690282 1690375) (-1032 "REALSOLV.spad" 1688718 1688727 1689568 1689573) (-1031 "REAL.spad" 1688590 1688599 1688708 1688713) (-1030 "REAL0Q.spad" 1685888 1685903 1688580 1688585) (-1029 "REAL0.spad" 1682732 1682747 1685878 1685883) (-1028 "RDUCEAST.spad" 1682453 1682462 1682722 1682727) (-1027 "RDIV.spad" 1682108 1682133 1682443 1682448) (-1026 "RDIST.spad" 1681675 1681686 1682098 1682103) (-1025 "RDETRS.spad" 1680539 1680557 1681665 1681670) (-1024 "RDETR.spad" 1678678 1678696 1680529 1680534) (-1023 "RDEEFS.spad" 1677777 1677794 1678668 1678673) (-1022 "RDEEF.spad" 1676787 1676804 1677767 1677772) (-1021 "RCFIELD.spad" 1673973 1673982 1676689 1676782) (-1020 "RCFIELD.spad" 1671245 1671256 1673963 1673968) (-1019 "RCAGG.spad" 1669173 1669184 1671235 1671240) (-1018 "RCAGG.spad" 1667028 1667041 1669092 1669097) (-1017 "RATRET.spad" 1666388 1666399 1667018 1667023) (-1016 "RATFACT.spad" 1666080 1666092 1666378 1666383) (-1015 "RANDSRC.spad" 1665399 1665408 1666070 1666075) (-1014 "RADUTIL.spad" 1665155 1665164 1665389 1665394) (-1013 "RADIX.spad" 1662076 1662090 1663622 1663715) (-1012 "RADFF.spad" 1660489 1660526 1660608 1660764) (-1011 "RADCAT.spad" 1660084 1660093 1660479 1660484) (-1010 "RADCAT.spad" 1659677 1659688 1660074 1660079) (-1009 "QUEUE.spad" 1659025 1659036 1659284 1659311) (-1008 "QUAT.spad" 1657606 1657617 1657949 1658014) (-1007 "QUATCT2.spad" 1657226 1657245 1657596 1657601) (-1006 "QUATCAT.spad" 1655396 1655407 1657156 1657221) (-1005 "QUATCAT.spad" 1653317 1653330 1655079 1655084) (-1004 "QUAGG.spad" 1652144 1652155 1653285 1653312) (-1003 "QQUTAST.spad" 1651912 1651921 1652134 1652139) (-1002 "QFORM.spad" 1651376 1651391 1651902 1651907) (-1001 "QFCAT.spad" 1650078 1650089 1651278 1651371) (-1000 "QFCAT.spad" 1648371 1648384 1649573 1649578) (-999 "QFCAT2.spad" 1648064 1648080 1648361 1648366) (-998 "QEQUAT.spad" 1647623 1647631 1648054 1648059) (-997 "QCMPACK.spad" 1642370 1642389 1647613 1647618) (-996 "QALGSET.spad" 1638449 1638481 1642284 1642289) (-995 "QALGSET2.spad" 1636445 1636463 1638439 1638444) (-994 "PWFFINTB.spad" 1633861 1633882 1636435 1636440) (-993 "PUSHVAR.spad" 1633200 1633219 1633851 1633856) (-992 "PTRANFN.spad" 1629328 1629338 1633190 1633195) (-991 "PTPACK.spad" 1626416 1626426 1629318 1629323) (-990 "PTFUNC2.spad" 1626239 1626253 1626406 1626411) (-989 "PTCAT.spad" 1625494 1625504 1626207 1626234) (-988 "PSQFR.spad" 1624801 1624825 1625484 1625489) (-987 "PSEUDLIN.spad" 1623687 1623697 1624791 1624796) (-986 "PSETPK.spad" 1609120 1609136 1623565 1623570) (-985 "PSETCAT.spad" 1603040 1603063 1609100 1609115) (-984 "PSETCAT.spad" 1596934 1596959 1602996 1603001) (-983 "PSCURVE.spad" 1595917 1595925 1596924 1596929) (-982 "PSCAT.spad" 1594700 1594729 1595815 1595912) (-981 "PSCAT.spad" 1593573 1593604 1594690 1594695) (-980 "PRTITION.spad" 1592658 1592666 1593563 1593568) (-979 "PRTDAST.spad" 1592377 1592385 1592648 1592653) (-978 "PRS.spad" 1581939 1581956 1592333 1592338) (-977 "PRQAGG.spad" 1581374 1581384 1581907 1581934) (-976 "PROPLOG.spad" 1580946 1580954 1581364 1581369) (-975 "PROPFUN2.spad" 1580569 1580582 1580936 1580941) (-974 "PROPFUN1.spad" 1579967 1579978 1580559 1580564) (-973 "PROPFRML.spad" 1578535 1578546 1579957 1579962) (-972 "PROPERTY.spad" 1578023 1578031 1578525 1578530) (-971 "PRODUCT.spad" 1575705 1575717 1575989 1576044) (-970 "PR.spad" 1574097 1574109 1574796 1574923) (-969 "PRINT.spad" 1573849 1573857 1574087 1574092) (-968 "PRIMES.spad" 1572102 1572112 1573839 1573844) (-967 "PRIMELT.spad" 1570183 1570197 1572092 1572097) (-966 "PRIMCAT.spad" 1569810 1569818 1570173 1570178) (-965 "PRIMARR.spad" 1568815 1568825 1568993 1569020) (-964 "PRIMARR2.spad" 1567582 1567594 1568805 1568810) (-963 "PREASSOC.spad" 1566964 1566976 1567572 1567577) (-962 "PPCURVE.spad" 1566101 1566109 1566954 1566959) (-961 "PORTNUM.spad" 1565876 1565884 1566091 1566096) (-960 "POLYROOT.spad" 1564725 1564747 1565832 1565837) (-959 "POLY.spad" 1562060 1562070 1562575 1562702) (-958 "POLYLIFT.spad" 1561325 1561348 1562050 1562055) (-957 "POLYCATQ.spad" 1559443 1559465 1561315 1561320) (-956 "POLYCAT.spad" 1552913 1552934 1559311 1559438) (-955 "POLYCAT.spad" 1545721 1545744 1552121 1552126) (-954 "POLY2UP.spad" 1545173 1545187 1545711 1545716) (-953 "POLY2.spad" 1544770 1544782 1545163 1545168) (-952 "POLUTIL.spad" 1543711 1543740 1544726 1544731) (-951 "POLTOPOL.spad" 1542459 1542474 1543701 1543706) (-950 "POINT.spad" 1541297 1541307 1541384 1541411) (-949 "PNTHEORY.spad" 1537999 1538007 1541287 1541292) (-948 "PMTOOLS.spad" 1536774 1536788 1537989 1537994) (-947 "PMSYM.spad" 1536323 1536333 1536764 1536769) (-946 "PMQFCAT.spad" 1535914 1535928 1536313 1536318) (-945 "PMPRED.spad" 1535393 1535407 1535904 1535909) (-944 "PMPREDFS.spad" 1534847 1534869 1535383 1535388) (-943 "PMPLCAT.spad" 1533927 1533945 1534779 1534784) (-942 "PMLSAGG.spad" 1533512 1533526 1533917 1533922) (-941 "PMKERNEL.spad" 1533091 1533103 1533502 1533507) (-940 "PMINS.spad" 1532671 1532681 1533081 1533086) (-939 "PMFS.spad" 1532248 1532266 1532661 1532666) (-938 "PMDOWN.spad" 1531538 1531552 1532238 1532243) (-937 "PMASS.spad" 1530548 1530556 1531528 1531533) (-936 "PMASSFS.spad" 1529515 1529531 1530538 1530543) (-935 "PLOTTOOL.spad" 1529295 1529303 1529505 1529510) (-934 "PLOT.spad" 1524218 1524226 1529285 1529290) (-933 "PLOT3D.spad" 1520682 1520690 1524208 1524213) (-932 "PLOT1.spad" 1519839 1519849 1520672 1520677) (-931 "PLEQN.spad" 1507129 1507156 1519829 1519834) (-930 "PINTERP.spad" 1506751 1506770 1507119 1507124) (-929 "PINTERPA.spad" 1506535 1506551 1506741 1506746) (-928 "PI.spad" 1506144 1506152 1506509 1506530) (-927 "PID.spad" 1505114 1505122 1506070 1506139) (-926 "PICOERCE.spad" 1504771 1504781 1505104 1505109) (-925 "PGROEB.spad" 1503372 1503386 1504761 1504766) (-924 "PGE.spad" 1494989 1494997 1503362 1503367) (-923 "PGCD.spad" 1493879 1493896 1494979 1494984) (-922 "PFRPAC.spad" 1493028 1493038 1493869 1493874) (-921 "PFR.spad" 1489691 1489701 1492930 1493023) (-920 "PFOTOOLS.spad" 1488949 1488965 1489681 1489686) (-919 "PFOQ.spad" 1488319 1488337 1488939 1488944) (-918 "PFO.spad" 1487738 1487765 1488309 1488314) (-917 "PF.spad" 1487312 1487324 1487543 1487636) (-916 "PFECAT.spad" 1484994 1485002 1487238 1487307) (-915 "PFECAT.spad" 1482704 1482714 1484950 1484955) (-914 "PFBRU.spad" 1480592 1480604 1482694 1482699) (-913 "PFBR.spad" 1478152 1478175 1480582 1480587) (-912 "PERM.spad" 1473837 1473847 1477982 1477997) (-911 "PERMGRP.spad" 1468599 1468609 1473827 1473832) (-910 "PERMCAT.spad" 1467157 1467167 1468579 1468594) (-909 "PERMAN.spad" 1465689 1465703 1467147 1467152) (-908 "PENDTREE.spad" 1465030 1465040 1465318 1465323) (-907 "PDRING.spad" 1463581 1463591 1465010 1465025) (-906 "PDRING.spad" 1462140 1462152 1463571 1463576) (-905 "PDEPROB.spad" 1461155 1461163 1462130 1462135) (-904 "PDEPACK.spad" 1455195 1455203 1461145 1461150) (-903 "PDECOMP.spad" 1454665 1454682 1455185 1455190) (-902 "PDECAT.spad" 1453021 1453029 1454655 1454660) (-901 "PCOMP.spad" 1452874 1452887 1453011 1453016) (-900 "PBWLB.spad" 1451462 1451479 1452864 1452869) (-899 "PATTERN.spad" 1446001 1446011 1451452 1451457) (-898 "PATTERN2.spad" 1445739 1445751 1445991 1445996) (-897 "PATTERN1.spad" 1444075 1444091 1445729 1445734) (-896 "PATRES.spad" 1441650 1441662 1444065 1444070) (-895 "PATRES2.spad" 1441322 1441336 1441640 1441645) (-894 "PATMATCH.spad" 1439519 1439550 1441030 1441035) (-893 "PATMAB.spad" 1438948 1438958 1439509 1439514) (-892 "PATLRES.spad" 1438034 1438048 1438938 1438943) (-891 "PATAB.spad" 1437798 1437808 1438024 1438029) (-890 "PARTPERM.spad" 1435076 1435084 1437788 1437793) (-889 "PARSURF.spad" 1434510 1434538 1435066 1435071) (-888 "PARSU2.spad" 1434307 1434323 1434500 1434505) (-887 "script-parser.spad" 1433827 1433835 1434297 1434302) (-886 "PARSCURV.spad" 1433261 1433289 1433817 1433822) (-885 "PARSC2.spad" 1433052 1433068 1433251 1433256) (-884 "PARPCURV.spad" 1432514 1432542 1433042 1433047) (-883 "PARPC2.spad" 1432305 1432321 1432504 1432509) (-882 "PARAMAST.spad" 1431433 1431441 1432295 1432300) (-881 "PAN2EXPR.spad" 1430845 1430853 1431423 1431428) (-880 "PALETTE.spad" 1429815 1429823 1430835 1430840) (-879 "PAIR.spad" 1428802 1428815 1429403 1429408) (-878 "PADICRC.spad" 1426136 1426154 1427307 1427400) (-877 "PADICRAT.spad" 1424151 1424163 1424372 1424465) (-876 "PADIC.spad" 1423846 1423858 1424077 1424146) (-875 "PADICCT.spad" 1422395 1422407 1423772 1423841) (-874 "PADEPAC.spad" 1421084 1421103 1422385 1422390) (-873 "PADE.spad" 1419836 1419852 1421074 1421079) (-872 "OWP.spad" 1419076 1419106 1419694 1419761) (-871 "OVERSET.spad" 1418649 1418657 1419066 1419071) (-870 "OVAR.spad" 1418430 1418453 1418639 1418644) (-869 "OUT.spad" 1417516 1417524 1418420 1418425) (-868 "OUTFORM.spad" 1406908 1406916 1417506 1417511) (-867 "OUTBFILE.spad" 1406326 1406334 1406898 1406903) (-866 "OUTBCON.spad" 1405332 1405340 1406316 1406321) (-865 "OUTBCON.spad" 1404336 1404346 1405322 1405327) (-864 "OSI.spad" 1403811 1403819 1404326 1404331) (-863 "OSGROUP.spad" 1403729 1403737 1403801 1403806) (-862 "ORTHPOL.spad" 1402214 1402224 1403646 1403651) (-861 "OREUP.spad" 1401667 1401695 1401894 1401933) (-860 "ORESUP.spad" 1400968 1400992 1401347 1401386) (-859 "OREPCTO.spad" 1398825 1398837 1400888 1400893) (-858 "OREPCAT.spad" 1392972 1392982 1398781 1398820) (-857 "OREPCAT.spad" 1387009 1387021 1392820 1392825) (-856 "ORDSET.spad" 1386181 1386189 1386999 1387004) (-855 "ORDSET.spad" 1385351 1385361 1386171 1386176) (-854 "ORDRING.spad" 1384741 1384749 1385331 1385346) (-853 "ORDRING.spad" 1384139 1384149 1384731 1384736) (-852 "ORDMON.spad" 1383994 1384002 1384129 1384134) (-851 "ORDFUNS.spad" 1383126 1383142 1383984 1383989) (-850 "ORDFIN.spad" 1382946 1382954 1383116 1383121) (-849 "ORDCOMP.spad" 1381411 1381421 1382493 1382522) (-848 "ORDCOMP2.spad" 1380704 1380716 1381401 1381406) (-847 "OPTPROB.spad" 1379342 1379350 1380694 1380699) (-846 "OPTPACK.spad" 1371751 1371759 1379332 1379337) (-845 "OPTCAT.spad" 1369430 1369438 1371741 1371746) (-844 "OPSIG.spad" 1369084 1369092 1369420 1369425) (-843 "OPQUERY.spad" 1368633 1368641 1369074 1369079) (-842 "OP.spad" 1368375 1368385 1368455 1368522) (-841 "OPERCAT.spad" 1367841 1367851 1368365 1368370) (-840 "OPERCAT.spad" 1367305 1367317 1367831 1367836) (-839 "ONECOMP.spad" 1366050 1366060 1366852 1366881) (-838 "ONECOMP2.spad" 1365474 1365486 1366040 1366045) (-837 "OMSERVER.spad" 1364480 1364488 1365464 1365469) (-836 "OMSAGG.spad" 1364268 1364278 1364436 1364475) (-835 "OMPKG.spad" 1362884 1362892 1364258 1364263) (-834 "OM.spad" 1361857 1361865 1362874 1362879) (-833 "OMLO.spad" 1361282 1361294 1361743 1361782) (-832 "OMEXPR.spad" 1361116 1361126 1361272 1361277) (-831 "OMERR.spad" 1360661 1360669 1361106 1361111) (-830 "OMERRK.spad" 1359695 1359703 1360651 1360656) (-829 "OMENC.spad" 1359039 1359047 1359685 1359690) (-828 "OMDEV.spad" 1353348 1353356 1359029 1359034) (-827 "OMCONN.spad" 1352757 1352765 1353338 1353343) (-826 "OINTDOM.spad" 1352520 1352528 1352683 1352752) (-825 "OFMONOID.spad" 1350643 1350653 1352476 1352481) (-824 "ODVAR.spad" 1349904 1349914 1350633 1350638) (-823 "ODR.spad" 1349548 1349574 1349716 1349865) (-822 "ODPOL.spad" 1346930 1346940 1347270 1347397) (-821 "ODP.spad" 1336777 1336797 1337150 1337281) (-820 "ODETOOLS.spad" 1335426 1335445 1336767 1336772) (-819 "ODESYS.spad" 1333120 1333137 1335416 1335421) (-818 "ODERTRIC.spad" 1329129 1329146 1333077 1333082) (-817 "ODERED.spad" 1328528 1328552 1329119 1329124) (-816 "ODERAT.spad" 1326143 1326160 1328518 1328523) (-815 "ODEPRRIC.spad" 1323180 1323202 1326133 1326138) (-814 "ODEPROB.spad" 1322437 1322445 1323170 1323175) (-813 "ODEPRIM.spad" 1319771 1319793 1322427 1322432) (-812 "ODEPAL.spad" 1319157 1319181 1319761 1319766) (-811 "ODEPACK.spad" 1305823 1305831 1319147 1319152) (-810 "ODEINT.spad" 1305258 1305274 1305813 1305818) (-809 "ODEIFTBL.spad" 1302653 1302661 1305248 1305253) (-808 "ODEEF.spad" 1298144 1298160 1302643 1302648) (-807 "ODECONST.spad" 1297681 1297699 1298134 1298139) (-806 "ODECAT.spad" 1296279 1296287 1297671 1297676) (-805 "OCT.spad" 1294415 1294425 1295129 1295168) (-804 "OCTCT2.spad" 1294061 1294082 1294405 1294410) (-803 "OC.spad" 1291857 1291867 1294017 1294056) (-802 "OC.spad" 1289378 1289390 1291540 1291545) (-801 "OCAMON.spad" 1289226 1289234 1289368 1289373) (-800 "OASGP.spad" 1289041 1289049 1289216 1289221) (-799 "OAMONS.spad" 1288563 1288571 1289031 1289036) (-798 "OAMON.spad" 1288424 1288432 1288553 1288558) (-797 "OAGROUP.spad" 1288286 1288294 1288414 1288419) (-796 "NUMTUBE.spad" 1287877 1287893 1288276 1288281) (-795 "NUMQUAD.spad" 1275853 1275861 1287867 1287872) (-794 "NUMODE.spad" 1267207 1267215 1275843 1275848) (-793 "NUMINT.spad" 1264773 1264781 1267197 1267202) (-792 "NUMFMT.spad" 1263613 1263621 1264763 1264768) (-791 "NUMERIC.spad" 1255727 1255737 1263418 1263423) (-790 "NTSCAT.spad" 1254235 1254251 1255695 1255722) (-789 "NTPOLFN.spad" 1253786 1253796 1254152 1254157) (-788 "NSUP.spad" 1246832 1246842 1251372 1251525) (-787 "NSUP2.spad" 1246224 1246236 1246822 1246827) (-786 "NSMP.spad" 1242454 1242473 1242762 1242889) (-785 "NREP.spad" 1240832 1240846 1242444 1242449) (-784 "NPCOEF.spad" 1240078 1240098 1240822 1240827) (-783 "NORMRETR.spad" 1239676 1239715 1240068 1240073) (-782 "NORMPK.spad" 1237578 1237597 1239666 1239671) (-781 "NORMMA.spad" 1237266 1237292 1237568 1237573) (-780 "NONE.spad" 1237007 1237015 1237256 1237261) (-779 "NONE1.spad" 1236683 1236693 1236997 1237002) (-778 "NODE1.spad" 1236170 1236186 1236673 1236678) (-777 "NNI.spad" 1235065 1235073 1236144 1236165) (-776 "NLINSOL.spad" 1233691 1233701 1235055 1235060) (-775 "NIPROB.spad" 1232232 1232240 1233681 1233686) (-774 "NFINTBAS.spad" 1229792 1229809 1232222 1232227) (-773 "NETCLT.spad" 1229766 1229777 1229782 1229787) (-772 "NCODIV.spad" 1227982 1227998 1229756 1229761) (-771 "NCNTFRAC.spad" 1227624 1227638 1227972 1227977) (-770 "NCEP.spad" 1225790 1225804 1227614 1227619) (-769 "NASRING.spad" 1225386 1225394 1225780 1225785) (-768 "NASRING.spad" 1224980 1224990 1225376 1225381) (-767 "NARNG.spad" 1224332 1224340 1224970 1224975) (-766 "NARNG.spad" 1223682 1223692 1224322 1224327) (-765 "NAGSP.spad" 1222759 1222767 1223672 1223677) (-764 "NAGS.spad" 1212420 1212428 1222749 1222754) (-763 "NAGF07.spad" 1210851 1210859 1212410 1212415) (-762 "NAGF04.spad" 1205253 1205261 1210841 1210846) (-761 "NAGF02.spad" 1199322 1199330 1205243 1205248) (-760 "NAGF01.spad" 1195083 1195091 1199312 1199317) (-759 "NAGE04.spad" 1188783 1188791 1195073 1195078) (-758 "NAGE02.spad" 1179443 1179451 1188773 1188778) (-757 "NAGE01.spad" 1175445 1175453 1179433 1179438) (-756 "NAGD03.spad" 1173449 1173457 1175435 1175440) (-755 "NAGD02.spad" 1166196 1166204 1173439 1173444) (-754 "NAGD01.spad" 1160489 1160497 1166186 1166191) (-753 "NAGC06.spad" 1156364 1156372 1160479 1160484) (-752 "NAGC05.spad" 1154865 1154873 1156354 1156359) (-751 "NAGC02.spad" 1154132 1154140 1154855 1154860) (-750 "NAALG.spad" 1153673 1153683 1154100 1154127) (-749 "NAALG.spad" 1153234 1153246 1153663 1153668) (-748 "MULTSQFR.spad" 1150192 1150209 1153224 1153229) (-747 "MULTFACT.spad" 1149575 1149592 1150182 1150187) (-746 "MTSCAT.spad" 1147669 1147690 1149473 1149570) (-745 "MTHING.spad" 1147328 1147338 1147659 1147664) (-744 "MSYSCMD.spad" 1146762 1146770 1147318 1147323) (-743 "MSET.spad" 1144720 1144730 1146468 1146507) (-742 "MSETAGG.spad" 1144565 1144575 1144688 1144715) (-741 "MRING.spad" 1141542 1141554 1144273 1144340) (-740 "MRF2.spad" 1141112 1141126 1141532 1141537) (-739 "MRATFAC.spad" 1140658 1140675 1141102 1141107) (-738 "MPRFF.spad" 1138698 1138717 1140648 1140653) (-737 "MPOLY.spad" 1136169 1136184 1136528 1136655) (-736 "MPCPF.spad" 1135433 1135452 1136159 1136164) (-735 "MPC3.spad" 1135250 1135290 1135423 1135428) (-734 "MPC2.spad" 1134896 1134929 1135240 1135245) (-733 "MONOTOOL.spad" 1133247 1133264 1134886 1134891) (-732 "MONOID.spad" 1132566 1132574 1133237 1133242) (-731 "MONOID.spad" 1131883 1131893 1132556 1132561) (-730 "MONOGEN.spad" 1130631 1130644 1131743 1131878) (-729 "MONOGEN.spad" 1129401 1129416 1130515 1130520) (-728 "MONADWU.spad" 1127431 1127439 1129391 1129396) (-727 "MONADWU.spad" 1125459 1125469 1127421 1127426) (-726 "MONAD.spad" 1124619 1124627 1125449 1125454) (-725 "MONAD.spad" 1123777 1123787 1124609 1124614) (-724 "MOEBIUS.spad" 1122513 1122527 1123757 1123772) (-723 "MODULE.spad" 1122383 1122393 1122481 1122508) (-722 "MODULE.spad" 1122273 1122285 1122373 1122378) (-721 "MODRING.spad" 1121608 1121647 1122253 1122268) (-720 "MODOP.spad" 1120273 1120285 1121430 1121497) (-719 "MODMONOM.spad" 1120004 1120022 1120263 1120268) (-718 "MODMON.spad" 1116799 1116815 1117518 1117671) (-717 "MODFIELD.spad" 1116161 1116200 1116701 1116794) (-716 "MMLFORM.spad" 1115021 1115029 1116151 1116156) (-715 "MMAP.spad" 1114763 1114797 1115011 1115016) (-714 "MLO.spad" 1113222 1113232 1114719 1114758) (-713 "MLIFT.spad" 1111834 1111851 1113212 1113217) (-712 "MKUCFUNC.spad" 1111369 1111387 1111824 1111829) (-711 "MKRECORD.spad" 1110973 1110986 1111359 1111364) (-710 "MKFUNC.spad" 1110380 1110390 1110963 1110968) (-709 "MKFLCFN.spad" 1109348 1109358 1110370 1110375) (-708 "MKBCFUNC.spad" 1108843 1108861 1109338 1109343) (-707 "MINT.spad" 1108282 1108290 1108745 1108838) (-706 "MHROWRED.spad" 1106793 1106803 1108272 1108277) (-705 "MFLOAT.spad" 1105313 1105321 1106683 1106788) (-704 "MFINFACT.spad" 1104713 1104735 1105303 1105308) (-703 "MESH.spad" 1102495 1102503 1104703 1104708) (-702 "MDDFACT.spad" 1100706 1100716 1102485 1102490) (-701 "MDAGG.spad" 1099997 1100007 1100686 1100701) (-700 "MCMPLX.spad" 1096008 1096016 1096622 1096823) (-699 "MCDEN.spad" 1095218 1095230 1095998 1096003) (-698 "MCALCFN.spad" 1092340 1092366 1095208 1095213) (-697 "MAYBE.spad" 1091624 1091635 1092330 1092335) (-696 "MATSTOR.spad" 1088932 1088942 1091614 1091619) (-695 "MATRIX.spad" 1087636 1087646 1088120 1088147) (-694 "MATLIN.spad" 1084980 1085004 1087520 1087525) (-693 "MATCAT.spad" 1076709 1076731 1084948 1084975) (-692 "MATCAT.spad" 1068310 1068334 1076551 1076556) (-691 "MATCAT2.spad" 1067592 1067640 1068300 1068305) (-690 "MAPPKG3.spad" 1066507 1066521 1067582 1067587) (-689 "MAPPKG2.spad" 1065845 1065857 1066497 1066502) (-688 "MAPPKG1.spad" 1064673 1064683 1065835 1065840) (-687 "MAPPAST.spad" 1063988 1063996 1064663 1064668) (-686 "MAPHACK3.spad" 1063800 1063814 1063978 1063983) (-685 "MAPHACK2.spad" 1063569 1063581 1063790 1063795) (-684 "MAPHACK1.spad" 1063213 1063223 1063559 1063564) (-683 "MAGMA.spad" 1061003 1061020 1063203 1063208) (-682 "MACROAST.spad" 1060582 1060590 1060993 1060998) (-681 "M3D.spad" 1058302 1058312 1059960 1059965) (-680 "LZSTAGG.spad" 1055540 1055550 1058292 1058297) (-679 "LZSTAGG.spad" 1052776 1052788 1055530 1055535) (-678 "LWORD.spad" 1049481 1049498 1052766 1052771) (-677 "LSTAST.spad" 1049265 1049273 1049471 1049476) (-676 "LSQM.spad" 1047495 1047509 1047889 1047940) (-675 "LSPP.spad" 1047030 1047047 1047485 1047490) (-674 "LSMP.spad" 1045880 1045908 1047020 1047025) (-673 "LSMP1.spad" 1043698 1043712 1045870 1045875) (-672 "LSAGG.spad" 1043367 1043377 1043666 1043693) (-671 "LSAGG.spad" 1043056 1043068 1043357 1043362) (-670 "LPOLY.spad" 1042010 1042029 1042912 1042981) (-669 "LPEFRAC.spad" 1041281 1041291 1042000 1042005) (-668 "LO.spad" 1040682 1040696 1041215 1041242) (-667 "LOGIC.spad" 1040284 1040292 1040672 1040677) (-666 "LOGIC.spad" 1039884 1039894 1040274 1040279) (-665 "LODOOPS.spad" 1038814 1038826 1039874 1039879) (-664 "LODO.spad" 1038198 1038214 1038494 1038533) (-663 "LODOF.spad" 1037244 1037261 1038155 1038160) (-662 "LODOCAT.spad" 1035910 1035920 1037200 1037239) (-661 "LODOCAT.spad" 1034574 1034586 1035866 1035871) (-660 "LODO2.spad" 1033847 1033859 1034254 1034293) (-659 "LODO1.spad" 1033247 1033257 1033527 1033566) (-658 "LODEEF.spad" 1032049 1032067 1033237 1033242) (-657 "LNAGG.spad" 1027881 1027891 1032039 1032044) (-656 "LNAGG.spad" 1023677 1023689 1027837 1027842) (-655 "LMOPS.spad" 1020445 1020462 1023667 1023672) (-654 "LMODULE.spad" 1020213 1020223 1020435 1020440) (-653 "LMDICT.spad" 1019500 1019510 1019764 1019791) (-652 "LLINSET.spad" 1018897 1018907 1019490 1019495) (-651 "LITERAL.spad" 1018803 1018814 1018887 1018892) (-650 "LIST.spad" 1016538 1016548 1017950 1017977) (-649 "LIST3.spad" 1015849 1015863 1016528 1016533) (-648 "LIST2.spad" 1014551 1014563 1015839 1015844) (-647 "LIST2MAP.spad" 1011454 1011466 1014541 1014546) (-646 "LINSET.spad" 1011076 1011086 1011444 1011449) (-645 "LINEXP.spad" 1010510 1010520 1011056 1011071) (-644 "LINDEP.spad" 1009319 1009331 1010422 1010427) (-643 "LIMITRF.spad" 1007247 1007257 1009309 1009314) (-642 "LIMITPS.spad" 1006150 1006163 1007237 1007242) (-641 "LIE.spad" 1004166 1004178 1005440 1005585) (-640 "LIECAT.spad" 1003642 1003652 1004092 1004161) (-639 "LIECAT.spad" 1003146 1003158 1003598 1003603) (-638 "LIB.spad" 1001196 1001204 1001805 1001820) (-637 "LGROBP.spad" 998549 998568 1001186 1001191) (-636 "LF.spad" 997504 997520 998539 998544) (-635 "LFCAT.spad" 996563 996571 997494 997499) (-634 "LEXTRIPK.spad" 992066 992081 996553 996558) (-633 "LEXP.spad" 990069 990096 992046 992061) (-632 "LETAST.spad" 989768 989776 990059 990064) (-631 "LEADCDET.spad" 988166 988183 989758 989763) (-630 "LAZM3PK.spad" 986870 986892 988156 988161) (-629 "LAUPOL.spad" 985563 985576 986463 986532) (-628 "LAPLACE.spad" 985146 985162 985553 985558) (-627 "LA.spad" 984586 984600 985068 985107) (-626 "LALG.spad" 984362 984372 984566 984581) (-625 "LALG.spad" 984146 984158 984352 984357) (-624 "KVTFROM.spad" 983881 983891 984136 984141) (-623 "KTVLOGIC.spad" 983393 983401 983871 983876) (-622 "KRCFROM.spad" 983131 983141 983383 983388) (-621 "KOVACIC.spad" 981854 981871 983121 983126) (-620 "KONVERT.spad" 981576 981586 981844 981849) (-619 "KOERCE.spad" 981313 981323 981566 981571) (-618 "KERNEL.spad" 979968 979978 981097 981102) (-617 "KERNEL2.spad" 979671 979683 979958 979963) (-616 "KDAGG.spad" 978780 978802 979651 979666) (-615 "KDAGG.spad" 977897 977921 978770 978775) (-614 "KAFILE.spad" 976860 976876 977095 977122) (-613 "JORDAN.spad" 974689 974701 976150 976295) (-612 "JOINAST.spad" 974383 974391 974679 974684) (-611 "JAVACODE.spad" 974249 974257 974373 974378) (-610 "IXAGG.spad" 972382 972406 974239 974244) (-609 "IXAGG.spad" 970370 970396 972229 972234) (-608 "IVECTOR.spad" 969140 969155 969295 969322) (-607 "ITUPLE.spad" 968301 968311 969130 969135) (-606 "ITRIGMNP.spad" 967140 967159 968291 968296) (-605 "ITFUN3.spad" 966646 966660 967130 967135) (-604 "ITFUN2.spad" 966390 966402 966636 966641) (-603 "ITFORM.spad" 965745 965753 966380 966385) (-602 "ITAYLOR.spad" 963739 963754 965609 965706) (-601 "ISUPS.spad" 956176 956191 962713 962810) (-600 "ISUMP.spad" 955677 955693 956166 956171) (-599 "ISTRING.spad" 954765 954778 954846 954873) (-598 "ISAST.spad" 954484 954492 954755 954760) (-597 "IRURPK.spad" 953201 953220 954474 954479) (-596 "IRSN.spad" 951173 951181 953191 953196) (-595 "IRRF2F.spad" 949658 949668 951129 951134) (-594 "IRREDFFX.spad" 949259 949270 949648 949653) (-593 "IROOT.spad" 947598 947608 949249 949254) (-592 "IR.spad" 945399 945413 947453 947480) (-591 "IRFORM.spad" 944723 944731 945389 945394) (-590 "IR2.spad" 943751 943767 944713 944718) (-589 "IR2F.spad" 942957 942973 943741 943746) (-588 "IPRNTPK.spad" 942717 942725 942947 942952) (-587 "IPF.spad" 942282 942294 942522 942615) (-586 "IPADIC.spad" 942043 942069 942208 942277) (-585 "IP4ADDR.spad" 941600 941608 942033 942038) (-584 "IOMODE.spad" 941122 941130 941590 941595) (-583 "IOBFILE.spad" 940483 940491 941112 941117) (-582 "IOBCON.spad" 940348 940356 940473 940478) (-581 "INVLAPLA.spad" 939997 940013 940338 940343) (-580 "INTTR.spad" 933379 933396 939987 939992) (-579 "INTTOOLS.spad" 931134 931150 932953 932958) (-578 "INTSLPE.spad" 930454 930462 931124 931129) (-577 "INTRVL.spad" 930020 930030 930368 930449) (-576 "INTRF.spad" 928444 928458 930010 930015) (-575 "INTRET.spad" 927876 927886 928434 928439) (-574 "INTRAT.spad" 926603 926620 927866 927871) (-573 "INTPM.spad" 924988 925004 926246 926251) (-572 "INTPAF.spad" 922852 922870 924920 924925) (-571 "INTPACK.spad" 913226 913234 922842 922847) (-570 "INT.spad" 912674 912682 913080 913221) (-569 "INTHERTR.spad" 911948 911965 912664 912669) (-568 "INTHERAL.spad" 911618 911642 911938 911943) (-567 "INTHEORY.spad" 908057 908065 911608 911613) (-566 "INTG0.spad" 901790 901808 907989 907994) (-565 "INTFTBL.spad" 895819 895827 901780 901785) (-564 "INTFACT.spad" 894878 894888 895809 895814) (-563 "INTEF.spad" 893263 893279 894868 894873) (-562 "INTDOM.spad" 891886 891894 893189 893258) (-561 "INTDOM.spad" 890571 890581 891876 891881) (-560 "INTCAT.spad" 888830 888840 890485 890566) (-559 "INTBIT.spad" 888337 888345 888820 888825) (-558 "INTALG.spad" 887525 887552 888327 888332) (-557 "INTAF.spad" 887025 887041 887515 887520) (-556 "INTABL.spad" 885543 885574 885706 885733) (-555 "INT8.spad" 885423 885431 885533 885538) (-554 "INT64.spad" 885302 885310 885413 885418) (-553 "INT32.spad" 885181 885189 885292 885297) (-552 "INT16.spad" 885060 885068 885171 885176) (-551 "INS.spad" 882563 882571 884962 885055) (-550 "INS.spad" 880152 880162 882553 882558) (-549 "INPSIGN.spad" 879600 879613 880142 880147) (-548 "INPRODPF.spad" 878696 878715 879590 879595) (-547 "INPRODFF.spad" 877784 877808 878686 878691) (-546 "INNMFACT.spad" 876759 876776 877774 877779) (-545 "INMODGCD.spad" 876247 876277 876749 876754) (-544 "INFSP.spad" 874544 874566 876237 876242) (-543 "INFPROD0.spad" 873624 873643 874534 874539) (-542 "INFORM.spad" 870823 870831 873614 873619) (-541 "INFORM1.spad" 870448 870458 870813 870818) (-540 "INFINITY.spad" 870000 870008 870438 870443) (-539 "INETCLTS.spad" 869977 869985 869990 869995) (-538 "INEP.spad" 868515 868537 869967 869972) (-537 "INDE.spad" 868244 868261 868505 868510) (-536 "INCRMAPS.spad" 867665 867675 868234 868239) (-535 "INBFILE.spad" 866737 866745 867655 867660) (-534 "INBFF.spad" 862531 862542 866727 866732) (-533 "INBCON.spad" 860821 860829 862521 862526) (-532 "INBCON.spad" 859109 859119 860811 860816) (-531 "INAST.spad" 858770 858778 859099 859104) (-530 "IMPTAST.spad" 858478 858486 858760 858765) (-529 "IMATRIX.spad" 857423 857449 857935 857962) (-528 "IMATQF.spad" 856517 856561 857379 857384) (-527 "IMATLIN.spad" 855122 855146 856473 856478) (-526 "ILIST.spad" 853780 853795 854305 854332) (-525 "IIARRAY2.spad" 853168 853206 853387 853414) (-524 "IFF.spad" 852578 852594 852849 852942) (-523 "IFAST.spad" 852192 852200 852568 852573) (-522 "IFARRAY.spad" 849685 849700 851375 851402) (-521 "IFAMON.spad" 849547 849564 849641 849646) (-520 "IEVALAB.spad" 848952 848964 849537 849542) (-519 "IEVALAB.spad" 848355 848369 848942 848947) (-518 "IDPO.spad" 848153 848165 848345 848350) (-517 "IDPOAMS.spad" 847909 847921 848143 848148) (-516 "IDPOAM.spad" 847629 847641 847899 847904) (-515 "IDPC.spad" 846567 846579 847619 847624) (-514 "IDPAM.spad" 846312 846324 846557 846562) (-513 "IDPAG.spad" 846059 846071 846302 846307) (-512 "IDENT.spad" 845709 845717 846049 846054) (-511 "IDECOMP.spad" 842948 842966 845699 845704) (-510 "IDEAL.spad" 837897 837936 842883 842888) (-509 "ICDEN.spad" 837086 837102 837887 837892) (-508 "ICARD.spad" 836277 836285 837076 837081) (-507 "IBPTOOLS.spad" 834884 834901 836267 836272) (-506 "IBITS.spad" 834087 834100 834520 834547) (-505 "IBATOOL.spad" 831064 831083 834077 834082) (-504 "IBACHIN.spad" 829571 829586 831054 831059) (-503 "IARRAY2.spad" 828559 828585 829178 829205) (-502 "IARRAY1.spad" 827604 827619 827742 827769) (-501 "IAN.spad" 825827 825835 827420 827513) (-500 "IALGFACT.spad" 825430 825463 825817 825822) (-499 "HYPCAT.spad" 824854 824862 825420 825425) (-498 "HYPCAT.spad" 824276 824286 824844 824849) (-497 "HOSTNAME.spad" 824084 824092 824266 824271) (-496 "HOMOTOP.spad" 823827 823837 824074 824079) (-495 "HOAGG.spad" 821109 821119 823817 823822) (-494 "HOAGG.spad" 818166 818178 820876 820881) (-493 "HEXADEC.spad" 816268 816276 816633 816726) (-492 "HEUGCD.spad" 815303 815314 816258 816263) (-491 "HELLFDIV.spad" 814893 814917 815293 815298) (-490 "HEAP.spad" 814285 814295 814500 814527) (-489 "HEADAST.spad" 813818 813826 814275 814280) (-488 "HDP.spad" 803661 803677 804038 804169) (-487 "HDMP.spad" 800875 800890 801491 801618) (-486 "HB.spad" 799126 799134 800865 800870) (-485 "HASHTBL.spad" 797596 797627 797807 797834) (-484 "HASAST.spad" 797312 797320 797586 797591) (-483 "HACKPI.spad" 796803 796811 797214 797307) (-482 "GTSET.spad" 795742 795758 796449 796476) (-481 "GSTBL.spad" 794261 794296 794435 794450) (-480 "GSERIES.spad" 791432 791459 792393 792542) (-479 "GROUP.spad" 790705 790713 791412 791427) (-478 "GROUP.spad" 789986 789996 790695 790700) (-477 "GROEBSOL.spad" 788480 788501 789976 789981) (-476 "GRMOD.spad" 787051 787063 788470 788475) (-475 "GRMOD.spad" 785620 785634 787041 787046) (-474 "GRIMAGE.spad" 778509 778517 785610 785615) (-473 "GRDEF.spad" 776888 776896 778499 778504) (-472 "GRAY.spad" 775351 775359 776878 776883) (-471 "GRALG.spad" 774428 774440 775341 775346) (-470 "GRALG.spad" 773503 773517 774418 774423) (-469 "GPOLSET.spad" 772957 772980 773185 773212) (-468 "GOSPER.spad" 772226 772244 772947 772952) (-467 "GMODPOL.spad" 771374 771401 772194 772221) (-466 "GHENSEL.spad" 770457 770471 771364 771369) (-465 "GENUPS.spad" 766750 766763 770447 770452) (-464 "GENUFACT.spad" 766327 766337 766740 766745) (-463 "GENPGCD.spad" 765913 765930 766317 766322) (-462 "GENMFACT.spad" 765365 765384 765903 765908) (-461 "GENEEZ.spad" 763316 763329 765355 765360) (-460 "GDMP.spad" 760372 760389 761146 761273) (-459 "GCNAALG.spad" 754295 754322 760166 760233) (-458 "GCDDOM.spad" 753471 753479 754221 754290) (-457 "GCDDOM.spad" 752709 752719 753461 753466) (-456 "GB.spad" 750235 750273 752665 752670) (-455 "GBINTERN.spad" 746255 746293 750225 750230) (-454 "GBF.spad" 742022 742060 746245 746250) (-453 "GBEUCLID.spad" 739904 739942 742012 742017) (-452 "GAUSSFAC.spad" 739217 739225 739894 739899) (-451 "GALUTIL.spad" 737543 737553 739173 739178) (-450 "GALPOLYU.spad" 735997 736010 737533 737538) (-449 "GALFACTU.spad" 734170 734189 735987 735992) (-448 "GALFACT.spad" 724359 724370 734160 734165) (-447 "FVFUN.spad" 721382 721390 724349 724354) (-446 "FVC.spad" 720434 720442 721372 721377) (-445 "FUNDESC.spad" 720112 720120 720424 720429) (-444 "FUNCTION.spad" 719961 719973 720102 720107) (-443 "FT.spad" 718258 718266 719951 719956) (-442 "FTEM.spad" 717423 717431 718248 718253) (-441 "FSUPFACT.spad" 716323 716342 717359 717364) (-440 "FST.spad" 714409 714417 716313 716318) (-439 "FSRED.spad" 713889 713905 714399 714404) (-438 "FSPRMELT.spad" 712771 712787 713846 713851) (-437 "FSPECF.spad" 710862 710878 712761 712766) (-436 "FS.spad" 705130 705140 710637 710857) (-435 "FS.spad" 699176 699188 704685 704690) (-434 "FSINT.spad" 698836 698852 699166 699171) (-433 "FSERIES.spad" 698027 698039 698656 698755) (-432 "FSCINT.spad" 697344 697360 698017 698022) (-431 "FSAGG.spad" 696461 696471 697300 697339) (-430 "FSAGG.spad" 695540 695552 696381 696386) (-429 "FSAGG2.spad" 694283 694299 695530 695535) (-428 "FS2UPS.spad" 688774 688808 694273 694278) (-427 "FS2.spad" 688421 688437 688764 688769) (-426 "FS2EXPXP.spad" 687546 687569 688411 688416) (-425 "FRUTIL.spad" 686500 686510 687536 687541) (-424 "FR.spad" 680216 680226 685524 685593) (-423 "FRNAALG.spad" 675335 675345 680158 680211) (-422 "FRNAALG.spad" 670466 670478 675291 675296) (-421 "FRNAAF2.spad" 669922 669940 670456 670461) (-420 "FRMOD.spad" 669332 669362 669853 669858) (-419 "FRIDEAL.spad" 668557 668578 669312 669327) (-418 "FRIDEAL2.spad" 668161 668193 668547 668552) (-417 "FRETRCT.spad" 667672 667682 668151 668156) (-416 "FRETRCT.spad" 667049 667061 667530 667535) (-415 "FRAMALG.spad" 665397 665410 667005 667044) (-414 "FRAMALG.spad" 663777 663792 665387 665392) (-413 "FRAC.spad" 660876 660886 661279 661452) (-412 "FRAC2.spad" 660481 660493 660866 660871) (-411 "FR2.spad" 659817 659829 660471 660476) (-410 "FPS.spad" 656632 656640 659707 659812) (-409 "FPS.spad" 653475 653485 656552 656557) (-408 "FPC.spad" 652521 652529 653377 653470) (-407 "FPC.spad" 651653 651663 652511 652516) (-406 "FPATMAB.spad" 651415 651425 651643 651648) (-405 "FPARFRAC.spad" 649902 649919 651405 651410) (-404 "FORTRAN.spad" 648408 648451 649892 649897) (-403 "FORT.spad" 647357 647365 648398 648403) (-402 "FORTFN.spad" 644527 644535 647347 647352) (-401 "FORTCAT.spad" 644211 644219 644517 644522) (-400 "FORMULA.spad" 641685 641693 644201 644206) (-399 "FORMULA1.spad" 641164 641174 641675 641680) (-398 "FORDER.spad" 640855 640879 641154 641159) (-397 "FOP.spad" 640056 640064 640845 640850) (-396 "FNLA.spad" 639480 639502 640024 640051) (-395 "FNCAT.spad" 638075 638083 639470 639475) (-394 "FNAME.spad" 637967 637975 638065 638070) (-393 "FMTC.spad" 637765 637773 637893 637962) (-392 "FMONOID.spad" 637430 637440 637721 637726) (-391 "FMONCAT.spad" 634583 634593 637420 637425) (-390 "FM.spad" 634278 634290 634517 634544) (-389 "FMFUN.spad" 631308 631316 634268 634273) (-388 "FMC.spad" 630360 630368 631298 631303) (-387 "FMCAT.spad" 628028 628046 630328 630355) (-386 "FM1.spad" 627385 627397 627962 627989) (-385 "FLOATRP.spad" 625120 625134 627375 627380) (-384 "FLOAT.spad" 618434 618442 624986 625115) (-383 "FLOATCP.spad" 615865 615879 618424 618429) (-382 "FLINEXP.spad" 615577 615587 615845 615860) (-381 "FLINEXP.spad" 615243 615255 615513 615518) (-380 "FLASORT.spad" 614569 614581 615233 615238) (-379 "FLALG.spad" 612215 612234 614495 614564) (-378 "FLAGG.spad" 609257 609267 612195 612210) (-377 "FLAGG.spad" 606200 606212 609140 609145) (-376 "FLAGG2.spad" 604925 604941 606190 606195) (-375 "FINRALG.spad" 602986 602999 604881 604920) (-374 "FINRALG.spad" 600973 600988 602870 602875) (-373 "FINITE.spad" 600125 600133 600963 600968) (-372 "FINAALG.spad" 589246 589256 600067 600120) (-371 "FINAALG.spad" 578379 578391 589202 589207) (-370 "FILE.spad" 577962 577972 578369 578374) (-369 "FILECAT.spad" 576488 576505 577952 577957) (-368 "FIELD.spad" 575894 575902 576390 576483) (-367 "FIELD.spad" 575386 575396 575884 575889) (-366 "FGROUP.spad" 574033 574043 575366 575381) (-365 "FGLMICPK.spad" 572820 572835 574023 574028) (-364 "FFX.spad" 572195 572210 572536 572629) (-363 "FFSLPE.spad" 571698 571719 572185 572190) (-362 "FFPOLY.spad" 562960 562971 571688 571693) (-361 "FFPOLY2.spad" 562020 562037 562950 562955) (-360 "FFP.spad" 561417 561437 561736 561829) (-359 "FF.spad" 560865 560881 561098 561191) (-358 "FFNBX.spad" 559377 559397 560581 560674) (-357 "FFNBP.spad" 557890 557907 559093 559186) (-356 "FFNB.spad" 556355 556376 557571 557664) (-355 "FFINTBAS.spad" 553869 553888 556345 556350) (-354 "FFIELDC.spad" 551446 551454 553771 553864) (-353 "FFIELDC.spad" 549109 549119 551436 551441) (-352 "FFHOM.spad" 547857 547874 549099 549104) (-351 "FFF.spad" 545292 545303 547847 547852) (-350 "FFCGX.spad" 544139 544159 545008 545101) (-349 "FFCGP.spad" 543028 543048 543855 543948) (-348 "FFCG.spad" 541820 541841 542709 542802) (-347 "FFCAT.spad" 534993 535015 541659 541815) (-346 "FFCAT.spad" 528245 528269 534913 534918) (-345 "FFCAT2.spad" 527992 528032 528235 528240) (-344 "FEXPR.spad" 519709 519755 527748 527787) (-343 "FEVALAB.spad" 519417 519427 519699 519704) (-342 "FEVALAB.spad" 518910 518922 519194 519199) (-341 "FDIV.spad" 518352 518376 518900 518905) (-340 "FDIVCAT.spad" 516416 516440 518342 518347) (-339 "FDIVCAT.spad" 514478 514504 516406 516411) (-338 "FDIV2.spad" 514134 514174 514468 514473) (-337 "FCTRDATA.spad" 513142 513150 514124 514129) (-336 "FCPAK1.spad" 511709 511717 513132 513137) (-335 "FCOMP.spad" 511088 511098 511699 511704) (-334 "FC.spad" 501095 501103 511078 511083) (-333 "FAXF.spad" 494066 494080 500997 501090) (-332 "FAXF.spad" 487089 487105 494022 494027) (-331 "FARRAY.spad" 485239 485249 486272 486299) (-330 "FAMR.spad" 483375 483387 485137 485234) (-329 "FAMR.spad" 481495 481509 483259 483264) (-328 "FAMONOID.spad" 481163 481173 481449 481454) (-327 "FAMONC.spad" 479459 479471 481153 481158) (-326 "FAGROUP.spad" 479083 479093 479355 479382) (-325 "FACUTIL.spad" 477287 477304 479073 479078) (-324 "FACTFUNC.spad" 476481 476491 477277 477282) (-323 "EXPUPXS.spad" 473314 473337 474613 474762) (-322 "EXPRTUBE.spad" 470602 470610 473304 473309) (-321 "EXPRODE.spad" 467762 467778 470592 470597) (-320 "EXPR.spad" 463037 463047 463751 464158) (-319 "EXPR2UPS.spad" 459159 459172 463027 463032) (-318 "EXPR2.spad" 458864 458876 459149 459154) (-317 "EXPEXPAN.spad" 455804 455829 456436 456529) (-316 "EXIT.spad" 455475 455483 455794 455799) (-315 "EXITAST.spad" 455211 455219 455465 455470) (-314 "EVALCYC.spad" 454671 454685 455201 455206) (-313 "EVALAB.spad" 454243 454253 454661 454666) (-312 "EVALAB.spad" 453813 453825 454233 454238) (-311 "EUCDOM.spad" 451387 451395 453739 453808) (-310 "EUCDOM.spad" 449023 449033 451377 451382) (-309 "ESTOOLS.spad" 440869 440877 449013 449018) (-308 "ESTOOLS2.spad" 440472 440486 440859 440864) (-307 "ESTOOLS1.spad" 440157 440168 440462 440467) (-306 "ES.spad" 432972 432980 440147 440152) (-305 "ES.spad" 425693 425703 432870 432875) (-304 "ESCONT.spad" 422486 422494 425683 425688) (-303 "ESCONT1.spad" 422235 422247 422476 422481) (-302 "ES2.spad" 421740 421756 422225 422230) (-301 "ES1.spad" 421310 421326 421730 421735) (-300 "ERROR.spad" 418637 418645 421300 421305) (-299 "EQTBL.spad" 417109 417131 417318 417345) (-298 "EQ.spad" 411914 411924 414701 414813) (-297 "EQ2.spad" 411632 411644 411904 411909) (-296 "EP.spad" 407958 407968 411622 411627) (-295 "ENV.spad" 406636 406644 407948 407953) (-294 "ENTIRER.spad" 406304 406312 406580 406631) (-293 "EMR.spad" 405511 405552 406230 406299) (-292 "ELTAGG.spad" 403765 403784 405501 405506) (-291 "ELTAGG.spad" 401983 402004 403721 403726) (-290 "ELTAB.spad" 401432 401450 401973 401978) (-289 "ELFUTS.spad" 400819 400838 401422 401427) (-288 "ELEMFUN.spad" 400508 400516 400809 400814) (-287 "ELEMFUN.spad" 400195 400205 400498 400503) (-286 "ELAGG.spad" 398166 398176 400175 400190) (-285 "ELAGG.spad" 396074 396086 398085 398090) (-284 "ELABOR.spad" 395420 395428 396064 396069) (-283 "ELABEXPR.spad" 394352 394360 395410 395415) (-282 "EFUPXS.spad" 391128 391158 394308 394313) (-281 "EFULS.spad" 387964 387987 391084 391089) (-280 "EFSTRUC.spad" 385979 385995 387954 387959) (-279 "EF.spad" 380755 380771 385969 385974) (-278 "EAB.spad" 379031 379039 380745 380750) (-277 "E04UCFA.spad" 378567 378575 379021 379026) (-276 "E04NAFA.spad" 378144 378152 378557 378562) (-275 "E04MBFA.spad" 377724 377732 378134 378139) (-274 "E04JAFA.spad" 377260 377268 377714 377719) (-273 "E04GCFA.spad" 376796 376804 377250 377255) (-272 "E04FDFA.spad" 376332 376340 376786 376791) (-271 "E04DGFA.spad" 375868 375876 376322 376327) (-270 "E04AGNT.spad" 371718 371726 375858 375863) (-269 "DVARCAT.spad" 368407 368417 371708 371713) (-268 "DVARCAT.spad" 365094 365106 368397 368402) (-267 "DSMP.spad" 362561 362575 362866 362993) (-266 "DROPT.spad" 356520 356528 362551 362556) (-265 "DROPT1.spad" 356185 356195 356510 356515) (-264 "DROPT0.spad" 351042 351050 356175 356180) (-263 "DRAWPT.spad" 349215 349223 351032 351037) (-262 "DRAW.spad" 342091 342104 349205 349210) (-261 "DRAWHACK.spad" 341399 341409 342081 342086) (-260 "DRAWCX.spad" 338869 338877 341389 341394) (-259 "DRAWCURV.spad" 338416 338431 338859 338864) (-258 "DRAWCFUN.spad" 327948 327956 338406 338411) (-257 "DQAGG.spad" 326126 326136 327916 327943) (-256 "DPOLCAT.spad" 321475 321491 325994 326121) (-255 "DPOLCAT.spad" 316910 316928 321431 321436) (-254 "DPMO.spad" 309136 309152 309274 309575) (-253 "DPMM.spad" 301375 301393 301500 301801) (-252 "DOMTMPLT.spad" 301035 301043 301365 301370) (-251 "DOMCTOR.spad" 300790 300798 301025 301030) (-250 "DOMAIN.spad" 299877 299885 300780 300785) (-249 "DMP.spad" 297137 297152 297707 297834) (-248 "DLP.spad" 296489 296499 297127 297132) (-247 "DLIST.spad" 295068 295078 295672 295699) (-246 "DLAGG.spad" 293485 293495 295058 295063) (-245 "DIVRING.spad" 293027 293035 293429 293480) (-244 "DIVRING.spad" 292613 292623 293017 293022) (-243 "DISPLAY.spad" 290803 290811 292603 292608) (-242 "DIRPROD.spad" 280383 280399 281023 281154) (-241 "DIRPROD2.spad" 279201 279219 280373 280378) (-240 "DIRPCAT.spad" 278145 278161 279065 279196) (-239 "DIRPCAT.spad" 276818 276836 277740 277745) (-238 "DIOSP.spad" 275643 275651 276808 276813) (-237 "DIOPS.spad" 274639 274649 275623 275638) (-236 "DIOPS.spad" 273609 273621 274595 274600) (-235 "DIFRING.spad" 272905 272913 273589 273604) (-234 "DIFRING.spad" 272209 272219 272895 272900) (-233 "DIFEXT.spad" 271380 271390 272189 272204) (-232 "DIFEXT.spad" 270468 270480 271279 271284) (-231 "DIAGG.spad" 270098 270108 270448 270463) (-230 "DIAGG.spad" 269736 269748 270088 270093) (-229 "DHMATRIX.spad" 268048 268058 269193 269220) (-228 "DFSFUN.spad" 261688 261696 268038 268043) (-227 "DFLOAT.spad" 258419 258427 261578 261683) (-226 "DFINTTLS.spad" 256650 256666 258409 258414) (-225 "DERHAM.spad" 254564 254596 256630 256645) (-224 "DEQUEUE.spad" 253888 253898 254171 254198) (-223 "DEGRED.spad" 253505 253519 253878 253883) (-222 "DEFINTRF.spad" 251042 251052 253495 253500) (-221 "DEFINTEF.spad" 249552 249568 251032 251037) (-220 "DEFAST.spad" 248920 248928 249542 249547) (-219 "DECIMAL.spad" 247026 247034 247387 247480) (-218 "DDFACT.spad" 244839 244856 247016 247021) (-217 "DBLRESP.spad" 244439 244463 244829 244834) (-216 "DBASE.spad" 243103 243113 244429 244434) (-215 "DATAARY.spad" 242565 242578 243093 243098) (-214 "D03FAFA.spad" 242393 242401 242555 242560) (-213 "D03EEFA.spad" 242213 242221 242383 242388) (-212 "D03AGNT.spad" 241299 241307 242203 242208) (-211 "D02EJFA.spad" 240761 240769 241289 241294) (-210 "D02CJFA.spad" 240239 240247 240751 240756) (-209 "D02BHFA.spad" 239729 239737 240229 240234) (-208 "D02BBFA.spad" 239219 239227 239719 239724) (-207 "D02AGNT.spad" 234033 234041 239209 239214) (-206 "D01WGTS.spad" 232352 232360 234023 234028) (-205 "D01TRNS.spad" 232329 232337 232342 232347) (-204 "D01GBFA.spad" 231851 231859 232319 232324) (-203 "D01FCFA.spad" 231373 231381 231841 231846) (-202 "D01ASFA.spad" 230841 230849 231363 231368) (-201 "D01AQFA.spad" 230287 230295 230831 230836) (-200 "D01APFA.spad" 229711 229719 230277 230282) (-199 "D01ANFA.spad" 229205 229213 229701 229706) (-198 "D01AMFA.spad" 228715 228723 229195 229200) (-197 "D01ALFA.spad" 228255 228263 228705 228710) (-196 "D01AKFA.spad" 227781 227789 228245 228250) (-195 "D01AJFA.spad" 227304 227312 227771 227776) (-194 "D01AGNT.spad" 223371 223379 227294 227299) (-193 "CYCLOTOM.spad" 222877 222885 223361 223366) (-192 "CYCLES.spad" 219669 219677 222867 222872) (-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 c980c8be..dafdedee 100644
--- a/src/share/algebra/category.daase
+++ b/src/share/algebra/category.daase
@@ -1,15 +1,15 @@
-(188571 . 3480886518)
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
-((((-570)) . T) (($) -2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T))
+(188640 . 3480912616)
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
+((((-570)) . T) (($) -2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T))
(((|#2| |#2|) . T))
((((-570)) . T))
-((($ $) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2| |#2|) . T) ((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2| |#2|) . T) ((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))))
((($) . T))
(((|#1|) . T))
((($) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#2|) . T))
-((($) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
(|has| |#1| (-916))
((((-868)) . T))
((((-868)) . T))
@@ -24,19 +24,19 @@
((((-227)) . T) (((-868)) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-854)))
-((($ $) . T) ((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1| |#1|) . T))
-(-2892 (|has| |#1| (-826)) (|has| |#1| (-856)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-854)))
+((($ $) . T) ((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1| |#1|) . T))
+(-2895 (|has| |#1| (-826)) (|has| |#1| (-856)))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) |has| |#1| (-1047 (-570))) ((|#1|) . T))
((((-868)) . T))
((((-868)) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
(|has| |#1| (-854))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-320 |#1|)) . T) (((-570)) . T) (($) . T))
(((|#1| |#2| |#3|) . T))
((((-570)) . T) (((-876 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
-((($) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-413 (-570))) . T) (((-705)) . T) (($) . T))
((((-868)) . T))
((((-1191)) . T))
@@ -49,14 +49,14 @@
(((|#1|) . T) ((|#2|) . T))
((((-1191)) . T))
(((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(((|#2| (-488 (-2569 |#1|) (-777))) . T))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(((|#2| (-488 (-2570 |#1|) (-777))) . T))
(((|#1| (-537 (-1186))) . T))
(((#0=(-876 |#1|) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
((((-1168)) . T) (((-965 (-130))) . T) (((-868)) . T))
((((-868)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(|has| |#4| (-373))
(|has| |#3| (-373))
(((|#1|) . T))
@@ -71,13 +71,13 @@
(|has| |#1| (-146))
(|has| |#1| (-148))
(|has| |#1| (-562))
-((((-570)) . T) (((-413 (-570))) -2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
-((((-2 (|:| -2268 |#1|) (|:| -3357 |#2|))) . T))
+((((-570)) . T) (((-413 (-570))) -2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
+((((-2 (|:| -2267 |#1|) (|:| -3994 |#2|))) . T))
((($) . T))
-((((-570)) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1186)) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-570)) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1186)) . T))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
((((-1186)) . T))
((((-570)) . T) (($) . T))
@@ -98,11 +98,11 @@
((((-868)) . T))
(((|#1|) . T))
(|has| |#1| (-1109))
-(((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))) ((|#2| |#2|) . T) (($ $) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+(((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))) ((|#2| |#2|) . T) (($ $) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
(((|#1|) . T))
((((-117 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
((((-117 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
@@ -110,14 +110,14 @@
((((-413 (-570))) . T) (($) . T) (((-570)) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T))
(((|#2|) . T) (((-570)) . T) ((|#6|) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((($) . T))
(((|#2|) . T))
((($) . T))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (((-570)) . T) (($) . T))
((((-570)) . T) (($) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
((($ $) . T))
((($) . T))
((((-570)) . T) (($) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
@@ -126,30 +126,30 @@
(((|#1|) . T))
(|has| |#1| (-373))
(((|#1|) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) . T))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (($) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#1|) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-570)) . T))
((((-868)) . T))
(((|#1| |#2|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1|) . T) (((-570)) . T) (($) . T))
(|has| |#1| (-562))
(((|#1| |#1|) . T))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-854)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-854)))
((($ $) . T) ((#0=(-413 (-570)) #0#) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(|has| |#1| (-1109))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(|has| |#1| (-1109))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(|has| |#1| (-854))
((($) . T) (((-413 (-570))) . T))
((((-868)) . T))
@@ -158,12 +158,12 @@
((((-570) (-130)) . T))
((($) . T) (((-413 (-570))) . T))
((((-130)) . T))
-(-2892 (|has| |#4| (-799)) (|has| |#4| (-854)))
-(-2892 (|has| |#4| (-799)) (|has| |#4| (-854)))
-(-2892 (|has| |#3| (-799)) (|has| |#3| (-854)))
-(-2892 (|has| |#3| (-799)) (|has| |#3| (-854)))
+(-2895 (|has| |#4| (-799)) (|has| |#4| (-854)))
+(-2895 (|has| |#4| (-799)) (|has| |#4| (-854)))
+(-2895 (|has| |#3| (-799)) (|has| |#3| (-854)))
+(-2895 (|has| |#3| (-799)) (|has| |#3| (-854)))
(((|#1| |#2|) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
((((-1191)) . T))
(((|#2| |#2|) -12 (|has| |#1| (-368)) (|has| |#2| (-313 |#2|))) (((-1186) |#2|) -12 (|has| |#1| (-368)) (|has| |#2| (-520 (-1186) |#2|))))
(((|#1| |#2|) . T))
@@ -179,39 +179,39 @@
((((-570)) . T))
((((-570)) . T))
(((|#1|) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(((|#1| (-777)) . T))
(|has| |#2| (-799))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
(|has| |#2| (-854))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1| |#2|) . T))
((((-1168) |#1|) . T))
((((-570) (-130)) . T))
(((|#1|) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(((|#3| (-777)) . T))
(|has| |#1| (-148))
(|has| |#1| (-146))
((($) . T) (((-413 (-570))) . T))
((($) . T))
((($) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
((((-413 (-570))) . T) (($) . T))
((($) . T))
((($) . T))
(|has| |#1| (-1109))
((((-413 (-570))) . T) (((-570)) . T))
((((-570)) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))))
-((((-570)) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#2|) . T))
+((((-570)) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#2|) . T))
((((-1186) |#2|) |has| |#2| (-520 (-1186) |#2|)) ((|#2| |#2|) |has| |#2| (-313 |#2|)))
((((-413 (-570))) . T) (((-570)) . T))
-((((-570)) . T) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1091)) . T) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
+((((-570)) . T) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1091)) . T) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
(((|#1|) . T) (($) . T))
((((-570)) . T))
((((-570)) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
((((-570)) . T))
((((-570)) . T))
((((-413 (-570))) . T) (($) . T))
@@ -232,13 +232,13 @@
((((-868)) . T))
((((-868)) . T))
(((|#1| |#1|) . T))
-(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) . T))
(((|#1|) . T))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
((((-868)) . T))
((((-868)) . T))
((((-868)) . T))
@@ -249,10 +249,10 @@
((((-171 (-227))) |has| |#1| (-1031)) (((-171 (-384))) |has| |#1| (-1031)) (((-542)) |has| |#1| (-620 (-542))) (((-1182 |#1|)) . T) (((-899 (-570))) |has| |#1| (-620 (-899 (-570)))) (((-899 (-384))) |has| |#1| (-620 (-899 (-384)))))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-854)))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-854)))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#2|) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-854)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-854)))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#2|) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
(|has| |#1| (-368))
((((-868)) . T))
((($) . T))
@@ -260,8 +260,8 @@
((((-130)) . T))
(-12 (|has| |#4| (-235)) (|has| |#4| (-1058)))
(-12 (|has| |#3| (-235)) (|has| |#3| (-1058)))
-(-2892 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
((((-868)) . T) (((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
@@ -270,14 +270,14 @@
(((|#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 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
-(((|#1|) . T) (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
+(((|#2|) . T) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
(|has| |#1| (-562))
-((((-570)) -2892 (|has| |#4| (-174)) (|has| |#4| (-854)) (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109))) (|has| |#4| (-1058))) ((|#4|) -2892 (|has| |#4| (-174)) (|has| |#4| (-1109))) (((-413 (-570))) -12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))
-((((-570)) -2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058))) ((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-1109))) (((-413 (-570))) -12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))
+((((-570)) -2895 (|has| |#4| (-174)) (|has| |#4| (-854)) (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109))) (|has| |#4| (-1058))) ((|#4|) -2895 (|has| |#4| (-174)) (|has| |#4| (-1109))) (((-413 (-570))) -12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))
+((((-570)) -2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058))) ((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-1109))) (((-413 (-570))) -12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(|has| |#1| (-562))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#1|) . T))
(|has| |#1| (-562))
(|has| |#1| (-562))
@@ -290,21 +290,21 @@
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
(-12 (|has| |#1| (-1109)) (|has| |#2| (-1109)))
((($) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) . T))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (($) . T))
-(((|#4| |#4|) -2892 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))) (($ $) |has| |#4| (-174)))
-(((|#3| |#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($ $) |has| |#3| (-174)))
+(((|#4| |#4|) -2895 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))) (($ $) |has| |#4| (-174)))
+(((|#3| |#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($ $) |has| |#3| (-174)))
(((|#2|) . T))
(((|#1|) . T))
((((-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 (|:| -2268 |#1|) (|:| -3357 |#2|))) . T) (((-868)) . T))
+((((-2 (|:| -2267 |#1|) (|:| -3994 |#2|))) . T) (((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))) (((-899 (-384))) |has| |#1| (-620 (-899 (-384)))) (((-899 (-570))) |has| |#1| (-620 (-899 (-570)))))
-(((|#4|) -2892 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))) (($) |has| |#4| (-174)))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
-((((-2 (|:| -2268 |#1|) (|:| -3357 |#2|))) . T))
+(((|#4|) -2895 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))) (($) |has| |#4| (-174)))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
+((((-2 (|:| -2267 |#1|) (|:| -3994 |#2|))) . T))
((((-868)) . T))
((((-868)) . T))
((((-542)) . T) (((-570)) . T) (((-899 (-570))) . T) (((-384)) . T) (((-227)) . T))
@@ -312,14 +312,14 @@
(((|#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 (|:| -2106 (-1168)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) . T))
(((|#1|) . T))
(|has| |#2| (-916))
((((-1168) (-52)) . T))
((((-570)) |has| #0=(-413 |#2|) (-645 (-570))) ((#0#) . T))
((((-542)) . T) (((-227)) . T) (((-384)) . T) (((-899 (-384))) . T))
((((-868)) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
(((|#1|) |has| |#1| (-174)))
(((|#1| $) |has| |#1| (-290 |#1| |#1|)))
((((-868)) . T))
@@ -333,15 +333,15 @@
(|has| |#1| (-1109))
((((-917 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
((((-868)) . T) (((-1191)) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((((-1191)) . T))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(|has| |#1| (-235))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1| (-537 (-824 (-1186)))) . T))
(((|#1| (-980)) . T))
((((-570)) . T) ((|#2|) . T))
@@ -351,7 +351,7 @@
(((|#1|) . T))
(((|#2| |#2|) . T))
(|has| |#1| (-1161))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
(|has| (-1263 |#1| |#2| |#3| |#4|) (-146))
(|has| (-1263 |#1| |#2| |#3| |#4|) (-148))
(|has| |#1| (-146))
@@ -363,27 +363,27 @@
(((|#2|) . T))
(((|#1|) . T))
(((|#2|) . T) (((-570)) |has| |#2| (-645 (-570))))
-((((-1134 |#1| (-1186))) . T) (((-570)) . T) (((-824 (-1186))) . T) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-1186)) . T))
+((((-1134 |#1| (-1186))) . T) (((-570)) . T) (((-824 (-1186))) . T) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-1186)) . T))
(|has| |#2| (-373))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((($) . T) ((|#1|) . T))
(((|#2|) |has| |#2| (-1058)))
((((-868)) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
(((|#1|) . T))
-((((-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))) . T))
-(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((#0=(-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) #0#) |has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))))
+((((-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))) . T))
+(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((#0=(-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) #0#) |has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#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))))))
((($) . T))
((((-868)) . T))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
((((-868)) . T))
((($) . T))
((($) . T))
((($) . T))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|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| (-1262 |#2| |#3| |#4|) (-148))
@@ -394,16 +394,16 @@
((((-868)) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
(((|#1|) . T))
((((-570) |#1|) . T))
(((|#2|) |has| |#2| (-174)))
(((|#1|) |has| |#1| (-174)))
(((|#1|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-854)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-854)))
((((-868)) |has| |#1| (-1109)))
-(-2892 (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)) (|has| |#1| (-1121)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)) (|has| |#1| (-1121)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
((((-917 |#1|)) . T))
((((-413 |#2|) |#3|) . T))
(|has| |#1| (-15 * (|#1| (-570) |#1|)))
@@ -414,7 +414,7 @@
((((-868)) . T))
((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)))
(|has| |#1| (-368))
-(-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))
+(-2895 (-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|)))
@@ -428,21 +428,21 @@
((((-570) |#1|) . T))
((((-868)) . T))
(((|#2|) . T))
-(-2892 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
((((-570)) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)))
((($) |has| |#1| (-562)) (((-570)) . T))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
-((((-1269 |#1| |#2| |#3|)) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|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))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
+((((-1269 |#1| |#2| |#3|)) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|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))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2895 (|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)))
-(-2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562)))
-(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
+(-2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562)))
+(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
((($ $) |has| |#1| (-562)) ((|#1| |#1|) . T))
(((#0=(-705) (-1182 #0#)) . T))
((((-587 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
@@ -451,18 +451,18 @@
((((-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) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) . T))
((((-868)) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
((($) . T))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((#1=(-1269 |#1| |#2| |#3|) #1#) |has| |#1| (-368)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
-(((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((#1=(-1269 |#1| |#2| |#3|) #1#) |has| |#1| (-368)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
+(((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
(((|#3|) |has| |#3| (-1058)))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
(|has| (-1103 |#1|) (-1109))
(((|#2| (-825 |#1|)) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T))
@@ -470,20 +470,20 @@
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
(((|#2|) . T) ((|#6|) . T))
(|has| |#1| (-368))
((((-570)) . T) ((|#2|) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
(((|#2|) . T) ((|#6|) . T))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) . T))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-413 $) (-413 $)) |has| |#1| (-562)) (($ $) . T) ((|#1| |#1|) . T))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((#0=(-1091) |#2|) . T) ((#0# $) . T) (($ $) . T))
((((-868)) . T))
((((-917 |#1|)) . T))
@@ -491,43 +491,43 @@
((((-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 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1|) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
(((|#1|) |has| |#1| (-174)))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) . T))
(|has| |#1| (-368))
((((-1191)) . T))
(((|#1|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-854)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-854)))
((((-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((|#1| |#1|) |has| |#1| (-313 |#1|)))
(|has| |#2| (-826))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-854))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
((((-868)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(|has| |#1| (-373))
(|has| |#1| (-373))
(|has| |#1| (-373))
((((-868)) . T))
((((-413 (-570))) . T))
(((|#1|) . T))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
((((-413 (-570))) . T))
(|has| |#1| (-373))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-570)) . T))
((((-570)) . T))
(((|#1|) . T) (((-570)) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
((((-868)) . T))
((((-868)) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
@@ -538,10 +538,10 @@
((((-570) |#4|) . T))
((((-570) |#3|) . T))
(((|#1|) . T) (((-570)) |has| |#1| (-645 (-570))))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((((-1263 |#1| |#2| |#3| |#4|)) . T))
((((-413 (-570))) . T) (((-570)) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(((|#1| |#1|) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
@@ -550,9 +550,9 @@
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
((((-570)) . T))
((((-570)) . T))
-((($) . T) (((-570)) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
+((($) . T) (((-570)) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
-((((-570)) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
+((((-570)) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058))) ((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
(((|#1|) . T))
(((|#1|) . T))
((((-413 (-570))) . T) (($) . T))
@@ -568,7 +568,7 @@
((((-570) |#3|) . T))
((((-868)) . T))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
((((-868)) . T))
((((-570) |#1|) . T))
(((|#1|) . T))
@@ -576,47 +576,47 @@
((($) . T))
((($ $) . T) ((#0=(-1186) $) . T) ((#0# |#1|) . T))
(((|#2|) |has| |#2| (-174)))
-((($) -2892 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) |has| |#2| (-174)) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
-(((|#2| |#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($ $) |has| |#2| (-174)))
+((($) -2895 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) |has| |#2| (-174)) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
+(((|#2| |#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($ $) |has| |#2| (-174)))
((((-145)) . T))
(((|#1|) . T))
(-12 (|has| |#1| (-373)) (|has| |#2| (-373)))
((((-868)) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
(((|#1|) . T))
((((-868)) . T))
(|has| |#1| (-1109))
(|has| $ (-148))
((((-1191)) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) . T))
((((-570) |#1|) . T))
-((($) -2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) -2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-1186)) -12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186)))))
(|has| |#1| (-368))
-(-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))
+(-2895 (-12 (|has| (-1184 |#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|)))
(((|#1|) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
((((-868)) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
(((|#2| (-537 (-870 |#1|))) . T))
((((-868)) . T))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1|) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-587 |#1|)) . T))
((($) . T))
((((-570)) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)))
(((|#1|) . T) (($) . T))
((((-570)) |has| |#1| (-645 (-570))) ((|#1|) . T))
-((((-1184 |#1| |#2| |#3|)) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) ((|#1|) |has| |#1| (-174)))
-((((-1273 |#2|)) . T) (((-1184 |#1| |#2| |#3|)) . T) (((-1177 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((((-1184 |#1| |#2| |#3|)) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) ((|#1|) |has| |#1| (-174)))
+((((-1273 |#2|)) . T) (((-1184 |#1| |#2| |#3|)) . T) (((-1177 |#1| |#2| |#3|)) . T) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
(((|#4|) . T))
(((|#3|) . T))
((((-876 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
@@ -625,36 +625,36 @@
(((|#1|) . T))
((((-868)) . T))
((((-868)) . T))
-((((-570)) . T) (((-413 (-570))) -2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
+((((-570)) . T) (((-413 (-570))) -2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
((((-570) |#2|) . T))
((((-868)) . T))
((($) . T) (((-570)) . T) ((|#2|) . T) (((-413 (-570))) . T))
((((-868)) . T))
((((-868)) . T))
(((|#1| |#2| |#3| |#4| |#5|) . T))
-(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((#1=(-1184 |#1| |#2| |#3|) #1#) |has| |#1| (-368)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((#1=(-1184 |#1| |#2| |#3|) #1#) |has| |#1| (-368)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
((((-868)) . T))
(((|#2|) |has| |#2| (-1058)))
(|has| |#1| (-1109))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
-(((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
+(((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) |has| |#1| (-174)) (($) . T))
(((|#1|) . T))
-(((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))) ((|#2| |#2|) . T) (($ $) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+(((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))) ((|#2| |#2|) . T) (($ $) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((((-868)) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((($ $) . T) ((|#2| $) . T) ((|#2| |#1|) . T))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
(((#0=(-1091) |#1|) . T) ((#0# $) . T) (($ $) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((($) . T))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (($) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#1|) . T))
(((|#2|) |has| |#2| (-1109)) (((-570)) -12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
(((|#2|) |has| |#1| (-368)))
@@ -678,8 +678,8 @@
(|has| |#1| (-146))
(|has| |#1| (-148))
((((-1191)) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-413 (-570))) . T) (($) . T))
((((-413 (-570))) . T) (($) . T))
((((-413 (-570))) . T) (($) . T))
@@ -690,15 +690,15 @@
(((|#1| (-777) (-1091)) . T))
((((-413 (-570))) |has| |#2| (-368)) (($) . T))
(((|#1| (-537 (-1097 (-1186))) (-1097 (-1186))) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
(((|#2|) . T))
(((|#1|) . T))
(((|#2|) . T))
-((((-1008 |#1|)) . T) (((-570)) . T) ((|#1|) . T) (((-413 (-570))) -2892 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+((((-1008 |#1|)) . T) (((-570)) . T) ((|#1|) . T) (((-413 (-570))) -2895 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(|has| |#2| (-799))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
(|has| |#1| (-373))
(|has| |#1| (-373))
(|has| |#1| (-373))
@@ -728,7 +728,7 @@
((((-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 (|:| -2106 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
(((|#2|) . T) (((-570)) |has| |#2| (-1047 (-570))) (((-413 (-570))) |has| |#2| (-1047 (-413 (-570)))))
(((|#1|) . T))
(((|#1| |#2|) . T))
@@ -736,30 +736,30 @@
((($) . T))
(((|#2|) . T))
(((|#3|) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
(((|#2|) . T))
-((((-868)) -2892 (|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))
+((((-868)) -2895 (|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))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
(|has| |#1| (-1109))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-570) (-145)) . T))
-((($) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
+((($) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
((((-570)) . T))
(((|#1|) . T) ((|#2|) . T) (((-570)) . T))
-((($) |has| |#1| (-562)) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-570)) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
+((($) |has| |#1| (-562)) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-570)) . T))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
(((|#1|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
((($) . T) (((-570)) . T) ((|#2|) . T))
(((|#1|) |has| |#1| (-174)) (($) . T) (((-570)) . T))
(((|#2|) |has| |#1| (-368)))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1| |#1|) . T) (($ $) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-1191)) . T))
((((-413 (-570))) . T) (((-570)) . T) (($) . T))
@@ -769,35 +769,35 @@
(|has| |#4| (-174))
(|has| |#3| (-174))
(((#0=(-413 (-959 |#1|)) #0#) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(|has| |#1| (-1109))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(|has| |#1| (-1109))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
((((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
(((|#1| |#1|) |has| |#1| (-174)))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1|) . T))
((((-413 (-959 |#1|))) . T))
(((|#1|) . T) (((-570)) . T) (($) . T))
(((|#1|) |has| |#1| (-174)))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-868)) . T))
((((-868)) . T))
((((-1263 |#1| |#2| |#3| |#4|)) . T))
(((|#1|) |has| |#1| (-1058)) (((-570)) -12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))
(((|#1| |#2|) . T))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
(|has| |#3| (-799))
-(-2892 (|has| |#3| (-799)) (|has| |#3| (-854)))
+(-2895 (|has| |#3| (-799)) (|has| |#3| (-854)))
(|has| |#3| (-854))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#2|) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#2|) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
(((|#2|) . T))
((((-868)) . T))
((((-868)) . T))
@@ -814,34 +814,34 @@
(|has| |#1| (-1109))
(((|#2|) . T))
((((-542)) |has| |#2| (-620 (-542))) (((-899 (-384))) |has| |#2| (-620 (-899 (-384)))) (((-899 (-570))) |has| |#2| (-620 (-899 (-570)))))
-(((|#4|) -2892 (|has| |#4| (-174)) (|has| |#4| (-368))))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368))))
+(((|#4|) -2895 (|has| |#4| (-174)) (|has| |#4| (-368))))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368))))
((((-868)) . T))
(((|#1|) . T))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-916)))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-916)))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-916)))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-916)))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#2|) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-916)))
(((|#2|) . T))
((($ $) . T) ((#0=(-1186) $) |has| |#1| (-235)) ((#0# |#1|) |has| |#1| (-235)) ((#1=(-824 (-1186)) |#1|) . T) ((#1# $) . T))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-916)))
((((-570) |#2|) . T))
((((-868)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
-((($) -2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) ((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
+((($) -2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) ((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
((((-570) |#1|) . T))
(|has| (-413 |#2|) (-148))
(|has| (-413 |#2|) (-146))
@@ -854,15 +854,15 @@
(|has| |#1| (-562))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-868)) . T))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
(|has| |#1| (-38 (-413 (-570))))
-((((-394) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
+((((-394) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#2| (-1161))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
((((-868)) . T) (((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
@@ -880,7 +880,7 @@
((((-394) (-1168)) . T))
(|has| |#1| (-562))
((((-570) |#1|) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
(((|#2|) . T))
@@ -896,7 +896,7 @@
((((-650 |#1|)) . T))
((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#2|) |has| |#2| (-313 |#2|)))
(((#0=(-570) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
(((|#1|) . T))
@@ -906,14 +906,14 @@
(((#0=(-570) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
(|has| |#2| (-373))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
(((|#1| |#2|) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
(((|#1| |#2|) . T))
((((-868)) . T))
@@ -921,8 +921,8 @@
((((-868)) . T))
((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
-((($) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((($) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-868)) . T))
((((-1184 |#1| |#2| |#3|) $) -12 (|has| (-1184 |#1| |#2| |#3|) (-290 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368))) (($ $) . T))
((($ $) . T))
@@ -934,14 +934,14 @@
(((|#1|) . T))
(((|#1|) . T))
((((-570)) . T) (($) . T))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((($) . T) (((-570)) . T) ((|#2|) . T))
((((-570)) . T) (($) . T) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
((((-413 (-570))) . T) (((-570)) . T))
((((-570) (-145)) . T))
((((-145)) . T))
(((|#1|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
((((-112)) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-112)) . T))
@@ -950,31 +950,31 @@
((((-868)) . T))
((((-1191)) . T))
(|has| |#1| (-826))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) ((|#1|) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#2|) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
-(((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) ((|#1|) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#2|) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+(((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-562)))
(|has| |#1| (-562))
(|has| |#1| (-856))
-((($) . T) (((-570)) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) . T) (((-570)) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((|#1|) . T) (((-570)) . T))
(|has| |#1| (-916))
(((|#1|) . T))
(|has| |#1| (-1109))
((((-868)) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-562)))
((((-868)) . T))
((((-868)) . T))
((((-868)) . T))
(((|#1| (-1277 |#1|) (-1277 |#1|)) . T))
((((-570) (-145)) . T))
((($) . T))
-(-2892 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
((((-1191)) . T) (((-868)) . T))
((((-1191)) . T))
((((-868)) . T))
@@ -982,20 +982,20 @@
(((|#1| (-980)) . T))
(((|#1| |#1|) . T))
((($) . T))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
(-12 (|has| |#1| (-479)) (|has| |#2| (-479)))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((($) . T) (((-570)) . T) (((-876 |#1|)) . T) (((-413 (-570))) . T))
(((|#1|) . T))
(|has| |#2| (-799))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
(((|#1| |#2|) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(|has| |#2| (-854))
(-12 (|has| |#1| (-799)) (|has| |#2| (-799)))
(-12 (|has| |#1| (-799)) (|has| |#2| (-799)))
-(-2892 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))
+(-2895 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))
(((|#1| |#2|) . T))
(((|#1|) |has| |#1| (-174)) ((|#4|) . T) (((-570)) . T))
(((|#2|) |has| |#2| (-174)))
@@ -1007,7 +1007,7 @@
(((|#1|) . T))
((((-413 (-570))) . T) (($) . T))
(((|#2|) . T) (($) . T) (((-413 (-570))) . T))
-((($) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
+((($) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
(|has| |#1| (-834))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) |has| |#1| (-1047 (-570))) ((|#1|) . T))
(|has| |#1| (-1109))
@@ -1018,13 +1018,13 @@
(((|#4|) |has| |#4| (-1109)))
(((|#3|) |has| |#3| (-1109)))
(|has| |#3| (-373))
-((($) |has| |#1| (-562)) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-570)) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+((($) |has| |#1| (-562)) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-570)) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
((((-868)) . T))
((((-868)) . T))
(((|#2|) . T))
(((|#1| |#2|) . T))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1| |#1|) |has| |#1| (-174)))
(|has| |#2| (-368))
@@ -1032,19 +1032,19 @@
(((|#1|) |has| |#1| (-174)))
((((-413 (-570))) . T) (((-570)) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T))
((($) . T) (((-570)) . T))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
((((-145)) . T))
(((|#1|) . T))
-((($) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
+((($) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
((((-145)) . T))
((((-145)) . T))
((((-413 (-570))) . #0=(|has| |#2| (-368))) (($) . #0#) ((|#2|) . T) (((-570)) . T))
(((|#1| |#2| |#3|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
(((|#1|) |has| |#1| (-174)))
(|has| $ (-148))
(|has| $ (-148))
@@ -1054,15 +1054,15 @@
((((-868)) . T))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-479)) (|has| |#1| (-562)) (|has| |#1| (-1058)) (|has| |#1| (-1121)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-479)) (|has| |#1| (-562)) (|has| |#1| (-1058)) (|has| |#1| (-1121)))
((($ $) |has| |#1| (-290 $ $)) ((|#1| $) |has| |#1| (-290 |#1| |#1|)))
(((|#1| (-413 (-570))) . T))
(((|#1|) . T))
((((-413 (-570))) . T) (((-570)) . T) (($) . T))
((((-1186)) . T))
(|has| |#1| (-562))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
(|has| |#1| (-562))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
@@ -1073,7 +1073,7 @@
(|has| |#1| (-148))
(|has| |#1| (-146))
(|has| |#4| (-854))
-(((|#2| (-242 (-2569 |#1|) (-777)) (-870 |#1|)) . T))
+(((|#2| (-242 (-2570 |#1|) (-777)) (-870 |#1|)) . T))
(|has| |#3| (-854))
(((|#1| (-537 |#3|) |#3|) . T))
(|has| |#1| (-148))
@@ -1087,21 +1087,21 @@
(|has| |#1| (-148))
((((-413 (-570))) |has| |#2| (-368)) (($) . T))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
(|has| |#1| (-146))
-(-2892 (|has| |#1| (-354)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-354)) (|has| |#1| (-373)))
((((-1151 |#2| |#1|)) . T) ((|#1|) . T))
(|has| |#2| (-174))
(((|#1| |#2|) . T))
(-12 (|has| |#2| (-235)) (|has| |#2| (-1058)))
-(((|#2|) . T) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
-(-2892 (|has| |#3| (-799)) (|has| |#3| (-854)))
-(-2892 (|has| |#3| (-799)) (|has| |#3| (-854)))
+(((|#2|) . T) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
+(-2895 (|has| |#3| (-799)) (|has| |#3| (-854)))
+(-2895 (|has| |#3| (-799)) (|has| |#3| (-854)))
((((-868)) . T))
(((|#1|) . T))
(((|#2|) . T) (($) . T))
((((-705)) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(|has| |#1| (-562))
(((|#1|) . T))
(((|#1|) . T))
@@ -1125,11 +1125,11 @@
(((|#1| (-413 (-570))) . T))
(((|#3|) . T) (((-618 $)) . T))
(((|#1| |#2|) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
-((((-570)) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
+((((-570)) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058))) ((|#2|) -2895 (|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))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
@@ -1137,8 +1137,8 @@
((((-868)) . T))
((((-868)) . T))
(((|#1| |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
-(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) |has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
+(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) |has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))))
((((-868)) . T))
(((|#1|) . T))
(((|#3| |#3|) . T))
@@ -1152,10 +1152,10 @@
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T))
((((-570)) . T) (($) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(|has| (-1103 |#1|) (-1109))
-(((|#2| |#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($ $) |has| |#2| (-174)))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368))))
-((((-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T) ((|#1| |#2|) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
+(((|#2| |#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($ $) |has| |#2| (-174)))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368))))
+((((-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T) ((|#1| |#2|) . T))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
((((-570)) . T))
((((-1191)) . T))
((((-777)) . T))
@@ -1173,39 +1173,39 @@
((((-117 |#1|)) . T))
(((|#1|) . T))
((((-413 (-570))) . T) (($) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-562)))
((((-1191)) . T))
((($) . T) (((-413 (-570))) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-562)))
(|has| |#1| (-146))
((((-570)) . T))
(|has| |#1| (-148))
((((-570)) . T))
((((-899 (-570))) . T) (((-899 (-384))) . T) (((-542)) . T) (((-1186)) . T))
((((-868)) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
((((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
((($) . T))
(((|#1|) . T))
((((-868)) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
(((|#1|) . T) (($) . T))
(((|#2|) |has| |#2| (-174)))
-((($) -2892 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) |has| |#2| (-174)) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) |has| |#2| (-174)) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
((((-876 |#1|)) . T))
-(-2892 (|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)))
+(-2895 (|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 (|:| -2106 (-1186)) (|:| -2340 #0#))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2107 (-1186)) (|:| -2340 #0#))) . T))
(((|#1| |#2|) . T))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
(((|#1| (-570) (-1091)) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1| (-413 (-570)) (-1091)) . T))
-((($) -2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) -2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-570) |#2|) . T))
(((|#1| |#2|) . T))
(((|#1| |#2|) . T))
@@ -1213,41 +1213,41 @@
(-12 (|has| |#1| (-373)) (|has| |#2| (-373)))
((((-868)) . T))
((((-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((|#1| |#1|) |has| |#1| (-313 |#1|)))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
(((|#1|) . T))
((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(|has| |#1| (-354))
-((((-570)) -2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058))) ((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-1109))) (((-413 (-570))) -12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))
+((((-570)) -2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058))) ((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-1109))) (((-413 (-570))) -12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))
(((|#1|) . T))
(((|#4|) . T))
(((|#4|) . T) (((-868)) . T))
-(((|#3|) . T) ((|#2|) . T) (($) -2892 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058))) (((-570)) . T) ((|#4|) -2892 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))))
-(((|#2|) . T) (($) -2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) (((-570)) . T) ((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+(((|#3|) . T) ((|#2|) . T) (($) -2895 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058))) (((-570)) . T) ((|#4|) -2895 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))))
+(((|#2|) . T) (($) -2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) (((-570)) . T) ((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
(|has| |#1| (-562))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-868)) . T))
(((|#1| |#2|) . T))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-916)))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-916)))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-916)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-916)))
((((-413 (-570))) . T) (((-570)) . T))
((((-570)) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((($) . T))
((((-868)) . T))
(((|#1|) . T))
((((-876 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
((((-868)) . T))
-(((|#3| |#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($ $) |has| |#3| (-174)))
+(((|#3| |#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($ $) |has| |#3| (-174)))
(|has| |#1| (-1031))
((((-868)) . T))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
((((-570) (-112)) . T))
((((-1191)) . T))
(((|#1|) |has| |#1| (-313 |#1|)))
@@ -1257,11 +1257,11 @@
(|has| |#1| (-373))
((((-1186) $) |has| |#1| (-520 (-1186) $)) (($ $) |has| |#1| (-313 $)) ((|#1| |#1|) |has| |#1| (-313 |#1|)) (((-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)))
((((-1186)) |has| |#1| (-907 (-1186))))
-(-2892 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))
+(-2895 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))
(((|#1| |#4|) . T))
(((|#1| |#3|) . T))
((((-394) |#1|) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
(|has| |#1| (-1109))
(((|#2|) . T) (((-868)) . T))
((((-868)) . T))
@@ -1269,8 +1269,8 @@
((((-917 |#1|)) . T))
((((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
(((|#1| |#2|) . T))
((($) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
@@ -1279,16 +1279,16 @@
(((|#1|) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
(((|#1| |#1|) . T))
(((#0=(-876 |#1|)) |has| #0# (-313 #0#)))
-((((-570)) . T) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T))
+((((-570)) . T) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-1047 (-413 (-570))))) ((|#1|) . T))
(((|#1| |#2|) . T))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
(((|#1|) . T))
(-12 (|has| |#1| (-799)) (|has| |#2| (-799)))
(-12 (|has| |#1| (-799)) (|has| |#2| (-799)))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((($) . T) (((-570)) . T) ((|#2|) . T))
-(((|#2|) . T) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#2|) . T) (($) . T))
(|has| |#1| (-1212))
(((#0=(-570) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
@@ -1300,8 +1300,8 @@
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-413 (-570)) #0#) . T))
(|has| |#1| (-368))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
-((($ $) . T) ((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1| |#1|) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((($ $) . T) ((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1| |#1|) . T))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
((((-868)) . T))
((((-868)) . T))
@@ -1316,29 +1316,29 @@
(((|#1| |#2|) . T))
(|has| |#1| (-854))
(|has| |#1| (-854))
-((($) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-562)))
+((($) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-562)))
((($) . T))
-(((#0=(-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) #0#) |has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))))
+(((#0=(-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) #0#) |has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))))
((($) . T))
((($) . T))
(((|#2|) |has| |#2| (-1109)))
-((((-868)) -2892 (|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))
+((((-868)) -2895 (|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))
(((|#2|) |has| |#2| (-174)))
-((($) -2892 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) |has| |#2| (-174)) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) |has| |#2| (-174)) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
((((-868)) . T))
(((|#2|) . T))
-((($) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))))
((((-570)) |has| #0=(-413 |#2|) (-645 (-570))) ((#0#) . T))
((($) . T) (((-570)) . T))
((((-570) (-145)) . T))
-((((-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T) ((|#1| |#2|) . T))
+((((-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T) ((|#1| |#2|) . T))
((((-413 (-570))) . T) (($) . T))
(((|#1|) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-868)) . T))
((((-917 |#1|)) . T))
(|has| |#1| (-368))
@@ -1346,11 +1346,11 @@
(|has| |#1| (-368))
(|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))
(|has| |#1| (-854))
-((($) -2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) -2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
(|has| |#1| (-368))
(((|#1|) . T) (($) . T))
(|has| |#1| (-854))
-((($) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-1186)) |has| |#1| (-907 (-1186))))
(|has| |#1| (-854))
((((-512)) . T))
@@ -1367,7 +1367,7 @@
((((-868)) . T))
((($) . T))
(((|#2|) . T) (($) . T))
-((((-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T) ((|#1| |#2|) . T))
+((((-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#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)))))
@@ -1376,15 +1376,15 @@
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#3|) . T))
(((|#1|) |has| |#1| (-174)))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
(((|#1|) . T))
(((|#1|) . T))
((((-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 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-512)) . T))
(|has| |#2| (-854))
((((-512)) . T))
@@ -1393,15 +1393,15 @@
((((-876 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
((((-1168) |#1|) . T))
(|has| |#1| (-1161))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((((-965 |#1|)) . T))
-(((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1| |#1|) . T))
+(((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1| |#1|) . T))
((((-413 (-570))) |has| |#1| (-1047 (-570))) (((-570)) |has| |#1| (-1047 (-570))) (((-1186)) |has| |#1| (-1047 (-1186))) ((|#1|) . T))
((((-570) |#2|) . T))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) |has| |#1| (-1047 (-570))) ((|#1|) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T))
((((-570)) |has| |#1| (-893 (-570))) (((-384)) |has| |#1| (-893 (-384))))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T) (($) . T) (((-570)) . T))
((((-650 |#4|)) . T) (((-868)) . T))
@@ -1409,34 +1409,34 @@
((((-542)) |has| |#4| (-620 (-542))))
((((-868)) . T) (((-650 |#4|)) . T))
((($) |has| |#1| (-854)))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
-((((-570)) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
+((((-570)) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058))) ((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-1109))) (((-413 (-570))) -12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109))))
(((|#1|) . T))
-(((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) . T))
+(((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) . T))
((((-650 |#4|)) . T) (((-868)) . T))
((((-542)) |has| |#4| (-620 (-542))))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (((-570)) . T) (($) . T))
(((|#1|) . T))
((((-1186)) |has| (-413 |#2|) (-907 (-1186))))
(((|#2|) . T))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
((($) . T))
((($) . T))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
((($) . T))
((($) . T))
(((|#2|) . T))
-((((-868)) -2892 (|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))
+((((-868)) -2895 (|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))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
-(((|#2| |#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($ $) |has| |#2| (-174)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(((|#2| |#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($ $) |has| |#2| (-174)))
(((|#2|) . T) (((-570)) . T))
((((-868)) . T))
((((-868)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T) ((|#2|) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T) ((|#2|) . T))
((((-868)) . T))
((((-868)) . T))
((((-1168) (-1186) (-570) (-227) (-868)) . T))
@@ -1472,9 +1472,9 @@
((((-413 (-570))) . T) (($) . T))
((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
((($) . T) (((-413 (-570))) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
(|has| $ (-148))
((((-413 |#2|)) . T))
((((-413 (-570))) |has| #0=(-413 |#2|) (-1047 (-413 (-570)))) (((-570)) |has| #0# (-1047 (-570))) ((#0#) . T))
@@ -1485,11 +1485,11 @@
(((|#3|) |has| |#3| (-174)))
(|has| |#1| (-148))
(|has| |#1| (-146))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
(|has| |#1| (-148))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
(|has| |#1| (-148))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
(|has| |#1| (-148))
(((|#1|) . T))
(|has| |#2| (-235))
@@ -1527,7 +1527,7 @@
((((-1008 |#1|)) . T) ((|#1|) . T))
((((-868)) . T))
((((-868)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-413 (-570))) . T) (((-413 |#1|)) . T) ((|#1|) . T) (($) . T))
(((|#1| (-1182 |#1|)) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
@@ -1536,8 +1536,8 @@
(((|#1|) . T) (((-570)) . T) (($) . T))
(((|#2|) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
((((-570) |#2|) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
@@ -1550,7 +1550,7 @@
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
-(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
(((|#2| |#2|) . T))
(|has| |#1| (-1109))
(|has| |#2| (-368))
@@ -1560,16 +1560,16 @@
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
(((|#1|) |has| |#1| (-174)))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#2|) . T))
(((|#1|) . T))
((((-1168) (-52)) . T))
(((|#1|) . T))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#2|) |has| |#2| (-174)))
-((($) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) (((-570)) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
+((($) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) (((-570)) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
((((-570) |#3|) . T))
((((-570) (-145)) . T))
((((-145)) . T))
@@ -1595,19 +1595,19 @@
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1| |#2|) . T))
((((-570) (-145)) . T))
-(((#0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+(((#0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) ((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
+((($) -2895 (|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))
(((|#1| |#2|) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-562)))
(|has| |#1| (-797))
(((|#1|) |has| |#1| (-174)))
(((|#4|) . T))
(((|#4|) . T))
(((|#1| |#2|) . T))
-(-2892 (|has| |#1| (-148)) (-12 (|has| |#1| (-368)) (|has| |#2| (-148))))
-(-2892 (|has| |#1| (-146)) (-12 (|has| |#1| (-368)) (|has| |#2| (-146))))
+(-2895 (|has| |#1| (-148)) (-12 (|has| |#1| (-368)) (|has| |#2| (-148))))
+(-2895 (|has| |#1| (-146)) (-12 (|has| |#1| (-368)) (|has| |#2| (-146))))
(((|#4|) . T))
(|has| |#1| (-146))
((((-1168) |#1|) . T))
@@ -1621,24 +1621,24 @@
(((|#3|) . T))
((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
((($) . T) (((-570)) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) (((-570)) . T) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) . T))
((((-868)) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#1|) . T))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (((-570)) . T) (($) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))) (((-965 |#1|)) . T))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))) (((-965 |#1|)) . T))
(|has| |#1| (-854))
(|has| |#1| (-854))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-965 |#1|)) . T))
-(((|#4|) -2892 (|has| |#4| (-174)) (|has| |#4| (-368))))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368))))
+(((|#4|) -2895 (|has| |#4| (-174)) (|has| |#4| (-368))))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368))))
(|has| |#2| (-368))
(((|#1|) |has| |#1| (-174)))
-(((|#4|) -2892 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))) (($) |has| |#4| (-174)))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
+(((|#4|) -2895 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))) (($) |has| |#4| (-174)))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
(((|#2|) |has| |#2| (-1058)))
((((-1168) |#1|) . T))
(((|#3| |#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))
@@ -1647,8 +1647,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)) -2892 (|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 (|:| -2106 (-1168)) (|:| -2340 #0#))) . T))
+((((-868)) -2895 (|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 (|:| -2107 (-1168)) (|:| -2340 #0#))) . T))
(((|#1|) . T))
((((-868)) . T))
(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
@@ -1657,7 +1657,7 @@
((((-570)) . T))
(|has| |#2| (-148))
(|has| |#1| (-479))
-(-2892 (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
(|has| |#1| (-368))
((((-868)) . T))
(|has| |#1| (-38 (-413 (-570))))
@@ -1668,8 +1668,8 @@
(|has| |#1| (-854))
((((-868)) . T))
(((|#2|) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|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))
(((|#1| |#2|) . T))
@@ -1678,7 +1678,7 @@
((((-868)) . T))
((((-868)) . T))
(|has| |#1| (-1109))
-(((|#2| (-488 (-2569 |#1|) (-777)) (-870 |#1|)) . T))
+(((|#2| (-488 (-2570 |#1|) (-777)) (-870 |#1|)) . T))
((((-413 (-570))) . #0=(|has| |#2| (-368))) (($) . #0#))
(((|#1| (-537 (-1186)) (-1186)) . T))
(((|#1|) . T))
@@ -1699,17 +1699,17 @@
(((|#2|) |has| |#2| (-174)))
(((|#1|) . T))
(((|#2|) . T))
-(((|#1|) . T) (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+(((|#1|) . T) (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#2|) . T))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) . T))
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-1186) (-52)) . T))
((($ $) . T))
(((|#1| (-570)) . T))
((((-917 |#1|)) . T))
-(((|#1|) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))) (($) -2892 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))))
+(((|#1|) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))) (($) -2895 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))))
(((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))))
(|has| |#1| (-856))
(|has| |#1| (-856))
@@ -1723,17 +1723,18 @@
((((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((|#1| |#2|) . T))
((((-413 (-959 |#1|))) . T))
+((((-980)) . T))
(((|#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
(((|#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
(((|#1|) |has| |#1| (-174)))
(((|#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368))))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-(-2892 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-916)))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+(-2895 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-916)))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((($ $) . T) ((#0=(-413 (-570)) #0#) . T))
((((-570) |#2|) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368))))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368))))
(|has| |#1| (-354))
(((|#3| |#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))
(((|#2|) . T) (((-570)) . T))
@@ -1742,7 +1743,7 @@
(|has| |#1| (-826))
(|has| |#1| (-826))
(((|#1|) . T))
-(-2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)))
(|has| |#1| (-854))
(|has| |#1| (-854))
(|has| |#1| (-854))
@@ -1751,14 +1752,14 @@
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-1186)) |has| |#1| (-907 (-1186))) (((-1091)) . T))
(((|#1|) . T))
(|has| |#1| (-854))
-(((#0=(-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) #0#) |has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))))
+(((#0=(-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) #0#) |has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(|has| |#1| (-1109))
((((-868)) . T) (((-1191)) . T))
@@ -1781,11 +1782,11 @@
(((|#1| (-777) (-1091)) . T))
(((|#3|) . T))
((((-145)) . T))
-((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) -2892 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))) ((|#1|) . T))
+((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) -2895 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))) ((|#1|) . T))
(((|#1|) . T))
((((-145)) . T))
(((|#2|) |has| |#2| (-174)))
-(-2892 (|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)))
+(-2895 (|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)))
(((|#1|) . T))
(|has| |#1| (-146))
(|has| |#1| (-148))
@@ -1804,47 +1805,47 @@
((($) |has| |#1| (-562)))
(((|#2|) . T))
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) . T))
((($) |has| |#1| (-854)))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
(|has| |#1| (-916))
((((-1186)) . T))
((((-868)) . T))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
-(((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
+(((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#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 (|:| -2106 (-1168)) (|:| -2340 |#1|)) #0#) |has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-916)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-916)))
+(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) ((#0=(-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) #0#) |has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-916)))
(((|#1|) . T) (($) . T))
(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
(((|#1| |#2|) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368))))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368))))
(|has| |#1| (-856))
(|has| |#1| (-562))
((((-587 |#1|)) . T))
((($) . T))
(((|#2|) . T))
-(-2892 (-12 (|has| |#1| (-368)) (|has| |#2| (-826))) (-12 (|has| |#1| (-368)) (|has| |#2| (-856))))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (-12 (|has| |#1| (-368)) (|has| |#2| (-826))) (-12 (|has| |#1| (-368)) (|has| |#2| (-856))))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
((((-917 |#1|)) . T))
(((|#1| (-502 |#1| |#3|) (-502 |#1| |#2|)) . T))
(((|#1| |#4| |#5|) . T))
(((|#1| (-777)) . T))
((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) . T))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
((((-678 |#1|)) . T))
(((|#1| |#2| |#3| |#4|) . T))
@@ -1853,7 +1854,7 @@
((((-868)) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-868)) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
((((-1191)) . T))
((((-413 (-570))) . T) (($) . T) (((-413 |#1|)) . T) ((|#1|) . T) (((-570)) . T))
(((|#3|) . T) (((-570)) . T) (((-618 $)) . T))
@@ -1861,12 +1862,12 @@
((((-868)) . T))
((((-868)) . T))
(((|#2|) . T))
-(-2892 (|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)))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|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)))
+(-2895 (|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| (-1212))
(|has| |#1| (-1212))
-(-2892 (|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)))
+(-2895 (|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| (-1212))
(|has| |#1| (-1212))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
@@ -1884,16 +1885,16 @@
((((-1168) (-52)) . T))
(|has| |#1| (-1109))
(((|#1|) |has| |#1| (-174)) (($) . T))
-(-2892 (|has| |#2| (-826)) (|has| |#2| (-856)))
+(-2895 (|has| |#2| (-826)) (|has| |#2| (-856)))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-570)) . T) (($) . T))
((((-777)) . T))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-868)) . T))
((($) . T) (((-570)) . T))
@@ -1901,35 +1902,37 @@
(|has| |#2| (-916))
(|has| |#1| (-368))
(((|#2|) |has| |#2| (-1109)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-542)) . T) (((-413 (-1182 (-570)))) . T) (((-227)) . T) (((-384)) . T))
((((-384)) . T) (((-227)) . T) (((-868)) . T))
(|has| |#1| (-916))
(|has| |#1| (-916))
(|has| |#1| (-916))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-916)))
((($) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
((($) . T) ((|#2|) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368))))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368))))
((((-1184 |#1| |#2| |#3|)) -12 (|has| (-1184 |#1| |#2| |#3|) (-313 (-1184 |#1| |#2| |#3|))) (|has| |#1| (-368))))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-916)))
(((|#1|) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
((((-868)) . T))
((((-868)) . T))
+((((-980)) . T))
+((((-980)) . T) (((-868)) . T))
((($ $) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((($ $) . T))
((((-570) (-112)) . T))
((($) . T))
(((|#1|) . T))
((((-570)) . T))
((((-112)) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562)))
(|has| |#1| (-38 (-413 (-570))))
(((|#1| (-570)) . T))
((($) . T))
@@ -1952,7 +1955,7 @@
(((|#1| (-777)) . T))
(((|#1|) . T))
((((-868)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(|has| |#1| (-1109))
((((-1168) |#1|) . T))
((($) . T))
@@ -1972,19 +1975,19 @@
(((|#1|) . T))
((((-570)) . T))
((((-868)) . T))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-354)))
((((-868)) . T))
(|has| |#1| (-148))
(((|#3|) . T))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
((((-868)) . 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))) -2892 (-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))
+((((-48)) -12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (((-618 $)) . T) ((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) -2895 (-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))
(((|#1| (-777)) . T))
(((|#1|) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
(((|#1|) |has| |#1| (-313 |#1|)))
((((-1263 |#1| |#2| |#3| |#4|)) . T))
((((-570)) |has| |#1| (-893 (-570))) (((-384)) |has| |#1| (-893 (-384))))
@@ -1993,14 +1996,14 @@
(|has| |#1| (-562))
((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)))
(((|#1|) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
-(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) |has| |#1| (-174)))
+(((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
-(((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
-((($) -2892 (|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 (|:| -2106 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)) ((|#1|) . T))
+(((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+((($) -2895 (|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 (|:| -2107 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
(((|#1|) |has| |#1| (-174)))
((((-868)) . T))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
@@ -2008,12 +2011,12 @@
(((|#1|) |has| |#1| (-174)) (($) . T) (((-570)) . T))
(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
(((|#1|) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) (((-570)) . T) (($) . T))
(((|#3|) |has| |#3| (-1109)))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368))))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368))))
((((-1262 |#2| |#3| |#4|)) . T))
((((-112)) . T))
(|has| |#1| (-826))
@@ -2023,8 +2026,8 @@
(|has| |#1| (-854))
(|has| |#1| (-854))
(((|#1| (-570) (-1091)) . T))
-(-2892 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+(-2895 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1| (-413 (-570)) (-1091)) . T))
(((|#1| (-777) (-1091)) . T))
(|has| |#1| (-856))
@@ -2038,41 +2041,41 @@
((((-917 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
(|has| |#1| (-1109))
((((-413 (-570))) |has| |#2| (-368)) (($) . T) (((-570)) . T))
-((((-570)) -2892 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))))
+((((-570)) -2895 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))))
(((|#1|) . T))
(|has| |#1| (-1109))
((((-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-645 (-570)))) ((|#2|) |has| |#1| (-368)))
-(-2892 (|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 (-3811) (-3811 (QUOTE X) (QUOTE HESS)) (-705)))) . T))
+(-2895 (|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 (-3814) (-3814 (QUOTE X) (QUOTE HESS)) (-705)))) . T))
(((|#2|) |has| |#2| (-174)))
(((|#1|) |has| |#1| (-174)))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
((((-868)) . T))
(|has| |#3| (-854))
((((-868)) . T))
((((-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) . T))
((((-868)) . T))
-(((|#1| |#1|) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))))
+(((|#1| |#1|) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))))
(((|#1|) . T))
((((-570)) . T))
((((-570)) . T))
-(((|#1|) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))))
+(((|#1|) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))))
(((|#2|) |has| |#2| (-368)))
(((|#1|) . T))
((($) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-368)))
(|has| |#1| (-856))
(((|#1|) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1|) . T) (((-570)) . T))
(((|#2|) . T))
((((-570)) . T) ((|#3|) . T))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) |has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-916)))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) |has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-916)))
(((|#2|) . T) (((-570)) |has| |#2| (-645 (-570))))
((((-868)) . T))
((((-868)) . T))
-((($) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) (((-570)) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
+((($) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) (((-570)) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
((((-542)) . T) (((-570)) . T) (((-899 (-570))) . T) (((-384)) . T) (((-227)) . T))
((((-868)) . T))
(|has| |#1| (-38 (-413 (-570))))
@@ -2105,28 +2108,28 @@
(|has| |#1| (-146))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) |has| |#1| (-174)))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-570)) . T) ((|#1|) . T) (($) . T) (((-413 (-570))) . T) (((-1186)) |has| |#1| (-1047 (-1186))))
(((|#1| |#2|) . T))
-((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) -2892 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))) ((|#1|) . T))
+((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-570)) -2895 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))) ((|#1|) . T))
((((-145)) . T))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
(((|#1|) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) . T) (($ $) . T))
(((|#2|) . T) ((|#1|) . T) (((-570)) . T))
((((-868)) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
((($) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| (-413 |#2|) (-235))
((((-650 |#1|)) . T))
(|has| |#1| (-916))
(((|#2|) |has| |#2| (-1058)))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
(|has| |#1| (-368))
(((|#1|) |has| |#1| (-174)))
(((|#1| |#1|) . T))
@@ -2137,7 +2140,7 @@
(((|#1|) . T))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
((((-650 $)) . T) (((-1168)) . T) (((-1186)) . T) (((-570)) . T) (((-227)) . T) (((-868)) . T))
-((($) -2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) (((-570)) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-854)) (|has| |#3| (-1058))) ((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
+((($) -2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) (((-570)) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-854)) (|has| |#3| (-1058))) ((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
((((-413 (-570))) . T) (((-570)) . T) (((-618 $)) . T))
(((|#1|) . T))
((((-868)) . T))
@@ -2152,7 +2155,7 @@
(((|#1|) . T))
(((|#1| (-777) (-1091)) . T))
(((#0=(-413 |#2|) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
-(((|#1|) . T) (((-570)) -2892 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))) (((-413 (-570))) . T))
+(((|#1|) . T) (((-570)) -2895 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))) (((-413 (-570))) . T))
(((|#1| (-608 |#1| |#3|) (-608 |#1| |#2|)) . T))
(((|#1|) |has| |#1| (-174)))
(((|#1|) . T))
@@ -2173,12 +2176,12 @@
(((|#2|) |has| |#2| (-174)))
(|has| |#2| (-854))
((((-570)) . T) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-1047 (-413 (-570)))))
-((((-112)) |has| |#1| (-1109)) (((-868)) -2892 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)) (|has| |#1| (-1121)) (|has| |#1| (-1109))))
+((((-112)) |has| |#1| (-1109)) (((-868)) -2895 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)) (|has| |#1| (-1121)) (|has| |#1| (-1109))))
(((|#1|) . T) (($) . T))
(((|#1| |#2|) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 (-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))
@@ -2190,17 +2193,17 @@
((((-705)) . T) (((-413 (-570))) . T) (((-570)) . T))
(((|#1| |#1|) |has| |#1| (-174)))
(((|#2|) . T))
-((($) . T) (((-570)) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) . T) (((-570)) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-570) |#1|) . T))
-(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
((((-384)) . T))
((((-705)) . T))
((((-413 (-570))) . #0=(|has| |#2| (-368))) (($) . #0#))
(((|#1|) |has| |#1| (-174)))
((((-413 (-959 |#1|))) . T))
(((|#2| |#2|) . T))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
(((|#1|) . T))
(((|#2|) . T))
(((|#3|) |has| |#3| (-1058)))
@@ -2209,14 +2212,14 @@
(|has| |#1| (-368))
((((-1186)) |has| |#2| (-907 (-1186))))
((((-868)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-413 (-570))) . T) (($) . T))
(|has| |#1| (-479))
(|has| |#1| (-373))
(|has| |#1| (-373))
(|has| |#1| (-373))
(|has| |#1| (-368))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-479)) (|has| |#1| (-562)) (|has| |#1| (-1058)) (|has| |#1| (-1121)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-479)) (|has| |#1| (-562)) (|has| |#1| (-1058)) (|has| |#1| (-1121)))
(|has| |#1| (-38 (-413 (-570))))
((((-117 |#1|)) . T))
((((-117 |#1|)) . T))
@@ -2237,12 +2240,12 @@
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-856))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
(((|#1| |#2|) . T))
((($) . T) (((-570)) . T))
(|has| |#1| (-148))
(|has| |#1| (-146))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) ((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) ((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
(((|#2|) . T))
(((|#3|) . T))
((((-117 |#1|)) . T))
@@ -2262,12 +2265,12 @@
((((-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 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((($ $) . T) (((-618 $) $) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
((($) . T) (((-1263 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T))
-((($) -2892 (|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))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
+((($) -2895 (|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))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| |#1| (-368))
@@ -2280,16 +2283,16 @@
(((|#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))
(((|#1|) |has| |#1| (-174)))
((((-868)) . T))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-916)))
(((|#1|) . T))
((($) |has| |#1| (-562)) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
(((|#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
((((-777)) . T))
(|has| |#1| (-1109))
-((($) -2892 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) (((-570)) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
+((($) -2895 (|has| |#2| (-174)) (|has| |#2| (-854)) (|has| |#2| (-1058))) (((-570)) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058))) ((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))))
((((-868)) . T))
((((-1186)) . T) (((-868)) . T))
((((-570)) -12 (|has| |#1| (-21)) (|has| |#2| (-21))))
@@ -2297,13 +2300,13 @@
(|has| |#1| (-146))
(|has| |#1| (-148))
((((-570)) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
(((#0=(-1262 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))) (($) . T))
((((-570)) . T))
(|has| |#1| (-368))
-(-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-148)) (|has| |#1| (-368))) (|has| |#1| (-148)))
-(-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146)))
+(-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-148)) (|has| |#1| (-368))) (|has| |#1| (-148)))
+(-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146)))
(|has| |#1| (-368))
(|has| |#1| (-146))
(|has| |#1| (-148))
@@ -2322,25 +2325,25 @@
(|has| |#1| (-1109))
((((-1151 |#2| |#1|)) . T) ((|#1|) . T) (((-570)) . T))
(((|#1| |#2|) . T))
-((((-570)) . T) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))
+((((-570)) . T) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))
(((|#1|) . T) (((-570)) |has| |#1| (-645 (-570))))
(((|#3|) |has| |#3| (-174)))
(((|#2|) . T) (($) . T) (((-570)) . T))
(((|#1|) . T) (($) . T) (((-570)) . T))
-(-2892 (|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)))
+(-2895 (|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)))
((((-868)) . T))
((((-570)) . T))
(((|#1| $) |has| |#1| (-290 |#1| |#1|)))
((((-413 (-570))) . T) (($) . T) (((-413 |#1|)) . T) ((|#1|) . T))
((((-959 |#1|)) . T) (((-868)) . T))
(((|#3|) . T))
-(((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-294)) (|has| |#1| (-368))) ((#0=(-413 (-570)) #0#) |has| |#1| (-368)))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) . T))
+(((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-294)) (|has| |#1| (-368))) ((#0=(-413 (-570)) #0#) |has| |#1| (-368)))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) . T))
((((-959 |#1|)) . T))
((($) . T))
((((-570) |#1|) . T))
((((-1186)) |has| (-413 |#2|) (-907 (-1186))))
-(((|#1|) . T) (($) -2892 (|has| |#1| (-294)) (|has| |#1| (-368))) (((-413 (-570))) |has| |#1| (-368)))
+(((|#1|) . T) (($) -2895 (|has| |#1| (-294)) (|has| |#1| (-368))) (((-413 (-570))) |has| |#1| (-368)))
((((-542)) |has| |#2| (-620 (-542))))
((((-695 |#2|)) . T) (((-868)) . T))
(((|#1|) . T))
@@ -2348,22 +2351,22 @@
(((|#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
((((-876 |#1|)) . T))
(((|#1|) |has| |#1| (-174)))
-(-2892 (|has| |#4| (-799)) (|has| |#4| (-854)))
-(-2892 (|has| |#3| (-799)) (|has| |#3| (-854)))
+(-2895 (|has| |#4| (-799)) (|has| |#4| (-854)))
+(-2895 (|has| |#3| (-799)) (|has| |#3| (-854)))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-868)) . T))
((((-868)) . T))
(((|#1|) . T))
((($) . T) (((-570)) . T) ((|#2|) . T))
(((|#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368))))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368))))
(((|#2|) |has| |#2| (-1058)))
(((|#3|) . T))
(((|#1|) . T))
((((-413 |#2|)) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368))))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368))))
(((|#1|) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
(((|#3|) -12 (|has| |#3| (-313 |#3|)) (|has| |#3| (-1109))))
((((-570) |#1|) . T))
(((|#1|) . T))
@@ -2372,17 +2375,17 @@
((((-413 (-570))) . T) (($) . T))
((((-413 (-570))) . T) (($) . T))
((((-413 (-570))) . T) (($) . T))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-1231)))
+(-2895 (|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))))
(((|#1| (-777)) . T))
(|has| |#1| (-856))
(((|#1|) . T) (((-570)) |has| |#1| (-645 (-570))))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-570)) . T))
(|has| |#1| (-38 (-413 (-570))))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) |has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) |has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(|has| |#1| (-854))
(|has| |#1| (-38 (-413 (-570))))
@@ -2406,48 +2409,48 @@
(|has| |#1| (-38 (-413 (-570))))
((((-1168)) . T) (((-512)) . T) (((-227)) . T) (((-570)) . T))
((((-868)) . T))
-(((|#2|) . T) (((-570)) . T) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1091)) . T) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
+(((|#2|) . T) (((-570)) . T) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1091)) . T) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
(((|#1| |#2|) . T))
((((-145)) . T))
((((-786 |#1| (-870 |#2|))) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(|has| |#1| (-1212))
((((-868)) . T))
(((|#1|) . T))
-(-2892 (|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)))
+(-2895 (|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)))
((((-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)))
(((|#2|) . T))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
((((-917 |#1|)) . T))
((($) . T))
((((-413 (-959 |#1|))) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|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 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1|) . T))
(|has| |#1| (-854))
-(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) |has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))))
+(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))) (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) |has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))))
(|has| |#1| (-1109))
(|has| |#1| (-368))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368))))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368))))
((((-678 |#1|)) . T))
-(((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
+(((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))) (($) |has| |#3| (-174)))
((($) . T) (((-413 (-570))) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
(|has| |#1| (-146))
(|has| |#1| (-148))
-(-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-148)) (|has| |#1| (-368))) (|has| |#1| (-148)))
-(-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146)))
+(-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-148)) (|has| |#1| (-368))) (|has| |#1| (-148)))
+(-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-146)) (|has| |#1| (-368))) (|has| |#1| (-146)))
(|has| |#1| (-146))
(|has| |#1| (-148))
(|has| |#1| (-148))
(|has| |#1| (-146))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
(|has| |#1| (-854))
(((|#1| |#2|) . T))
@@ -2473,10 +2476,10 @@
((((-868)) . T))
((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-570)) . T) (($) . T) (((-413 (-570))) . T))
((((-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((|#1| |#1|) |has| |#1| (-313 |#1|)))
-(((|#1|) -2892 (|has| |#1| (-174)) (|has| |#1| (-368))))
+(((|#1|) -2895 (|has| |#1| (-174)) (|has| |#1| (-368))))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
@@ -2486,10 +2489,10 @@
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#2|) |has| |#2| (-368)))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
(((|#2|) . T))
((((-413 (-570))) . T) (((-705)) . T) (($) . T))
-((($) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((#0=(-786 |#1| (-870 |#2|)) #0#) |has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))))
((((-570)) . T) (($) . T))
@@ -2508,13 +2511,13 @@
(|has| |#1| (-146))
(|has| |#1| (-148))
((($ $) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)) (|has| |#1| (-1121)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)) (|has| |#1| (-1121)) (|has| |#1| (-1109)))
(|has| |#1| (-562))
(((|#2|) . T))
((((-570)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1|) . T))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
(((|#1| (-59 |#1|) (-59 |#1|)) . T))
((((-587 |#1|)) . T))
((($) . T))
@@ -2523,7 +2526,7 @@
((($) . T))
(((|#1|) . T))
((((-868)) . T))
-(((|#2|) |has| |#2| (-6 (-4451 "*"))))
+(((|#2|) |has| |#2| (-6 (-4454 "*"))))
(((|#1|) . T))
(((|#1|) . T))
((($) . T))
@@ -2534,7 +2537,7 @@
(((|#1|) . T))
(((|#3|) . T) (((-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)) -2892 (|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))) -2892 (|has| |#1| (-562)) (|has| |#1| (-1047 (-413 (-570))))) (((-413 (-959 |#1|))) |has| |#1| (-562)) (((-959 |#1|)) |has| |#1| (-1058)) (((-1186)) . T))
+((((-48)) -12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (((-570)) -2895 (|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))) -2895 (|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))
((((-1134 |#1| |#2|)) . T) ((|#2|) . T) ((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))))
@@ -2547,22 +2550,22 @@
(((|#1| |#2|) . T))
((((-1186) |#1|) . T))
(((|#4|) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
((((-1186) (-52)) . 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))
-(-2892 (|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)))
+(-2895 (|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=(-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)))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#1| $) |has| |#1| (-290 |#1| |#1|)))
((((-1263 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-562)) (($) |has| |#1| (-562)))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
(|has| |#1| (-368))
-((($) |has| |#1| (-854)) (((-570)) -2892 (|has| |#1| (-21)) (|has| |#1| (-854))))
+((($) |has| |#1| (-854)) (((-570)) -2895 (|has| |#1| (-21)) (|has| |#1| (-854))))
(|has| |#1| (-146))
(|has| |#1| (-148))
(|has| |#1| (-148))
@@ -2575,17 +2578,17 @@
(((|#1|) . T))
(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))))
(((|#2| |#3|) . T))
-(-2892 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
(((|#1| (-537 |#2|)) . T))
(((|#1| (-777)) . T))
(((|#1| (-537 (-1097 (-1186)))) . T))
(((|#1|) |has| |#1| (-174)))
(((|#1|) . T))
(|has| |#2| (-916))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
((((-868)) . T))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368))))
-(((|#2|) -2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368))))
+(((|#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-1058))) (($) |has| |#2| (-174)))
((($ $) . 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)))
@@ -2593,14 +2596,14 @@
((((-868)) . T))
((($) . T))
((($) . T))
-(-2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)) (|has| |#1| (-562)))
(|has| |#1| (-368))
(|has| |#1| (-368))
(((|#1| |#2|) . T))
((($) . T) ((#0=(-1262 |#2| |#3| |#4|)) . T) (((-413 (-570))) |has| #0# (-38 (-413 (-570)))))
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
-(-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368)) (|has| |#1| (-354)))
-(-2892 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
+(-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)))
((((-570)) |has| |#1| (-645 (-570))) ((|#1|) . T))
(((|#1| |#2|) . T))
((((-868)) . T))
@@ -2645,28 +2648,28 @@
(((|#2|) . T))
(((|#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
(((|#2|) . T))
-(((|#2|) -2892 (|has| |#2| (-6 (-4451 "*"))) (|has| |#2| (-174))))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(((|#2|) -2895 (|has| |#2| (-6 (-4454 "*"))) (|has| |#2| (-174))))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
(|has| |#2| (-916))
(|has| |#1| (-916))
(((|#2|) |has| |#2| (-174)))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2106 (-1168)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) . T))
(((|#1|) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((((-868)) . T))
(((|#1| |#2|) . T))
((($) . T) (((-570)) . T))
(((|#1| (-413 (-570))) . T))
(((|#1|) . T))
-(-2892 (|has| |#1| (-294)) (|has| |#1| (-368)))
+(-2895 (|has| |#1| (-294)) (|has| |#1| (-368)))
((((-145)) . T))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
(|has| |#1| (-854))
@@ -2682,7 +2685,7 @@
((((-868)) . T))
((((-868)) . T))
((((-189)) . T) (((-868)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#2| |#2|) . T) ((|#1| |#1|) . T))
((((-868)) . T))
((((-868)) . T))
@@ -2695,7 +2698,7 @@
((((-868)) . T))
((((-1168)) . T))
((((-1186) |#1|) |has| |#1| (-520 (-1186) |#1|)) ((|#1| |#1|) |has| |#1| (-313 |#1|)))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
(|has| |#1| (-856))
((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
@@ -2707,16 +2710,16 @@
(((|#2|) . T))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T) (((-618 $)) . T))
-(-2892 (|has| |#4| (-174)) (|has| |#4| (-732)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#4| (-174)) (|has| |#4| (-732)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
((((-1186) (-52)) . T))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
-(-2892 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(|has| |#1| (-916))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
(|has| |#1| (-916))
@@ -2733,12 +2736,12 @@
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
(|has| |#1| (-826))
(((#0=(-917 |#1|) #0#) . T) (($ $) . T) ((#1=(-413 (-570)) #1#) . T))
((((-413 |#2|)) . T))
(|has| |#1| (-854))
-((((-1213 |#1|)) . T) (((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-1213 |#1|)) . T) (((-868)) -2895 (|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))))
@@ -2754,28 +2757,28 @@
(((|#2|) |has| |#2| (-174)))
(((|#1|) . T))
(((|#2|) . T))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) . T))
-(((#0=(-52)) . T) (((-2 (|:| -2106 (-1186)) (|:| -2340 #0#))) . T))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) . T))
+(((#0=(-52)) . T) (((-2 (|:| -2107 (-1186)) (|:| -2340 #0#))) . T))
(|has| |#1| (-354))
((((-570)) . T))
((((-868)) . T))
(((|#1|) . T))
(((#0=(-1263 |#1| |#2| |#3| |#4|) $) |has| #0# (-290 #0# #0#)))
(|has| |#1| (-368))
-(((|#1|) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))) (($) -2892 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))) (((-570)) -2892 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))))
+(((|#1|) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))) (($) -2895 (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))) (((-570)) -2895 (|has| |#1| (-21)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058))))
(((#0=(-1091) |#1|) . T) ((#0# $) . T) (($ $) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
(((#0=(-413 (-570)) #0#) . T) ((#1=(-705) #1#) . T) (($ $) . T))
((((-320 |#1|)) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) |has| |#1| (-368)))
((((-868)) . T))
(|has| |#1| (-1109))
(((|#1|) . T))
-(((|#1|) -2892 (|has| |#2| (-372 |#1|)) (|has| |#2| (-423 |#1|))))
-(((|#1|) -2892 (|has| |#2| (-372 |#1|)) (|has| |#2| (-423 |#1|))))
+(((|#1|) -2895 (|has| |#2| (-372 |#1|)) (|has| |#2| (-423 |#1|))))
+(((|#1|) -2895 (|has| |#2| (-372 |#1|)) (|has| |#2| (-423 |#1|))))
(((|#2|) . T))
((((-413 (-570))) . T) (((-705)) . T) (($) . T))
((((-585)) . T))
@@ -2800,7 +2803,7 @@
(((|#1|) . T))
((((-570)) . T))
(((|#2|) . T) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((|#1|) . T) (($) . T) (((-570)) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
(((|#2|) . T) (((-570)) |has| |#2| (-645 (-570))))
(((|#1| |#2|) . T))
((($) . T))
@@ -2844,7 +2847,7 @@
(|has| |#2| (-1031))
((($) . T))
(|has| |#1| (-916))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
((($) . T))
(((|#2|) . T))
(((|#1|) . T))
@@ -2853,10 +2856,10 @@
(|has| |#1| (-368))
((((-917 |#1|)) . T))
((($) . T) (((-570)) . T) ((|#1|) . T) (((-413 (-570))) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) |has| |#1| (-854)) (((-570)) -2892 (|has| |#1| (-21)) (|has| |#1| (-854))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) |has| |#1| (-854)) (((-570)) -2895 (|has| |#1| (-21)) (|has| |#1| (-854))))
((($ $) . T) ((#0=(-413 (-570)) #0#) . T))
-(-2892 (|has| |#1| (-373)) (|has| |#1| (-856)))
+(-2895 (|has| |#1| (-373)) (|has| |#1| (-856)))
(((|#1|) . T))
((((-777)) . T))
((((-868)) . T))
@@ -2867,17 +2870,17 @@
((((-570)) . T) (($) . T))
((((-570)) . T) (($) . T))
((((-777) |#1|) . T))
-(((|#2| (-242 (-2569 |#1|) (-777))) . T))
+(((|#2| (-242 (-2570 |#1|) (-777))) . T))
(((|#1| (-537 |#3|)) . T))
((((-413 (-570))) . T))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-1168)) . T) (((-868)) . T))
-(((#0=(-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) #0#) |has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))))
+(((#0=(-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) #0#) |has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))))
((((-1168)) . T))
(|has| |#1| (-916))
(|has| |#2| (-368))
(((|#1|) . T) (($) . T) (((-570)) . T))
-(-2892 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((((-171 (-384))) . T) (((-227)) . T) (((-384)) . T))
((((-868)) . T))
(((|#1|) . T))
@@ -2894,11 +2897,11 @@
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
(|has| |#1| (-38 (-413 (-570))))
-(-2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)))
(|has| |#1| (-38 (-413 (-570))))
(-12 (|has| |#1| (-551)) (|has| |#1| (-834)))
((((-868)) . T))
-((((-1186)) -2892 (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))) (-12 (|has| |#1| (-368)) (|has| |#2| (-907 (-1186))))))
+((((-1186)) -2895 (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))) (-12 (|has| |#1| (-368)) (|has| |#2| (-907 (-1186))))))
(|has| |#1| (-368))
((((-1186)) -12 (|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|))) (|has| |#1| (-907 (-1186)))))
(|has| |#1| (-368))
@@ -2910,7 +2913,7 @@
(((|#2|) |has| |#1| (-368)))
(((|#2|) |has| |#1| (-368)))
((((-570)) . T) (($) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1|) . T))
(((|#1|) |has| |#1| (-174)))
(((|#1|) . T))
@@ -2940,11 +2943,11 @@
(((|#2|) |has| |#1| (-368)))
((((-384)) -12 (|has| |#1| (-368)) (|has| |#2| (-893 (-384)))) (((-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-893 (-570)))))
(|has| |#1| (-368))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
(|has| |#1| (-368))
(((|#1|) . T))
((($) . T) (((-570)) . T) ((|#2|) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
(|has| |#1| (-368))
(((|#3|) . T))
((((-1168)) . T) (((-512)) . T) (((-227)) . T) (((-570)) . T))
@@ -2952,23 +2955,23 @@
(|has| |#1| (-562))
(((|#4| |#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
-(-2892 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(((|#2|) . T))
(((|#2|) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(|has| |#1| (-38 (-413 (-570))))
(((|#1| |#2|) . T))
(|has| |#1| (-38 (-413 (-570))))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
((($) . T))
((((-1168) |#1|) . T))
(|has| |#1| (-148))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
(|has| |#1| (-148))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))
((($) . T))
(|has| |#1| (-148))
((((-587 |#1|)) . T))
@@ -2982,7 +2985,7 @@
((((-413 (-570))) |has| |#2| (-1047 (-570))) (((-570)) |has| |#2| (-1047 (-570))) (((-1186)) |has| |#2| (-1047 (-1186))) ((|#2|) . T))
(((#0=(-413 |#2|) #0#) . T) ((#1=(-413 (-570)) #1#) . T) (($ $) . T))
(((|#1|) . T))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-354)))
(|has| |#1| (-148))
((((-868)) . T))
((($) . T))
@@ -3008,7 +3011,7 @@
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
((((-868)) . T))
((((-542)) |has| |#1| (-620 (-542))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-115)) . T) ((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -3030,7 +3033,7 @@
((((-570)) . T))
((((-868)) . T))
((((-570)) . T))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
((((-171 (-384))) . T) (((-227)) . T) (((-384)) . T))
((((-868)) . T))
((((-868)) . T))
@@ -3042,9 +3045,9 @@
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(|has| |#1| (-368))
(|has| |#1| (-368))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)) (|has| |#1| (-1121)) (|has| |#1| (-1109)))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-25)) (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-479)) (|has| |#1| (-732)) (|has| |#1| (-907 (-1186))) (|has| |#1| (-1058)) (|has| |#1| (-1121)) (|has| |#1| (-1109)))
(|has| |#1| (-1161))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
((((-917 |#1|)) . T) (($) . T) (((-413 (-570))) . T))
@@ -3061,25 +3064,25 @@
(((|#1|) |has| |#1| (-313 |#1|)))
((((-570) |#1|) . T))
((((-1186) |#1|) . T))
-(((|#1|) -2892 (|has| |#1| (-174)) (|has| |#1| (-368))))
+(((|#1|) -2895 (|has| |#1| (-174)) (|has| |#1| (-368))))
(((|#1|) . T))
-(((|#1|) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))))
+(((|#1|) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-1058))))
((((-570)) . T) (((-413 (-570))) . T))
(((|#1|) . T))
(|has| |#1| (-562))
((($) . T) (((-570)) . T) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-368)))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
((((-384)) . T))
(((|#1|) . T))
(((|#1|) . T))
(|has| |#1| (-368))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
(|has| |#1| (-368))
(|has| |#1| (-562))
(|has| |#1| (-1109))
((((-786 |#1| (-870 |#2|))) |has| (-786 |#1| (-870 |#2|)) (-313 (-786 |#1| (-870 |#2|)))))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
(((|#1|) . T))
(((|#2| |#3|) . T))
(((|#1|) . T))
@@ -3091,13 +3094,13 @@
(|has| |#2| (-368))
((((-587 |#1|)) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
-((((-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) . T))
(((|#1|) . T))
(((|#1|) . T) (((-570)) . T))
(((|#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
((((-868)) . T))
((((-868)) . T))
-(-2892 (|has| |#3| (-799)) (|has| |#3| (-854)))
+(-2895 (|has| |#3| (-799)) (|has| |#3| (-854)))
((((-868)) . T))
((((-1129)) . T) (((-868)) . T))
((((-542)) . T) (((-868)) . T))
@@ -3108,12 +3111,12 @@
((((-570)) . T))
(((|#3|) . T))
((((-868)) . T))
-(-2892 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)))
-((((-570)) . T) (((-413 (-570))) -2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
-((((-1134 |#1| |#2|)) . T) ((|#2|) . T) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-570)) . T))
-((((-1182 |#1|)) . T) (((-570)) . T) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1091)) . T) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
-(-2892 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
-((((-1134 |#1| (-1186))) . T) (((-570)) . T) (((-1097 (-1186))) . T) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-1186)) . T))
+(-2895 (|has| |#1| (-311)) (|has| |#1| (-368)) (|has| |#1| (-354)))
+((((-570)) . T) (((-413 (-570))) -2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
+((((-1134 |#1| |#2|)) . T) ((|#2|) . T) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-570)) . T))
+((((-1182 |#1|)) . T) (((-570)) . T) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) (((-1091)) . T) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
+(-2895 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058)))
+((((-1134 |#1| (-1186))) . T) (((-570)) . T) (((-1097 (-1186))) . T) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) (((-1186)) . T))
(((#0=(-587 |#1|) #0#) . T) (($ $) . T) ((#1=(-413 (-570)) #1#) . T))
((($ $) . T) ((#0=(-413 (-570)) #0#) . T))
(((|#1|) |has| |#1| (-174)))
@@ -3125,13 +3128,13 @@
(((|#1|) . T))
(((|#1|) . T))
((($) . T) (((-413 (-570))) . T))
-(((|#2|) |has| |#2| (-6 (-4451 "*"))))
+(((|#2|) |has| |#2| (-6 (-4454 "*"))))
(((|#1|) . T))
((((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) ((|#1|) . T) (((-570)) . T))
(((|#1|) . T))
((((-868)) . T))
((((-298 |#3|)) . T))
-(((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))) ((|#2| |#2|) . T) (($ $) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+(((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))) ((|#2| |#2|) . T) (($ $) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
(((|#2| |#2|) . T) ((|#6| |#6|) . T))
(((|#1|) . T))
((($) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T))
@@ -3139,21 +3142,21 @@
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
(((|#2|) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
(((|#2|) . T) ((|#6|) . T))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
((((-868)) . T))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(|has| |#2| (-916))
(|has| |#1| (-916))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|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 (|:| -2106 (-1168)) (|:| -2340 |#1|))) . T))
+((((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) . T))
(((|#1|) . T))
(((|#1|) . T))
(((|#1|) . T))
@@ -3172,10 +3175,10 @@
(((#0=(-413 (-570)) #0#) . T))
((((-413 (-570))) . T))
(((|#1|) |has| |#1| (-174)))
-(-2892 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(((|#1|) . T))
(((|#1|) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(((|#1|) . T))
((((-413 (-570))) . T) (((-570)) . T) (($) . T))
((((-542)) . T))
@@ -3194,14 +3197,14 @@
((($ $) . T) ((#0=(-413 (-570)) #0#) . T))
((((-1186)) |has| |#1| (-907 (-1186))))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
-((($) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
-(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
+((($) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) . T))
+(((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))) ((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
((($) . T) (((-413 (-570))) . T))
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((|#2|) |has| |#2| (-1058)) (((-570)) -12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058))))
((((-413 |#2|)) . T) (((-413 (-570))) . T) (($) . T))
-((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-562))))
+((((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-562))))
(|has| |#1| (-562))
(((|#1|) |has| |#1| (-368)))
((((-570)) . T))
@@ -3221,8 +3224,8 @@
((((-868)) . T))
(|has| |#2| (-826))
(|has| |#2| (-826))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) (($) . T) ((|#1|) . T))
-(((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) (($) . T) ((|#1|) . T))
+(((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) . T))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))))
((((-570)) |has| |#1| (-893 (-570))) (((-384)) |has| |#1| (-893 (-384))))
@@ -3238,7 +3241,7 @@
(((|#1|) . T))
(((|#1|) |has| |#1| (-174)))
(((|#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
-(((|#2|) -2892 (|has| |#2| (-6 (-4451 "*"))) (|has| |#2| (-174))))
+(((|#2|) -2895 (|has| |#2| (-6 (-4454 "*"))) (|has| |#2| (-174))))
(((|#2|) . T))
(|has| |#1| (-368))
(((|#2|) . T))
@@ -3252,12 +3255,12 @@
(((|#2| (-777)) . T))
((((-1186)) . T))
((((-876 |#1|)) . T))
-(-2892 (|has| |#3| (-25)) (|has| |#3| (-132)) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#3| (-25)) (|has| |#3| (-132)) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
((((-868)) . T))
(((|#1|) . T))
-(-2892 (|has| |#2| (-799)) (|has| |#2| (-854)))
-(-2892 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856))))
+(-2895 (|has| |#2| (-799)) (|has| |#2| (-854)))
+(-2895 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856))))
((((-876 |#1|)) . T))
(((|#1|) . T))
(|has| |#1| (-373))
@@ -3284,7 +3287,7 @@
(((|#1|) . T))
((((-868)) . T))
(|has| |#2| (-916))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-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))
@@ -3311,7 +3314,7 @@
((((-1191)) . T))
((((-650 |#1|)) . T))
((($) . T) (((-570)) . T) (((-1263 |#1| |#2| |#3| |#4|)) . T) (((-413 (-570))) . T))
-((((-570)) -2892 (|has| |#1| (-21)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058))) (($) -2892 (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-562)))
+((((-570)) -2895 (|has| |#1| (-21)) (|has| |#1| (-146)) (|has| |#1| (-148)) (|has| |#1| (-174)) (|has| |#1| (-562)) (|has| |#1| (-1058))) (($) -2895 (|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))
((((-570)) . T) (((-413 (-570))) . T))
@@ -3328,12 +3331,12 @@
((((-413 |#2|) |#3|) . T))
(((|#1|) . T))
(|has| |#1| (-1109))
-(((|#2| (-488 (-2569 |#1|) (-777))) . T))
+(((|#2| (-488 (-2570 |#1|) (-777))) . T))
((((-570) |#1|) . T))
((((-1168)) . T) (((-868)) . T))
(((|#2| |#2|) . T))
(((|#1| (-537 (-1186))) . T))
-(-2892 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((((-570)) . T))
(((|#2|) . T))
(((|#2|) . T))
@@ -3344,9 +3347,9 @@
((($) . T) (((-413 (-570))) . T))
((($) . T))
((($) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
(((|#1|) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-868)) . T))
((((-145)) . T))
(((|#1|) . T) (((-413 (-570))) . T))
@@ -3378,7 +3381,7 @@
(|has| |#1| (-1109))
(|has| |#1| (-1109))
(|has| |#2| (-368))
-(((|#1|) . T) (($) -2892 (|has| |#1| (-294)) (|has| |#1| (-368))) (((-413 (-570))) |has| |#1| (-368)))
+(((|#1|) . T) (($) -2895 (|has| |#1| (-294)) (|has| |#1| (-368))) (((-413 (-570))) |has| |#1| (-368)))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| |#1| (-38 (-413 (-570))))
@@ -3387,32 +3390,32 @@
((((-1186)) -12 (|has| |#3| (-907 (-1186))) (|has| |#3| (-1058))))
(((|#1|) . T))
(|has| |#1| (-235))
-(((|#2| (-242 (-2569 |#1|) (-777))) . T))
+(((|#2| (-242 (-2570 |#1|) (-777))) . T))
(((|#1| (-537 |#3|)) . T))
(|has| |#1| (-373))
(|has| |#1| (-373))
(|has| |#1| (-373))
(((|#1|) . T) (($) . T))
(((|#1| (-537 |#2|)) . T))
-(-2892 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(((|#1| (-777)) . T))
(|has| |#1| (-562))
-(-2892 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-25)) (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(-12 (|has| |#1| (-21)) (|has| |#2| (-21)))
((((-868)) . T))
((((-570)) . T) (((-413 (-570))) . T) (($) . T))
-(-2892 (-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))))
-(-2892 (|has| |#3| (-132)) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (-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))))
+(-2895 (|has| |#3| (-132)) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
(((|#1|) |has| |#1| (-174)))
(((|#4|) |has| |#4| (-1058)))
(((|#3|) |has| |#3| (-1058)))
(-12 (|has| |#1| (-368)) (|has| |#2| (-826)))
(-12 (|has| |#1| (-368)) (|has| |#2| (-826)))
-((((-570)) . T) (((-413 (-570))) -2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
-((((-1134 |#1| |#2|)) . T) (((-570)) . T) ((|#3|) . T) (($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) ((|#2|) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-570)) . T) (((-413 (-570))) -2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))) ((|#2|) . T) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-870 |#1|)) . T))
+((((-1134 |#1| |#2|)) . T) (((-570)) . T) ((|#3|) . T) (($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))) ((|#2|) . T))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
(((|#1|) . T) (((-413 (-570))) . T) (($) . T) (((-570)) . T))
@@ -3433,14 +3436,14 @@
(((|#2|) |has| |#2| (-1058)) (((-570)) -12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058))))
(((|#1|) . T))
(|has| |#2| (-368))
-(((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))) ((|#2| |#2|) . T) (($ $) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
+(((#0=(-413 (-570)) #0#) |has| |#2| (-38 (-413 (-570)))) ((|#2| |#2|) . T) (($ $) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1| |#1|) . T) ((#0=(-413 (-570)) #0#) |has| |#1| (-38 (-413 (-570)))))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-413 (-570)) #0#) . T))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-413 (-570)) #0#) . T))
(((|#1| |#1|) . T) (($ $) . T) ((#0=(-413 (-570)) #0#) . T))
(((|#2| |#2|) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T) (($) -2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
(((|#1|) . T) (($) . T) (((-413 (-570))) . T))
@@ -3452,12 +3455,12 @@
(((|#1|) . T))
(|has| |#2| (-826))
(|has| |#2| (-826))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(|has| |#1| (-368))
(|has| |#1| (-368))
(|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))
(|has| |#1| (-368))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
(((|#1|) |has| |#2| (-423 |#1|)))
(((|#1|) |has| |#2| (-423 |#1|)))
((((-1168)) . T))
@@ -3465,7 +3468,7 @@
((((-868)) . T) (((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
-((((-650 |#1|)) . T) (((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-650 |#1|)) . T) (((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-1191)) . T))
((((-1191)) . T))
((((-1191)) . T))
@@ -3480,23 +3483,23 @@
((((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) |has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) |has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
((((-570) |#1|) . T))
((((-570) |#1|) . T))
((((-570) |#1|) . T))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-570) |#1|) . T))
(((|#1|) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#1|) |has| |#1| (-174)))
((((-1186)) |has| |#1| (-907 (-1186))) (((-824 (-1186))) . T))
-(-2892 (|has| |#3| (-132)) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#3| (-132)) (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-799)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
((((-825 |#1|)) . T))
(((|#1| |#2|) . T))
((((-868)) . T))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
(((|#1| |#2|) . T))
((($) . T) (((-570)) . T) (((-413 (-570))) . T))
(|has| |#1| (-38 (-413 (-570))))
@@ -3505,21 +3508,21 @@
(((|#1|) |has| |#1| (-174)) (($) |has| |#1| (-562)) (((-413 (-570))) |has| |#1| (-562)))
(((|#2|) . T) (((-570)) |has| |#2| (-645 (-570))))
(|has| |#1| (-368))
-(-2892 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (-12 (|has| |#1| (-368)) (|has| |#2| (-235))))
+(-2895 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (-12 (|has| |#1| (-368)) (|has| |#2| (-235))))
(|has| |#1| (-15 * (|#1| (-413 (-570)) |#1|)))
(|has| |#1| (-368))
(((|#1|) . T))
-(((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1| |#1|) . T))
+(((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1| |#1|) . T))
((((-570) |#1|) . T))
((((-320 |#1|)) . T))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((#0=(-705) (-1182 #0#)) . T))
-((((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
+((((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((|#1|) . T))
(((|#1|) . T) (($) . T) (((-570)) . T) (((-413 (-570))) . T))
(((|#1| |#2| |#3| |#4|) . T))
(|has| |#1| (-854))
-(((|#2|) . T) (((-1186)) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-1186)))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) ((|#1|) |has| |#1| (-174)))
-(((|#2|) . T) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2892 (|has| |#1| (-368)) (|has| |#1| (-562))))
+(((|#2|) . T) (((-1186)) -12 (|has| |#1| (-368)) (|has| |#2| (-1047 (-1186)))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))) (((-570)) . T) ((|#1|) |has| |#1| (-174)))
+(((|#2|) . T) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) (((-570)) . T) (($) -2895 (|has| |#1| (-368)) (|has| |#1| (-562))))
((($ $) . T) ((#0=(-870 |#1|) $) . T) ((#0# |#2|) . T))
((((-1134 |#1| (-1186))) . T) (((-824 (-1186))) . T) ((|#1|) . T) (((-570)) |has| |#1| (-1047 (-570))) (((-413 (-570))) |has| |#1| (-1047 (-413 (-570)))) (((-1186)) . T))
((($) . T))
@@ -3537,12 +3540,12 @@
(((#0=(-1263 |#1| |#2| |#3| |#4|)) |has| #0# (-313 #0#)))
((($) . T))
(((|#1|) . T))
-((($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2| |#2|) |has| |#1| (-368)) ((|#1| |#1|) . T))
-(((|#1| |#1|) . T) (($ $) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+((($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2| |#2|) |has| |#1| (-368)) ((|#1| |#1|) . T))
+(((|#1| |#1|) . T) (($ $) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) ((#0=(-413 (-570)) #0#) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
(|has| |#2| (-235))
(|has| $ (-148))
((((-868)) . T))
-((($) . T) (((-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
+((($) . T) (((-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-354))) ((|#1|) . T))
((((-868)) . T))
(|has| |#1| (-854))
((((-130)) . T))
@@ -3558,24 +3561,24 @@
((((-868)) |has| |#1| (-1109)))
(((|#4|) . T))
(|has| |#1| (-562))
-((($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) ((|#1|) . T))
-((((-1186)) -2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))
-(((|#1|) . T) (($) -2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))))
+((($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-368))) ((|#2|) |has| |#1| (-368)) ((|#1|) . T))
+((((-1186)) -2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))
+(((|#1|) . T) (($) -2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-562))) (((-413 (-570))) -2895 (|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)))))
((((-570) |#1|) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
(((|#4|) -12 (|has| |#4| (-313 |#4|)) (|has| |#4| (-1109))))
(((|#1|) . T))
(((|#1| (-537 (-824 (-1186)))) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((((-570)) . T) ((|#2|) . T) (($) . T) (((-413 (-570))) . T) (((-1186)) |has| |#2| (-1047 (-1186))))
(((|#1|) . T))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
(((|#1|) . T))
-(-2892 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
-(-2892 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))
+(-2895 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))
((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
((($) . T) (((-876 |#1|)) . T) (((-413 (-570))) . T))
((((-1269 |#1| |#2| |#3|)) |has| |#1| (-368)))
@@ -3584,15 +3587,15 @@
(((|#1|) . T))
(((|#1|) . T))
((((-413 |#2|)) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((((-542)) |has| |#1| (-620 (-542))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(((|#1|) . T))
(((|#2| |#2|) . T) ((#0=(-413 (-570)) #0#) . T) (($ $) . T))
(((|#2|) . T) (((-413 (-570))) . T) (($) . T))
@@ -3622,21 +3625,21 @@
((($) . T) (((-570)) . T) (((-117 |#1|)) . T) (((-413 (-570))) . T))
(((|#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) . T))
((((-868)) . T))
-((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
+((((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) |has| |#2| (-174)) (($) -2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))))
(((|#2|) . T) ((|#6|) . T))
((($) . T) (((-413 (-570))) |has| |#2| (-38 (-413 (-570)))) ((|#2|) . T))
((($) . T) (((-570)) . T))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-1113)) . T))
((((-868)) . T))
((((-1191)) . T) (((-868)) . T))
((((-1191)) . T) (((-868)) . T))
-((($) -2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((((-1191)) . T))
((((-1191)) . T))
((($) . T) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))) ((|#1|) . T))
((($) . T))
-((($) -2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
+((($) -2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916))) ((|#1|) |has| |#1| (-174)) (((-413 (-570))) |has| |#1| (-38 (-413 (-570)))))
((($ $) . T) (((-1186) $) . T))
((((-1269 |#1| |#2| |#3|)) . T))
(|has| |#2| (-916))
@@ -3650,7 +3653,7 @@
(((|#1|) . T))
(((|#1| |#1|) |has| |#1| (-174)))
((((-705)) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
((((-1191)) . T))
(((|#1|) |has| |#1| (-174)))
((((-1191)) . T))
@@ -3667,13 +3670,13 @@
((((-1191)) . T))
((((-1191)) . T))
((((-1191)) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
((((-1191)) . T))
((((-1191)) . T))
(|has| |#1| (-368))
(|has| |#1| (-368))
-(-2892 (|has| |#1| (-174)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-174)) (|has| |#1| (-562)))
(((|#1| (-570)) . T))
(((|#1| (-413 (-570))) . T))
(((|#1| (-777)) . T))
@@ -3688,16 +3691,16 @@
((((-899 (-384))) . T) (((-899 (-570))) . T) (((-1186)) . T) (((-542)) . T))
(((|#1|) . T))
((((-868)) . T))
-(-2892 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
-(-2892 (-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))))
+(-2895 (|has| |#2| (-132)) (|has| |#2| (-174)) (|has| |#2| (-368)) (|has| |#2| (-799)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (-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 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(((|#1| |#2|) . T))
(((|#1|) . T))
-(-2892 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
+(-2895 (|has| |#2| (-174)) (|has| |#2| (-732)) (|has| |#2| (-854)) (|has| |#2| (-1058)))
((((-1186)) -12 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058))))
-(-2892 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))
+(-2895 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))
(|has| |#1| (-146))
(|has| |#1| (-148))
(|has| |#1| (-368))
@@ -3728,7 +3731,7 @@
(((|#1| |#2|) . T))
((((-570)) . T) ((|#2|) |has| |#2| (-174)))
((((-115)) . T) ((|#1|) . T) (((-570)) . T))
-(-2892 (|has| |#1| (-354)) (|has| |#1| (-373)))
+(-2895 (|has| |#1| (-354)) (|has| |#1| (-373)))
(((|#1| |#2|) . T))
((((-227)) . T))
((((-413 (-570))) . T) (($) . T) (((-570)) . T))
@@ -3740,7 +3743,7 @@
(((|#1|) . T))
(((|#1|) . T))
((((-542)) |has| |#1| (-620 (-542))))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-856)) (|has| |#1| (-1109))))
((($) . T) (((-413 (-570))) . T))
(|has| |#1| (-916))
(|has| |#1| (-916))
@@ -3751,14 +3754,14 @@
(((|#1| |#1|) |has| |#1| (-174)))
(((|#1|) . T) (((-570)) . T))
((((-1191)) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-562)))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-854)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-562)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-854)))
(((|#2|) . T))
-(-2892 (|has| |#1| (-21)) (|has| |#1| (-854)))
+(-2895 (|has| |#1| (-21)) (|has| |#1| (-854)))
(((|#1|) |has| |#1| (-174)))
(((|#1|) . T))
(((|#1|) . T))
-((((-868)) -2892 (-12 (|has| |#1| (-619 (-868))) (|has| |#2| (-619 (-868)))) (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109)))))
+((((-868)) -2895 (-12 (|has| |#1| (-619 (-868))) (|has| |#2| (-619 (-868)))) (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109)))))
((((-413 |#2|) |#3|) . T))
((((-413 (-570))) . T) (($) . T))
(|has| |#1| (-38 (-413 (-570))))
@@ -3772,19 +3775,19 @@
(((|#1|) . T) (((-413 (-570))) . T) (((-570)) . T) (($) . T))
(((#0=(-570) #0#) . T))
((($) . T) (((-413 (-570))) . T))
-(-2892 (|has| |#4| (-174)) (|has| |#4| (-732)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
-(-2892 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
+(-2895 (|has| |#4| (-174)) (|has| |#4| (-732)) (|has| |#4| (-854)) (|has| |#4| (-1058)))
+(-2895 (|has| |#3| (-174)) (|has| |#3| (-732)) (|has| |#3| (-854)) (|has| |#3| (-1058)))
((((-868)) . T) (((-1191)) . T))
(|has| |#4| (-799))
-(-2892 (|has| |#4| (-799)) (|has| |#4| (-854)))
+(-2895 (|has| |#4| (-799)) (|has| |#4| (-854)))
(|has| |#4| (-854))
(|has| |#3| (-799))
((((-1191)) . T))
-(-2892 (|has| |#3| (-799)) (|has| |#3| (-854)))
+(-2895 (|has| |#3| (-799)) (|has| |#3| (-854)))
(|has| |#3| (-854))
((((-570)) . T))
(((|#2|) . T))
-((((-1186)) -2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))
+((((-1186)) -2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))
((((-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)))))
(((|#1| |#1|) . T) (($ $) . T))
@@ -3799,11 +3802,11 @@
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
((((-1149 |#1| |#2|)) . T))
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
-(((|#2|) . T) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) . T))
+(((|#2|) . T) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) . T))
((($) . T))
(|has| |#1| (-1031))
-(((|#2|) . T) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+(((|#2|) . T) (((-2 (|:| -2107 |#1|) (|:| -2340 |#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))
@@ -3820,15 +3823,15 @@
((((-1184 |#1| |#2| |#3|)) . T))
((((-1184 |#1| |#2| |#3|)) . T) (((-1177 |#1| |#2| |#3|)) . T))
((((-868)) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
((((-570) |#1|) . T))
((((-1184 |#1| |#2| |#3|)) |has| |#1| (-368)))
(((|#1| |#2| |#3| |#4|) . T))
(((|#1|) . T))
(((|#2|) . T))
(|has| |#2| (-368))
-(((|#3|) . T) ((|#2|) . T) (($) -2892 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058))) ((|#4|) -2892 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))))
-(((|#2|) . T) (($) -2892 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) ((|#3|) -2892 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
+(((|#3|) . T) ((|#2|) . T) (($) -2895 (|has| |#4| (-174)) (|has| |#4| (-854)) (|has| |#4| (-1058))) ((|#4|) -2895 (|has| |#4| (-174)) (|has| |#4| (-368)) (|has| |#4| (-1058))))
+(((|#2|) . T) (($) -2895 (|has| |#3| (-174)) (|has| |#3| (-854)) (|has| |#3| (-1058))) ((|#3|) -2895 (|has| |#3| (-174)) (|has| |#3| (-368)) (|has| |#3| (-1058))))
(((|#1|) . T))
(((|#1|) . T))
(|has| |#1| (-368))
@@ -3843,7 +3846,7 @@
((((-189)) . T) (((-868)) . T))
((((-868)) . T))
(((|#1|) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
((((-130)) . T) (((-868)) . T))
((((-570) |#1|) . T))
((((-130)) . T))
@@ -3852,13 +3855,13 @@
(((|#1|) . T))
(((|#2| $) -12 (|has| |#1| (-368)) (|has| |#2| (-290 |#2| |#2|))) (($ $) . T))
((($ $) . T))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-916)))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-458)) (|has| |#1| (-916)))
+(-2895 (|has| |#1| (-856)) (|has| |#1| (-1109)))
((((-868)) . T))
((((-868)) . T))
((((-868)) . T))
(((|#1| (-537 |#2|)) . T))
-((((-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) . T))
+((((-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) . T))
((((-570) (-130)) . T))
(((|#1| (-570)) . T))
(((|#1| (-413 (-570))) . T))
@@ -3873,8 +3876,8 @@
((((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
-(-2892 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
-(-2892 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
+(-2895 (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916)))
+(-2895 (|has| |#1| (-458)) (|has| |#1| (-562)) (|has| |#1| (-916)))
((($) . T))
(((|#2| (-537 (-870 |#1|))) . T))
((((-1191)) . T))
@@ -3889,13 +3892,13 @@
((((-1191)) . T))
((((-868)) . T) (((-1191)) . T))
((((-1191)) . T))
-((((-868)) -2892 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
+((((-868)) -2895 (|has| |#1| (-619 (-868))) (|has| |#1| (-1109))))
(((|#1|) . T))
(((|#2| (-777)) . T))
(((|#1| |#2|) . T))
((((-1168) |#1|) . T))
((((-413 |#2|)) . T))
-((((-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T))
+((((-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T))
(|has| |#1| (-562))
(|has| |#1| (-562))
((($) . T) ((|#2|) . T))
@@ -3906,14 +3909,14 @@
((((-570)) . T) (($) . T))
(((|#2| $) |has| |#2| (-290 |#2| |#2|)))
(((|#1| (-650 |#1|)) |has| |#1| (-854)))
-(-2892 (|has| |#1| (-235)) (|has| |#1| (-354)))
-(-2892 (|has| |#1| (-368)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-235)) (|has| |#1| (-354)))
+(-2895 (|has| |#1| (-368)) (|has| |#1| (-354)))
((((-1273 |#1|)) . T) (((-570)) . T) ((|#2|) . T) (((-413 (-570))) |has| |#2| (-1047 (-413 (-570)))))
(|has| |#1| (-1109))
(((|#1|) . T))
-((((-1273 |#1|)) . T) (((-570)) . T) (($) -2892 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-1091)) . T) ((|#2|) . T) (((-413 (-570))) -2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))))
+((((-1273 |#1|)) . T) (((-570)) . T) (($) -2895 (|has| |#2| (-368)) (|has| |#2| (-458)) (|has| |#2| (-562)) (|has| |#2| (-916))) (((-1091)) . T) ((|#2|) . T) (((-413 (-570))) -2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))))
((((-413 (-570))) . T) (($) . T))
-((((-1008 |#1|)) . T) ((|#1|) . T) (((-570)) -2892 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570)))) (((-413 (-570))) -2892 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
+((((-1008 |#1|)) . T) ((|#1|) . T) (((-570)) -2895 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570)))) (((-413 (-570))) -2895 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))
((((-917 |#1|)) . T) (((-413 (-570))) . T) (($) . T))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
(((|#1| |#1|) -12 (|has| |#1| (-313 |#1|)) (|has| |#1| (-1109))))
@@ -3929,10 +3932,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 (|:| -2106 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))))
+(((|#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((#0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) #0#) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))))
(((#0=(-117 |#1|)) |has| #0# (-313 #0#)))
((($ $) . T))
-(-2892 (|has| |#1| (-856)) (|has| |#1| (-1109)))
+(-2895 (|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) 188462) ((-249 . -520) 188405) ((-247 . -1109) 188355) ((-577 . -111) 188340) ((-537 . -23) T) ((-134 . -1109) T) ((-139 . -1109) T) ((-118 . -313) 188297) ((-138 . -1109) T) ((-485 . -520) 188089) ((-683 . -622) 188073) ((-700 . -102) T) ((-1150 . -520) 187992) ((-396 . -132) T) ((-1290 . -985) 187961) ((-1033 . -1060) 187898) ((-31 . -93) T) ((-608 . -495) 187882) ((-1033 . -646) 187819) ((-627 . -132) T) ((-825 . -852) T) ((-529 . -57) 187769) ((-525 . -520) 187702) ((-359 . -1060) 187647) ((-59 . -520) 187580) ((-522 . -520) 187513) ((-424 . -907) 187472) ((-171 . -1058) T) ((-503 . -520) 187405) ((-502 . -520) 187338) ((-359 . -646) 187283) ((-805 . -1047) 187063) ((-705 . -38) 187028) ((-1250 . -622) 186776) ((-348 . -354) T) ((-1103 . -1102) 186760) ((-1103 . -1109) 186738) ((-861 . -622) 186635) ((-171 . -245) 186586) ((-171 . -235) 186537) ((-1103 . -1104) 186495) ((-878 . -290) 186453) ((-227 . -801) T) ((-227 . -798) T) ((-700 . -288) NIL) ((-577 . -622) 186425) ((-1159 . -1203) 186404) ((-413 . -1001) 186388) ((-48 . -1060) 186353) ((-707 . -21) T) ((-707 . -25) T) ((-48 . -646) 186318) ((-1292 . -654) 186292) ((-320 . -161) 186271) ((-320 . -144) 186250) ((-1159 . -107) 186200) ((-117 . -21) T) ((-40 . -233) 186177) ((-135 . -25) T) ((-117 . -25) T) ((-614 . -292) 186153) ((-481 . -292) 186132) ((-1250 . -330) 186109) ((-1250 . -1058) T) ((-861 . -1058) T) ((-805 . -343) 186093) ((-140 . -187) T) ((-118 . -1161) NIL) ((-91 . -619) 186025) ((-483 . -132) T) ((-1250 . -235) T) ((-1105 . -496) 186006) ((-1105 . -619) 185972) ((-1099 . -496) 185953) ((-1099 . -619) 185919) ((-599 . -1227) T) ((-1082 . -496) 185900) ((-577 . -1058) T) ((-1082 . -619) 185866) ((-668 . -723) 185850) ((-1075 . -496) 185831) ((-1075 . -619) 185797) ((-965 . -292) 185774) ((-60 . -34) T) ((-1071 . -801) T) ((-1071 . -798) T) ((-1045 . -496) 185755) ((-1028 . -496) 185736) ((-822 . -732) T) ((-737 . -47) 185701) ((-629 . -38) 185688) ((-360 . -294) T) ((-357 . -294) T) ((-349 . -294) T) ((-267 . -294) 185619) ((-249 . -294) 185550) ((-1045 . -619) 185516) ((-1033 . -102) T) ((-1028 . -619) 185482) ((-632 . -496) 185463) ((-419 . -732) T) ((-118 . -38) 185408) ((-489 . -496) 185389) ((-632 . -619) 185355) ((-419 . -479) T) ((-220 . -496) 185336) ((-489 . -619) 185302) ((-359 . -102) T) ((-220 . -619) 185268) ((-1221 . -1067) T) ((-348 . -652) 185198) ((-717 . -1067) T) ((-1184 . -47) 185175) ((-1183 . -47) 185145) ((-1177 . -47) 185122) ((-129 . -292) 185097) ((-1044 . -152) 185043) ((-917 . -294) T) ((-1135 . -47) 185015) ((-700 . -313) NIL) ((-521 . -619) 184997) ((-516 . -619) 184979) ((-514 . -619) 184961) ((-331 . -1109) 184911) ((-718 . -458) 184842) ((-48 . -102) T) ((-1261 . -290) 184827) ((-1240 . -290) 184747) ((-650 . -672) 184731) ((-650 . -657) 184715) ((-344 . -21) T) ((-344 . -25) T) ((-40 . -354) NIL) ((-176 . -21) T) ((-176 . -25) T) ((-650 . -378) 184699) ((-611 . -496) 184681) ((-608 . -290) 184658) ((-611 . -619) 184625) ((-394 . -102) T) ((-1129 . -144) T) ((-127 . -619) 184557) ((-880 . -1109) T) ((-664 . -417) 184541) ((-720 . -619) 184523) ((-251 . -619) 184490) ((-189 . -619) 184472) ((-163 . -619) 184454) ((-158 . -619) 184436) ((-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) 184404) ((-911 . -102) T) ((-737 . -1047) 184280) ((-537 . -132) T) ((-1096 . -417) 184264) ((-1009 . -495) 184248) ((-118 . -406) 184225) ((-1177 . -1227) 184204) ((-788 . -417) 184188) ((-786 . -417) 184172) ((-950 . -34) T) ((-700 . -1161) NIL) ((-254 . -654) 184007) ((-253 . -654) 183829) ((-823 . -927) 183808) ((-460 . -417) 183792) ((-608 . -19) 183776) ((-1155 . -1220) 183745) ((-1177 . -893) NIL) ((-1177 . -891) 183697) ((-608 . -610) 183674) ((-1213 . -619) 183606) ((-1185 . -619) 183588) ((-62 . -401) T) ((-1183 . -1047) 183523) ((-1177 . -1047) 183489) ((-700 . -38) 183439) ((-40 . -652) 183369) ((-480 . -290) 183354) ((-1233 . -619) 183336) ((-737 . -382) 183320) ((-844 . -619) 183302) ((-664 . -1067) T) ((-1261 . -1011) 183268) ((-1240 . -1011) 183234) ((-1097 . -622) 183218) ((-1072 . -1203) 183193) ((-1085 . -622) 183170) ((-878 . -620) 182977) ((-878 . -619) 182959) ((-1199 . -495) 182896) ((-424 . -1031) 182874) ((-48 . -313) 182861) ((-1072 . -107) 182807) ((-485 . -495) 182744) ((-526 . -1227) T) ((-1177 . -343) 182696) ((-1150 . -495) 182667) ((-1177 . -382) 182619) ((-1096 . -1067) T) ((-443 . -102) T) ((-185 . -1109) T) ((-254 . -34) T) ((-253 . -34) T) ((-788 . -1067) T) ((-786 . -1067) T) ((-737 . -907) 182596) ((-460 . -1067) T) ((-59 . -495) 182580) ((-1043 . -1065) 182554) ((-525 . -495) 182538) ((-522 . -495) 182522) ((-503 . -495) 182506) ((-502 . -495) 182490) ((-247 . -520) 182423) ((-1043 . -111) 182390) ((-1184 . -907) 182303) ((-1183 . -907) 182209) ((-1177 . -907) 182042) ((-1135 . -907) 182026) ((-676 . -1121) T) ((-359 . -1161) T) ((-651 . -93) T) ((-326 . -1065) 182008) ((-254 . -797) 181987) ((-254 . -800) 181938) ((-31 . -496) 181919) ((-254 . -799) 181898) ((-253 . -797) 181877) ((-253 . -800) 181828) ((-253 . -799) 181807) ((-31 . -619) 181773) ((-50 . -1067) T) ((-254 . -732) 181683) ((-253 . -732) 181593) ((-1221 . -1109) T) ((-676 . -23) T) ((-587 . -1067) T) ((-524 . -1067) T) ((-384 . -1065) 181558) ((-326 . -111) 181533) ((-73 . -388) T) ((-73 . -401) T) ((-1033 . -38) 181470) ((-700 . -406) 181452) ((-99 . -102) T) ((-717 . -1109) T) ((-1305 . -1060) 181439) ((-1012 . -146) 181411) ((-1012 . -148) 181383) ((-876 . -652) 181355) ((-384 . -111) 181311) ((-323 . -1231) 181290) ((-480 . -1011) 181256) ((-359 . -38) 181221) ((-40 . -375) 181193) ((-879 . -619) 181065) ((-128 . -126) 181049) ((-122 . -126) 181033) ((-842 . -1065) 181003) ((-839 . -21) 180955) ((-833 . -1065) 180939) ((-839 . -25) 180891) ((-323 . -562) 180842) ((-523 . -622) 180823) ((-570 . -834) T) ((-242 . -1227) T) ((-1043 . -622) 180792) ((-842 . -111) 180757) ((-833 . -111) 180736) ((-1261 . -619) 180718) ((-1240 . -619) 180700) ((-1240 . -620) 180371) ((-1182 . -916) 180350) ((-1134 . -916) 180329) ((-48 . -38) 180294) ((-1299 . -1121) T) ((-608 . -619) 180206) ((-608 . -620) 180167) ((-1297 . -1121) T) ((-366 . -622) 180151) ((-326 . -622) 180135) ((-242 . -1047) 179962) ((-1182 . -654) 179887) ((-1134 . -654) 179812) ((-860 . -654) 179786) ((-724 . -619) 179768) ((-552 . -373) T) ((-1299 . -23) T) ((-1297 . -23) T) ((-497 . -1109) T) ((-384 . -622) 179718) ((-384 . -624) 179700) ((-1043 . -1058) T) ((-871 . -102) T) ((-1199 . -290) 179679) ((-171 . -373) 179630) ((-1013 . -1227) T) ((-842 . -622) 179584) ((-833 . -622) 179539) ((-44 . -23) T) ((-485 . -290) 179518) ((-592 . -1109) T) ((-1155 . -1118) 179487) ((-1113 . -1112) 179439) ((-396 . -21) T) ((-396 . -25) T) ((-153 . -1121) T) ((-1305 . -102) T) ((-1013 . -891) 179421) ((-1013 . -893) 179403) ((-1221 . -723) 179300) ((-629 . -233) 179284) ((-627 . -21) T) ((-293 . -562) T) ((-627 . -25) T) ((-1207 . -1109) T) ((-717 . -723) 179249) ((-242 . -382) 179218) ((-1013 . -1047) 179178) ((-384 . -1058) T) ((-225 . -1067) T) ((-118 . -233) 179155) ((-59 . -290) 179132) ((-153 . -23) T) ((-522 . -290) 179109) ((-331 . -520) 179042) ((-502 . -290) 179019) ((-384 . -245) T) ((-384 . -235) T) ((-842 . -1058) T) ((-833 . -1058) T) ((-718 . -956) 178988) ((-707 . -856) T) ((-480 . -619) 178970) ((-1263 . -1060) 178875) ((-586 . -652) 178847) ((-570 . -652) 178819) ((-501 . -652) 178769) ((-833 . -235) 178748) ((-135 . -856) T) ((-1263 . -646) 178640) ((-664 . -1109) T) ((-1199 . -610) 178619) ((-556 . -1203) 178598) ((-341 . -1109) T) ((-323 . -368) 178577) ((-413 . -148) 178556) ((-413 . -146) 178535) ((-971 . -1121) 178434) ((-242 . -907) 178366) ((-821 . -1121) 178276) ((-660 . -858) 178260) ((-485 . -610) 178239) ((-556 . -107) 178189) ((-1013 . -382) 178171) ((-1013 . -343) 178153) ((-97 . -1109) T) ((-971 . -23) 177964) ((-483 . -21) T) ((-483 . -25) T) ((-821 . -23) 177834) ((-1186 . -619) 177816) ((-59 . -19) 177800) ((-1186 . -620) 177722) ((-1182 . -732) T) ((-1134 . -732) T) ((-522 . -19) 177706) ((-502 . -19) 177690) ((-59 . -610) 177667) ((-1096 . -1109) T) ((-908 . -102) 177645) ((-860 . -732) T) ((-788 . -1109) T) ((-522 . -610) 177622) ((-502 . -610) 177599) ((-786 . -1109) T) ((-786 . -1074) 177566) ((-467 . -1109) T) ((-460 . -1109) T) ((-592 . -723) 177541) ((-655 . -1109) T) ((-1269 . -47) 177518) ((-1263 . -102) T) ((-1262 . -47) 177488) ((-1241 . -47) 177465) ((-1221 . -174) 177416) ((-1183 . -311) 177395) ((-1177 . -311) 177374) ((-1105 . -622) 177355) ((-1099 . -622) 177336) ((-1089 . -562) 177287) ((-1013 . -907) NIL) ((-1089 . -1231) 177238) ((-676 . -132) T) ((-633 . -1121) T) ((-1082 . -622) 177219) ((-1075 . -622) 177200) ((-1045 . -622) 177181) ((-1028 . -622) 177162) ((-705 . -652) 177112) ((-278 . -1109) T) ((-85 . -447) T) ((-85 . -401) T) ((-720 . -1065) 177082) ((-717 . -174) T) ((-50 . -1109) T) ((-601 . -47) 177059) ((-227 . -654) 177024) ((-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) 176934) ((-317 . -1060) 176863) ((-108 . -1231) T) ((-632 . -622) 176844) ((-364 . -562) T) ((-219 . -927) T) ((-219 . -826) T) ((-320 . -646) 176754) ((-317 . -646) 176683) ((-358 . -562) T) ((-350 . -562) T) ((-489 . -622) 176664) ((-108 . -562) T) ((-664 . -723) 176634) ((-1177 . -1031) NIL) ((-220 . -622) 176615) ((-323 . -23) T) ((-67 . -1227) T) ((-1009 . -619) 176547) ((-700 . -233) 176529) ((-720 . -111) 176494) ((-650 . -34) T) ((-247 . -495) 176478) ((-1111 . -1107) 176462) ((-173 . -1109) T) ((-1305 . -1161) T) ((-1301 . -21) T) ((-1301 . -25) T) ((-1299 . -132) T) ((-1297 . -132) T) ((-959 . -916) 176441) ((-1290 . -102) T) ((-1273 . -619) 176407) ((-1262 . -1047) 176342) ((-521 . -622) 176326) ((-1241 . -1227) 176305) ((-1241 . -893) NIL) ((-1241 . -891) 176257) ((-487 . -916) 176236) ((-1241 . -1047) 176202) ((-1221 . -520) 176169) ((-1096 . -723) 176018) ((-1071 . -654) 176005) ((-959 . -654) 175930) ((-603 . -496) 175911) ((-591 . -496) 175892) ((-788 . -723) 175721) ((-603 . -619) 175687) ((-591 . -619) 175653) ((-542 . -619) 175635) ((-542 . -620) 175616) ((-786 . -723) 175465) ((-1086 . -102) T) ((-386 . -25) T) ((-629 . -652) 175437) ((-386 . -21) T) ((-487 . -654) 175362) ((-467 . -723) 175333) ((-460 . -723) 175182) ((-996 . -102) T) ((-1199 . -620) NIL) ((-1199 . -619) 175164) ((-1151 . -1132) 175109) ((-743 . -102) T) ((-118 . -652) 175039) ((-611 . -622) 175021) ((-1055 . -1220) 174950) ((-908 . -313) 174888) ((-537 . -25) T) ((-882 . -93) T) ((-720 . -622) 174842) ((-687 . -93) T) ((-651 . -496) 174823) ((-142 . -102) T) ((-44 . -132) T) ((-682 . -93) T) ((-670 . -619) 174805) ((-348 . -1067) T) ((-293 . -1121) T) ((-651 . -619) 174758) ((-484 . -93) T) ((-360 . -619) 174740) ((-357 . -619) 174722) ((-349 . -619) 174704) ((-267 . -620) 174452) ((-267 . -619) 174434) ((-249 . -619) 174416) ((-249 . -620) 174277) ((-134 . -93) T) ((-139 . -93) T) ((-138 . -93) T) ((-1150 . -619) 174259) ((-1129 . -646) 174246) ((-1129 . -1060) 174233) ((-825 . -732) T) ((-825 . -863) T) ((-608 . -292) 174210) ((-587 . -723) 174175) ((-485 . -620) NIL) ((-485 . -619) 174157) ((-524 . -723) 174102) ((-320 . -102) T) ((-317 . -102) T) ((-293 . -23) T) ((-153 . -132) T) ((-917 . -619) 174084) ((-917 . -620) 174066) ((-392 . -732) T) ((-878 . -1065) 174018) ((-878 . -111) 173956) ((-720 . -1058) T) ((-718 . -1253) 173940) ((-700 . -354) NIL) ((-137 . -102) T) ((-115 . -102) T) ((-140 . -102) T) ((-525 . -619) 173872) ((-384 . -801) T) ((-225 . -1109) T) ((-169 . -1227) T) ((-384 . -798) T) ((-227 . -800) T) ((-227 . -797) T) ((-59 . -620) 173833) ((-59 . -619) 173745) ((-227 . -732) T) ((-522 . -620) 173706) ((-522 . -619) 173618) ((-503 . -619) 173550) ((-502 . -620) 173511) ((-502 . -619) 173423) ((-1089 . -368) 173374) ((-40 . -417) 173351) ((-77 . -1227) T) ((-877 . -916) NIL) ((-364 . -333) 173335) ((-364 . -368) T) ((-358 . -333) 173319) ((-358 . -368) T) ((-350 . -333) 173303) ((-350 . -368) T) ((-320 . -288) 173282) ((-108 . -368) T) ((-70 . -1227) T) ((-1241 . -343) 173234) ((-877 . -654) 173179) ((-1241 . -382) 173131) ((-971 . -132) 172986) ((-821 . -132) 172856) ((-965 . -657) 172840) ((-1096 . -174) 172751) ((-965 . -378) 172735) ((-1071 . -800) T) ((-1071 . -797) T) ((-878 . -622) 172633) ((-788 . -174) 172524) ((-786 . -174) 172435) ((-822 . -47) 172397) ((-1071 . -732) T) ((-331 . -495) 172381) ((-959 . -732) T) ((-1290 . -313) 172319) ((-460 . -174) 172230) ((-247 . -290) 172207) ((-1269 . -907) 172120) ((-1262 . -907) 172026) ((-1261 . -1065) 171861) ((-487 . -732) T) ((-1241 . -907) 171694) ((-1240 . -1065) 171502) ((-1221 . -294) 171481) ((-1196 . -1227) T) ((-1193 . -373) T) ((-1192 . -373) T) ((-1155 . -152) 171465) ((-1129 . -102) T) ((-1127 . -1109) T) ((-1089 . -23) T) ((-1089 . -1121) T) ((-1084 . -102) T) ((-1066 . -619) 171432) ((-934 . -962) T) ((-743 . -313) 171370) ((-75 . -1227) T) ((-670 . -387) 171342) ((-171 . -916) 171295) ((-30 . -962) T) ((-112 . -850) T) ((-1 . -619) 171277) ((-1012 . -415) 171249) ((-129 . -657) 171231) ((-50 . -626) 171215) ((-700 . -652) 171150) ((-601 . -907) 171063) ((-444 . -102) T) ((-129 . -378) 171045) ((-142 . -313) NIL) ((-878 . -1058) T) ((-839 . -856) 171024) ((-81 . -1227) T) ((-717 . -294) T) ((-40 . -1067) T) ((-587 . -174) T) ((-524 . -174) T) ((-517 . -619) 171006) ((-171 . -654) 170916) ((-513 . -619) 170898) ((-356 . -148) 170880) ((-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) 170859) ((-1261 . -111) 170680) ((-1240 . -111) 170469) ((-247 . -1265) 170453) ((-570 . -854) T) ((-364 . -23) T) ((-359 . -354) T) ((-320 . -313) 170440) ((-317 . -313) 170381) ((-358 . -23) T) ((-323 . -132) T) ((-350 . -23) T) ((-1013 . -1031) T) ((-31 . -622) 170362) ((-108 . -23) T) ((-660 . -1060) 170346) ((-247 . -610) 170323) ((-337 . -1109) T) ((-660 . -646) 170293) ((-1263 . -38) 170185) ((-1250 . -916) 170164) ((-112 . -1109) T) ((-1044 . -102) T) ((-1250 . -654) 170089) ((-877 . -800) NIL) ((-861 . -654) 170063) ((-877 . -797) NIL) ((-822 . -893) NIL) ((-877 . -732) T) ((-1096 . -520) 169936) ((-788 . -520) 169883) ((-786 . -520) 169835) ((-577 . -654) 169822) ((-822 . -1047) 169650) ((-460 . -520) 169593) ((-394 . -395) T) ((-1261 . -622) 169406) ((-1240 . -622) 169154) ((-60 . -1227) T) ((-627 . -856) 169133) ((-506 . -667) T) ((-1155 . -985) 169102) ((-1033 . -652) 169039) ((-1012 . -458) T) ((-705 . -854) T) ((-516 . -798) T) ((-480 . -1065) 168874) ((-506 . -113) T) ((-348 . -1109) T) ((-317 . -1161) NIL) ((-293 . -132) T) ((-400 . -1109) T) ((-876 . -1067) T) ((-700 . -375) 168841) ((-359 . -652) 168771) ((-225 . -626) 168748) ((-331 . -290) 168725) ((-480 . -111) 168546) ((-1261 . -1058) T) ((-1240 . -1058) T) ((-822 . -382) 168530) ((-171 . -732) T) ((-660 . -102) T) ((-1261 . -245) 168509) ((-1261 . -235) 168461) ((-1240 . -235) 168366) ((-1240 . -245) 168345) ((-1012 . -408) NIL) ((-676 . -645) 168293) ((-320 . -38) 168203) ((-317 . -38) 168132) ((-69 . -619) 168114) ((-323 . -499) 168080) ((-48 . -652) 168030) ((-1199 . -292) 168009) ((-1235 . -856) T) ((-1122 . -1121) 167919) ((-83 . -1227) T) ((-61 . -619) 167901) ((-485 . -292) 167880) ((-1292 . -1047) 167857) ((-1174 . -1109) T) ((-1122 . -23) 167727) ((-822 . -907) 167663) ((-1250 . -732) T) ((-1111 . -1227) T) ((-480 . -622) 167489) ((-1096 . -294) 167420) ((-973 . -1109) T) ((-900 . -102) T) ((-788 . -294) 167331) ((-331 . -19) 167315) ((-59 . -292) 167292) ((-786 . -294) 167223) ((-861 . -732) T) ((-118 . -854) NIL) ((-522 . -292) 167200) ((-331 . -610) 167177) ((-502 . -292) 167154) ((-460 . -294) 167085) ((-1044 . -313) 166936) ((-882 . -496) 166917) ((-882 . -619) 166883) ((-687 . -496) 166864) ((-577 . -732) T) ((-682 . -496) 166845) ((-687 . -619) 166795) ((-682 . -619) 166761) ((-668 . -619) 166743) ((-484 . -496) 166724) ((-484 . -619) 166690) ((-247 . -620) 166651) ((-247 . -496) 166628) ((-139 . -496) 166609) ((-138 . -496) 166590) ((-134 . -496) 166571) ((-247 . -619) 166463) ((-215 . -102) T) ((-139 . -619) 166429) ((-138 . -619) 166395) ((-134 . -619) 166361) ((-1156 . -34) T) ((-950 . -1227) T) ((-348 . -723) 166306) ((-676 . -25) T) ((-676 . -21) T) ((-1186 . -622) 166287) ((-480 . -1058) T) ((-641 . -423) 166252) ((-613 . -423) 166217) ((-1129 . -1161) T) ((-718 . -1060) 166040) ((-587 . -294) T) ((-524 . -294) T) ((-1262 . -311) 166019) ((-480 . -235) 165971) ((-480 . -245) 165950) ((-1241 . -311) 165929) ((-718 . -646) 165758) ((-1241 . -1031) NIL) ((-1089 . -132) T) ((-878 . -801) 165737) ((-145 . -102) T) ((-40 . -1109) T) ((-878 . -798) 165716) ((-650 . -1019) 165700) ((-586 . -1067) T) ((-570 . -1067) T) ((-501 . -1067) T) ((-413 . -458) T) ((-364 . -132) T) ((-320 . -406) 165684) ((-317 . -406) 165645) ((-358 . -132) T) ((-350 . -132) T) ((-1191 . -1109) T) ((-1129 . -38) 165632) ((-1103 . -619) 165599) ((-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) 165583) ((-537 . -856) T) ((-506 . -856) T) ((-360 . -1065) 165535) ((-357 . -1065) 165487) ((-349 . -1065) 165439) ((-254 . -1227) T) ((-253 . -1227) T) ((-267 . -1065) 165282) ((-249 . -1065) 165125) ((-670 . -111) 165104) ((-553 . -850) T) ((-360 . -111) 165042) ((-357 . -111) 164980) ((-349 . -111) 164918) ((-267 . -111) 164747) ((-249 . -111) 164576) ((-823 . -1231) 164555) ((-629 . -417) 164539) ((-44 . -21) T) ((-44 . -25) T) ((-821 . -645) 164445) ((-823 . -562) 164424) ((-254 . -1047) 164251) ((-253 . -1047) 164078) ((-127 . -120) 164062) ((-917 . -1065) 164027) ((-718 . -102) T) ((-705 . -1067) T) ((-603 . -622) 164008) ((-591 . -622) 163989) ((-542 . -624) 163892) ((-348 . -174) T) ((-88 . -619) 163874) ((-153 . -21) T) ((-153 . -25) T) ((-917 . -111) 163830) ((-40 . -723) 163775) ((-876 . -1109) T) ((-670 . -622) 163752) ((-651 . -622) 163733) ((-360 . -622) 163670) ((-357 . -622) 163607) ((-553 . -1109) T) ((-349 . -622) 163544) ((-331 . -620) 163505) ((-331 . -619) 163417) ((-267 . -622) 163170) ((-249 . -622) 162955) ((-1240 . -798) 162908) ((-1240 . -801) 162861) ((-254 . -382) 162830) ((-253 . -382) 162799) ((-660 . -38) 162769) ((-614 . -34) T) ((-488 . -1121) 162679) ((-481 . -34) T) ((-1122 . -132) 162549) ((-971 . -25) 162360) ((-917 . -622) 162310) ((-880 . -619) 162292) ((-971 . -21) 162247) ((-821 . -21) 162157) ((-821 . -25) 162008) ((-1233 . -373) T) ((-629 . -1067) T) ((-1188 . -562) 161987) ((-1182 . -47) 161964) ((-360 . -1058) T) ((-357 . -1058) T) ((-488 . -23) 161834) ((-349 . -1058) T) ((-267 . -1058) T) ((-249 . -1058) T) ((-1134 . -47) 161806) ((-118 . -1067) T) ((-1043 . -654) 161780) ((-965 . -34) T) ((-360 . -235) 161759) ((-360 . -245) T) ((-357 . -235) 161738) ((-357 . -245) T) ((-349 . -235) 161717) ((-349 . -245) T) ((-267 . -330) 161689) ((-249 . -330) 161646) ((-267 . -235) 161625) ((-1166 . -152) 161609) ((-254 . -907) 161541) ((-253 . -907) 161473) ((-1091 . -856) T) ((-420 . -1121) T) ((-1063 . -23) T) ((-917 . -1058) T) ((-326 . -654) 161455) ((-1033 . -854) T) ((-1221 . -1011) 161421) ((-1183 . -927) 161400) ((-1177 . -927) 161379) ((-1177 . -826) NIL) ((-1008 . -1060) 161275) ((-974 . -1227) T) ((-917 . -245) T) ((-823 . -368) 161254) ((-390 . -23) T) ((-128 . -1109) 161232) ((-122 . -1109) 161210) ((-917 . -235) T) ((-129 . -34) T) ((-384 . -654) 161175) ((-1008 . -646) 161123) ((-876 . -723) 161110) ((-1305 . -652) 161082) ((-1055 . -152) 161047) ((-40 . -174) T) ((-700 . -417) 161029) ((-718 . -313) 161016) ((-842 . -654) 160976) ((-833 . -654) 160950) ((-323 . -25) T) ((-323 . -21) T) ((-664 . -290) 160929) ((-586 . -1109) T) ((-570 . -1109) T) ((-501 . -1109) T) ((-247 . -292) 160906) ((-317 . -233) 160867) ((-1182 . -893) NIL) ((-55 . -1109) T) ((-1134 . -893) 160726) ((-130 . -856) T) ((-1182 . -1047) 160606) ((-1134 . -1047) 160489) ((-185 . -619) 160471) ((-860 . -1047) 160367) ((-788 . -290) 160294) ((-823 . -1121) T) ((-1043 . -732) T) ((-608 . -657) 160278) ((-1055 . -985) 160207) ((-1008 . -102) T) ((-823 . -23) T) ((-718 . -1161) 160185) ((-700 . -1067) T) ((-608 . -378) 160169) ((-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) 160151) ((-1182 . -382) 160135) ((-1134 . -382) 160119) ((-1033 . -417) 160081) ((-142 . -231) 160063) ((-384 . -800) T) ((-384 . -797) T) ((-876 . -174) T) ((-384 . -732) T) ((-717 . -619) 160045) ((-718 . -38) 159874) ((-1277 . -1275) 159858) ((-356 . -408) T) ((-1277 . -1109) 159808) ((-1200 . -1109) T) ((-586 . -723) 159795) ((-570 . -723) 159782) ((-501 . -723) 159747) ((-1263 . -652) 159637) ((-320 . -635) 159616) ((-842 . -732) T) ((-833 . -732) T) ((-650 . -1227) T) ((-1089 . -645) 159564) ((-1182 . -907) 159507) ((-1134 . -907) 159491) ((-668 . -1065) 159475) ((-108 . -645) 159457) ((-488 . -132) 159327) ((-1188 . -1121) T) ((-959 . -47) 159296) ((-629 . -1109) T) ((-668 . -111) 159275) ((-497 . -619) 159241) ((-331 . -292) 159218) ((-487 . -47) 159175) ((-1188 . -23) T) ((-118 . -1109) T) ((-103 . -102) 159153) ((-1289 . -1121) T) ((-554 . -856) T) ((-1063 . -132) T) ((-1033 . -1067) T) ((-825 . -1047) 159137) ((-1012 . -730) 159109) ((-1289 . -23) T) ((-705 . -723) 159074) ((-592 . -619) 159056) ((-392 . -1047) 159040) ((-359 . -1067) T) ((-390 . -132) T) ((-328 . -1047) 159024) ((-1207 . -619) 159006) ((-1129 . -834) T) ((-1114 . -1109) T) ((-227 . -893) 158988) ((-1013 . -927) T) ((-91 . -34) T) ((-1013 . -826) T) ((-921 . -927) T) ((-1089 . -21) T) ((-1089 . -25) T) ((-493 . -1231) T) ((-1008 . -313) 158953) ((-882 . -622) 158934) ((-720 . -654) 158894) ((-219 . -1231) T) ((-687 . -622) 158875) ((-227 . -1047) 158835) ((-40 . -294) T) ((-682 . -622) 158816) ((-493 . -562) T) ((-484 . -622) 158797) ((-320 . -652) 158481) ((-317 . -652) 158395) ((-364 . -25) T) ((-364 . -21) T) ((-358 . -25) T) ((-219 . -562) T) ((-358 . -21) T) ((-350 . -25) T) ((-350 . -21) T) ((-247 . -622) 158372) ((-139 . -622) 158353) ((-138 . -622) 158334) ((-134 . -622) 158315) ((-108 . -25) T) ((-108 . -21) T) ((-48 . -1067) T) ((-586 . -174) T) ((-570 . -174) T) ((-501 . -174) T) ((-664 . -619) 158297) ((-743 . -742) 158281) ((-341 . -619) 158263) ((-68 . -388) T) ((-68 . -401) T) ((-1111 . -107) 158247) ((-1071 . -893) 158229) ((-959 . -893) 158154) ((-659 . -1121) T) ((-629 . -723) 158141) ((-487 . -893) NIL) ((-1155 . -102) T) ((-1103 . -624) 158125) ((-1071 . -1047) 158107) ((-97 . -619) 158089) ((-483 . -148) T) ((-959 . -1047) 157969) ((-118 . -723) 157914) ((-659 . -23) T) ((-487 . -1047) 157790) ((-1096 . -620) NIL) ((-1096 . -619) 157772) ((-788 . -620) NIL) ((-788 . -619) 157733) ((-786 . -620) 157367) ((-786 . -619) 157281) ((-1122 . -645) 157187) ((-467 . -619) 157169) ((-460 . -619) 157151) ((-460 . -620) 157012) ((-1044 . -231) 156958) ((-878 . -916) 156937) ((-127 . -34) T) ((-823 . -132) T) ((-655 . -619) 156919) ((-584 . -102) T) ((-360 . -1296) 156903) ((-357 . -1296) 156887) ((-349 . -1296) 156871) ((-128 . -520) 156804) ((-122 . -520) 156737) ((-517 . -798) T) ((-517 . -801) T) ((-516 . -800) T) ((-103 . -313) 156675) ((-224 . -102) 156653) ((-705 . -174) T) ((-700 . -1109) T) ((-878 . -654) 156605) ((-65 . -389) T) ((-278 . -619) 156587) ((-65 . -401) T) ((-959 . -382) 156571) ((-876 . -294) T) ((-50 . -619) 156553) ((-1008 . -38) 156501) ((-1129 . -652) 156473) ((-587 . -619) 156455) ((-487 . -382) 156439) ((-587 . -620) 156421) ((-524 . -619) 156403) ((-917 . -1296) 156390) ((-877 . -1227) T) ((-707 . -458) T) ((-501 . -520) 156356) ((-493 . -368) T) ((-360 . -373) 156335) ((-357 . -373) 156314) ((-349 . -373) 156293) ((-720 . -732) T) ((-219 . -368) T) ((-117 . -458) T) ((-1300 . -1291) 156277) ((-877 . -891) 156254) ((-877 . -893) NIL) ((-971 . -856) 156153) ((-821 . -856) 156104) ((-1234 . -102) T) ((-660 . -662) 156088) ((-1213 . -34) T) ((-173 . -619) 156070) ((-1122 . -21) 155980) ((-1122 . -25) 155831) ((-877 . -1047) 155808) ((-959 . -907) 155789) ((-1250 . -47) 155766) ((-917 . -373) T) ((-59 . -657) 155750) ((-522 . -657) 155734) ((-487 . -907) 155711) ((-71 . -447) T) ((-71 . -401) T) ((-502 . -657) 155695) ((-59 . -378) 155679) ((-629 . -174) T) ((-522 . -378) 155663) ((-502 . -378) 155647) ((-833 . -714) 155631) ((-1182 . -311) 155610) ((-1188 . -132) T) ((-1151 . -1060) 155594) ((-118 . -174) T) ((-1151 . -646) 155526) ((-1155 . -313) 155464) ((-171 . -1227) T) ((-1289 . -132) T) ((-872 . -1060) 155434) ((-641 . -750) 155418) ((-613 . -750) 155402) ((-1262 . -927) 155381) ((-1241 . -927) 155360) ((-1241 . -826) NIL) ((-872 . -646) 155330) ((-700 . -723) 155280) ((-1240 . -916) 155233) ((-1033 . -1109) T) ((-877 . -382) 155210) ((-877 . -343) 155187) ((-912 . -1121) T) ((-171 . -891) 155171) ((-171 . -893) 155096) ((-493 . -1121) T) ((-359 . -1109) T) ((-219 . -1121) T) ((-76 . -447) T) ((-76 . -401) T) ((-171 . -1047) 154992) ((-323 . -856) T) ((-1277 . -520) 154925) ((-1261 . -654) 154822) ((-1240 . -654) 154692) ((-878 . -800) 154671) ((-878 . -797) 154650) ((-878 . -732) T) ((-493 . -23) T) ((-225 . -619) 154632) ((-176 . -458) T) ((-224 . -313) 154570) ((-86 . -447) T) ((-86 . -401) T) ((-219 . -23) T) ((-1301 . -1294) 154549) ((-683 . -1047) 154533) ((-586 . -294) T) ((-570 . -294) T) ((-501 . -294) T) ((-137 . -476) 154488) ((-660 . -652) 154447) ((-48 . -1109) T) ((-718 . -233) 154431) ((-877 . -907) NIL) ((-1250 . -893) NIL) ((-896 . -102) T) ((-892 . -102) T) ((-394 . -1109) T) ((-171 . -382) 154415) ((-171 . -343) 154399) ((-1250 . -1047) 154279) ((-861 . -1047) 154175) ((-1151 . -102) T) ((-668 . -798) 154154) ((-659 . -132) T) ((-668 . -801) 154133) ((-118 . -520) 154041) ((-577 . -1047) 154023) ((-298 . -1284) 153993) ((-872 . -102) T) ((-970 . -562) 153972) ((-1221 . -1065) 153855) ((-1012 . -1060) 153800) ((-488 . -645) 153706) ((-911 . -1109) T) ((-1033 . -723) 153643) ((-717 . -1065) 153608) ((-1012 . -646) 153553) ((-623 . -102) T) ((-608 . -34) T) ((-1156 . -1227) T) ((-1221 . -111) 153422) ((-480 . -654) 153319) ((-359 . -723) 153264) ((-171 . -907) 153223) ((-705 . -294) T) ((-700 . -174) T) ((-717 . -111) 153179) ((-1305 . -1067) T) ((-1250 . -382) 153163) ((-424 . -1231) 153141) ((-1127 . -619) 153123) ((-317 . -854) NIL) ((-424 . -562) T) ((-227 . -311) T) ((-1240 . -797) 153076) ((-1240 . -800) 153029) ((-1261 . -732) T) ((-1240 . -732) T) ((-48 . -723) 152994) ((-227 . -1031) T) ((-356 . -1284) 152971) ((-1263 . -417) 152937) ((-724 . -732) T) ((-337 . -619) 152919) ((-1250 . -907) 152862) ((-1221 . -622) 152744) ((-112 . -619) 152726) ((-112 . -620) 152708) ((-724 . -479) T) ((-717 . -622) 152658) ((-1300 . -1060) 152642) ((-488 . -21) 152552) ((-128 . -495) 152536) ((-122 . -495) 152520) ((-488 . -25) 152371) ((-1300 . -646) 152341) ((-629 . -294) T) ((-592 . -1065) 152316) ((-443 . -1109) T) ((-1071 . -311) T) ((-118 . -294) T) ((-1113 . -102) T) ((-1012 . -102) T) ((-592 . -111) 152284) ((-1151 . -313) 152222) ((-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) 152132) ((-512 . -102) T) ((-508 . -102) T) ((-359 . -174) T) ((-348 . -619) 152114) ((-413 . -1060) 152066) ((-400 . -619) 152048) ((-1129 . -854) T) ((-480 . -732) T) ((-899 . -1047) 152016) ((-413 . -646) 151968) ((-108 . -856) T) ((-664 . -1065) 151952) ((-493 . -132) T) ((-1263 . -1067) T) ((-219 . -132) T) ((-1166 . -102) 151930) ((-99 . -1109) T) ((-247 . -672) 151914) ((-247 . -657) 151898) ((-664 . -111) 151877) ((-592 . -622) 151861) ((-320 . -417) 151845) ((-247 . -378) 151829) ((-1169 . -237) 151776) ((-1008 . -233) 151760) ((-74 . -1227) T) ((-48 . -174) T) ((-707 . -393) T) ((-707 . -144) T) ((-1300 . -102) T) ((-1207 . -622) 151742) ((-1096 . -1065) 151585) ((-267 . -916) 151564) ((-249 . -916) 151543) ((-788 . -1065) 151366) ((-786 . -1065) 151209) ((-614 . -1227) T) ((-1174 . -619) 151191) ((-1096 . -111) 151020) ((-1055 . -102) T) ((-481 . -1227) T) ((-467 . -1065) 150991) ((-460 . -1065) 150834) ((-670 . -654) 150818) ((-877 . -311) T) ((-788 . -111) 150627) ((-786 . -111) 150456) ((-360 . -654) 150408) ((-357 . -654) 150360) ((-349 . -654) 150312) ((-267 . -654) 150237) ((-249 . -654) 150162) ((-1168 . -856) T) ((-1097 . -1047) 150146) ((-467 . -111) 150107) ((-460 . -111) 149936) ((-1085 . -1047) 149913) ((-1009 . -34) T) ((-973 . -619) 149895) ((-965 . -1227) T) ((-127 . -1019) 149879) ((-970 . -1121) T) ((-877 . -1031) NIL) ((-741 . -1121) T) ((-721 . -1121) T) ((-664 . -622) 149797) ((-1277 . -495) 149781) ((-1151 . -38) 149741) ((-970 . -23) T) ((-917 . -654) 149706) ((-871 . -1109) T) ((-849 . -102) T) ((-823 . -21) T) ((-641 . -1060) 149690) ((-613 . -1060) 149674) ((-823 . -25) T) ((-741 . -23) T) ((-721 . -23) T) ((-641 . -646) 149658) ((-110 . -667) T) ((-613 . -646) 149642) ((-587 . -1065) 149607) ((-524 . -1065) 149552) ((-229 . -57) 149510) ((-459 . -23) T) ((-413 . -102) T) ((-266 . -102) T) ((-110 . -113) T) ((-700 . -294) T) ((-872 . -38) 149480) ((-587 . -111) 149436) ((-524 . -111) 149365) ((-1096 . -622) 149101) ((-424 . -1121) T) ((-320 . -1067) 148991) ((-317 . -1067) T) ((-129 . -1227) T) ((-788 . -622) 148739) ((-786 . -622) 148505) ((-664 . -1058) T) ((-1305 . -1109) T) ((-460 . -622) 148290) ((-171 . -311) 148221) ((-424 . -23) T) ((-40 . -619) 148203) ((-40 . -620) 148187) ((-108 . -1001) 148169) ((-117 . -875) 148153) ((-655 . -622) 148137) ((-48 . -520) 148103) ((-1213 . -1019) 148087) ((-1191 . -619) 148054) ((-1199 . -34) T) ((-961 . -619) 148020) ((-928 . -619) 148002) ((-1122 . -856) 147953) ((-777 . -619) 147935) ((-678 . -619) 147917) ((-1166 . -313) 147855) ((-485 . -34) T) ((-1101 . -1227) T) ((-483 . -458) T) ((-1150 . -34) T) ((-1096 . -1058) T) ((-50 . -622) 147824) ((-788 . -1058) T) ((-786 . -1058) T) ((-653 . -237) 147808) ((-638 . -237) 147754) ((-587 . -622) 147704) ((-524 . -622) 147634) ((-1250 . -311) 147613) ((-1096 . -330) 147574) ((-460 . -1058) T) ((-1188 . -21) T) ((-1096 . -235) 147553) ((-788 . -330) 147530) ((-788 . -235) T) ((-786 . -330) 147502) ((-737 . -1231) 147481) ((-331 . -657) 147465) ((-1188 . -25) T) ((-59 . -34) T) ((-525 . -34) T) ((-522 . -34) T) ((-460 . -330) 147444) ((-331 . -378) 147428) ((-503 . -34) T) ((-502 . -34) T) ((-1012 . -1161) NIL) ((-737 . -562) 147359) ((-641 . -102) T) ((-613 . -102) T) ((-360 . -732) T) ((-357 . -732) T) ((-349 . -732) T) ((-267 . -732) T) ((-249 . -732) T) ((-1055 . -313) 147267) ((-908 . -1109) 147245) ((-50 . -1058) T) ((-1289 . -21) T) ((-1289 . -25) T) ((-1184 . -562) 147224) ((-1183 . -1231) 147203) ((-1183 . -562) 147154) ((-587 . -1058) T) ((-524 . -1058) T) ((-1177 . -1231) 147133) ((-366 . -1047) 147117) ((-326 . -1047) 147101) ((-1033 . -294) T) ((-384 . -893) 147083) ((-1177 . -562) 147034) ((-1012 . -38) 146979) ((-1008 . -652) 146902) ((-805 . -1121) T) ((-917 . -732) T) ((-587 . -245) T) ((-587 . -235) T) ((-524 . -235) T) ((-524 . -245) T) ((-1135 . -562) 146881) ((-359 . -294) T) ((-653 . -701) 146865) ((-384 . -1047) 146825) ((-298 . -1060) 146746) ((-1129 . -1067) T) ((-103 . -126) 146730) ((-298 . -646) 146672) ((-805 . -23) T) ((-1299 . -1294) 146648) ((-1277 . -290) 146625) ((-413 . -313) 146590) ((-1297 . -1294) 146569) ((-1263 . -1109) T) ((-876 . -619) 146551) ((-842 . -1047) 146520) ((-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) 146502) ((-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) 146486) ((-225 . -622) 146448) ((-110 . -856) T) ((-659 . -21) T) ((-659 . -25) T) ((-1300 . -38) 146418) ((-118 . -290) 146369) ((-1277 . -19) 146353) ((-1277 . -610) 146330) ((-1290 . -1109) T) ((-356 . -1060) 146275) ((-1086 . -1109) T) ((-996 . -1109) T) ((-970 . -132) T) ((-743 . -1109) T) ((-356 . -646) 146220) ((-741 . -132) T) ((-721 . -132) T) ((-517 . -799) T) ((-517 . -800) T) ((-459 . -132) T) ((-413 . -1161) 146198) ((-225 . -1058) T) ((-298 . -102) 145980) ((-142 . -1109) T) ((-705 . -1011) T) ((-91 . -1227) T) ((-128 . -619) 145912) ((-122 . -619) 145844) ((-1305 . -174) T) ((-1183 . -368) 145823) ((-1177 . -368) 145802) ((-320 . -1109) T) ((-424 . -132) T) ((-317 . -1109) T) ((-413 . -38) 145754) ((-1142 . -102) T) ((-1263 . -723) 145646) ((-660 . -1067) T) ((-1144 . -1272) T) ((-323 . -146) 145625) ((-323 . -148) 145604) ((-137 . -1109) T) ((-140 . -1109) T) ((-115 . -1109) T) ((-864 . -102) T) ((-586 . -619) 145586) ((-570 . -620) 145485) ((-570 . -619) 145467) ((-501 . -619) 145449) ((-501 . -620) 145394) ((-491 . -23) T) ((-488 . -856) 145345) ((-493 . -645) 145327) ((-972 . -619) 145309) ((-219 . -645) 145291) ((-227 . -410) T) ((-668 . -654) 145275) ((-55 . -619) 145257) ((-1182 . -927) 145236) ((-737 . -1121) T) ((-356 . -102) T) ((-1226 . -1092) T) ((-1129 . -850) T) ((-824 . -856) T) ((-737 . -23) T) ((-348 . -1065) 145181) ((-1168 . -1167) T) ((-1156 . -107) 145165) ((-1184 . -1121) T) ((-1183 . -1121) T) ((-521 . -1047) 145149) ((-1177 . -1121) T) ((-1135 . -1121) T) ((-348 . -111) 145078) ((-1013 . -1231) T) ((-127 . -1227) T) ((-921 . -1231) T) ((-700 . -290) NIL) ((-1278 . -619) 145060) ((-1184 . -23) T) ((-1183 . -23) T) ((-1177 . -23) T) ((-1013 . -562) T) ((-1151 . -233) 145044) ((-921 . -562) T) ((-1135 . -23) T) ((-250 . -619) 145026) ((-1084 . -1109) T) ((-805 . -132) T) ((-716 . -619) 145008) ((-320 . -723) 144918) ((-317 . -723) 144847) ((-705 . -619) 144829) ((-705 . -620) 144774) ((-413 . -406) 144758) ((-444 . -1109) T) ((-493 . -25) T) ((-493 . -21) T) ((-1129 . -1109) T) ((-219 . -25) T) ((-219 . -21) T) ((-718 . -417) 144742) ((-720 . -1047) 144711) ((-1277 . -619) 144623) ((-1277 . -620) 144584) ((-1263 . -174) T) ((-1200 . -619) 144566) ((-247 . -34) T) ((-348 . -622) 144496) ((-400 . -622) 144478) ((-933 . -983) T) ((-1213 . -1227) T) ((-668 . -797) 144457) ((-668 . -800) 144436) ((-404 . -401) T) ((-529 . -102) 144414) ((-1044 . -1109) T) ((-224 . -1004) 144398) ((-510 . -102) T) ((-629 . -619) 144380) ((-45 . -856) NIL) ((-629 . -620) 144357) ((-1044 . -616) 144332) ((-908 . -520) 144265) ((-348 . -1058) T) ((-118 . -620) NIL) ((-118 . -619) 144247) ((-878 . -1227) T) ((-676 . -423) 144231) ((-676 . -1132) 144176) ((-506 . -152) 144158) ((-348 . -235) T) ((-348 . -245) T) ((-40 . -1065) 144103) ((-878 . -891) 144087) ((-878 . -893) 144012) ((-718 . -1067) T) ((-700 . -1011) NIL) ((-1261 . -47) 143982) ((-1240 . -47) 143959) ((-1150 . -1019) 143930) ((-3 . |UnionCategory|) T) ((-1129 . -723) 143917) ((-1114 . -619) 143899) ((-1089 . -148) 143878) ((-1089 . -146) 143829) ((-973 . -622) 143813) ((-227 . -927) T) ((-40 . -111) 143742) ((-878 . -1047) 143606) ((-1013 . -368) T) ((-1012 . -233) 143583) ((-707 . -1060) 143570) ((-921 . -368) T) ((-707 . -646) 143557) ((-323 . -1215) 143523) ((-384 . -311) T) ((-323 . -1212) 143489) ((-320 . -174) 143468) ((-317 . -174) T) ((-587 . -1296) 143455) ((-524 . -1296) 143432) ((-364 . -148) 143411) ((-117 . -1060) 143398) ((-364 . -146) 143349) ((-358 . -148) 143328) ((-358 . -146) 143279) ((-350 . -148) 143258) ((-614 . -1203) 143234) ((-117 . -646) 143221) ((-350 . -146) 143172) ((-323 . -35) 143138) ((-481 . -1203) 143117) ((0 . |EnumerationCategory|) T) ((-323 . -95) 143083) ((-384 . -1031) T) ((-108 . -148) T) ((-108 . -146) NIL) ((-45 . -237) 143033) ((-660 . -1109) T) ((-614 . -107) 142980) ((-491 . -132) T) ((-481 . -107) 142930) ((-242 . -1121) 142840) ((-878 . -382) 142824) ((-878 . -343) 142808) ((-242 . -23) 142678) ((-40 . -622) 142608) ((-1071 . -927) T) ((-1071 . -826) T) ((-587 . -373) T) ((-524 . -373) T) ((-1290 . -520) 142541) ((-1269 . -562) 142520) ((-356 . -1161) T) ((-331 . -34) T) ((-44 . -423) 142504) ((-1191 . -622) 142440) ((-879 . -1227) T) ((-396 . -750) 142424) ((-1262 . -1231) 142403) ((-1262 . -562) 142354) ((-1151 . -652) 142313) ((-737 . -132) T) ((-678 . -622) 142297) ((-1241 . -1231) 142276) ((-1241 . -562) 142227) ((-1240 . -1227) 142206) ((-1240 . -893) 142079) ((-1240 . -891) 142049) ((-1184 . -132) T) ((-315 . -1092) T) ((-1183 . -132) T) ((-743 . -520) 141982) ((-1177 . -132) T) ((-1135 . -132) T) ((-900 . -1109) T) ((-145 . -850) T) ((-1033 . -1011) T) ((-697 . -619) 141964) ((-1013 . -23) T) ((-529 . -313) 141902) ((-1013 . -1121) T) ((-142 . -520) NIL) ((-872 . -652) 141847) ((-1012 . -354) NIL) ((-980 . -23) T) ((-921 . -1121) T) ((-356 . -38) 141812) ((-921 . -23) T) ((-878 . -907) 141771) ((-82 . -619) 141753) ((-40 . -1058) T) ((-876 . -1065) 141740) ((-876 . -111) 141725) ((-707 . -102) T) ((-700 . -619) 141707) ((-608 . -1227) T) ((-602 . -562) 141686) ((-433 . -1121) T) ((-344 . -1060) 141670) ((-215 . -1109) T) ((-176 . -1060) 141602) ((-480 . -47) 141572) ((-135 . -102) T) ((-40 . -235) 141544) ((-40 . -245) T) ((-117 . -102) T) ((-601 . -562) 141523) ((-344 . -646) 141507) ((-700 . -620) 141415) ((-320 . -520) 141381) ((-176 . -646) 141313) ((-317 . -520) 141205) ((-1261 . -1047) 141189) ((-1240 . -1047) 140975) ((-1008 . -417) 140959) ((-433 . -23) T) ((-1129 . -174) T) ((-1263 . -294) T) ((-660 . -723) 140929) ((-145 . -1109) T) ((-48 . -1011) T) ((-413 . -233) 140913) ((-299 . -237) 140863) ((-877 . -927) T) ((-877 . -826) NIL) ((-876 . -622) 140835) ((-870 . -856) T) ((-1240 . -343) 140805) ((-1240 . -382) 140775) ((-224 . -1130) 140759) ((-1277 . -292) 140736) ((-1221 . -654) 140661) ((-1012 . -652) 140591) ((-970 . -21) T) ((-970 . -25) T) ((-741 . -21) T) ((-741 . -25) T) ((-721 . -21) T) ((-721 . -25) T) ((-717 . -654) 140556) ((-459 . -21) T) ((-459 . -25) T) ((-344 . -102) T) ((-176 . -102) T) ((-1008 . -1067) T) ((-876 . -1058) T) ((-780 . -102) T) ((-1262 . -368) 140535) ((-1261 . -907) 140441) ((-1241 . -368) 140420) ((-1240 . -907) 140271) ((-1033 . -619) 140253) ((-413 . -834) 140206) ((-1184 . -499) 140172) ((-171 . -927) 140103) ((-1183 . -499) 140069) ((-1177 . -499) 140035) ((-718 . -1109) T) ((-1135 . -499) 140001) ((-586 . -1065) 139988) ((-570 . -1065) 139975) ((-501 . -1065) 139940) ((-320 . -294) 139919) ((-317 . -294) T) ((-359 . -619) 139901) ((-424 . -25) T) ((-424 . -21) T) ((-99 . -290) 139880) ((-586 . -111) 139865) ((-570 . -111) 139850) ((-501 . -111) 139806) ((-1186 . -893) 139773) ((-908 . -495) 139757) ((-48 . -619) 139739) ((-48 . -620) 139684) ((-242 . -132) 139554) ((-1300 . -652) 139513) ((-1250 . -927) 139492) ((-822 . -1231) 139471) ((-394 . -496) 139452) ((-1044 . -520) 139296) ((-394 . -619) 139262) ((-822 . -562) 139193) ((-592 . -654) 139168) ((-267 . -47) 139140) ((-249 . -47) 139097) ((-537 . -515) 139074) ((-586 . -622) 139046) ((-570 . -622) 139018) ((-501 . -622) 138951) ((-1083 . -1227) T) ((-1009 . -1227) T) ((-1269 . -23) T) ((-705 . -1065) 138916) ((-1269 . -1121) T) ((-1262 . -1121) T) ((-1262 . -23) T) ((-1241 . -1121) T) ((-1241 . -23) T) ((-1012 . -375) 138888) ((-112 . -373) T) ((-480 . -907) 138794) ((-1221 . -732) T) ((-911 . -619) 138776) ((-55 . -622) 138758) ((-91 . -107) 138742) ((-1129 . -294) T) ((-912 . -856) 138693) ((-707 . -1161) T) ((-705 . -111) 138649) ((-849 . -652) 138566) ((-602 . -1121) T) ((-601 . -1121) T) ((-718 . -723) 138395) ((-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) 138332) ((-586 . -1058) T) ((-570 . -1058) T) ((-501 . -1058) T) ((-602 . -23) T) ((-348 . -1296) 138309) ((-323 . -458) 138288) ((-344 . -313) 138275) ((-601 . -23) T) ((-433 . -132) T) ((-664 . -654) 138249) ((-247 . -1019) 138233) ((-878 . -311) T) ((-1301 . -1291) 138217) ((-777 . -798) T) ((-777 . -801) T) ((-707 . -38) 138204) ((-570 . -235) T) ((-501 . -245) T) ((-501 . -235) T) ((-1159 . -237) 138154) ((-1096 . -916) 138133) ((-117 . -38) 138120) ((-211 . -806) T) ((-210 . -806) T) ((-209 . -806) T) ((-208 . -806) T) ((-878 . -1031) 138098) ((-1290 . -495) 138082) ((-788 . -916) 138061) ((-786 . -916) 138040) ((-1199 . -1227) T) ((-460 . -916) 138019) ((-743 . -495) 138003) ((-1096 . -654) 137928) ((-705 . -622) 137863) ((-788 . -654) 137788) ((-629 . -1065) 137775) ((-485 . -1227) T) ((-348 . -373) T) ((-142 . -495) 137757) ((-786 . -654) 137682) ((-1150 . -1227) T) ((-555 . -856) T) ((-467 . -654) 137653) ((-267 . -893) 137512) ((-249 . -893) NIL) ((-118 . -1065) 137457) ((-460 . -654) 137382) ((-670 . -1047) 137359) ((-629 . -111) 137344) ((-396 . -1060) 137328) ((-360 . -1047) 137312) ((-357 . -1047) 137296) ((-349 . -1047) 137280) ((-267 . -1047) 137124) ((-249 . -1047) 137000) ((-118 . -111) 136929) ((-59 . -1227) T) ((-396 . -646) 136913) ((-627 . -1060) 136897) ((-525 . -1227) T) ((-522 . -1227) T) ((-503 . -1227) T) ((-502 . -1227) T) ((-443 . -619) 136879) ((-440 . -619) 136861) ((-627 . -646) 136845) ((-3 . -102) T) ((-1036 . -1220) 136814) ((-839 . -102) T) ((-695 . -57) 136772) ((-705 . -1058) T) ((-641 . -652) 136741) ((-613 . -652) 136710) ((-50 . -654) 136684) ((-293 . -458) T) ((-482 . -1220) 136653) ((0 . -102) T) ((-587 . -654) 136618) ((-524 . -654) 136563) ((-49 . -102) T) ((-917 . -1047) 136550) ((-705 . -245) T) ((-1089 . -415) 136529) ((-737 . -645) 136477) ((-1008 . -1109) T) ((-718 . -174) 136368) ((-629 . -622) 136263) ((-493 . -1001) 136245) ((-267 . -382) 136229) ((-249 . -382) 136213) ((-405 . -1109) T) ((-1035 . -102) 136191) ((-344 . -38) 136175) ((-219 . -1001) 136157) ((-118 . -622) 136087) ((-176 . -38) 136019) ((-1261 . -311) 135998) ((-1240 . -311) 135977) ((-664 . -732) T) ((-99 . -619) 135959) ((-483 . -1060) 135924) ((-1177 . -645) 135876) ((-483 . -646) 135841) ((-491 . -25) T) ((-491 . -21) T) ((-1240 . -1031) 135793) ((-1066 . -1227) T) ((-629 . -1058) T) ((-384 . -410) T) ((-396 . -102) T) ((-1114 . -624) 135708) ((-267 . -907) 135654) ((-249 . -907) 135631) ((-118 . -1058) T) ((-822 . -1121) T) ((-1096 . -732) T) ((-629 . -235) 135610) ((-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) 135589) ((-78 . -402) T) ((-78 . -401) T) ((-539 . -773) 135571) ((-700 . -1065) 135521) ((-1269 . -132) T) ((-1262 . -132) T) ((-1241 . -132) T) ((-1184 . -25) T) ((-1151 . -417) 135505) ((-641 . -372) 135437) ((-613 . -372) 135369) ((-1166 . -1158) 135353) ((-103 . -1109) 135331) ((-1184 . -21) T) ((-1183 . -21) T) ((-871 . -619) 135313) ((-1008 . -723) 135261) ((-225 . -654) 135228) ((-700 . -111) 135162) ((-50 . -732) T) ((-1183 . -25) T) ((-356 . -354) T) ((-1177 . -21) T) ((-1089 . -458) 135113) ((-1177 . -25) T) ((-718 . -520) 135060) ((-587 . -732) T) ((-524 . -732) T) ((-1135 . -21) T) ((-1135 . -25) T) ((-602 . -132) T) ((-298 . -652) 134795) ((-601 . -132) T) ((-364 . -458) T) ((-358 . -458) T) ((-350 . -458) T) ((-480 . -311) 134774) ((-1235 . -102) T) ((-317 . -290) 134709) ((-108 . -458) T) ((-79 . -447) T) ((-79 . -401) T) ((-483 . -102) T) ((-697 . -622) 134693) ((-1305 . -619) 134675) ((-1305 . -620) 134657) ((-1089 . -408) 134636) ((-1044 . -495) 134567) ((-570 . -801) T) ((-570 . -798) T) ((-1072 . -237) 134513) ((-364 . -408) 134464) ((-358 . -408) 134415) ((-350 . -408) 134366) ((-1292 . -1121) T) ((-1301 . -1060) 134350) ((-386 . -1060) 134334) ((-1301 . -646) 134304) ((-386 . -646) 134274) ((-700 . -622) 134209) ((-1292 . -23) T) ((-1279 . -102) T) ((-177 . -619) 134191) ((-1151 . -1067) T) ((-553 . -373) T) ((-676 . -750) 134175) ((-1188 . -146) 134154) ((-1188 . -148) 134133) ((-1155 . -1109) T) ((-1155 . -1080) 134102) ((-69 . -1227) T) ((-1033 . -1065) 134039) ((-356 . -652) 133969) ((-872 . -1067) T) ((-242 . -645) 133875) ((-700 . -1058) T) ((-359 . -1065) 133820) ((-61 . -1227) T) ((-1033 . -111) 133736) ((-908 . -619) 133647) ((-700 . -245) T) ((-700 . -235) NIL) ((-849 . -854) 133626) ((-705 . -801) T) ((-705 . -798) T) ((-1012 . -417) 133603) ((-359 . -111) 133532) ((-384 . -927) T) ((-413 . -854) 133511) ((-718 . -294) 133422) ((-225 . -732) T) ((-1269 . -499) 133388) ((-1262 . -499) 133354) ((-1241 . -499) 133320) ((-584 . -1109) T) ((-320 . -1011) 133299) ((-224 . -1109) 133277) ((-1234 . -850) T) ((-323 . -982) 133239) ((-105 . -102) T) ((-48 . -1065) 133204) ((-1301 . -102) T) ((-386 . -102) T) ((-48 . -111) 133160) ((-1013 . -645) 133142) ((-1263 . -619) 133124) ((-537 . -102) T) ((-506 . -102) T) ((-1142 . -1143) 133108) ((-153 . -1284) 133092) ((-247 . -1227) T) ((-1226 . -102) T) ((-1033 . -622) 133029) ((-1182 . -1231) 133008) ((-359 . -622) 132938) ((-1134 . -1231) 132917) ((-242 . -21) 132827) ((-242 . -25) 132678) ((-128 . -120) 132662) ((-122 . -120) 132646) ((-44 . -750) 132630) ((-1182 . -562) 132541) ((-1134 . -562) 132472) ((-1234 . -1109) T) ((-1044 . -290) 132447) ((-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) 132357) ((-253 . -1121) 132267) ((-1033 . -1058) T) ((-1012 . -1067) T) ((-48 . -622) 132200) ((-348 . -654) 132145) ((-627 . -38) 132129) ((-1290 . -619) 132091) ((-1290 . -620) 132052) ((-1086 . -619) 132034) ((-1033 . -245) T) ((-359 . -1058) T) ((-821 . -1284) 132004) ((-254 . -23) T) ((-253 . -23) T) ((-996 . -619) 131986) ((-743 . -620) 131947) ((-743 . -619) 131929) ((-805 . -856) 131908) ((-1169 . -152) 131855) ((-1008 . -520) 131767) ((-359 . -235) T) ((-359 . -245) T) ((-394 . -622) 131748) ((-1013 . -25) T) ((-142 . -619) 131730) ((-142 . -620) 131689) ((-917 . -311) T) ((-1013 . -21) T) ((-980 . -25) T) ((-921 . -21) T) ((-921 . -25) T) ((-433 . -21) T) ((-433 . -25) T) ((-849 . -417) 131673) ((-48 . -1058) T) ((-1299 . -1291) 131657) ((-1297 . -1291) 131641) ((-1044 . -610) 131616) ((-320 . -620) 131477) ((-320 . -619) 131459) ((-317 . -620) NIL) ((-317 . -619) 131441) ((-48 . -245) T) ((-48 . -235) T) ((-660 . -290) 131402) ((-556 . -237) 131352) ((-140 . -619) 131319) ((-137 . -619) 131301) ((-115 . -619) 131283) ((-483 . -38) 131248) ((-1301 . -1298) 131227) ((-1292 . -132) T) ((-1300 . -1067) T) ((-1091 . -102) T) ((-88 . -1227) T) ((-506 . -313) NIL) ((-1009 . -107) 131211) ((-896 . -1109) T) ((-892 . -1109) T) ((-1277 . -657) 131195) ((-1277 . -378) 131179) ((-331 . -1227) T) ((-599 . -856) T) ((-1151 . -1109) T) ((-1151 . -1062) 131119) ((-103 . -520) 131052) ((-934 . -619) 131034) ((-348 . -732) T) ((-30 . -619) 131016) ((-872 . -1109) T) ((-849 . -1067) 130995) ((-40 . -654) 130940) ((-227 . -1231) T) ((-413 . -1067) T) ((-1168 . -152) 130922) ((-1008 . -294) 130873) ((-623 . -1109) T) ((-227 . -562) T) ((-323 . -1258) 130857) ((-323 . -1255) 130827) ((-707 . -652) 130799) ((-1199 . -1203) 130778) ((-1084 . -619) 130760) ((-1199 . -107) 130710) ((-653 . -152) 130694) ((-638 . -152) 130640) ((-117 . -652) 130612) ((-485 . -1203) 130591) ((-493 . -148) T) ((-493 . -146) NIL) ((-1129 . -620) 130506) ((-444 . -619) 130488) ((-219 . -148) T) ((-219 . -146) NIL) ((-1129 . -619) 130470) ((-130 . -102) T) ((-52 . -102) T) ((-1241 . -645) 130422) ((-485 . -107) 130372) ((-1002 . -23) T) ((-1301 . -38) 130342) ((-1182 . -1121) T) ((-1134 . -1121) T) ((-1071 . -1231) T) ((-315 . -102) T) ((-860 . -1121) T) ((-959 . -1231) 130321) ((-487 . -1231) 130300) ((-1071 . -562) T) ((-959 . -562) 130231) ((-1182 . -23) T) ((-1160 . -1092) T) ((-1134 . -23) T) ((-860 . -23) T) ((-487 . -562) 130162) ((-1151 . -723) 130094) ((-676 . -1060) 130078) ((-1155 . -520) 130011) ((-676 . -646) 129995) ((-1044 . -620) NIL) ((-1044 . -619) 129977) ((-96 . -1092) T) ((-872 . -723) 129947) ((-1221 . -47) 129916) ((-254 . -132) T) ((-253 . -132) T) ((-1113 . -1109) T) ((-1012 . -1109) T) ((-62 . -619) 129898) ((-1177 . -856) NIL) ((-1033 . -798) T) ((-1033 . -801) T) ((-1305 . -1065) 129885) ((-1305 . -111) 129870) ((-1269 . -25) T) ((-1269 . -21) T) ((-876 . -654) 129857) ((-1262 . -21) T) ((-1262 . -25) T) ((-1241 . -21) T) ((-1241 . -25) T) ((-1036 . -152) 129841) ((-878 . -826) 129820) ((-878 . -927) T) ((-718 . -290) 129747) ((-602 . -21) T) ((-344 . -652) 129706) ((-602 . -25) T) ((-601 . -21) T) ((-176 . -652) 129623) ((-40 . -732) T) ((-224 . -520) 129556) ((-601 . -25) T) ((-482 . -152) 129540) ((-469 . -152) 129524) ((-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) 129508) ((-1297 . -1060) 129492) ((-1299 . -646) 129462) ((-1166 . -1109) 129440) ((-877 . -1231) T) ((-1297 . -646) 129410) ((-660 . -619) 129392) ((-877 . -562) T) ((-700 . -373) NIL) ((-44 . -1060) 129376) ((-1305 . -622) 129358) ((-1300 . -1109) T) ((-676 . -102) T) ((-364 . -1284) 129342) ((-358 . -1284) 129326) ((-44 . -646) 129310) ((-350 . -1284) 129294) ((-554 . -102) T) ((-526 . -856) 129273) ((-1055 . -1109) T) ((-823 . -458) 129252) ((-153 . -1060) 129236) ((-1055 . -1080) 129165) ((-1036 . -985) 129134) ((-825 . -1121) T) ((-1012 . -723) 129079) ((-153 . -646) 129063) ((-392 . -1121) T) ((-482 . -985) 129032) ((-469 . -985) 129001) ((-110 . -152) 128983) ((-73 . -619) 128965) ((-900 . -619) 128947) ((-1089 . -730) 128926) ((-1305 . -1058) T) ((-822 . -645) 128874) ((-298 . -1067) 128816) ((-171 . -1231) 128721) ((-227 . -1121) T) ((-328 . -23) T) ((-1177 . -1001) 128673) ((-849 . -1109) T) ((-1263 . -1065) 128578) ((-1135 . -746) 128557) ((-1261 . -927) 128536) ((-1240 . -927) 128515) ((-876 . -732) T) ((-171 . -562) 128426) ((-586 . -654) 128413) ((-570 . -654) 128400) ((-413 . -1109) T) ((-266 . -1109) T) ((-215 . -619) 128382) ((-501 . -654) 128347) ((-227 . -23) T) ((-1240 . -826) 128300) ((-1299 . -102) T) ((-359 . -1296) 128277) ((-1297 . -102) T) ((-1263 . -111) 128169) ((-821 . -1060) 128066) ((-821 . -646) 128008) ((-145 . -619) 127990) ((-1002 . -132) T) ((-44 . -102) T) ((-242 . -856) 127941) ((-1250 . -1231) 127920) ((-103 . -495) 127904) ((-1300 . -723) 127874) ((-1096 . -47) 127835) ((-1071 . -1121) T) ((-959 . -1121) T) ((-128 . -34) T) ((-122 . -34) T) ((-788 . -47) 127812) ((-786 . -47) 127784) ((-1250 . -562) 127695) ((-359 . -373) T) ((-487 . -1121) T) ((-1182 . -132) T) ((-1134 . -132) T) ((-460 . -47) 127674) ((-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) 127607) ((-598 . -1092) T) ((-592 . -1047) 127591) ((-1263 . -622) 127465) ((-487 . -23) T) ((-356 . -1067) T) ((-1221 . -907) 127446) ((-676 . -313) 127384) ((-1122 . -1284) 127354) ((-705 . -654) 127319) ((-1012 . -174) T) ((-970 . -146) 127298) ((-641 . -1109) T) ((-613 . -1109) T) ((-970 . -148) 127277) ((-1013 . -856) T) ((-741 . -148) 127256) ((-741 . -146) 127235) ((-980 . -856) T) ((-839 . -652) 127152) ((-480 . -927) 127131) ((-323 . -1060) 126966) ((-320 . -1065) 126876) ((-317 . -1065) 126805) ((-1008 . -290) 126763) ((-413 . -723) 126715) ((-323 . -646) 126556) ((-707 . -854) T) ((-1263 . -1058) T) ((-320 . -111) 126452) ((-317 . -111) 126365) ((-971 . -102) T) ((-821 . -102) 126155) ((-718 . -620) NIL) ((-718 . -619) 126137) ((-664 . -1047) 126033) ((-1263 . -330) 125977) ((-1044 . -292) 125952) ((-586 . -732) T) ((-570 . -800) T) ((-171 . -368) 125903) ((-570 . -797) T) ((-570 . -732) T) ((-501 . -732) T) ((-1155 . -495) 125887) ((-1096 . -893) NIL) ((-877 . -1121) T) ((-118 . -916) NIL) ((-1299 . -1298) 125863) ((-1297 . -1298) 125842) ((-788 . -893) NIL) ((-786 . -893) 125701) ((-1292 . -25) T) ((-1292 . -21) T) ((-1224 . -102) 125679) ((-1115 . -401) T) ((-629 . -654) 125666) ((-460 . -893) NIL) ((-681 . -102) 125644) ((-1096 . -1047) 125471) ((-877 . -23) T) ((-788 . -1047) 125330) ((-786 . -1047) 125187) ((-118 . -654) 125132) ((-460 . -1047) 125008) ((-320 . -622) 124572) ((-317 . -622) 124455) ((-396 . -652) 124424) ((-655 . -1047) 124408) ((-633 . -102) T) ((-224 . -495) 124392) ((-1277 . -34) T) ((-627 . -652) 124351) ((-293 . -1060) 124338) ((-137 . -622) 124322) ((-293 . -646) 124309) ((-641 . -723) 124293) ((-613 . -723) 124277) ((-676 . -38) 124237) ((-323 . -102) T) ((-85 . -619) 124219) ((-50 . -1047) 124203) ((-1129 . -1065) 124190) ((-1096 . -382) 124174) ((-788 . -382) 124158) ((-705 . -732) T) ((-705 . -800) T) ((-705 . -797) T) ((-587 . -1047) 124145) ((-524 . -1047) 124122) ((-60 . -57) 124084) ((-328 . -132) T) ((-320 . -1058) 123974) ((-317 . -1058) T) ((-171 . -1121) T) ((-786 . -382) 123958) ((-45 . -152) 123908) ((-1013 . -1001) 123890) ((-460 . -382) 123874) ((-413 . -174) T) ((-320 . -245) 123853) ((-317 . -245) T) ((-317 . -235) NIL) ((-298 . -1109) 123635) ((-227 . -132) T) ((-1129 . -111) 123620) ((-171 . -23) T) ((-805 . -148) 123599) ((-805 . -146) 123578) ((-254 . -645) 123484) ((-253 . -645) 123390) ((-323 . -288) 123356) ((-1166 . -520) 123289) ((-483 . -652) 123239) ((-1142 . -1109) T) ((-227 . -1069) T) ((-821 . -313) 123177) ((-1096 . -907) 123112) ((-788 . -907) 123055) ((-786 . -907) 123039) ((-1299 . -38) 123009) ((-1297 . -38) 122979) ((-1250 . -1121) T) ((-861 . -1121) T) ((-460 . -907) 122956) ((-864 . -1109) T) ((-1250 . -23) T) ((-1129 . -622) 122928) ((-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) 122829) ((-487 . -132) T) ((-577 . -23) T) ((-681 . -313) 122767) ((-641 . -767) T) ((-613 . -767) T) ((-1241 . -856) NIL) ((-1089 . -1060) 122677) ((-1012 . -294) T) ((-700 . -654) 122627) ((-254 . -21) T) ((-356 . -1109) T) ((-254 . -25) T) ((-253 . -21) T) ((-253 . -25) T) ((-153 . -38) 122611) ((-2 . -102) T) ((-917 . -927) T) ((-1089 . -646) 122479) ((-488 . -1284) 122449) ((-1129 . -1058) T) ((-717 . -311) T) ((-364 . -1060) 122401) ((-358 . -1060) 122353) ((-350 . -1060) 122305) ((-364 . -646) 122257) ((-225 . -1047) 122234) ((-358 . -646) 122186) ((-108 . -1060) 122136) ((-350 . -646) 122088) ((-298 . -723) 122030) ((-707 . -1067) T) ((-493 . -458) T) ((-413 . -520) 121942) ((-108 . -646) 121892) ((-219 . -458) T) ((-1129 . -235) T) ((-299 . -152) 121842) ((-1008 . -620) 121803) ((-1008 . -619) 121785) ((-998 . -619) 121767) ((-117 . -1067) T) ((-660 . -1065) 121751) ((-227 . -499) T) ((-405 . -619) 121733) ((-405 . -620) 121710) ((-1063 . -1284) 121680) ((-660 . -111) 121659) ((-1151 . -495) 121643) ((-1301 . -652) 121602) ((-386 . -652) 121571) ((-821 . -38) 121541) ((-63 . -447) T) ((-63 . -401) T) ((-1169 . -102) T) ((-877 . -132) T) ((-490 . -102) 121519) ((-1305 . -373) T) ((-1089 . -102) T) ((-1070 . -102) T) ((-356 . -723) 121464) ((-737 . -148) 121443) ((-737 . -146) 121422) ((-660 . -622) 121340) ((-1033 . -654) 121277) ((-529 . -1109) 121255) ((-364 . -102) T) ((-358 . -102) T) ((-350 . -102) T) ((-108 . -102) T) ((-510 . -1109) T) ((-359 . -654) 121200) ((-1182 . -645) 121148) ((-1134 . -645) 121096) ((-390 . -515) 121075) ((-839 . -854) 121054) ((-384 . -1231) T) ((-700 . -732) T) ((-1241 . -1001) 121006) ((-344 . -1067) T) ((-112 . -1227) T) ((-176 . -1067) T) ((-103 . -619) 120938) ((-1184 . -146) 120917) ((-1184 . -148) 120896) ((-384 . -562) T) ((-1183 . -148) 120875) ((-1183 . -146) 120854) ((-1177 . -146) 120761) ((-413 . -294) T) ((-1177 . -148) 120668) ((-1135 . -148) 120647) ((-1135 . -146) 120626) ((-323 . -38) 120467) ((-171 . -132) T) ((-317 . -801) NIL) ((-317 . -798) NIL) ((-660 . -1058) T) ((-48 . -654) 120432) ((-1122 . -1060) 120329) ((-900 . -622) 120306) ((-1122 . -646) 120248) ((-1176 . -102) T) ((-1003 . -102) T) ((-1002 . -21) T) ((-128 . -1019) 120232) ((-122 . -1019) 120216) ((-1002 . -25) T) ((-908 . -120) 120200) ((-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) 120179) ((-653 . -102) 120157) ((-638 . -102) T) ((-1169 . -313) 119952) ((-577 . -132) T) ((-627 . -854) 119931) ((-1166 . -495) 119915) ((-1159 . -152) 119865) ((-1155 . -619) 119827) ((-1155 . -620) 119788) ((-1033 . -797) T) ((-1033 . -800) T) ((-1033 . -732) T) ((-718 . -1065) 119611) ((-490 . -313) 119549) ((-459 . -423) 119519) ((-356 . -174) T) ((-293 . -38) 119506) ((-277 . -102) T) ((-276 . -102) T) ((-275 . -102) T) ((-274 . -102) T) ((-273 . -102) T) ((-272 . -102) T) ((-348 . -1047) 119483) ((-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) 119292) ((-676 . -233) 119276) ((-587 . -311) T) ((-524 . -311) T) ((-298 . -520) 119225) ((-108 . -313) NIL) ((-72 . -401) T) ((-1122 . -102) 119015) ((-839 . -417) 118999) ((-1129 . -801) T) ((-1129 . -798) T) ((-707 . -1109) T) ((-584 . -619) 118981) ((-384 . -368) T) ((-171 . -499) 118959) ((-224 . -619) 118891) ((-135 . -1109) T) ((-117 . -1109) T) ((-973 . -1227) T) ((-48 . -732) T) ((-1055 . -495) 118856) ((-142 . -431) 118838) ((-142 . -373) T) ((-1036 . -102) T) ((-518 . -515) 118817) ((-718 . -622) 118573) ((-482 . -102) T) ((-469 . -102) T) ((-1043 . -1121) T) ((-1234 . -619) 118555) ((-1191 . -1047) 118491) ((-1184 . -35) 118457) ((-1184 . -95) 118423) ((-1184 . -1215) 118389) ((-1184 . -1212) 118355) ((-1168 . -313) NIL) ((-89 . -402) T) ((-89 . -401) T) ((-1089 . -1161) 118334) ((-1183 . -1212) 118300) ((-1183 . -1215) 118266) ((-1043 . -23) T) ((-1183 . -95) 118232) ((-577 . -499) T) ((-1183 . -35) 118198) ((-1177 . -1212) 118164) ((-1177 . -1215) 118130) ((-1177 . -95) 118096) ((-366 . -1121) T) ((-364 . -1161) 118075) ((-358 . -1161) 118054) ((-350 . -1161) 118033) ((-1177 . -35) 117999) ((-1135 . -35) 117965) ((-1135 . -95) 117931) ((-108 . -1161) T) ((-1135 . -1215) 117897) ((-839 . -1067) 117876) ((-653 . -313) 117814) ((-638 . -313) 117665) ((-1135 . -1212) 117631) ((-718 . -1058) T) ((-1071 . -645) 117613) ((-1089 . -38) 117481) ((-959 . -645) 117429) ((-1013 . -148) T) ((-1013 . -146) NIL) ((-384 . -1121) T) ((-328 . -25) T) ((-326 . -23) T) ((-950 . -856) 117408) ((-718 . -330) 117385) ((-487 . -645) 117333) ((-40 . -1047) 117221) ((-718 . -235) T) ((-707 . -723) 117208) ((-344 . -1109) T) ((-176 . -1109) T) ((-335 . -856) T) ((-424 . -458) 117158) ((-384 . -23) T) ((-364 . -38) 117123) ((-358 . -38) 117088) ((-350 . -38) 117053) ((-80 . -447) T) ((-80 . -401) T) ((-227 . -25) T) ((-227 . -21) T) ((-842 . -1121) T) ((-108 . -38) 117003) ((-833 . -1121) T) ((-780 . -1109) T) ((-117 . -723) 116990) ((-678 . -1047) 116974) ((-618 . -102) T) ((-842 . -23) T) ((-833 . -23) T) ((-1166 . -290) 116951) ((-1122 . -313) 116889) ((-488 . -1060) 116786) ((-1111 . -237) 116770) ((-64 . -402) T) ((-64 . -401) T) ((-1160 . -102) T) ((-110 . -102) T) ((-488 . -646) 116712) ((-40 . -382) 116689) ((-96 . -102) T) ((-659 . -858) 116673) ((-1144 . -1092) T) ((-1071 . -21) T) ((-1071 . -25) T) ((-1063 . -1060) 116657) ((-821 . -233) 116626) ((-959 . -25) T) ((-959 . -21) T) ((-1063 . -646) 116568) ((-627 . -1067) T) ((-1129 . -373) T) ((-1036 . -313) 116506) ((-676 . -652) 116465) ((-487 . -25) T) ((-487 . -21) T) ((-390 . -1060) 116449) ((-896 . -619) 116431) ((-892 . -619) 116413) ((-529 . -520) 116346) ((-254 . -856) 116297) ((-253 . -856) 116248) ((-390 . -646) 116218) ((-877 . -645) 116195) ((-482 . -313) 116133) ((-469 . -313) 116071) ((-356 . -294) T) ((-1166 . -1265) 116055) ((-1151 . -619) 116017) ((-1151 . -620) 115978) ((-1149 . -102) T) ((-1008 . -1065) 115874) ((-40 . -907) 115826) ((-1166 . -610) 115803) ((-1305 . -654) 115790) ((-872 . -496) 115767) ((-1072 . -152) 115713) ((-878 . -1231) T) ((-1008 . -111) 115595) ((-344 . -723) 115579) ((-872 . -619) 115541) ((-176 . -723) 115473) ((-413 . -290) 115431) ((-878 . -562) T) ((-108 . -406) 115413) ((-84 . -389) T) ((-84 . -401) T) ((-707 . -174) T) ((-623 . -619) 115395) ((-99 . -732) T) ((-488 . -102) 115185) ((-99 . -479) T) ((-117 . -174) T) ((-1299 . -652) 115144) ((-1297 . -652) 115103) ((-1122 . -38) 115073) ((-171 . -645) 115021) ((-1063 . -102) T) ((-1008 . -622) 114911) ((-877 . -25) T) ((-821 . -240) 114890) ((-877 . -21) T) ((-824 . -102) T) ((-44 . -652) 114833) ((-420 . -102) T) ((-390 . -102) T) ((-110 . -313) NIL) ((-229 . -102) 114811) ((-128 . -1227) T) ((-122 . -1227) T) ((-823 . -1060) 114762) ((-823 . -646) 114704) ((-1043 . -132) T) ((-676 . -372) 114688) ((-153 . -652) 114647) ((-1008 . -1058) T) ((-1250 . -645) 114595) ((-1113 . -619) 114577) ((-1012 . -619) 114559) ((-521 . -23) T) ((-516 . -23) T) ((-348 . -311) T) ((-514 . -23) T) ((-326 . -132) T) ((-3 . -1109) T) ((-1012 . -620) 114543) ((-1008 . -245) 114522) ((-1008 . -235) 114501) ((-1305 . -732) T) ((-1269 . -146) 114480) ((-839 . -1109) T) ((-1269 . -148) 114459) ((-1262 . -148) 114438) ((-1262 . -146) 114417) ((-1261 . -1231) 114396) ((-1241 . -146) 114303) ((-1241 . -148) 114210) ((-1240 . -1231) 114189) ((-384 . -132) T) ((-570 . -893) 114171) ((0 . -1109) T) ((-176 . -174) T) ((-171 . -21) T) ((-171 . -25) T) ((-49 . -1109) T) ((-1263 . -654) 114076) ((-1261 . -562) 114027) ((-720 . -1121) T) ((-1240 . -562) 113978) ((-570 . -1047) 113960) ((-601 . -148) 113939) ((-601 . -146) 113918) ((-501 . -1047) 113861) ((-1144 . -1146) T) ((-87 . -389) T) ((-87 . -401) T) ((-878 . -368) T) ((-842 . -132) T) ((-833 . -132) T) ((-971 . -652) 113805) ((-720 . -23) T) ((-512 . -619) 113771) ((-508 . -619) 113753) ((-821 . -652) 113503) ((-1301 . -1067) T) ((-384 . -1069) T) ((-1035 . -1109) 113481) ((-55 . -1047) 113463) ((-908 . -34) T) ((-488 . -313) 113401) ((-598 . -102) T) ((-1166 . -620) 113362) ((-1166 . -619) 113294) ((-1188 . -1060) 113177) ((-45 . -102) T) ((-823 . -102) T) ((-1188 . -646) 113074) ((-1250 . -25) T) ((-1250 . -21) T) ((-861 . -25) T) ((-44 . -372) 113058) ((-861 . -21) T) ((-737 . -458) 113009) ((-1300 . -619) 112991) ((-1289 . -1060) 112961) ((-1063 . -313) 112899) ((-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) 112869) ((-627 . -1109) T) ((-705 . -893) 112851) ((-1277 . -1227) T) ((-229 . -313) 112789) ((-145 . -373) T) ((-1055 . -620) 112731) ((-1055 . -619) 112674) ((-317 . -916) NIL) ((-1235 . -850) T) ((-705 . -1047) 112619) ((-717 . -927) T) ((-480 . -1231) 112598) ((-1183 . -458) 112577) ((-1177 . -458) 112556) ((-334 . -102) T) ((-878 . -1121) T) ((-323 . -652) 112438) ((-320 . -654) 112259) ((-317 . -654) 112188) ((-480 . -562) 112139) ((-344 . -520) 112105) ((-556 . -152) 112055) ((-40 . -311) T) ((-849 . -619) 112037) ((-707 . -294) T) ((-878 . -23) T) ((-384 . -499) T) ((-1089 . -233) 112007) ((-518 . -102) T) ((-413 . -620) 111814) ((-413 . -619) 111796) ((-266 . -619) 111778) ((-117 . -294) T) ((-1263 . -732) T) ((-1261 . -368) 111757) ((-1240 . -368) 111736) ((-1290 . -34) T) ((-1235 . -1109) T) ((-118 . -1227) T) ((-108 . -233) 111718) ((-1188 . -102) T) ((-483 . -1109) T) ((-529 . -495) 111702) ((-743 . -34) T) ((-659 . -1060) 111686) ((-488 . -38) 111656) ((-659 . -646) 111626) ((-142 . -34) T) ((-118 . -891) 111603) ((-118 . -893) NIL) ((-629 . -1047) 111486) ((-650 . -856) 111465) ((-1289 . -102) T) ((-299 . -102) T) ((-718 . -373) 111444) ((-118 . -1047) 111421) ((-396 . -723) 111405) ((-627 . -723) 111389) ((-45 . -313) 111193) ((-822 . -146) 111172) ((-822 . -148) 111151) ((-293 . -652) 111123) ((-1300 . -387) 111102) ((-825 . -856) T) ((-1279 . -1109) T) ((-1169 . -231) 111049) ((-392 . -856) 111028) ((-1269 . -1215) 110994) ((-1269 . -1212) 110960) ((-1262 . -1212) 110926) ((-521 . -132) T) ((-1262 . -1215) 110892) ((-1241 . -1212) 110858) ((-1241 . -1215) 110824) ((-1269 . -35) 110790) ((-1269 . -95) 110756) ((-641 . -619) 110725) ((-613 . -619) 110694) ((-227 . -856) T) ((-1262 . -95) 110660) ((-1262 . -35) 110626) ((-1261 . -1121) T) ((-1129 . -654) 110613) ((-1241 . -95) 110579) ((-1240 . -1121) T) ((-599 . -152) 110561) ((-1089 . -354) 110540) ((-176 . -294) T) ((-118 . -382) 110517) ((-118 . -343) 110494) ((-1241 . -35) 110460) ((-876 . -311) T) ((-317 . -800) NIL) ((-317 . -797) NIL) ((-320 . -732) 110309) ((-317 . -732) T) ((-480 . -368) 110288) ((-364 . -354) 110267) ((-358 . -354) 110246) ((-350 . -354) 110225) ((-320 . -479) 110204) ((-1261 . -23) T) ((-1240 . -23) T) ((-724 . -1121) T) ((-720 . -132) T) ((-659 . -102) T) ((-483 . -723) 110169) ((-45 . -286) 110119) ((-105 . -1109) T) ((-68 . -619) 110101) ((-979 . -102) T) ((-870 . -102) T) ((-629 . -907) 110060) ((-1301 . -1109) T) ((-386 . -1109) T) ((-82 . -1227) T) ((-1226 . -1109) T) ((-1071 . -856) T) ((-118 . -907) NIL) ((-788 . -927) 110039) ((-719 . -856) T) ((-537 . -1109) T) ((-506 . -1109) T) ((-360 . -1231) T) ((-357 . -1231) T) ((-349 . -1231) T) ((-267 . -1231) 110018) ((-249 . -1231) 109997) ((-539 . -866) T) ((-1122 . -233) 109966) ((-1168 . -834) T) ((-1151 . -1065) 109950) ((-396 . -767) T) ((-700 . -1227) T) ((-697 . -1047) 109934) ((-360 . -562) T) ((-357 . -562) T) ((-349 . -562) T) ((-267 . -562) 109865) ((-249 . -562) 109796) ((-531 . -1092) T) ((-1151 . -111) 109775) ((-459 . -750) 109745) ((-872 . -1065) 109715) ((-823 . -38) 109657) ((-700 . -891) 109639) ((-700 . -893) 109621) ((-299 . -313) 109425) ((-917 . -1231) T) ((-1166 . -292) 109402) ((-1089 . -652) 109297) ((-676 . -417) 109281) ((-872 . -111) 109246) ((-1013 . -458) T) ((-700 . -1047) 109191) ((-917 . -562) T) ((-539 . -619) 109173) ((-587 . -927) T) ((-493 . -1060) 109123) ((-480 . -1121) T) ((-524 . -927) T) ((-921 . -458) T) ((-65 . -619) 109105) ((-219 . -1060) 109055) ((-493 . -646) 109005) ((-364 . -652) 108942) ((-358 . -652) 108879) ((-350 . -652) 108816) ((-638 . -231) 108762) ((-219 . -646) 108712) ((-108 . -652) 108662) ((-480 . -23) T) ((-1129 . -800) T) ((-878 . -132) T) ((-1129 . -797) T) ((-1292 . -1294) 108641) ((-1129 . -732) T) ((-660 . -654) 108615) ((-298 . -619) 108356) ((-1151 . -622) 108274) ((-1044 . -34) T) ((-821 . -854) 108253) ((-586 . -311) T) ((-570 . -311) T) ((-501 . -311) T) ((-1301 . -723) 108223) ((-700 . -382) 108205) ((-700 . -343) 108187) ((-483 . -174) T) ((-386 . -723) 108157) ((-872 . -622) 108092) ((-877 . -856) NIL) ((-570 . -1031) T) ((-501 . -1031) T) ((-1142 . -619) 108074) ((-1122 . -240) 108053) ((-216 . -102) T) ((-1159 . -102) T) ((-71 . -619) 108035) ((-1151 . -1058) T) ((-1188 . -38) 107932) ((-864 . -619) 107914) ((-570 . -551) T) ((-676 . -1067) T) ((-737 . -956) 107867) ((-1151 . -235) 107846) ((-1091 . -1109) T) ((-1043 . -25) T) ((-1043 . -21) T) ((-1012 . -1065) 107791) ((-912 . -102) T) ((-872 . -1058) T) ((-700 . -907) NIL) ((-360 . -333) 107775) ((-360 . -368) T) ((-357 . -333) 107759) ((-357 . -368) T) ((-349 . -333) 107743) ((-349 . -368) T) ((-493 . -102) T) ((-1289 . -38) 107713) ((-552 . -856) T) ((-529 . -693) 107663) ((-219 . -102) T) ((-1033 . -1047) 107543) ((-1012 . -111) 107472) ((-1184 . -982) 107441) ((-526 . -152) 107425) ((-1089 . -375) 107404) ((-356 . -619) 107386) ((-326 . -21) T) ((-359 . -1047) 107363) ((-326 . -25) T) ((-1183 . -982) 107325) ((-1177 . -982) 107294) ((-76 . -619) 107276) ((-1135 . -982) 107243) ((-705 . -311) T) ((-130 . -850) T) ((-917 . -368) T) ((-384 . -25) T) ((-384 . -21) T) ((-917 . -333) 107230) ((-86 . -619) 107212) ((-705 . -1031) T) ((-683 . -856) T) ((-1261 . -132) T) ((-1240 . -132) T) ((-908 . -1019) 107196) ((-842 . -21) T) ((-48 . -1047) 107139) ((-842 . -25) T) ((-833 . -25) T) ((-833 . -21) T) ((-1122 . -652) 106889) ((-1299 . -1067) T) ((-555 . -102) T) ((-1297 . -1067) T) ((-660 . -732) T) ((-1113 . -624) 106792) ((-1012 . -622) 106722) ((-1300 . -1065) 106706) ((-821 . -417) 106675) ((-103 . -120) 106659) ((-130 . -1109) T) ((-52 . -1109) T) ((-933 . -619) 106641) ((-877 . -1001) 106618) ((-829 . -102) T) ((-1300 . -111) 106597) ((-659 . -38) 106567) ((-577 . -856) T) ((-360 . -1121) T) ((-357 . -1121) T) ((-349 . -1121) T) ((-267 . -1121) T) ((-249 . -1121) T) ((-629 . -311) 106546) ((-1159 . -313) 106350) ((-670 . -23) T) ((-530 . -1092) T) ((-315 . -1109) T) ((-488 . -233) 106319) ((-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) 106298) ((-1166 . -622) 106275) ((-1012 . -235) 106247) ((-1012 . -245) T) ((-118 . -1031) NIL) ((-917 . -1121) T) ((-1262 . -458) 106226) ((-1241 . -458) 106205) ((-529 . -619) 106137) ((-718 . -654) 106062) ((-413 . -1065) 106014) ((-510 . -619) 105996) ((-917 . -23) T) ((-493 . -313) NIL) ((-1300 . -622) 105952) ((-480 . -132) T) ((-219 . -313) NIL) ((-413 . -111) 105890) ((-821 . -1067) 105820) ((-743 . -1107) 105804) ((-1261 . -499) 105770) ((-1240 . -499) 105736) ((-554 . -850) T) ((-142 . -1107) 105718) ((-483 . -294) T) ((-1300 . -1058) T) ((-1232 . -102) T) ((-1072 . -102) T) ((-849 . -622) 105586) ((-506 . -520) NIL) ((-488 . -240) 105565) ((-413 . -622) 105463) ((-970 . -1060) 105346) ((-741 . -1060) 105316) ((-970 . -646) 105213) ((-1182 . -146) 105192) ((-741 . -646) 105162) ((-459 . -1060) 105132) ((-1182 . -148) 105111) ((-1134 . -148) 105090) ((-1134 . -146) 105069) ((-641 . -1065) 105053) ((-613 . -1065) 105037) ((-459 . -646) 105007) ((-1184 . -1268) 104991) ((-1184 . -1255) 104968) ((-676 . -1109) T) ((-676 . -1062) 104908) ((-1183 . -1260) 104869) ((-554 . -1109) T) ((-493 . -1161) T) ((-1183 . -1255) 104839) ((-1183 . -1258) 104823) ((-1177 . -1239) 104784) ((-219 . -1161) T) ((-348 . -927) T) ((-824 . -269) 104768) ((-641 . -111) 104747) ((-613 . -111) 104726) ((-1177 . -1255) 104703) ((-849 . -1058) 104682) ((-1177 . -1237) 104666) ((-521 . -25) T) ((-501 . -306) T) ((-517 . -23) T) ((-516 . -25) T) ((-514 . -25) T) ((-513 . -23) T) ((-424 . -1060) 104640) ((-413 . -1058) T) ((-323 . -1067) T) ((-700 . -311) T) ((-424 . -646) 104614) ((-108 . -854) T) ((-718 . -732) T) ((-413 . -245) T) ((-413 . -235) 104593) ((-493 . -38) 104543) ((-219 . -38) 104493) ((-480 . -499) 104459) ((-1234 . -373) T) ((-1168 . -1153) T) ((-1110 . -102) T) ((-707 . -619) 104441) ((-707 . -620) 104356) ((-720 . -21) T) ((-720 . -25) T) ((-1144 . -102) T) ((-488 . -652) 104106) ((-135 . -619) 104088) ((-117 . -619) 104070) ((-158 . -25) T) ((-1299 . -1109) T) ((-878 . -645) 104018) ((-1297 . -1109) T) ((-970 . -102) T) ((-741 . -102) T) ((-721 . -102) T) ((-459 . -102) T) ((-822 . -458) 103969) ((-44 . -1109) T) ((-1097 . -856) T) ((-1072 . -313) 103820) ((-670 . -132) T) ((-1063 . -652) 103789) ((-676 . -723) 103773) ((-293 . -1067) T) ((-360 . -132) T) ((-357 . -132) T) ((-349 . -132) T) ((-267 . -132) T) ((-249 . -132) T) ((-390 . -652) 103742) ((-424 . -102) T) ((-153 . -1109) T) ((-45 . -231) 103692) ((-805 . -1060) 103676) ((-965 . -856) 103655) ((-1008 . -654) 103593) ((-805 . -646) 103577) ((-242 . -1284) 103547) ((-1033 . -311) T) ((-298 . -1065) 103468) ((-917 . -132) T) ((-40 . -927) T) ((-493 . -406) 103450) ((-359 . -311) T) ((-219 . -406) 103432) ((-1089 . -417) 103416) ((-298 . -111) 103332) ((-1193 . -856) T) ((-1192 . -856) T) ((-878 . -25) T) ((-878 . -21) T) ((-344 . -619) 103314) ((-1263 . -47) 103258) ((-227 . -148) T) ((-176 . -619) 103240) ((-1122 . -854) 103219) ((-780 . -619) 103201) ((-129 . -856) T) ((-614 . -237) 103148) ((-481 . -237) 103098) ((-1299 . -723) 103068) ((-48 . -311) T) ((-1297 . -723) 103038) ((-65 . -622) 102967) ((-971 . -1109) T) ((-821 . -1109) 102757) ((-316 . -102) T) ((-908 . -1227) T) ((-48 . -1031) T) ((-1240 . -645) 102665) ((-695 . -102) 102643) ((-44 . -723) 102627) ((-556 . -102) T) ((-298 . -622) 102558) ((-67 . -388) T) ((-67 . -401) T) ((-668 . -23) T) ((-823 . -652) 102494) ((-676 . -767) T) ((-1224 . -1109) 102472) ((-356 . -1065) 102417) ((-681 . -1109) 102395) ((-1071 . -148) T) ((-959 . -148) 102374) ((-959 . -146) 102353) ((-805 . -102) T) ((-153 . -723) 102337) ((-487 . -148) 102316) ((-487 . -146) 102295) ((-356 . -111) 102224) ((-1089 . -1067) T) ((-326 . -856) 102203) ((-1269 . -982) 102172) ((-633 . -1109) T) ((-1262 . -982) 102134) ((-517 . -132) T) ((-513 . -132) T) ((-299 . -231) 102084) ((-364 . -1067) T) ((-358 . -1067) T) ((-350 . -1067) T) ((-298 . -1058) 102026) ((-1241 . -982) 101995) ((-384 . -856) T) ((-108 . -1067) T) ((-1008 . -732) T) ((-876 . -927) T) ((-849 . -801) 101974) ((-849 . -798) 101953) ((-424 . -313) 101892) ((-474 . -102) T) ((-601 . -982) 101861) ((-323 . -1109) T) ((-413 . -801) 101840) ((-413 . -798) 101819) ((-506 . -495) 101801) ((-1263 . -1047) 101767) ((-1261 . -21) T) ((-1261 . -25) T) ((-1240 . -21) T) ((-1240 . -25) T) ((-821 . -723) 101709) ((-356 . -622) 101639) ((-705 . -410) T) ((-1290 . -1227) T) ((-612 . -102) T) ((-1122 . -417) 101608) ((-1012 . -373) NIL) ((-677 . -102) T) ((-182 . -102) T) ((-162 . -102) T) ((-157 . -102) T) ((-155 . -102) T) ((-103 . -34) T) ((-1188 . -652) 101518) ((-743 . -1227) T) ((-737 . -1060) 101361) ((-44 . -767) T) ((-737 . -646) 101210) ((-599 . -102) T) ((-77 . -402) T) ((-77 . -401) T) ((-659 . -662) 101194) ((-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) 101127) ((-1289 . -652) 101072) ((-695 . -313) 101010) ((-970 . -38) 100907) ((-1190 . -619) 100889) ((-741 . -38) 100859) ((-556 . -313) 100663) ((-1184 . -1060) 100546) ((-320 . -1227) T) ((-356 . -235) T) ((-356 . -245) T) ((-317 . -1227) T) ((-293 . -1109) T) ((-1183 . -1060) 100381) ((-1177 . -1060) 100171) ((-1135 . -1060) 100054) ((-1184 . -646) 99951) ((-1183 . -646) 99792) ((-717 . -1231) T) ((-1177 . -646) 99588) ((-1166 . -657) 99572) ((-1135 . -646) 99469) ((-1221 . -562) 99448) ((-825 . -391) 99432) ((-717 . -562) T) ((-320 . -891) 99416) ((-320 . -893) 99341) ((-317 . -891) 99302) ((-317 . -893) NIL) ((-805 . -313) 99267) ((-323 . -723) 99108) ((-392 . -391) 99092) ((-328 . -327) 99069) ((-491 . -102) T) ((-480 . -25) T) ((-480 . -21) T) ((-424 . -38) 99043) ((-320 . -1047) 98706) ((-227 . -1212) T) ((-227 . -1215) T) ((-3 . -619) 98688) ((-317 . -1047) 98618) ((-2 . -1109) T) ((-2 . |RecordCategory|) T) ((-839 . -619) 98600) ((-1122 . -1067) 98530) ((-586 . -927) T) ((-570 . -826) T) ((-570 . -927) T) ((-501 . -927) T) ((-137 . -1047) 98514) ((-227 . -95) T) ((-171 . -148) 98493) ((-75 . -447) T) ((0 . -619) 98475) ((-75 . -401) T) ((-171 . -146) 98426) ((-227 . -35) T) ((-49 . -619) 98408) ((-483 . -1067) T) ((-493 . -233) 98390) ((-490 . -977) 98374) ((-488 . -854) 98353) ((-219 . -233) 98335) ((-81 . -447) T) ((-81 . -401) T) ((-1155 . -34) T) ((-821 . -174) 98314) ((-737 . -102) T) ((-659 . -652) 98273) ((-1035 . -619) 98240) ((-506 . -290) 98215) ((-320 . -382) 98184) ((-317 . -382) 98145) ((-317 . -343) 98106) ((-1094 . -619) 98088) ((-822 . -956) 98035) ((-668 . -132) T) ((-1250 . -146) 98014) ((-1250 . -148) 97993) ((-1184 . -102) T) ((-1183 . -102) T) ((-1177 . -102) T) ((-1169 . -1109) T) ((-1135 . -102) T) ((-224 . -34) T) ((-293 . -723) 97980) ((-1169 . -616) 97956) ((-599 . -313) NIL) ((-490 . -1109) 97934) ((-1159 . -231) 97884) ((-396 . -619) 97866) ((-516 . -856) T) ((-1129 . -1227) T) ((-1269 . -1268) 97850) ((-1269 . -1255) 97827) ((-1262 . -1260) 97788) ((-1262 . -1255) 97758) ((-1262 . -1258) 97742) ((-1241 . -1239) 97703) ((-1241 . -1255) 97680) ((-627 . -619) 97662) ((-1241 . -1237) 97646) ((-705 . -927) T) ((-1184 . -288) 97612) ((-1183 . -288) 97578) ((-1177 . -288) 97544) ((-1089 . -1109) T) ((-1070 . -1109) T) ((-48 . -306) T) ((-320 . -907) 97510) ((-317 . -907) NIL) ((-1070 . -1077) 97489) ((-1129 . -893) 97471) ((-805 . -38) 97455) ((-267 . -645) 97403) ((-249 . -645) 97351) ((-707 . -1065) 97338) ((-601 . -1255) 97315) ((-1135 . -288) 97281) ((-323 . -174) 97212) ((-364 . -1109) T) ((-358 . -1109) T) ((-350 . -1109) T) ((-506 . -19) 97194) ((-1129 . -1047) 97176) ((-1111 . -152) 97160) ((-108 . -1109) T) ((-117 . -1065) 97147) ((-717 . -368) T) ((-506 . -610) 97122) ((-707 . -111) 97107) ((-442 . -102) T) ((-882 . -1272) T) ((-252 . -102) T) ((-45 . -1158) 97057) ((-117 . -111) 97042) ((-641 . -726) T) ((-613 . -726) T) ((-1279 . -619) 97024) ((-1235 . -619) 97006) ((-1233 . -856) T) ((-821 . -520) 96939) ((-1044 . -1227) T) ((-242 . -1060) 96836) ((-1221 . -1121) T) ((-1221 . -23) T) ((-950 . -152) 96820) ((-1182 . -458) 96751) ((-1177 . -313) 96636) ((-242 . -646) 96578) ((-1176 . -1109) T) ((-1168 . -1109) T) ((-1151 . -654) 96552) ((-531 . -102) T) ((-526 . -102) 96502) ((-1135 . -313) 96489) ((-1134 . -458) 96440) ((-1096 . -1231) 96419) ((-788 . -1231) 96398) ((-786 . -1231) 96377) ((-62 . -1227) T) ((-483 . -619) 96329) ((-483 . -620) 96251) ((-1096 . -562) 96182) ((-1003 . -1109) T) ((-788 . -562) 96093) ((-786 . -562) 96024) ((-488 . -417) 95993) ((-629 . -927) 95972) ((-460 . -1231) 95951) ((-737 . -313) 95938) ((-707 . -622) 95910) ((-404 . -619) 95892) ((-681 . -520) 95825) ((-670 . -25) T) ((-670 . -21) T) ((-460 . -562) 95756) ((-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) 95738) ((-117 . -622) 95710) ((-1089 . -723) 95578) ((-1013 . -1060) 95528) ((-1013 . -646) 95478) ((-950 . -989) 95462) ((-921 . -646) 95414) ((-921 . -1060) 95366) ((-917 . -21) T) ((-917 . -25) T) ((-878 . -856) 95317) ((-872 . -654) 95277) ((-717 . -1121) T) ((-717 . -23) T) ((-293 . -174) T) ((-707 . -1058) T) ((-315 . -93) T) ((-707 . -235) T) ((-653 . -1109) 95255) ((-638 . -616) 95230) ((-638 . -1109) T) ((-587 . -1231) T) ((-587 . -562) T) ((-524 . -1231) T) ((-524 . -562) T) ((-493 . -652) 95180) ((-433 . -1060) 95164) ((-433 . -646) 95148) ((-364 . -723) 95100) ((-358 . -723) 95052) ((-344 . -1065) 95036) ((-350 . -723) 94988) ((-344 . -111) 94967) ((-176 . -1065) 94899) ((-219 . -652) 94849) ((-176 . -111) 94760) ((-108 . -723) 94710) ((-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) 94688) ((-171 . -1212) 94666) ((-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) 94456) ((-171 . -35) 94434) ((-171 . -95) 94412) ((-660 . -1047) 94308) ((-488 . -1067) 94238) ((-1122 . -1109) 94028) ((-1151 . -34) T) ((-676 . -495) 94012) ((-73 . -1227) T) ((-105 . -619) 93994) ((-1301 . -619) 93976) ((-386 . -619) 93958) ((-344 . -622) 93910) ((-176 . -622) 93827) ((-1226 . -496) 93808) ((-737 . -38) 93657) ((-577 . -1215) T) ((-577 . -1212) T) ((-537 . -619) 93639) ((-526 . -313) 93577) ((-506 . -619) 93559) ((-506 . -620) 93541) ((-1226 . -619) 93507) ((-1177 . -1161) NIL) ((-1036 . -1080) 93476) ((-1036 . -1109) T) ((-1013 . -102) T) ((-980 . -102) T) ((-921 . -102) T) ((-900 . -1047) 93453) ((-1151 . -732) T) ((-1012 . -654) 93398) ((-482 . -1109) T) ((-469 . -1109) T) ((-592 . -23) T) ((-577 . -35) T) ((-577 . -95) T) ((-433 . -102) T) ((-1072 . -231) 93344) ((-1184 . -38) 93241) ((-872 . -732) T) ((-700 . -927) T) ((-517 . -25) T) ((-513 . -21) T) ((-513 . -25) T) ((-1183 . -38) 93082) ((-344 . -1058) T) ((-1177 . -38) 92878) ((-1089 . -174) T) ((-176 . -1058) T) ((-1135 . -38) 92775) ((-718 . -47) 92752) ((-364 . -174) T) ((-358 . -174) T) ((-525 . -57) 92726) ((-503 . -57) 92676) ((-356 . -1296) 92653) ((-227 . -458) T) ((-323 . -294) 92604) ((-350 . -174) T) ((-176 . -245) T) ((-1240 . -856) 92503) ((-108 . -174) T) ((-878 . -1001) 92487) ((-664 . -1121) T) ((-587 . -368) T) ((-587 . -333) 92474) ((-524 . -333) 92451) ((-524 . -368) T) ((-320 . -311) 92430) ((-317 . -311) T) ((-608 . -856) 92409) ((-1122 . -723) 92351) ((-526 . -286) 92335) ((-664 . -23) T) ((-424 . -233) 92319) ((-317 . -1031) NIL) ((-341 . -23) T) ((-103 . -1019) 92303) ((-45 . -36) 92282) ((-618 . -1109) T) ((-356 . -373) T) ((-530 . -102) T) ((-501 . -27) T) ((-242 . -313) 92220) ((-1096 . -1121) T) ((-1300 . -654) 92194) ((-788 . -1121) T) ((-786 . -1121) T) ((-460 . -1121) T) ((-1071 . -458) T) ((-1160 . -1109) T) ((-959 . -458) 92145) ((-1124 . -1092) T) ((-110 . -1109) T) ((-1096 . -23) T) ((-823 . -1067) T) ((-788 . -23) T) ((-786 . -23) T) ((-487 . -458) 92096) ((-1169 . -520) 91879) ((-386 . -387) 91858) ((-1188 . -417) 91842) ((-467 . -23) T) ((-460 . -23) T) ((-96 . -1109) T) ((-490 . -520) 91775) ((-1269 . -1060) 91658) ((-1269 . -646) 91555) ((-1262 . -646) 91396) ((-1262 . -1060) 91231) ((-293 . -294) T) ((-1241 . -1060) 91021) ((-1091 . -619) 91003) ((-1091 . -620) 90984) ((-413 . -916) 90963) ((-1241 . -646) 90759) ((-50 . -1121) T) ((-1221 . -132) T) ((-1033 . -927) T) ((-1012 . -732) T) ((-849 . -654) 90732) ((-718 . -893) NIL) ((-602 . -1060) 90692) ((-587 . -1121) T) ((-524 . -1121) T) ((-601 . -1060) 90575) ((-1177 . -406) 90527) ((-1013 . -313) NIL) ((-821 . -495) 90511) ((-602 . -646) 90484) ((-359 . -927) T) ((-601 . -646) 90381) ((-1166 . -34) T) ((-413 . -654) 90333) ((-50 . -23) T) ((-717 . -132) T) ((-718 . -1047) 90213) ((-587 . -23) T) ((-108 . -520) NIL) ((-524 . -23) T) ((-171 . -415) 90184) ((-1149 . -1109) T) ((-1292 . -1291) 90168) ((-707 . -801) T) ((-707 . -798) T) ((-1129 . -311) T) ((-384 . -148) T) ((-284 . -619) 90150) ((-283 . -619) 90132) ((-1240 . -1001) 90102) ((-48 . -927) T) ((-681 . -495) 90086) ((-254 . -1284) 90056) ((-253 . -1284) 90026) ((-1186 . -856) T) ((-1122 . -174) 90005) ((-1129 . -1031) T) ((-1055 . -34) T) ((-842 . -148) 89984) ((-842 . -146) 89963) ((-743 . -107) 89947) ((-618 . -133) T) ((-488 . -1109) 89737) ((-1188 . -1067) T) ((-877 . -458) T) ((-85 . -1227) T) ((-242 . -38) 89707) ((-142 . -107) 89689) ((-718 . -382) 89673) ((-839 . -622) 89541) ((-1300 . -732) T) ((-1289 . -1067) T) ((-1129 . -551) T) ((-585 . -102) T) ((-130 . -496) 89523) ((-1269 . -102) T) ((-396 . -1065) 89507) ((-1262 . -102) T) ((-1182 . -956) 89476) ((-130 . -619) 89443) ((-52 . -619) 89425) ((-1134 . -956) 89392) ((-659 . -417) 89376) ((-1241 . -102) T) ((-1168 . -520) NIL) ((-668 . -25) T) ((-627 . -1065) 89360) ((-668 . -21) T) ((-970 . -652) 89270) ((-741 . -652) 89215) ((-721 . -652) 89187) ((-396 . -111) 89166) ((-224 . -257) 89150) ((-1063 . -1062) 89090) ((-1063 . -1109) T) ((-1013 . -1161) T) ((-824 . -1109) T) ((-459 . -652) 89005) ((-348 . -1231) T) ((-641 . -654) 88989) ((-627 . -111) 88968) ((-613 . -654) 88952) ((-602 . -102) T) ((-315 . -496) 88933) ((-592 . -132) T) ((-601 . -102) T) ((-420 . -1109) T) ((-390 . -1109) T) ((-315 . -619) 88899) ((-229 . -1109) 88877) ((-653 . -520) 88810) ((-638 . -520) 88654) ((-839 . -1058) 88633) ((-650 . -152) 88617) ((-348 . -562) T) ((-718 . -907) 88560) ((-556 . -231) 88510) ((-1269 . -288) 88476) ((-1262 . -288) 88442) ((-1089 . -294) 88393) ((-493 . -854) T) ((-225 . -1121) T) ((-1241 . -288) 88359) ((-1221 . -499) 88325) ((-1013 . -38) 88275) ((-219 . -854) T) ((-424 . -652) 88234) ((-921 . -38) 88186) ((-849 . -800) 88165) ((-849 . -797) 88144) ((-849 . -732) 88123) ((-364 . -294) T) ((-358 . -294) T) ((-350 . -294) T) ((-171 . -458) 88054) ((-433 . -38) 88038) ((-108 . -294) T) ((-225 . -23) T) ((-413 . -800) 88017) ((-413 . -797) 87996) ((-413 . -732) T) ((-506 . -292) 87971) ((-483 . -1065) 87936) ((-664 . -132) T) ((-627 . -622) 87905) ((-1122 . -520) 87838) ((-341 . -132) T) ((-171 . -408) 87817) ((-488 . -723) 87759) ((-821 . -290) 87736) ((-483 . -111) 87692) ((-659 . -1067) T) ((-822 . -1060) 87535) ((-1288 . -1092) T) ((-1250 . -458) 87466) ((-822 . -646) 87315) ((-1287 . -1092) T) ((-1096 . -132) T) ((-1063 . -723) 87257) ((-788 . -132) T) ((-786 . -132) T) ((-577 . -458) T) ((-1036 . -520) 87190) ((-627 . -1058) T) ((-598 . -1109) T) ((-539 . -175) T) ((-467 . -132) T) ((-460 . -132) T) ((-45 . -1109) T) ((-390 . -723) 87160) ((-823 . -1109) T) ((-482 . -520) 87093) ((-469 . -520) 87026) ((-459 . -372) 86996) ((-45 . -616) 86975) ((-320 . -306) T) ((-483 . -622) 86925) ((-1241 . -313) 86810) ((-676 . -619) 86772) ((-59 . -856) 86751) ((-1013 . -406) 86733) ((-554 . -619) 86715) ((-805 . -652) 86674) ((-821 . -610) 86651) ((-522 . -856) 86630) ((-502 . -856) 86609) ((-40 . -1231) T) ((-1008 . -1047) 86505) ((-50 . -132) T) ((-587 . -132) T) ((-524 . -132) T) ((-298 . -654) 86365) ((-348 . -333) 86342) ((-348 . -368) T) ((-326 . -327) 86319) ((-323 . -290) 86304) ((-40 . -562) T) ((-384 . -1212) T) ((-384 . -1215) T) ((-1044 . -1203) 86279) ((-1199 . -237) 86229) ((-1177 . -233) 86181) ((-334 . -1109) T) ((-384 . -95) T) ((-384 . -35) T) ((-1044 . -107) 86127) ((-483 . -1058) T) ((-1301 . -1065) 86111) ((-485 . -237) 86061) ((-1169 . -495) 85995) ((-1292 . -1060) 85979) ((-386 . -1065) 85963) ((-1292 . -646) 85933) ((-483 . -245) T) ((-822 . -102) T) ((-720 . -148) 85912) ((-720 . -146) 85891) ((-490 . -495) 85875) ((-491 . -340) 85844) ((-1301 . -111) 85823) ((-518 . -1109) T) ((-488 . -174) 85802) ((-1008 . -382) 85786) ((-419 . -102) T) ((-386 . -111) 85765) ((-1008 . -343) 85749) ((-282 . -992) 85733) ((-281 . -992) 85717) ((-1299 . -619) 85699) ((-1297 . -619) 85681) ((-110 . -520) NIL) ((-1182 . -1253) 85665) ((-860 . -858) 85649) ((-1188 . -1109) T) ((-103 . -1227) T) ((-959 . -956) 85610) ((-823 . -723) 85552) ((-1241 . -1161) NIL) ((-487 . -956) 85497) ((-1071 . -144) T) ((-60 . -102) 85475) ((-44 . -619) 85457) ((-78 . -619) 85439) ((-356 . -654) 85384) ((-1289 . -1109) T) ((-517 . -856) T) ((-348 . -1121) T) ((-299 . -1109) T) ((-1008 . -907) 85343) ((-299 . -616) 85322) ((-1301 . -622) 85271) ((-1269 . -38) 85168) ((-1262 . -38) 85009) ((-1241 . -38) 84805) ((-493 . -1067) T) ((-386 . -622) 84789) ((-219 . -1067) T) ((-348 . -23) T) ((-153 . -619) 84771) ((-839 . -801) 84750) ((-839 . -798) 84729) ((-1226 . -622) 84710) ((-602 . -38) 84683) ((-601 . -38) 84580) ((-876 . -562) T) ((-225 . -132) T) ((-323 . -1011) 84546) ((-79 . -619) 84528) ((-718 . -311) 84507) ((-298 . -732) 84409) ((-830 . -102) T) ((-870 . -850) T) ((-298 . -479) 84388) ((-1292 . -102) T) ((-40 . -368) T) ((-878 . -148) 84367) ((-491 . -652) 84349) ((-878 . -146) 84328) ((-1168 . -495) 84310) ((-1301 . -1058) T) ((-488 . -520) 84243) ((-1155 . -1227) T) ((-971 . -619) 84225) ((-653 . -495) 84209) ((-638 . -495) 84140) ((-821 . -619) 83871) ((-48 . -27) T) ((-1188 . -723) 83768) ((-659 . -1109) T) ((-867 . -866) T) ((-442 . -369) 83742) ((-737 . -652) 83652) ((-1111 . -102) T) ((-979 . -1109) T) ((-870 . -1109) T) ((-822 . -313) 83639) ((-539 . -533) T) ((-539 . -582) T) ((-1297 . -387) 83611) ((-1063 . -520) 83544) ((-1169 . -290) 83520) ((-242 . -233) 83489) ((-254 . -1060) 83386) ((-253 . -1060) 83283) ((-1289 . -723) 83253) ((-1176 . -93) T) ((-1003 . -93) T) ((-823 . -174) 83232) ((-254 . -646) 83174) ((-253 . -646) 83116) ((-1224 . -496) 83093) ((-229 . -520) 83026) ((-627 . -801) 83005) ((-627 . -798) 82984) ((-1224 . -619) 82896) ((-224 . -1227) T) ((-681 . -619) 82828) ((-1184 . -652) 82738) ((-1166 . -1019) 82722) ((-950 . -102) 82672) ((-356 . -732) T) ((-867 . -619) 82654) ((-1183 . -652) 82536) ((-1177 . -652) 82373) ((-1135 . -652) 82283) ((-1241 . -406) 82235) ((-1122 . -495) 82219) ((-60 . -313) 82157) ((-335 . -102) T) ((-1221 . -21) T) ((-1221 . -25) T) ((-40 . -1121) T) ((-717 . -21) T) ((-633 . -619) 82139) ((-521 . -327) 82118) ((-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) 82100) ((-1013 . -233) 82082) ((-171 . -167) 82066) ((-586 . -562) T) ((-570 . -562) T) ((-501 . -562) T) ((-777 . -23) T) ((-1261 . -148) 82045) ((-1169 . -610) 82021) ((-1261 . -146) 82000) ((-1036 . -495) 81984) ((-1240 . -146) 81909) ((-1240 . -148) 81834) ((-1292 . -1298) 81813) ((-482 . -495) 81797) ((-469 . -495) 81781) ((-529 . -34) T) ((-659 . -723) 81751) ((-112 . -976) T) ((-668 . -856) 81730) ((-1188 . -174) 81681) ((-370 . -102) T) ((-242 . -240) 81660) ((-254 . -102) T) ((-253 . -102) T) ((-1250 . -956) 81629) ((-247 . -856) 81608) ((-822 . -38) 81457) ((-45 . -520) 81249) ((-1168 . -290) 81224) ((-216 . -1109) T) ((-1159 . -1109) T) ((-1159 . -616) 81203) ((-592 . -25) T) ((-592 . -21) T) ((-1111 . -313) 81141) ((-970 . -417) 81125) ((-705 . -1231) T) ((-638 . -290) 81100) ((-1096 . -645) 81048) ((-788 . -645) 80996) ((-786 . -645) 80944) ((-348 . -132) T) ((-293 . -619) 80926) ((-912 . -1109) T) ((-705 . -562) T) ((-130 . -622) 80908) ((-876 . -1121) T) ((-460 . -645) 80856) ((-912 . -910) 80840) ((-384 . -458) T) ((-493 . -1109) T) ((-950 . -313) 80778) ((-707 . -654) 80765) ((-555 . -850) T) ((-219 . -1109) T) ((-320 . -927) 80744) ((-317 . -927) T) ((-317 . -826) NIL) ((-396 . -726) T) ((-876 . -23) T) ((-117 . -654) 80731) ((-480 . -146) 80710) ((-424 . -417) 80694) ((-480 . -148) 80673) ((-110 . -495) 80655) ((-315 . -622) 80636) ((-2 . -619) 80618) ((-188 . -102) T) ((-1168 . -19) 80600) ((-1168 . -610) 80575) ((-664 . -21) T) ((-664 . -25) T) ((-599 . -1153) T) ((-1122 . -290) 80552) ((-341 . -25) T) ((-341 . -21) T) ((-242 . -652) 80302) ((-501 . -368) T) ((-1292 . -38) 80272) ((-1182 . -1060) 80095) ((-1151 . -1227) T) ((-1134 . -1060) 79938) ((-860 . -1060) 79922) ((-638 . -610) 79897) ((-1299 . -1065) 79881) ((-1297 . -1065) 79865) ((-1182 . -646) 79694) ((-1134 . -646) 79543) ((-860 . -646) 79513) ((-1261 . -1212) 79479) ((-1261 . -1215) 79445) ((-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) 79429) ((-523 . -1092) T) ((-467 . -25) T) ((-118 . -562) T) ((-467 . -21) T) ((-460 . -25) T) ((-460 . -21) T) ((-1261 . -95) 79395) ((-1160 . -93) T) ((-1151 . -1047) 79291) ((-823 . -294) 79270) ((-1244 . -102) 79248) ((-829 . -1109) T) ((-973 . -976) T) ((-676 . -111) 79227) ((-623 . -1227) T) ((-299 . -520) 79019) ((-1241 . -233) 78971) ((-1240 . -1212) 78937) ((-1240 . -1215) 78903) ((-254 . -313) 78841) ((-253 . -313) 78779) ((-1235 . -373) T) ((-1169 . -620) NIL) ((-1169 . -619) 78761) ((-1232 . -850) T) ((-1151 . -382) 78745) ((-1129 . -826) T) ((-96 . -93) T) ((-1129 . -927) T) ((-1122 . -610) 78722) ((-1089 . -620) 78706) ((-1013 . -652) 78656) ((-921 . -652) 78593) ((-821 . -292) 78570) ((-490 . -619) 78502) ((-614 . -152) 78449) ((-493 . -723) 78399) ((-424 . -1067) T) ((-488 . -495) 78383) ((-433 . -652) 78342) ((-331 . -856) 78321) ((-344 . -654) 78295) ((-50 . -21) T) ((-50 . -25) T) ((-219 . -723) 78245) ((-171 . -730) 78216) ((-176 . -654) 78148) ((-587 . -21) T) ((-587 . -25) T) ((-524 . -25) T) ((-524 . -21) T) ((-481 . -152) 78098) ((-1089 . -619) 78080) ((-1070 . -619) 78062) ((-1002 . -102) T) ((-868 . -102) T) ((-805 . -417) 78025) ((-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) 78007) ((-358 . -619) 77989) ((-350 . -619) 77971) ((-66 . -402) T) ((-66 . -401) T) ((-108 . -620) 77901) ((-108 . -619) 77843) ((-213 . -902) T) ((-965 . -152) 77827) ((-777 . -132) T) ((-676 . -622) 77745) ((-135 . -732) T) ((-117 . -732) T) ((-1261 . -35) 77711) ((-1063 . -495) 77695) ((-586 . -23) T) ((-570 . -23) T) ((-501 . -23) T) ((-1240 . -95) 77661) ((-1240 . -35) 77627) ((-1182 . -102) T) ((-1134 . -102) T) ((-860 . -102) T) ((-229 . -495) 77611) ((-1299 . -111) 77590) ((-1297 . -111) 77569) ((-44 . -1065) 77553) ((-1299 . -622) 77499) ((-1250 . -1253) 77483) ((-861 . -858) 77467) ((-1299 . -1058) T) ((-1188 . -294) 77446) ((-110 . -290) 77421) ((-1297 . -622) 77350) ((-129 . -152) 77332) ((-1151 . -907) 77291) ((-44 . -111) 77270) ((-1232 . -1109) T) ((-1191 . -1272) T) ((-1176 . -496) 77251) ((-1176 . -619) 77217) ((-676 . -1058) T) ((-1168 . -620) NIL) ((-1168 . -619) 77199) ((-1072 . -616) 77174) ((-1072 . -1109) T) ((-1003 . -496) 77155) ((-74 . -447) T) ((-74 . -401) T) ((-1003 . -619) 77121) ((-153 . -1065) 77105) ((-676 . -235) 77084) ((-577 . -560) 77068) ((-360 . -148) 77047) ((-360 . -146) 76998) ((-357 . -148) 76977) ((-357 . -146) 76928) ((-349 . -148) 76907) ((-349 . -146) 76858) ((-267 . -146) 76837) ((-267 . -148) 76816) ((-254 . -38) 76786) ((-249 . -148) 76765) ((-118 . -368) T) ((-249 . -146) 76744) ((-253 . -38) 76714) ((-153 . -111) 76693) ((-1012 . -1047) 76581) ((-1177 . -854) NIL) ((-700 . -1231) T) ((-805 . -1067) T) ((-705 . -1121) T) ((-1297 . -1058) T) ((-1166 . -1227) T) ((-1012 . -382) 76558) ((-917 . -146) T) ((-917 . -148) 76540) ((-876 . -132) T) ((-821 . -1065) 76437) ((-705 . -23) T) ((-700 . -562) T) ((-227 . -1060) 76402) ((-653 . -619) 76334) ((-653 . -620) 76295) ((-638 . -620) NIL) ((-638 . -619) 76277) ((-493 . -174) T) ((-227 . -646) 76242) ((-225 . -21) T) ((-219 . -174) T) ((-225 . -25) T) ((-480 . -1215) 76208) ((-480 . -1212) 76174) ((-277 . -619) 76156) ((-276 . -619) 76138) ((-275 . -619) 76120) ((-274 . -619) 76102) ((-273 . -619) 76084) ((-506 . -657) 76066) ((-272 . -619) 76048) ((-344 . -732) T) ((-271 . -619) 76030) ((-110 . -19) 76012) ((-176 . -732) T) ((-506 . -378) 75994) ((-214 . -619) 75976) ((-526 . -1158) 75960) ((-506 . -124) T) ((-110 . -610) 75935) ((-213 . -619) 75917) ((-480 . -35) 75883) ((-480 . -95) 75849) ((-211 . -619) 75831) ((-210 . -619) 75813) ((-209 . -619) 75795) ((-208 . -619) 75777) ((-205 . -619) 75759) ((-204 . -619) 75741) ((-203 . -619) 75723) ((-202 . -619) 75705) ((-201 . -619) 75687) ((-200 . -619) 75669) ((-199 . -619) 75651) ((-542 . -1112) 75603) ((-198 . -619) 75585) ((-197 . -619) 75567) ((-45 . -495) 75504) ((-196 . -619) 75486) ((-195 . -619) 75468) ((-153 . -622) 75437) ((-1124 . -102) T) ((-821 . -111) 75327) ((-650 . -102) 75277) ((-488 . -290) 75254) ((-1122 . -619) 74985) ((-1110 . -1109) T) ((-1055 . -1227) T) ((-1300 . -1047) 74969) ((-1071 . -1060) 74956) ((-1182 . -313) 74943) ((-959 . -1060) 74786) ((-1144 . -1109) T) ((-1134 . -313) 74773) ((-629 . -1121) T) ((-1071 . -646) 74760) ((-1105 . -1092) T) ((-959 . -646) 74609) ((-1099 . -1092) T) ((-487 . -1060) 74452) ((-1082 . -1092) T) ((-1075 . -1092) T) ((-1045 . -1092) T) ((-1028 . -1092) T) ((-118 . -1121) T) ((-487 . -646) 74301) ((-825 . -102) T) ((-632 . -1092) T) ((-629 . -23) T) ((-1159 . -520) 74093) ((-489 . -1092) T) ((-392 . -102) T) ((-328 . -102) T) ((-220 . -1092) T) ((-970 . -1109) T) ((-153 . -1058) T) ((-737 . -417) 74077) ((-118 . -23) T) ((-1012 . -907) 74029) ((-741 . -1109) T) ((-721 . -1109) T) ((-459 . -1109) T) ((-413 . -1227) T) ((-320 . -436) 74013) ((-598 . -93) T) ((-1269 . -652) 73923) ((-1036 . -620) 73884) ((-1033 . -1231) T) ((-227 . -102) T) ((-1036 . -619) 73846) ((-1262 . -652) 73728) ((-822 . -233) 73712) ((-821 . -622) 73442) ((-1241 . -652) 73279) ((-1033 . -562) T) ((-839 . -654) 73252) ((-359 . -1231) T) ((-482 . -619) 73214) ((-482 . -620) 73175) ((-469 . -620) 73136) ((-469 . -619) 73098) ((-602 . -652) 73057) ((-413 . -891) 73041) ((-323 . -1065) 72876) ((-413 . -893) 72801) ((-601 . -652) 72711) ((-849 . -1047) 72607) ((-493 . -520) NIL) ((-488 . -610) 72584) ((-359 . -562) T) ((-219 . -520) NIL) ((-878 . -458) T) ((-424 . -1109) T) ((-413 . -1047) 72448) ((-323 . -111) 72269) ((-700 . -368) T) ((-227 . -288) T) ((-1224 . -622) 72246) ((-48 . -1231) T) ((-821 . -1058) 72176) ((-1182 . -1161) 72154) ((-586 . -132) T) ((-570 . -132) T) ((-501 . -132) T) ((-1169 . -292) 72130) ((-48 . -562) T) ((-1071 . -102) T) ((-959 . -102) T) ((-877 . -1060) 72075) ((-320 . -27) 72054) ((-821 . -235) 72006) ((-251 . -841) 71988) ((-242 . -854) 71967) ((-189 . -841) 71949) ((-719 . -102) T) ((-299 . -495) 71886) ((-877 . -646) 71831) ((-487 . -102) T) ((-737 . -1067) T) ((-618 . -619) 71813) ((-618 . -620) 71674) ((-413 . -382) 71658) ((-413 . -343) 71642) ((-323 . -622) 71468) ((-1182 . -38) 71297) ((-1134 . -38) 71146) ((-860 . -38) 71116) ((-396 . -654) 71100) ((-650 . -313) 71038) ((-1160 . -496) 71019) ((-1160 . -619) 70985) ((-970 . -723) 70882) ((-741 . -723) 70852) ((-224 . -107) 70836) ((-45 . -290) 70761) ((-627 . -654) 70735) ((-316 . -1109) T) ((-293 . -1065) 70722) ((-110 . -619) 70704) ((-110 . -620) 70686) ((-459 . -723) 70656) ((-822 . -256) 70595) ((-695 . -1109) 70573) ((-556 . -1109) T) ((-1184 . -1067) T) ((-1183 . -1067) T) ((-96 . -496) 70554) ((-1177 . -1067) T) ((-293 . -111) 70539) ((-1135 . -1067) T) ((-556 . -616) 70518) ((-96 . -619) 70484) ((-1013 . -854) T) ((-229 . -693) 70442) ((-700 . -1121) T) ((-1221 . -746) 70418) ((-1033 . -368) T) ((-844 . -841) 70400) ((-839 . -800) 70379) ((-413 . -907) 70338) ((-323 . -1058) T) ((-348 . -25) T) ((-348 . -21) T) ((-171 . -1060) 70248) ((-68 . -1227) T) ((-839 . -797) 70227) ((-424 . -723) 70201) ((-805 . -1109) T) ((-718 . -927) 70180) ((-705 . -132) T) ((-171 . -646) 70008) ((-700 . -23) T) ((-493 . -294) T) ((-839 . -732) 69987) ((-323 . -235) 69939) ((-323 . -245) 69918) ((-219 . -294) T) ((-130 . -373) T) ((-1261 . -458) 69897) ((-1240 . -458) 69876) ((-359 . -333) 69853) ((-359 . -368) T) ((-1149 . -619) 69835) ((-45 . -1265) 69785) ((-877 . -102) T) ((-650 . -286) 69769) ((-705 . -1069) T) ((-1288 . -102) T) ((-1287 . -102) T) ((-483 . -654) 69734) ((-474 . -1109) T) ((-45 . -610) 69659) ((-1168 . -292) 69634) ((-293 . -622) 69606) ((-40 . -645) 69545) ((-1250 . -1060) 69368) ((-861 . -1060) 69352) ((-48 . -368) T) ((-1115 . -619) 69334) ((-1250 . -646) 69163) ((-861 . -646) 69133) ((-638 . -292) 69108) ((-822 . -652) 69018) ((-577 . -1060) 69005) ((-488 . -619) 68736) ((-242 . -417) 68705) ((-959 . -313) 68692) ((-577 . -646) 68679) ((-65 . -1227) T) ((-1072 . -520) 68523) ((-677 . -1109) T) ((-629 . -132) T) ((-487 . -313) 68510) ((-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) 68461) ((-979 . -93) T) ((-1089 . -1065) 68371) ((-627 . -800) 68350) ((-599 . -1109) T) ((-627 . -797) 68329) ((-627 . -732) T) ((-299 . -290) 68308) ((-298 . -1227) T) ((-1063 . -619) 68270) ((-1063 . -620) 68231) ((-1033 . -1121) T) ((-171 . -102) T) ((-278 . -856) T) ((-1175 . -1109) T) ((-824 . -619) 68213) ((-1122 . -292) 68190) ((-1111 . -231) 68174) ((-1012 . -311) T) ((-805 . -723) 68158) ((-364 . -1065) 68110) ((-359 . -1121) T) ((-358 . -1065) 68062) ((-420 . -619) 68044) ((-390 . -619) 68026) ((-350 . -1065) 67978) ((-229 . -619) 67910) ((-1089 . -111) 67806) ((-1033 . -23) T) ((-108 . -1065) 67756) ((-905 . -102) T) ((-847 . -102) T) ((-814 . -102) T) ((-775 . -102) T) ((-683 . -102) T) ((-480 . -458) 67735) ((-424 . -174) T) ((-364 . -111) 67673) ((-358 . -111) 67611) ((-350 . -111) 67549) ((-254 . -233) 67518) ((-253 . -233) 67487) ((-359 . -23) T) ((-71 . -1227) T) ((-227 . -38) 67452) ((-108 . -111) 67386) ((-40 . -25) T) ((-40 . -21) T) ((-676 . -726) T) ((-171 . -288) 67364) ((-48 . -1121) T) ((-928 . -25) T) ((-777 . -25) T) ((-1301 . -654) 67338) ((-1159 . -495) 67275) ((-491 . -1109) T) ((-1292 . -652) 67234) ((-1250 . -102) T) ((-1071 . -1161) T) ((-861 . -102) T) ((-242 . -1067) 67164) ((-971 . -798) 67117) ((-971 . -801) 67070) ((-386 . -654) 67054) ((-48 . -23) T) ((-821 . -801) 67005) ((-821 . -798) 66956) ((-554 . -373) T) ((-299 . -610) 66935) ((-483 . -732) T) ((-577 . -102) T) ((-1089 . -622) 66753) ((-251 . -187) T) ((-189 . -187) T) ((-877 . -313) 66710) ((-659 . -290) 66689) ((-112 . -667) T) ((-364 . -622) 66626) ((-358 . -622) 66563) ((-350 . -622) 66500) ((-76 . -1227) T) ((-108 . -622) 66450) ((-112 . -113) T) ((-1071 . -38) 66437) ((-670 . -379) 66416) ((-959 . -38) 66265) ((-737 . -1109) T) ((-487 . -38) 66114) ((-86 . -1227) T) ((-598 . -496) 66095) ((-577 . -288) T) ((-1241 . -854) NIL) ((-598 . -619) 66061) ((-1184 . -1109) T) ((-1183 . -1109) T) ((-1089 . -1058) T) ((-356 . -1047) 66038) ((-823 . -496) 66022) ((-1013 . -1067) T) ((-45 . -619) 66004) ((-45 . -620) NIL) ((-921 . -1067) T) ((-823 . -619) 65973) ((-1177 . -1109) T) ((-1156 . -102) 65951) ((-1089 . -245) 65902) ((-433 . -1067) T) ((-364 . -1058) T) ((-370 . -369) 65879) ((-358 . -1058) T) ((-350 . -1058) T) ((-254 . -240) 65858) ((-253 . -240) 65837) ((-1089 . -235) 65762) ((-1135 . -1109) T) ((-298 . -907) 65721) ((-108 . -1058) T) ((-700 . -132) T) ((-424 . -520) 65563) ((-364 . -235) 65542) ((-364 . -245) T) ((-44 . -726) T) ((-358 . -235) 65521) ((-358 . -245) T) ((-350 . -235) 65500) ((-350 . -245) T) ((-1176 . -622) 65481) ((-171 . -313) 65446) ((-108 . -245) T) ((-108 . -235) T) ((-1003 . -622) 65427) ((-323 . -798) T) ((-876 . -21) T) ((-876 . -25) T) ((-413 . -311) T) ((-506 . -34) T) ((-110 . -292) 65402) ((-1122 . -1065) 65299) ((-877 . -1161) NIL) ((-334 . -619) 65281) ((-413 . -1031) 65259) ((-1122 . -111) 65149) ((-697 . -1272) T) ((-442 . -1109) T) ((-252 . -1109) T) ((-1301 . -732) T) ((-63 . -619) 65131) ((-877 . -38) 65076) ((-529 . -1227) T) ((-608 . -152) 65060) ((-518 . -619) 65042) ((-1250 . -313) 65029) ((-737 . -723) 64878) ((-537 . -799) T) ((-537 . -800) T) ((-570 . -645) 64860) ((-501 . -645) 64820) ((-360 . -458) T) ((-357 . -458) T) ((-349 . -458) T) ((-267 . -458) 64771) ((-531 . -1109) T) ((-526 . -1109) 64721) ((-249 . -458) 64672) ((-1159 . -290) 64651) ((-1188 . -619) 64633) ((-695 . -520) 64566) ((-970 . -294) 64545) ((-556 . -520) 64337) ((-254 . -652) 64157) ((-253 . -652) 63964) ((-1289 . -619) 63933) ((-1289 . -496) 63917) ((-1182 . -233) 63901) ((-1122 . -622) 63631) ((-171 . -1161) 63610) ((-1184 . -723) 63507) ((-1183 . -723) 63348) ((-973 . -113) T) ((-899 . -102) T) ((-1177 . -723) 63144) ((-1135 . -723) 63041) ((-1166 . -680) 63025) ((-360 . -408) 62976) ((-357 . -408) 62927) ((-349 . -408) 62878) ((-1033 . -132) T) ((-805 . -520) 62790) ((-299 . -620) NIL) ((-299 . -619) 62772) ((-917 . -458) T) ((-971 . -373) 62725) ((-821 . -373) 62704) ((-516 . -515) 62683) ((-514 . -515) 62662) ((-493 . -290) NIL) ((-488 . -292) 62639) ((-424 . -294) T) ((-359 . -132) T) ((-219 . -290) NIL) ((-700 . -499) NIL) ((-99 . -1121) T) ((-171 . -38) 62467) ((-1261 . -982) 62429) ((-1156 . -313) 62367) ((-1240 . -982) 62336) ((-917 . -408) T) ((-1122 . -1058) 62266) ((-1263 . -562) T) ((-1159 . -610) 62245) ((-112 . -856) T) ((-1072 . -495) 62176) ((-586 . -21) T) ((-586 . -25) T) ((-570 . -21) T) ((-570 . -25) T) ((-501 . -25) T) ((-501 . -21) T) ((-1250 . -1161) 62154) ((-1122 . -235) 62106) ((-48 . -132) T) ((-1208 . -102) T) ((-242 . -1109) 61896) ((-877 . -406) 61873) ((-1097 . -102) T) ((-1085 . -102) T) ((-614 . -102) T) ((-481 . -102) T) ((-1250 . -38) 61702) ((-861 . -38) 61672) ((-1043 . -1060) 61646) ((-737 . -174) 61557) ((-659 . -619) 61539) ((-651 . -1092) T) ((-1043 . -646) 61523) ((-577 . -38) 61510) ((-979 . -496) 61491) ((-979 . -619) 61457) ((-965 . -102) 61407) ((-870 . -619) 61389) ((-870 . -620) 61311) ((-599 . -520) NIL) ((-1269 . -1067) T) ((-1262 . -1067) T) ((-326 . -1060) 61293) ((-1241 . -1067) T) ((-1305 . -1121) T) ((-1221 . -148) 61272) ((-326 . -646) 61254) ((-1221 . -146) 61233) ((-1194 . -102) T) ((-1193 . -102) T) ((-1192 . -102) T) ((-1184 . -174) 61184) ((-602 . -1067) T) ((-601 . -1067) T) ((-1183 . -174) 61115) ((-1177 . -174) 61046) ((-384 . -1060) 61011) ((-1160 . -622) 60992) ((-1135 . -174) 60943) ((-1013 . -1109) T) ((-980 . -1109) T) ((-921 . -1109) T) ((-384 . -646) 60908) ((-805 . -803) 60892) ((-705 . -25) T) ((-705 . -21) T) ((-118 . -645) 60869) ((-707 . -893) 60851) ((-433 . -1109) T) ((-320 . -1231) 60830) ((-317 . -1231) T) ((-171 . -406) 60814) ((-842 . -1060) 60784) ((-480 . -982) 60746) ((-131 . -102) T) ((-129 . -102) T) ((-72 . -619) 60728) ((-833 . -1060) 60712) ((-108 . -801) T) ((-108 . -798) T) ((-707 . -1047) 60694) ((-320 . -562) 60673) ((-317 . -562) T) ((-842 . -646) 60643) ((-833 . -646) 60613) ((-1305 . -23) T) ((-135 . -1047) 60595) ((-96 . -622) 60576) ((-1002 . -652) 60558) ((-488 . -1065) 60455) ((-45 . -292) 60380) ((-242 . -723) 60322) ((-523 . -102) T) ((-488 . -111) 60212) ((-1101 . -102) 60182) ((-1043 . -102) T) ((-1182 . -652) 60092) ((-1134 . -652) 60002) ((-860 . -652) 59961) ((-650 . -834) 59940) ((-737 . -520) 59883) ((-1063 . -1065) 59867) ((-1144 . -93) T) ((-1072 . -290) 59842) ((-629 . -21) T) ((-629 . -25) T) ((-530 . -1109) T) ((-676 . -654) 59816) ((-366 . -102) T) ((-326 . -102) T) ((-390 . -1065) 59800) ((-1063 . -111) 59779) ((-822 . -417) 59763) ((-118 . -25) T) ((-89 . -619) 59745) ((-118 . -21) T) ((-614 . -313) 59540) ((-481 . -313) 59344) ((-1159 . -620) NIL) ((-390 . -111) 59323) ((-384 . -102) T) ((-216 . -619) 59305) ((-1159 . -619) 59287) ((-1177 . -520) 59056) ((-1013 . -723) 59006) ((-1135 . -520) 58976) ((-921 . -723) 58928) ((-488 . -622) 58658) ((-356 . -311) T) ((-1199 . -152) 58608) ((-965 . -313) 58546) ((-842 . -102) T) ((-433 . -723) 58530) ((-227 . -834) T) ((-833 . -102) T) ((-831 . -102) T) ((-485 . -152) 58480) ((-1261 . -1260) 58459) ((-1129 . -1231) T) ((-344 . -1047) 58426) ((-1261 . -1255) 58396) ((-1261 . -1258) 58380) ((-1240 . -1239) 58359) ((-80 . -619) 58341) ((-912 . -619) 58323) ((-1240 . -1255) 58300) ((-1129 . -562) T) ((-928 . -856) T) ((-777 . -856) T) ((-678 . -856) T) ((-493 . -620) 58230) ((-493 . -619) 58171) ((-384 . -288) T) ((-1240 . -1237) 58155) ((-1263 . -1121) T) ((-219 . -620) 58085) ((-219 . -619) 58026) ((-1299 . -654) 58000) ((-1072 . -610) 57975) ((-824 . -622) 57959) ((-59 . -152) 57943) ((-522 . -152) 57927) ((-502 . -152) 57911) ((-364 . -1296) 57895) ((-358 . -1296) 57879) ((-350 . -1296) 57863) ((-320 . -368) 57842) ((-317 . -368) T) ((-488 . -1058) 57772) ((-700 . -645) 57754) ((-1297 . -654) 57728) ((-129 . -313) NIL) ((-1263 . -23) T) ((-695 . -495) 57712) ((-64 . -619) 57694) ((-1122 . -801) 57645) ((-1122 . -798) 57596) ((-556 . -495) 57533) ((-676 . -34) T) ((-488 . -235) 57485) ((-299 . -292) 57464) ((-242 . -174) 57443) ((-822 . -1067) T) ((-44 . -654) 57401) ((-1089 . -373) 57352) ((-1096 . -146) 57331) ((-737 . -294) 57262) ((-526 . -520) 57195) ((-823 . -1065) 57146) ((-1096 . -148) 57125) ((-555 . -619) 57107) ((-364 . -373) 57086) ((-358 . -373) 57065) ((-350 . -373) 57044) ((-975 . -1227) T) ((-877 . -233) 57021) ((-823 . -111) 56963) ((-788 . -146) 56942) ((-788 . -148) 56921) ((-267 . -956) 56888) ((-254 . -854) 56867) ((-249 . -956) 56812) ((-253 . -854) 56791) ((-786 . -146) 56770) ((-786 . -148) 56749) ((-153 . -654) 56723) ((-585 . -1109) T) ((-460 . -148) 56702) ((-460 . -146) 56681) ((-676 . -732) T) ((-829 . -619) 56663) ((-1269 . -1109) T) ((-1262 . -1109) T) ((-1241 . -1109) T) ((-1221 . -1215) 56629) ((-1221 . -1212) 56595) ((-1184 . -294) 56574) ((-1183 . -294) 56525) ((-1177 . -294) 56476) ((-1135 . -294) 56455) ((-344 . -907) 56436) ((-1013 . -174) T) ((-921 . -174) T) ((-700 . -21) T) ((-700 . -25) T) ((-227 . -652) 56386) ((-602 . -1109) T) ((-601 . -1109) T) ((-480 . -1258) 56370) ((-480 . -1255) 56340) ((-424 . -290) 56268) ((-553 . -856) T) ((-320 . -1121) 56117) ((-317 . -1121) T) ((-1221 . -35) 56083) ((-1221 . -95) 56049) ((-84 . -619) 56031) ((-91 . -102) 56009) ((-1305 . -132) T) ((-720 . -1060) 55979) ((-598 . -622) 55960) ((-587 . -146) T) ((-587 . -148) 55942) ((-524 . -148) 55924) ((-524 . -146) T) ((-720 . -646) 55894) ((-320 . -23) 55746) ((-40 . -347) 55720) ((-317 . -23) T) ((-823 . -622) 55634) ((-1168 . -657) 55616) ((-1292 . -1067) T) ((-1168 . -378) 55598) ((-821 . -654) 55446) ((-1105 . -102) T) ((-1099 . -102) T) ((-1082 . -102) T) ((-171 . -233) 55430) ((-1075 . -102) T) ((-1045 . -102) T) ((-1028 . -102) T) ((-599 . -495) 55412) ((-632 . -102) T) ((-242 . -520) 55345) ((-489 . -102) T) ((-1299 . -732) T) ((-1297 . -732) T) ((-220 . -102) T) ((-1188 . -1065) 55228) ((-1071 . -652) 55200) ((-959 . -652) 55110) ((-1188 . -111) 54979) ((-882 . -1092) T) ((-487 . -652) 54889) ((-867 . -175) T) ((-823 . -1058) T) ((-687 . -1092) T) ((-682 . -1092) T) ((-521 . -102) T) ((-516 . -102) T) ((-48 . -645) 54849) ((-514 . -102) T) ((-484 . -1092) T) ((-1289 . -1065) 54819) ((-139 . -1092) T) ((-138 . -1092) T) ((-134 . -1092) T) ((-1043 . -38) 54803) ((-823 . -235) T) ((-823 . -245) 54782) ((-1289 . -111) 54747) ((-1269 . -723) 54644) ((-1262 . -723) 54485) ((-556 . -290) 54464) ((-1250 . -233) 54448) ((-1232 . -619) 54430) ((-612 . -93) T) ((-1072 . -620) NIL) ((-1072 . -619) 54412) ((-677 . -93) T) ((-182 . -93) T) ((-162 . -93) T) ((-157 . -93) T) ((-155 . -93) T) ((-1241 . -723) 54208) ((-1012 . -927) T) ((-153 . -732) T) ((-1188 . -622) 54061) ((-1122 . -373) 54040) ((-1033 . -25) T) ((-1013 . -520) NIL) ((-254 . -417) 54009) ((-253 . -417) 53978) ((-1033 . -21) T) ((-878 . -1060) 53930) ((-602 . -723) 53903) ((-601 . -723) 53800) ((-805 . -290) 53758) ((-127 . -102) 53736) ((-839 . -1047) 53632) ((-171 . -834) 53611) ((-323 . -654) 53508) ((-821 . -34) T) ((-720 . -102) T) ((-1129 . -1121) T) ((-1035 . -1227) T) ((-878 . -646) 53460) ((-384 . -38) 53425) ((-359 . -25) T) ((-359 . -21) T) ((-189 . -102) T) ((-163 . -102) T) ((-251 . -102) T) ((-158 . -102) T) ((-360 . -1284) 53409) ((-357 . -1284) 53393) ((-349 . -1284) 53377) ((-171 . -354) 53356) ((-570 . -856) T) ((-1129 . -23) T) ((-87 . -619) 53338) ((-707 . -311) T) ((-842 . -38) 53308) ((-833 . -38) 53278) ((-1289 . -622) 53220) ((-1263 . -132) T) ((-1159 . -292) 53199) ((-971 . -732) 53098) ((-971 . -799) 53051) ((-971 . -800) 53004) ((-821 . -797) 52983) ((-117 . -311) T) ((-91 . -313) 52921) ((-681 . -34) T) ((-556 . -610) 52900) ((-48 . -25) T) ((-48 . -21) T) ((-821 . -800) 52851) ((-821 . -799) 52830) ((-707 . -1031) T) ((-659 . -1065) 52814) ((-877 . -652) 52744) ((-821 . -732) 52654) ((-971 . -479) 52607) ((-488 . -801) 52558) ((-488 . -798) 52509) ((-917 . -1284) 52496) ((-1188 . -1058) T) ((-659 . -111) 52475) ((-1188 . -330) 52452) ((-1213 . -102) 52430) ((-1110 . -619) 52412) ((-707 . -551) T) ((-822 . -1109) T) ((-1289 . -1058) T) ((-1144 . -496) 52393) ((-1233 . -102) T) ((-419 . -1109) T) ((-1144 . -619) 52359) ((-254 . -1067) 52289) ((-253 . -1067) 52219) ((-844 . -102) T) ((-293 . -654) 52206) ((-599 . -290) 52181) ((-695 . -693) 52139) ((-970 . -619) 52121) ((-878 . -102) T) ((-741 . -619) 52103) ((-721 . -619) 52085) ((-1269 . -174) 52036) ((-1262 . -174) 51967) ((-1241 . -174) 51898) ((-705 . -856) T) ((-1013 . -294) T) ((-459 . -619) 51880) ((-633 . -732) T) ((-60 . -1109) 51858) ((-247 . -152) 51842) ((-921 . -294) T) ((-1033 . -1021) T) ((-633 . -479) T) ((-718 . -1231) 51821) ((-659 . -622) 51739) ((-171 . -652) 51634) ((-1277 . -856) 51613) ((-602 . -174) 51592) ((-601 . -174) 51543) ((-1261 . -646) 51384) ((-1261 . -1060) 51219) ((-1240 . -646) 51033) ((-1240 . -1060) 50841) ((-718 . -562) 50752) ((-413 . -927) T) ((-413 . -826) 50731) ((-323 . -800) T) ((-979 . -622) 50712) ((-323 . -732) T) ((-424 . -619) 50694) ((-424 . -620) 50601) ((-650 . -1158) 50585) ((-110 . -657) 50567) ((-176 . -311) T) ((-127 . -313) 50505) ((-110 . -378) 50487) ((-404 . -1227) T) ((-320 . -132) 50358) ((-317 . -132) T) ((-69 . -401) T) ((-110 . -124) T) ((-526 . -495) 50342) ((-660 . -1121) T) ((-599 . -19) 50324) ((-61 . -447) T) ((-61 . -401) T) ((-830 . -1109) T) ((-599 . -610) 50299) ((-483 . -1047) 50259) ((-659 . -1058) T) ((-660 . -23) T) ((-1292 . -1109) T) ((-31 . -102) T) ((-1250 . -652) 50169) ((-861 . -652) 50128) ((-822 . -723) 49977) ((-583 . -866) T) ((-577 . -652) 49949) ((-118 . -856) NIL) ((-1182 . -417) 49933) ((-1134 . -417) 49917) ((-860 . -417) 49901) ((-879 . -102) 49852) ((-1261 . -102) T) ((-1241 . -520) 49621) ((-1240 . -102) T) ((-1213 . -313) 49559) ((-1184 . -290) 49544) ((-1183 . -290) 49529) ((-531 . -93) T) ((-1177 . -290) 49377) ((-316 . -619) 49359) ((-1111 . -1109) T) ((-1089 . -654) 49269) ((-717 . -458) T) ((-695 . -619) 49201) ((-293 . -732) T) ((-108 . -916) NIL) ((-695 . -620) 49162) ((-607 . -619) 49144) ((-583 . -619) 49126) ((-556 . -620) NIL) ((-556 . -619) 49108) ((-535 . -619) 49090) ((-517 . -515) 49069) ((-493 . -1065) 49019) ((-480 . -1060) 48854) ((-513 . -515) 48833) ((-480 . -646) 48674) ((-219 . -1065) 48624) ((-364 . -654) 48576) ((-358 . -654) 48528) ((-227 . -854) T) ((-350 . -654) 48480) ((-608 . -102) 48430) ((-488 . -373) 48409) ((-108 . -654) 48359) ((-493 . -111) 48293) ((-242 . -495) 48277) ((-348 . -148) 48259) ((-348 . -146) T) ((-171 . -375) 48230) ((-950 . -1275) 48214) ((-219 . -111) 48148) ((-878 . -313) 48113) ((-950 . -1109) 48063) ((-805 . -620) 48024) ((-805 . -619) 48006) ((-724 . -102) T) ((-335 . -1109) T) ((-216 . -622) 47983) ((-1129 . -132) T) ((-720 . -38) 47953) ((-320 . -499) 47932) ((-506 . -1227) T) ((-1261 . -288) 47898) ((-1240 . -288) 47864) ((-331 . -152) 47848) ((-445 . -1109) T) ((-1072 . -292) 47823) ((-1292 . -723) 47793) ((-1169 . -34) T) ((-1301 . -1047) 47770) ((-474 . -619) 47752) ((-490 . -34) T) ((-386 . -1047) 47736) ((-1182 . -1067) T) ((-1134 . -1067) T) ((-860 . -1067) T) ((-1071 . -854) T) ((-493 . -622) 47686) ((-219 . -622) 47636) ((-822 . -174) 47547) ((-526 . -290) 47524) ((-1269 . -294) 47503) ((-1208 . -369) 47477) ((-1097 . -269) 47461) ((-677 . -496) 47442) ((-677 . -619) 47408) ((-612 . -496) 47389) ((-118 . -1001) 47366) ((-612 . -619) 47316) ((-480 . -102) T) ((-182 . -496) 47297) ((-182 . -619) 47263) ((-162 . -496) 47244) ((-157 . -496) 47225) ((-155 . -496) 47206) ((-162 . -619) 47172) ((-157 . -619) 47138) ((-370 . -1109) T) ((-254 . -1109) T) ((-253 . -1109) T) ((-155 . -619) 47104) ((-1262 . -294) 47055) ((-1241 . -294) 47006) ((-878 . -1161) 46984) ((-1184 . -1011) 46950) ((-614 . -369) 46890) ((-1183 . -1011) 46856) ((-614 . -231) 46803) ((-700 . -856) T) ((-599 . -619) 46785) ((-599 . -620) NIL) ((-481 . -231) 46735) ((-493 . -1058) T) ((-1177 . -1011) 46701) ((-88 . -446) T) ((-88 . -401) T) ((-219 . -1058) T) ((-1135 . -1011) 46667) ((-1089 . -732) T) ((-718 . -1121) T) ((-602 . -294) 46646) ((-601 . -294) 46625) ((-493 . -245) T) ((-493 . -235) T) ((-219 . -245) T) ((-219 . -235) T) ((-1175 . -619) 46607) ((-878 . -38) 46559) ((-364 . -732) T) ((-358 . -732) T) ((-350 . -732) T) ((-108 . -800) T) ((-108 . -797) T) ((-718 . -23) T) ((-108 . -732) T) ((-526 . -1265) 46543) ((-1305 . -25) T) ((-480 . -288) 46509) ((-1305 . -21) T) ((-1240 . -313) 46448) ((-1186 . -102) T) ((-40 . -146) 46420) ((-40 . -148) 46392) ((-526 . -610) 46369) ((-1122 . -654) 46217) ((-608 . -313) 46155) ((-45 . -657) 46105) ((-45 . -672) 46055) ((-45 . -378) 46005) ((-1168 . -34) T) ((-877 . -854) NIL) ((-660 . -132) T) ((-491 . -619) 45987) ((-242 . -290) 45964) ((-188 . -1109) T) ((-1096 . -458) 45915) ((-822 . -520) 45789) ((-670 . -1060) 45773) ((-653 . -34) T) ((-638 . -34) T) ((-788 . -458) 45704) ((-670 . -646) 45688) ((-360 . -1060) 45640) ((-357 . -1060) 45592) ((-349 . -1060) 45544) ((-267 . -1060) 45387) ((-249 . -1060) 45230) ((-786 . -458) 45181) ((-360 . -646) 45133) ((-357 . -646) 45085) ((-349 . -646) 45037) ((-267 . -646) 44886) ((-249 . -646) 44735) ((-460 . -458) 44686) ((-959 . -417) 44670) ((-737 . -619) 44652) ((-254 . -723) 44594) ((-253 . -723) 44536) ((-737 . -620) 44397) ((-487 . -417) 44381) ((-344 . -306) T) ((-530 . -93) T) ((-356 . -927) T) ((-1009 . -102) 44359) ((-917 . -1060) 44324) ((-1033 . -856) T) ((-60 . -520) 44257) ((-917 . -646) 44222) ((-1240 . -1161) 44174) ((-1013 . -290) NIL) ((-227 . -1067) T) ((-384 . -834) T) ((-1122 . -34) T) ((-587 . -458) T) ((-524 . -458) T) ((-1244 . -1102) 44158) ((-1244 . -1109) 44136) ((-242 . -610) 44113) ((-1244 . -1104) 44070) ((-1184 . -619) 44052) ((-1183 . -619) 44034) ((-1177 . -619) 44016) ((-1177 . -620) NIL) ((-1135 . -619) 43998) ((-878 . -406) 43982) ((-603 . -102) T) ((-591 . -102) T) ((-542 . -102) T) ((-1261 . -38) 43823) ((-1240 . -38) 43637) ((-876 . -148) T) ((-587 . -408) T) ((-524 . -408) T) ((-1273 . -102) T) ((-1263 . -21) T) ((-1263 . -25) T) ((-1122 . -797) 43616) ((-1122 . -800) 43567) ((-1122 . -799) 43546) ((-1002 . -1109) T) ((-1036 . -34) T) ((-868 . -1109) T) ((-1122 . -732) 43456) ((-670 . -102) T) ((-651 . -102) T) ((-556 . -292) 43435) ((-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) 43341) ((-317 . -645) 43302) ((-1182 . -1109) T) ((-487 . -1067) T) ((-485 . -102) T) ((-442 . -619) 43284) ((-1134 . -1109) T) ((-252 . -619) 43266) ((-860 . -1109) T) ((-1150 . -102) T) ((-822 . -294) 43197) ((-970 . -1065) 43080) ((-483 . -1031) T) ((-741 . -1065) 43050) ((-1043 . -652) 43009) ((-459 . -1065) 42979) ((-1156 . -1130) 42963) ((-1111 . -520) 42896) ((-970 . -111) 42765) ((-917 . -102) T) ((-741 . -111) 42730) ((-531 . -496) 42711) ((-531 . -619) 42677) ((-59 . -102) 42627) ((-526 . -620) 42588) ((-526 . -619) 42500) ((-525 . -102) 42478) ((-522 . -102) 42428) ((-503 . -102) 42406) ((-502 . -102) 42356) ((-459 . -111) 42319) ((-254 . -174) 42298) ((-253 . -174) 42277) ((-326 . -652) 42259) ((-424 . -1065) 42233) ((-1221 . -982) 42195) ((-1008 . -1121) T) ((-384 . -652) 42145) ((-1144 . -622) 42126) ((-950 . -520) 42059) ((-493 . -801) T) ((-480 . -38) 41900) ((-424 . -111) 41867) ((-493 . -798) T) ((-1009 . -313) 41805) ((-219 . -801) T) ((-219 . -798) T) ((-1008 . -23) T) ((-718 . -132) T) ((-1240 . -406) 41775) ((-842 . -652) 41720) ((-833 . -652) 41679) ((-320 . -25) 41531) ((-171 . -417) 41515) ((-320 . -21) 41386) ((-317 . -25) T) ((-317 . -21) T) ((-870 . -373) T) ((-970 . -622) 41239) ((-110 . -34) T) ((-741 . -622) 41195) ((-721 . -622) 41177) ((-488 . -654) 41025) ((-877 . -1067) T) ((-599 . -292) 41000) ((-586 . -148) T) ((-570 . -148) T) ((-501 . -148) T) ((-1182 . -723) 40829) ((-1066 . -102) 40807) ((-1134 . -723) 40656) ((-1129 . -645) 40638) ((-860 . -723) 40608) ((-676 . -1227) T) ((-1 . -102) T) ((-424 . -622) 40516) ((-242 . -619) 40247) ((-1124 . -1109) T) ((-1250 . -417) 40231) ((-1199 . -313) 40035) ((-970 . -1058) T) ((-741 . -1058) T) ((-721 . -1058) T) ((-650 . -1109) 39985) ((-1063 . -654) 39969) ((-861 . -417) 39953) ((-517 . -102) T) ((-513 . -102) T) ((-267 . -313) 39940) ((-249 . -313) 39927) ((-970 . -330) 39906) ((-390 . -654) 39890) ((-676 . -1047) 39786) ((-485 . -313) 39590) ((-254 . -520) 39523) ((-253 . -520) 39456) ((-1150 . -313) 39382) ((-825 . -1109) T) ((-805 . -1065) 39366) ((-1269 . -290) 39351) ((-1262 . -290) 39336) ((-1241 . -290) 39184) ((-392 . -1109) T) ((-328 . -1109) T) ((-424 . -1058) T) ((-171 . -1067) T) ((-59 . -313) 39122) ((-805 . -111) 39101) ((-601 . -290) 39086) ((-525 . -313) 39024) ((-522 . -313) 38962) ((-503 . -313) 38900) ((-502 . -313) 38838) ((-424 . -235) 38817) ((-488 . -34) T) ((-227 . -1109) T) ((-1013 . -620) 38747) ((-1013 . -619) 38707) ((-980 . -619) 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
+(((-484 . -1109) T) ((-267 . -520) 188531) ((-249 . -520) 188474) ((-247 . -1109) 188424) ((-577 . -111) 188409) ((-537 . -23) T) ((-134 . -1109) T) ((-139 . -1109) T) ((-118 . -313) 188366) ((-138 . -1109) T) ((-485 . -520) 188158) ((-683 . -622) 188142) ((-700 . -102) T) ((-1150 . -520) 188061) ((-396 . -132) T) ((-1290 . -985) 188030) ((-1033 . -1060) 187967) ((-31 . -93) T) ((-608 . -495) 187951) ((-1033 . -646) 187888) ((-627 . -132) T) ((-825 . -852) T) ((-529 . -57) 187838) ((-525 . -520) 187771) ((-359 . -1060) 187716) ((-59 . -520) 187649) ((-522 . -520) 187582) ((-424 . -907) 187541) ((-171 . -1058) T) ((-503 . -520) 187474) ((-502 . -520) 187407) ((-359 . -646) 187352) ((-805 . -1047) 187132) ((-705 . -38) 187097) ((-1250 . -622) 186845) ((-348 . -354) T) ((-1103 . -1102) 186829) ((-1103 . -1109) 186807) ((-861 . -622) 186704) ((-171 . -245) 186655) ((-171 . -235) 186606) ((-1103 . -1104) 186564) ((-878 . -290) 186522) ((-227 . -801) T) ((-227 . -798) T) ((-700 . -288) NIL) ((-577 . -622) 186494) ((-1159 . -1203) 186473) ((-413 . -1001) 186457) ((-48 . -1060) 186422) ((-707 . -21) T) ((-707 . -25) T) ((-48 . -646) 186387) ((-1292 . -654) 186361) ((-320 . -161) 186340) ((-320 . -144) 186319) ((-1159 . -107) 186269) ((-117 . -21) T) ((-40 . -233) 186246) ((-135 . -25) T) ((-117 . -25) T) ((-614 . -292) 186222) ((-481 . -292) 186201) ((-1250 . -330) 186178) ((-1250 . -1058) T) ((-861 . -1058) T) ((-805 . -343) 186162) ((-140 . -187) T) ((-118 . -1161) NIL) ((-91 . -619) 186094) ((-483 . -132) T) ((-1250 . -235) T) ((-1105 . -496) 186075) ((-1105 . -619) 186041) ((-1099 . -496) 186022) ((-1099 . -619) 185988) ((-599 . -1227) T) ((-1082 . -496) 185969) ((-577 . -1058) T) ((-1082 . -619) 185935) ((-668 . -723) 185919) ((-1075 . -496) 185900) ((-1075 . -619) 185866) ((-965 . -292) 185843) ((-60 . -34) T) ((-1071 . -801) T) ((-1071 . -798) T) ((-1045 . -496) 185824) ((-1028 . -496) 185805) ((-822 . -732) T) ((-737 . -47) 185770) ((-629 . -38) 185757) ((-360 . -294) T) ((-357 . -294) T) ((-349 . -294) T) ((-267 . -294) 185688) ((-249 . -294) 185619) ((-1045 . -619) 185585) ((-1033 . -102) T) ((-1028 . -619) 185551) ((-632 . -496) 185532) ((-419 . -732) T) ((-118 . -38) 185477) ((-489 . -496) 185458) ((-632 . -619) 185424) ((-419 . -479) T) ((-220 . -496) 185405) ((-489 . -619) 185371) ((-359 . -102) T) ((-220 . -619) 185337) ((-1221 . -1067) T) ((-348 . -652) 185267) ((-717 . -1067) T) ((-1184 . -47) 185244) ((-1183 . -47) 185214) ((-1177 . -47) 185191) ((-129 . -292) 185166) ((-1044 . -152) 185112) ((-917 . -294) T) ((-1135 . -47) 185084) ((-700 . -313) NIL) ((-521 . -619) 185066) ((-516 . -619) 185048) ((-514 . -619) 185030) ((-331 . -1109) 184980) ((-718 . -458) 184911) ((-48 . -102) T) ((-1261 . -290) 184896) ((-1240 . -290) 184816) ((-650 . -672) 184800) ((-650 . -657) 184784) ((-344 . -21) T) ((-344 . -25) T) ((-40 . -354) NIL) ((-176 . -21) T) ((-176 . -25) T) ((-650 . -378) 184768) ((-611 . -496) 184750) ((-608 . -290) 184727) ((-611 . -619) 184694) ((-394 . -102) T) ((-1129 . -144) T) ((-127 . -619) 184626) ((-880 . -1109) T) ((-664 . -417) 184610) ((-720 . -619) 184592) ((-251 . -619) 184559) ((-189 . -619) 184541) ((-163 . -619) 184523) ((-158 . -619) 184505) ((-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) 184473) ((-911 . -102) T) ((-737 . -1047) 184349) ((-537 . -132) T) ((-1096 . -417) 184333) ((-1009 . -495) 184317) ((-118 . -406) 184294) ((-1177 . -1227) 184273) ((-788 . -417) 184257) ((-786 . -417) 184241) ((-950 . -34) T) ((-700 . -1161) NIL) ((-254 . -654) 184076) ((-253 . -654) 183898) ((-823 . -927) 183877) ((-460 . -417) 183861) ((-608 . -19) 183845) ((-1155 . -1220) 183814) ((-1177 . -893) NIL) ((-1177 . -891) 183766) ((-608 . -610) 183743) ((-1213 . -619) 183675) ((-1185 . -619) 183657) ((-62 . -401) T) ((-1183 . -1047) 183592) ((-1177 . -1047) 183558) ((-700 . -38) 183508) ((-40 . -652) 183438) ((-480 . -290) 183423) ((-1233 . -619) 183405) ((-737 . -382) 183389) ((-844 . -619) 183371) ((-664 . -1067) T) ((-1261 . -1011) 183337) ((-1240 . -1011) 183303) ((-1097 . -622) 183287) ((-1072 . -1203) 183262) ((-1085 . -622) 183239) ((-878 . -620) 183046) ((-878 . -619) 183028) ((-1199 . -495) 182965) ((-424 . -1031) 182943) ((-48 . -313) 182930) ((-1072 . -107) 182876) ((-485 . -495) 182813) ((-526 . -1227) T) ((-1177 . -343) 182765) ((-1150 . -495) 182736) ((-1177 . -382) 182688) ((-1096 . -1067) T) ((-443 . -102) T) ((-185 . -1109) T) ((-254 . -34) T) ((-253 . -34) T) ((-788 . -1067) T) ((-786 . -1067) T) ((-737 . -907) 182665) ((-460 . -1067) T) ((-59 . -495) 182649) ((-1043 . -1065) 182623) ((-525 . -495) 182607) ((-522 . -495) 182591) ((-503 . -495) 182575) ((-502 . -495) 182559) ((-247 . -520) 182492) ((-1043 . -111) 182459) ((-1184 . -907) 182372) ((-1183 . -907) 182278) ((-1177 . -907) 182111) ((-1135 . -907) 182095) ((-676 . -1121) T) ((-359 . -1161) T) ((-651 . -93) T) ((-326 . -1065) 182077) ((-254 . -797) 182056) ((-254 . -800) 182007) ((-31 . -496) 181988) ((-254 . -799) 181967) ((-253 . -797) 181946) ((-253 . -800) 181897) ((-253 . -799) 181876) ((-31 . -619) 181842) ((-50 . -1067) T) ((-254 . -732) 181752) ((-253 . -732) 181662) ((-1221 . -1109) T) ((-676 . -23) T) ((-587 . -1067) T) ((-524 . -1067) T) ((-384 . -1065) 181627) ((-326 . -111) 181602) ((-73 . -388) T) ((-73 . -401) T) ((-1033 . -38) 181539) ((-700 . -406) 181521) ((-99 . -102) T) ((-717 . -1109) T) ((-1306 . -1060) 181508) ((-1012 . -146) 181480) ((-1012 . -148) 181452) ((-876 . -652) 181424) ((-384 . -111) 181380) ((-323 . -1231) 181359) ((-480 . -1011) 181325) ((-359 . -38) 181290) ((-40 . -375) 181262) ((-879 . -619) 181134) ((-128 . -126) 181118) ((-122 . -126) 181102) ((-842 . -1065) 181072) ((-839 . -21) 181024) ((-833 . -1065) 181008) ((-839 . -25) 180960) ((-323 . -562) 180911) ((-523 . -622) 180892) ((-570 . -834) T) ((-242 . -1227) T) ((-1043 . -622) 180861) ((-842 . -111) 180826) ((-833 . -111) 180805) ((-1261 . -619) 180787) ((-1240 . -619) 180769) ((-1240 . -620) 180440) ((-1182 . -916) 180419) ((-1134 . -916) 180398) ((-48 . -38) 180363) ((-1299 . -1121) T) ((-608 . -619) 180275) ((-608 . -620) 180236) ((-1297 . -1121) T) ((-366 . -622) 180220) ((-326 . -622) 180204) ((-242 . -1047) 180031) ((-1182 . -654) 179956) ((-1134 . -654) 179881) ((-860 . -654) 179855) ((-724 . -619) 179837) ((-552 . -373) T) ((-1299 . -23) T) ((-1297 . -23) T) ((-497 . -1109) T) ((-384 . -622) 179787) ((-384 . -624) 179769) ((-1043 . -1058) T) ((-871 . -102) T) ((-1199 . -290) 179748) ((-171 . -373) 179699) ((-1013 . -1227) T) ((-842 . -622) 179653) ((-833 . -622) 179608) ((-44 . -23) T) ((-485 . -290) 179587) ((-592 . -1109) T) ((-1155 . -1118) 179556) ((-1113 . -1112) 179508) ((-396 . -21) T) ((-396 . -25) T) ((-153 . -1121) T) ((-1306 . -102) T) ((-1013 . -891) 179490) ((-1013 . -893) 179472) ((-1221 . -723) 179369) ((-629 . -233) 179353) ((-627 . -21) T) ((-293 . -562) T) ((-627 . -25) T) ((-1207 . -1109) T) ((-717 . -723) 179318) ((-242 . -382) 179287) ((-1013 . -1047) 179247) ((-384 . -1058) T) ((-225 . -1067) T) ((-118 . -233) 179224) ((-59 . -290) 179201) ((-153 . -23) T) ((-522 . -290) 179178) ((-331 . -520) 179111) ((-502 . -290) 179088) ((-384 . -245) T) ((-384 . -235) T) ((-842 . -1058) T) ((-833 . -1058) T) ((-718 . -956) 179057) ((-707 . -856) T) ((-480 . -619) 179039) ((-1263 . -1060) 178944) ((-586 . -652) 178916) ((-570 . -652) 178888) ((-501 . -652) 178838) ((-833 . -235) 178817) ((-135 . -856) T) ((-1263 . -646) 178709) ((-664 . -1109) T) ((-1199 . -610) 178688) ((-556 . -1203) 178667) ((-341 . -1109) T) ((-323 . -368) 178646) ((-413 . -148) 178625) ((-413 . -146) 178604) ((-971 . -1121) 178503) ((-242 . -907) 178435) ((-821 . -1121) 178345) ((-660 . -858) 178329) ((-485 . -610) 178308) ((-556 . -107) 178258) ((-1013 . -382) 178240) ((-1013 . -343) 178222) ((-97 . -1109) T) ((-971 . -23) 178033) ((-483 . -21) T) ((-483 . -25) T) ((-821 . -23) 177903) ((-1186 . -619) 177885) ((-59 . -19) 177869) ((-1186 . -620) 177791) ((-1182 . -732) T) ((-1134 . -732) T) ((-522 . -19) 177775) ((-502 . -19) 177759) ((-59 . -610) 177736) ((-1096 . -1109) T) ((-908 . -102) 177714) ((-860 . -732) T) ((-788 . -1109) T) ((-522 . -610) 177691) ((-502 . -610) 177668) ((-786 . -1109) T) ((-786 . -1074) 177635) ((-467 . -1109) T) ((-460 . -1109) T) ((-592 . -723) 177610) ((-655 . -1109) T) ((-1269 . -47) 177587) ((-1263 . -102) T) ((-1262 . -47) 177557) ((-1241 . -47) 177534) ((-1221 . -174) 177485) ((-1183 . -311) 177464) ((-1177 . -311) 177443) ((-1105 . -622) 177424) ((-1099 . -622) 177405) ((-1089 . -562) 177356) ((-1013 . -907) NIL) ((-1089 . -1231) 177307) ((-676 . -132) T) ((-633 . -1121) T) ((-1082 . -622) 177288) ((-1075 . -622) 177269) ((-1045 . -622) 177250) ((-1028 . -622) 177231) ((-705 . -652) 177181) ((-278 . -1109) T) ((-85 . -447) T) ((-85 . -401) T) ((-720 . -1065) 177151) ((-717 . -174) T) ((-50 . -1109) T) ((-601 . -47) 177128) ((-227 . -654) 177093) ((-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) 177003) ((-317 . -1060) 176932) ((-108 . -1231) T) ((-632 . -622) 176913) ((-364 . -562) T) ((-219 . -927) T) ((-219 . -826) T) ((-320 . -646) 176823) ((-317 . -646) 176752) ((-358 . -562) T) ((-350 . -562) T) ((-489 . -622) 176733) ((-108 . -562) T) ((-664 . -723) 176703) ((-1177 . -1031) NIL) ((-220 . -622) 176684) ((-323 . -23) T) ((-67 . -1227) T) ((-1009 . -619) 176616) ((-700 . -233) 176598) ((-720 . -111) 176563) ((-650 . -34) T) ((-247 . -495) 176547) ((-1111 . -1107) 176531) ((-173 . -1109) T) ((-1306 . -1161) T) ((-1301 . -21) T) ((-1301 . -25) T) ((-1299 . -132) T) ((-1297 . -132) T) ((-959 . -916) 176510) ((-1290 . -102) T) ((-1273 . -619) 176476) ((-1262 . -1047) 176411) ((-521 . -622) 176395) ((-1241 . -1227) 176374) ((-1241 . -893) NIL) ((-1241 . -891) 176326) ((-487 . -916) 176305) ((-1241 . -1047) 176271) ((-1221 . -520) 176238) ((-1096 . -723) 176087) ((-1071 . -654) 176074) ((-959 . -654) 175999) ((-603 . -496) 175980) ((-591 . -496) 175961) ((-788 . -723) 175790) ((-603 . -619) 175756) ((-591 . -619) 175722) ((-542 . -619) 175704) ((-542 . -620) 175685) ((-786 . -723) 175534) ((-1086 . -102) T) ((-386 . -25) T) ((-629 . -652) 175506) ((-386 . -21) T) ((-487 . -654) 175431) ((-467 . -723) 175402) ((-460 . -723) 175251) ((-996 . -102) T) ((-1199 . -620) NIL) ((-1199 . -619) 175233) ((-1151 . -1132) 175178) ((-743 . -102) T) ((-118 . -652) 175108) ((-611 . -622) 175090) ((-1055 . -1220) 175019) ((-908 . -313) 174957) ((-537 . -25) T) ((-882 . -93) T) ((-720 . -622) 174911) ((-687 . -93) T) ((-651 . -496) 174892) ((-142 . -102) T) ((-44 . -132) T) ((-682 . -93) T) ((-670 . -619) 174874) ((-348 . -1067) T) ((-293 . -1121) T) ((-651 . -619) 174827) ((-484 . -93) T) ((-360 . -619) 174809) ((-357 . -619) 174791) ((-349 . -619) 174773) ((-267 . -620) 174521) ((-267 . -619) 174503) ((-249 . -619) 174485) ((-249 . -620) 174346) ((-134 . -93) T) ((-139 . -93) T) ((-138 . -93) T) ((-1150 . -619) 174328) ((-1129 . -646) 174315) ((-1129 . -1060) 174302) ((-825 . -732) T) ((-825 . -863) T) ((-608 . -292) 174279) ((-587 . -723) 174244) ((-485 . -620) NIL) ((-485 . -619) 174226) ((-524 . -723) 174171) ((-320 . -102) T) ((-317 . -102) T) ((-293 . -23) T) ((-153 . -132) T) ((-917 . -619) 174153) ((-917 . -620) 174135) ((-392 . -732) T) ((-878 . -1065) 174087) ((-878 . -111) 174025) ((-720 . -1058) T) ((-718 . -1253) 174009) ((-700 . -354) NIL) ((-137 . -102) T) ((-115 . -102) T) ((-140 . -102) T) ((-525 . -619) 173941) ((-384 . -801) T) ((-225 . -1109) T) ((-169 . -1227) T) ((-384 . -798) T) ((-227 . -800) T) ((-227 . -797) T) ((-59 . -620) 173902) ((-59 . -619) 173814) ((-227 . -732) T) ((-522 . -620) 173775) ((-522 . -619) 173687) ((-503 . -619) 173619) ((-502 . -620) 173580) ((-502 . -619) 173492) ((-1089 . -368) 173443) ((-40 . -417) 173420) ((-77 . -1227) T) ((-877 . -916) NIL) ((-364 . -333) 173404) ((-364 . -368) T) ((-358 . -333) 173388) ((-358 . -368) T) ((-350 . -333) 173372) ((-350 . -368) T) ((-320 . -288) 173351) ((-108 . -368) T) ((-70 . -1227) T) ((-1241 . -343) 173303) ((-877 . -654) 173248) ((-1241 . -382) 173200) ((-971 . -132) 173055) ((-821 . -132) 172925) ((-965 . -657) 172909) ((-1096 . -174) 172820) ((-965 . -378) 172804) ((-1071 . -800) T) ((-1071 . -797) T) ((-878 . -622) 172702) ((-788 . -174) 172593) ((-786 . -174) 172504) ((-822 . -47) 172466) ((-1071 . -732) T) ((-331 . -495) 172450) ((-959 . -732) T) ((-1290 . -313) 172388) ((-460 . -174) 172299) ((-247 . -290) 172276) ((-1269 . -907) 172189) ((-1262 . -907) 172095) ((-1261 . -1065) 171930) ((-487 . -732) T) ((-1241 . -907) 171763) ((-1240 . -1065) 171571) ((-1221 . -294) 171550) ((-1196 . -1227) T) ((-1193 . -373) T) ((-1192 . -373) T) ((-1155 . -152) 171534) ((-1129 . -102) T) ((-1127 . -1109) T) ((-1089 . -23) T) ((-1089 . -1121) T) ((-1084 . -102) T) ((-1066 . -619) 171501) ((-934 . -962) T) ((-743 . -313) 171439) ((-75 . -1227) T) ((-670 . -387) 171411) ((-171 . -916) 171364) ((-30 . -962) T) ((-112 . -850) T) ((-1 . -619) 171346) ((-1012 . -415) 171318) ((-129 . -657) 171300) ((-50 . -626) 171284) ((-700 . -652) 171219) ((-601 . -907) 171132) ((-444 . -102) T) ((-129 . -378) 171114) ((-142 . -313) NIL) ((-878 . -1058) T) ((-839 . -856) 171093) ((-81 . -1227) T) ((-717 . -294) T) ((-40 . -1067) T) ((-587 . -174) T) ((-524 . -174) T) ((-517 . -619) 171075) ((-171 . -654) 170985) ((-513 . -619) 170967) ((-356 . -148) 170949) ((-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) 170928) ((-1261 . -111) 170749) ((-1240 . -111) 170538) ((-247 . -1265) 170522) ((-570 . -854) T) ((-364 . -23) T) ((-359 . -354) T) ((-320 . -313) 170509) ((-317 . -313) 170450) ((-358 . -23) T) ((-323 . -132) T) ((-350 . -23) T) ((-1013 . -1031) T) ((-31 . -622) 170431) ((-108 . -23) T) ((-660 . -1060) 170415) ((-247 . -610) 170392) ((-337 . -1109) T) ((-660 . -646) 170362) ((-1263 . -38) 170254) ((-1250 . -916) 170233) ((-112 . -1109) T) ((-1044 . -102) T) ((-1250 . -654) 170158) ((-877 . -800) NIL) ((-861 . -654) 170132) ((-877 . -797) NIL) ((-822 . -893) NIL) ((-877 . -732) T) ((-1096 . -520) 170005) ((-788 . -520) 169952) ((-786 . -520) 169904) ((-577 . -654) 169891) ((-822 . -1047) 169719) ((-460 . -520) 169662) ((-394 . -395) T) ((-1261 . -622) 169475) ((-1240 . -622) 169223) ((-60 . -1227) T) ((-627 . -856) 169202) ((-506 . -667) T) ((-1155 . -985) 169171) ((-1033 . -652) 169108) ((-1012 . -458) T) ((-705 . -854) T) ((-516 . -798) T) ((-480 . -1065) 168943) ((-506 . -113) T) ((-348 . -1109) T) ((-317 . -1161) NIL) ((-293 . -132) T) ((-400 . -1109) T) ((-876 . -1067) T) ((-700 . -375) 168910) ((-359 . -652) 168840) ((-225 . -626) 168817) ((-331 . -290) 168794) ((-480 . -111) 168615) ((-1261 . -1058) T) ((-1240 . -1058) T) ((-822 . -382) 168599) ((-171 . -732) T) ((-660 . -102) T) ((-1261 . -245) 168578) ((-1261 . -235) 168530) ((-1240 . -235) 168435) ((-1240 . -245) 168414) ((-1012 . -408) NIL) ((-676 . -645) 168362) ((-320 . -38) 168272) ((-317 . -38) 168201) ((-69 . -619) 168183) ((-323 . -499) 168149) ((-48 . -652) 168099) ((-1199 . -292) 168078) ((-1235 . -856) T) ((-1122 . -1121) 167988) ((-83 . -1227) T) ((-61 . -619) 167970) ((-485 . -292) 167949) ((-1292 . -1047) 167926) ((-1174 . -1109) T) ((-1122 . -23) 167796) ((-822 . -907) 167732) ((-1250 . -732) T) ((-1111 . -1227) T) ((-480 . -622) 167558) ((-1096 . -294) 167489) ((-973 . -1109) T) ((-900 . -102) T) ((-788 . -294) 167400) ((-331 . -19) 167384) ((-59 . -292) 167361) ((-786 . -294) 167292) ((-861 . -732) T) ((-118 . -854) NIL) ((-522 . -292) 167269) ((-331 . -610) 167246) ((-502 . -292) 167223) ((-460 . -294) 167154) ((-1044 . -313) 167005) ((-882 . -496) 166986) ((-882 . -619) 166952) ((-687 . -496) 166933) ((-577 . -732) T) ((-682 . -496) 166914) ((-687 . -619) 166864) ((-682 . -619) 166830) ((-668 . -619) 166812) ((-484 . -496) 166793) ((-484 . -619) 166759) ((-247 . -620) 166720) ((-247 . -496) 166697) ((-139 . -496) 166678) ((-138 . -496) 166659) ((-134 . -496) 166640) ((-247 . -619) 166532) ((-215 . -102) T) ((-139 . -619) 166498) ((-138 . -619) 166464) ((-134 . -619) 166430) ((-1156 . -34) T) ((-950 . -1227) T) ((-348 . -723) 166375) ((-676 . -25) T) ((-676 . -21) T) ((-1186 . -622) 166356) ((-480 . -1058) T) ((-641 . -423) 166321) ((-613 . -423) 166286) ((-1129 . -1161) T) ((-718 . -1060) 166109) ((-587 . -294) T) ((-524 . -294) T) ((-1262 . -311) 166088) ((-480 . -235) 166040) ((-480 . -245) 166019) ((-1241 . -311) 165998) ((-718 . -646) 165827) ((-1241 . -1031) NIL) ((-1089 . -132) T) ((-878 . -801) 165806) ((-145 . -102) T) ((-40 . -1109) T) ((-878 . -798) 165785) ((-650 . -1019) 165769) ((-586 . -1067) T) ((-570 . -1067) T) ((-501 . -1067) T) ((-413 . -458) T) ((-364 . -132) T) ((-320 . -406) 165753) ((-317 . -406) 165714) ((-358 . -132) T) ((-350 . -132) T) ((-1191 . -1109) T) ((-1129 . -38) 165701) ((-1103 . -619) 165668) ((-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) 165652) ((-537 . -856) T) ((-506 . -856) T) ((-360 . -1065) 165604) ((-357 . -1065) 165556) ((-349 . -1065) 165508) ((-254 . -1227) T) ((-253 . -1227) T) ((-267 . -1065) 165351) ((-249 . -1065) 165194) ((-670 . -111) 165173) ((-553 . -850) T) ((-360 . -111) 165111) ((-357 . -111) 165049) ((-349 . -111) 164987) ((-267 . -111) 164816) ((-249 . -111) 164645) ((-823 . -1231) 164624) ((-629 . -417) 164608) ((-44 . -21) T) ((-44 . -25) T) ((-821 . -645) 164514) ((-823 . -562) 164493) ((-254 . -1047) 164320) ((-253 . -1047) 164147) ((-127 . -120) 164131) ((-917 . -1065) 164096) ((-718 . -102) T) ((-705 . -1067) T) ((-603 . -622) 164077) ((-591 . -622) 164058) ((-542 . -624) 163961) ((-348 . -174) T) ((-88 . -619) 163943) ((-153 . -21) T) ((-153 . -25) T) ((-917 . -111) 163899) ((-40 . -723) 163844) ((-876 . -1109) T) ((-670 . -622) 163821) ((-651 . -622) 163802) ((-360 . -622) 163739) ((-357 . -622) 163676) ((-553 . -1109) T) ((-349 . -622) 163613) ((-331 . -620) 163574) ((-331 . -619) 163486) ((-267 . -622) 163239) ((-249 . -622) 163024) ((-1240 . -798) 162977) ((-1240 . -801) 162930) ((-254 . -382) 162899) ((-253 . -382) 162868) ((-660 . -38) 162838) ((-614 . -34) T) ((-488 . -1121) 162748) ((-481 . -34) T) ((-1122 . -132) 162618) ((-971 . -25) 162429) ((-917 . -622) 162379) ((-880 . -619) 162361) ((-971 . -21) 162316) ((-821 . -21) 162226) ((-821 . -25) 162077) ((-1233 . -373) T) ((-629 . -1067) T) ((-1188 . -562) 162056) ((-1182 . -47) 162033) ((-360 . -1058) T) ((-357 . -1058) T) ((-488 . -23) 161903) ((-349 . -1058) T) ((-267 . -1058) T) ((-249 . -1058) T) ((-1134 . -47) 161875) ((-118 . -1067) T) ((-1043 . -654) 161849) ((-965 . -34) T) ((-360 . -235) 161828) ((-360 . -245) T) ((-357 . -235) 161807) ((-357 . -245) T) ((-349 . -235) 161786) ((-349 . -245) T) ((-267 . -330) 161758) ((-249 . -330) 161715) ((-267 . -235) 161694) ((-1166 . -152) 161678) ((-254 . -907) 161610) ((-253 . -907) 161542) ((-1091 . -856) T) ((-420 . -1121) T) ((-1063 . -23) T) ((-917 . -1058) T) ((-326 . -654) 161524) ((-1033 . -854) T) ((-1221 . -1011) 161490) ((-1183 . -927) 161469) ((-1177 . -927) 161448) ((-1177 . -826) NIL) ((-1008 . -1060) 161344) ((-974 . -1227) T) ((-917 . -245) T) ((-823 . -368) 161323) ((-390 . -23) T) ((-128 . -1109) 161301) ((-122 . -1109) 161279) ((-917 . -235) T) ((-129 . -34) T) ((-384 . -654) 161244) ((-1008 . -646) 161192) ((-876 . -723) 161179) ((-1306 . -652) 161151) ((-1055 . -152) 161116) ((-40 . -174) T) ((-700 . -417) 161098) ((-718 . -313) 161085) ((-842 . -654) 161045) ((-833 . -654) 161019) ((-323 . -25) T) ((-323 . -21) T) ((-664 . -290) 160998) ((-586 . -1109) T) ((-570 . -1109) T) ((-501 . -1109) T) ((-247 . -292) 160975) ((-317 . -233) 160936) ((-1182 . -893) NIL) ((-55 . -1109) T) ((-1134 . -893) 160795) ((-130 . -856) T) ((-1182 . -1047) 160675) ((-1134 . -1047) 160558) ((-185 . -619) 160540) ((-860 . -1047) 160436) ((-788 . -290) 160363) ((-823 . -1121) T) ((-1043 . -732) T) ((-608 . -657) 160347) ((-1055 . -985) 160276) ((-1008 . -102) T) ((-823 . -23) T) ((-718 . -1161) 160254) ((-700 . -1067) T) ((-608 . -378) 160238) ((-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) 160220) ((-1182 . -382) 160204) ((-1134 . -382) 160188) ((-1033 . -417) 160150) ((-142 . -231) 160132) ((-384 . -800) T) ((-384 . -797) T) ((-876 . -174) T) ((-384 . -732) T) ((-717 . -619) 160114) ((-718 . -38) 159943) ((-1277 . -1275) 159927) ((-356 . -408) T) ((-1277 . -1109) 159877) ((-1200 . -1109) T) ((-586 . -723) 159864) ((-570 . -723) 159851) ((-501 . -723) 159816) ((-1263 . -652) 159706) ((-320 . -635) 159685) ((-842 . -732) T) ((-833 . -732) T) ((-650 . -1227) T) ((-1089 . -645) 159633) ((-1182 . -907) 159576) ((-1134 . -907) 159560) ((-668 . -1065) 159544) ((-108 . -645) 159526) ((-488 . -132) 159396) ((-1188 . -1121) T) ((-959 . -47) 159365) ((-629 . -1109) T) ((-668 . -111) 159344) ((-497 . -619) 159310) ((-331 . -292) 159287) ((-487 . -47) 159244) ((-1188 . -23) T) ((-118 . -1109) T) ((-103 . -102) 159222) ((-1289 . -1121) T) ((-554 . -856) T) ((-1063 . -132) T) ((-1033 . -1067) T) ((-825 . -1047) 159206) ((-1012 . -730) 159178) ((-1289 . -23) T) ((-705 . -723) 159143) ((-592 . -619) 159125) ((-392 . -1047) 159109) ((-359 . -1067) T) ((-390 . -132) T) ((-328 . -1047) 159093) ((-1207 . -619) 159075) ((-1129 . -834) T) ((-1114 . -1109) T) ((-227 . -893) 159057) ((-1013 . -927) T) ((-91 . -34) T) ((-1013 . -826) T) ((-921 . -927) T) ((-1089 . -21) T) ((-1089 . -25) T) ((-493 . -1231) T) ((-1008 . -313) 159022) ((-882 . -622) 159003) ((-720 . -654) 158963) ((-219 . -1231) T) ((-687 . -622) 158944) ((-227 . -1047) 158904) ((-40 . -294) T) ((-682 . -622) 158885) ((-493 . -562) T) ((-484 . -622) 158866) ((-320 . -652) 158550) ((-317 . -652) 158464) ((-364 . -25) T) ((-364 . -21) T) ((-358 . -25) T) ((-219 . -562) T) ((-358 . -21) T) ((-350 . -25) T) ((-350 . -21) T) ((-247 . -622) 158441) ((-139 . -622) 158422) ((-138 . -622) 158403) ((-134 . -622) 158384) ((-108 . -25) T) ((-108 . -21) T) ((-48 . -1067) T) ((-586 . -174) T) ((-570 . -174) T) ((-501 . -174) T) ((-664 . -619) 158366) ((-743 . -742) 158350) ((-341 . -619) 158332) ((-68 . -388) T) ((-68 . -401) T) ((-1111 . -107) 158316) ((-1071 . -893) 158298) ((-959 . -893) 158223) ((-659 . -1121) T) ((-629 . -723) 158210) ((-487 . -893) NIL) ((-1155 . -102) T) ((-1103 . -624) 158194) ((-1071 . -1047) 158176) ((-97 . -619) 158158) ((-483 . -148) T) ((-959 . -1047) 158038) ((-118 . -723) 157983) ((-659 . -23) T) ((-487 . -1047) 157859) ((-1096 . -620) NIL) ((-1096 . -619) 157841) ((-788 . -620) NIL) ((-788 . -619) 157802) ((-786 . -620) 157436) ((-786 . -619) 157350) ((-1122 . -645) 157256) ((-467 . -619) 157238) ((-460 . -619) 157220) ((-460 . -620) 157081) ((-1044 . -231) 157027) ((-878 . -916) 157006) ((-127 . -34) T) ((-823 . -132) T) ((-655 . -619) 156988) ((-584 . -102) T) ((-360 . -1296) 156972) ((-357 . -1296) 156956) ((-349 . -1296) 156940) ((-128 . -520) 156873) ((-122 . -520) 156806) ((-517 . -798) T) ((-517 . -801) T) ((-516 . -800) T) ((-103 . -313) 156744) ((-224 . -102) 156722) ((-705 . -174) T) ((-700 . -1109) T) ((-878 . -654) 156674) ((-65 . -389) T) ((-278 . -619) 156656) ((-65 . -401) T) ((-959 . -382) 156640) ((-876 . -294) T) ((-50 . -619) 156622) ((-1008 . -38) 156570) ((-1129 . -652) 156542) ((-587 . -619) 156524) ((-487 . -382) 156508) ((-587 . -620) 156490) ((-524 . -619) 156472) ((-917 . -1296) 156459) ((-877 . -1227) T) ((-707 . -458) T) ((-501 . -520) 156425) ((-493 . -368) T) ((-360 . -373) 156404) ((-357 . -373) 156383) ((-349 . -373) 156362) ((-720 . -732) T) ((-219 . -368) T) ((-117 . -458) T) ((-1300 . -1291) 156346) ((-877 . -891) 156323) ((-877 . -893) NIL) ((-971 . -856) 156222) ((-821 . -856) 156173) ((-1234 . -102) T) ((-660 . -662) 156157) ((-1213 . -34) T) ((-173 . -619) 156139) ((-1122 . -21) 156049) ((-1122 . -25) 155900) ((-877 . -1047) 155877) ((-959 . -907) 155858) ((-1250 . -47) 155835) ((-917 . -373) T) ((-59 . -657) 155819) ((-522 . -657) 155803) ((-487 . -907) 155780) ((-71 . -447) T) ((-71 . -401) T) ((-502 . -657) 155764) ((-59 . -378) 155748) ((-629 . -174) T) ((-522 . -378) 155732) ((-502 . -378) 155716) ((-833 . -714) 155700) ((-1182 . -311) 155679) ((-1188 . -132) T) ((-1151 . -1060) 155663) ((-118 . -174) T) ((-1151 . -646) 155595) ((-1155 . -313) 155533) ((-171 . -1227) T) ((-1289 . -132) T) ((-872 . -1060) 155503) ((-641 . -750) 155487) ((-613 . -750) 155471) ((-1262 . -927) 155450) ((-1241 . -927) 155429) ((-1241 . -826) NIL) ((-872 . -646) 155399) ((-700 . -723) 155349) ((-1240 . -916) 155302) ((-1033 . -1109) T) ((-877 . -382) 155279) ((-877 . -343) 155256) ((-912 . -1121) T) ((-171 . -891) 155240) ((-171 . -893) 155165) ((-493 . -1121) T) ((-359 . -1109) T) ((-219 . -1121) T) ((-76 . -447) T) ((-76 . -401) T) ((-171 . -1047) 155061) ((-323 . -856) T) ((-1277 . -520) 154994) ((-1261 . -654) 154891) ((-1240 . -654) 154761) ((-878 . -800) 154740) ((-878 . -797) 154719) ((-878 . -732) T) ((-493 . -23) T) ((-225 . -619) 154701) ((-176 . -458) T) ((-224 . -313) 154639) ((-86 . -447) T) ((-86 . -401) T) ((-219 . -23) T) ((-1301 . -1294) 154618) ((-683 . -1047) 154602) ((-586 . -294) T) ((-570 . -294) T) ((-501 . -294) T) ((-137 . -476) 154557) ((-660 . -652) 154516) ((-48 . -1109) T) ((-718 . -233) 154500) ((-877 . -907) NIL) ((-1250 . -893) NIL) ((-896 . -102) T) ((-892 . -102) T) ((-394 . -1109) T) ((-171 . -382) 154484) ((-171 . -343) 154468) ((-1250 . -1047) 154348) ((-861 . -1047) 154244) ((-1151 . -102) T) ((-668 . -798) 154223) ((-659 . -132) T) ((-668 . -801) 154202) ((-118 . -520) 154110) ((-577 . -1047) 154092) ((-298 . -1284) 154062) ((-872 . -102) T) ((-970 . -562) 154041) ((-1221 . -1065) 153924) ((-1012 . -1060) 153869) ((-488 . -645) 153775) ((-911 . -1109) T) ((-1033 . -723) 153712) ((-717 . -1065) 153677) ((-1012 . -646) 153622) ((-623 . -102) T) ((-608 . -34) T) ((-1156 . -1227) T) ((-1221 . -111) 153491) ((-480 . -654) 153388) ((-359 . -723) 153333) ((-171 . -907) 153292) ((-705 . -294) T) ((-700 . -174) T) ((-717 . -111) 153248) ((-1306 . -1067) T) ((-1250 . -382) 153232) ((-424 . -1231) 153210) ((-1127 . -619) 153192) ((-317 . -854) NIL) ((-424 . -562) T) ((-227 . -311) T) ((-1240 . -797) 153145) ((-1240 . -800) 153098) ((-1261 . -732) T) ((-1240 . -732) T) ((-48 . -723) 153063) ((-227 . -1031) T) ((-356 . -1284) 153040) ((-1263 . -417) 153006) ((-724 . -732) T) ((-337 . -619) 152988) ((-1250 . -907) 152931) ((-1221 . -622) 152813) ((-112 . -619) 152795) ((-112 . -620) 152777) ((-724 . -479) T) ((-717 . -622) 152727) ((-1300 . -1060) 152711) ((-488 . -21) 152621) ((-128 . -495) 152605) ((-122 . -495) 152589) ((-488 . -25) 152440) ((-1300 . -646) 152410) ((-629 . -294) T) ((-592 . -1065) 152385) ((-443 . -1109) T) ((-1071 . -311) T) ((-118 . -294) T) ((-1113 . -102) T) ((-1012 . -102) T) ((-592 . -111) 152353) ((-1151 . -313) 152291) ((-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) 152201) ((-512 . -102) T) ((-508 . -102) T) ((-359 . -174) T) ((-348 . -619) 152183) ((-413 . -1060) 152135) ((-400 . -619) 152117) ((-1129 . -854) T) ((-480 . -732) T) ((-899 . -1047) 152085) ((-413 . -646) 152037) ((-108 . -856) T) ((-664 . -1065) 152021) ((-493 . -132) T) ((-1263 . -1067) T) ((-219 . -132) T) ((-1166 . -102) 151999) ((-99 . -1109) T) ((-247 . -672) 151983) ((-247 . -657) 151967) ((-664 . -111) 151946) ((-592 . -622) 151930) ((-320 . -417) 151914) ((-247 . -378) 151898) ((-1169 . -237) 151845) ((-1008 . -233) 151829) ((-74 . -1227) T) ((-48 . -174) T) ((-707 . -393) T) ((-707 . -144) T) ((-1300 . -102) T) ((-1207 . -622) 151811) ((-1096 . -1065) 151654) ((-267 . -916) 151633) ((-249 . -916) 151612) ((-788 . -1065) 151435) ((-786 . -1065) 151278) ((-614 . -1227) T) ((-1174 . -619) 151260) ((-1096 . -111) 151089) ((-1055 . -102) T) ((-481 . -1227) T) ((-467 . -1065) 151060) ((-460 . -1065) 150903) ((-670 . -654) 150887) ((-877 . -311) T) ((-788 . -111) 150696) ((-786 . -111) 150525) ((-360 . -654) 150477) ((-357 . -654) 150429) ((-349 . -654) 150381) ((-267 . -654) 150306) ((-249 . -654) 150231) ((-1168 . -856) T) ((-1097 . -1047) 150215) ((-467 . -111) 150176) ((-460 . -111) 150005) ((-1085 . -1047) 149982) ((-1009 . -34) T) ((-973 . -619) 149964) ((-965 . -1227) T) ((-127 . -1019) 149948) ((-970 . -1121) T) ((-877 . -1031) NIL) ((-741 . -1121) T) ((-721 . -1121) T) ((-664 . -622) 149866) ((-1277 . -495) 149850) ((-1151 . -38) 149810) ((-970 . -23) T) ((-917 . -654) 149775) ((-871 . -1109) T) ((-849 . -102) T) ((-823 . -21) T) ((-641 . -1060) 149759) ((-613 . -1060) 149743) ((-823 . -25) T) ((-741 . -23) T) ((-721 . -23) T) ((-641 . -646) 149727) ((-110 . -667) T) ((-613 . -646) 149711) ((-587 . -1065) 149676) ((-524 . -1065) 149621) ((-229 . -57) 149579) ((-459 . -23) T) ((-413 . -102) T) ((-266 . -102) T) ((-110 . -113) T) ((-700 . -294) T) ((-872 . -38) 149549) ((-587 . -111) 149505) ((-524 . -111) 149434) ((-1096 . -622) 149170) ((-424 . -1121) T) ((-320 . -1067) 149060) ((-317 . -1067) T) ((-129 . -1227) T) ((-788 . -622) 148808) ((-786 . -622) 148574) ((-664 . -1058) T) ((-1306 . -1109) T) ((-460 . -622) 148359) ((-171 . -311) 148290) ((-424 . -23) T) ((-40 . -619) 148272) ((-40 . -620) 148256) ((-108 . -1001) 148238) ((-117 . -875) 148222) ((-655 . -622) 148206) ((-48 . -520) 148172) ((-1213 . -1019) 148156) ((-1191 . -619) 148123) ((-1199 . -34) T) ((-961 . -619) 148089) ((-928 . -619) 148071) ((-1122 . -856) 148022) ((-777 . -619) 148004) ((-678 . -619) 147986) ((-1166 . -313) 147924) ((-485 . -34) T) ((-1101 . -1227) T) ((-483 . -458) T) ((-1150 . -34) T) ((-1096 . -1058) T) ((-50 . -622) 147893) ((-788 . -1058) T) ((-786 . -1058) T) ((-653 . -237) 147877) ((-638 . -237) 147823) ((-587 . -622) 147773) ((-524 . -622) 147703) ((-1250 . -311) 147682) ((-1096 . -330) 147643) ((-460 . -1058) T) ((-1188 . -21) T) ((-1096 . -235) 147622) ((-788 . -330) 147599) ((-788 . -235) T) ((-786 . -330) 147571) ((-737 . -1231) 147550) ((-331 . -657) 147534) ((-1188 . -25) T) ((-59 . -34) T) ((-525 . -34) T) ((-522 . -34) T) ((-460 . -330) 147513) ((-331 . -378) 147497) ((-503 . -34) T) ((-502 . -34) T) ((-1012 . -1161) NIL) ((-737 . -562) 147428) ((-641 . -102) T) ((-613 . -102) T) ((-360 . -732) T) ((-357 . -732) T) ((-349 . -732) T) ((-267 . -732) T) ((-249 . -732) T) ((-1055 . -313) 147336) ((-908 . -1109) 147314) ((-50 . -1058) T) ((-1289 . -21) T) ((-1289 . -25) T) ((-1184 . -562) 147293) ((-1183 . -1231) 147272) ((-1183 . -562) 147223) ((-587 . -1058) T) ((-524 . -1058) T) ((-1177 . -1231) 147202) ((-366 . -1047) 147186) ((-326 . -1047) 147170) ((-1033 . -294) T) ((-384 . -893) 147152) ((-1177 . -562) 147103) ((-1012 . -38) 147048) ((-1008 . -652) 146971) ((-805 . -1121) T) ((-917 . -732) T) ((-587 . -245) T) ((-587 . -235) T) ((-524 . -235) T) ((-524 . -245) T) ((-1135 . -562) 146950) ((-359 . -294) T) ((-653 . -701) 146934) ((-384 . -1047) 146894) ((-298 . -1060) 146815) ((-1129 . -1067) T) ((-103 . -126) 146799) ((-298 . -646) 146741) ((-805 . -23) T) ((-1299 . -1294) 146717) ((-1277 . -290) 146694) ((-413 . -313) 146659) ((-1297 . -1294) 146638) ((-1263 . -1109) T) ((-876 . -619) 146620) ((-842 . -1047) 146589) ((-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) 146571) ((-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) 146555) ((-225 . -622) 146517) ((-110 . -856) T) ((-659 . -21) T) ((-659 . -25) T) ((-1300 . -38) 146487) ((-118 . -290) 146438) ((-1277 . -19) 146422) ((-1277 . -610) 146399) ((-1290 . -1109) T) ((-356 . -1060) 146344) ((-1086 . -1109) T) ((-996 . -1109) T) ((-970 . -132) T) ((-743 . -1109) T) ((-356 . -646) 146289) ((-741 . -132) T) ((-721 . -132) T) ((-517 . -799) T) ((-517 . -800) T) ((-459 . -132) T) ((-413 . -1161) 146267) ((-225 . -1058) T) ((-298 . -102) 146049) ((-142 . -1109) T) ((-705 . -1011) T) ((-91 . -1227) T) ((-128 . -619) 145981) ((-122 . -619) 145913) ((-1306 . -174) T) ((-1183 . -368) 145892) ((-1177 . -368) 145871) ((-320 . -1109) T) ((-424 . -132) T) ((-317 . -1109) T) ((-413 . -38) 145823) ((-1142 . -102) T) ((-1263 . -723) 145715) ((-660 . -1067) T) ((-1144 . -1272) T) ((-323 . -146) 145694) ((-323 . -148) 145673) ((-137 . -1109) T) ((-140 . -1109) T) ((-115 . -1109) T) ((-864 . -102) T) ((-586 . -619) 145655) ((-570 . -620) 145554) ((-570 . -619) 145536) ((-501 . -619) 145518) ((-501 . -620) 145463) ((-491 . -23) T) ((-488 . -856) 145414) ((-493 . -645) 145396) ((-972 . -619) 145378) ((-219 . -645) 145360) ((-227 . -410) T) ((-668 . -654) 145344) ((-55 . -619) 145326) ((-1182 . -927) 145305) ((-737 . -1121) T) ((-356 . -102) T) ((-1226 . -1092) T) ((-1129 . -850) T) ((-824 . -856) T) ((-737 . -23) T) ((-348 . -1065) 145250) ((-1168 . -1167) T) ((-1156 . -107) 145234) ((-1184 . -1121) T) ((-1183 . -1121) T) ((-521 . -1047) 145218) ((-1177 . -1121) T) ((-1135 . -1121) T) ((-348 . -111) 145147) ((-1013 . -1231) T) ((-127 . -1227) T) ((-921 . -1231) T) ((-700 . -290) NIL) ((-1278 . -619) 145129) ((-1184 . -23) T) ((-1183 . -23) T) ((-1177 . -23) T) ((-1013 . -562) T) ((-1151 . -233) 145113) ((-921 . -562) T) ((-1135 . -23) T) ((-250 . -619) 145095) ((-1084 . -1109) T) ((-805 . -132) T) ((-716 . -619) 145077) ((-320 . -723) 144987) ((-317 . -723) 144916) ((-705 . -619) 144898) ((-705 . -620) 144843) ((-413 . -406) 144827) ((-444 . -1109) T) ((-493 . -25) T) ((-493 . -21) T) ((-1129 . -1109) T) ((-219 . -25) T) ((-219 . -21) T) ((-718 . -417) 144811) ((-720 . -1047) 144780) ((-1277 . -619) 144692) ((-1277 . -620) 144653) ((-1263 . -174) T) ((-1200 . -619) 144635) ((-247 . -34) T) ((-348 . -622) 144565) ((-400 . -622) 144547) ((-933 . -983) T) ((-1213 . -1227) T) ((-668 . -797) 144526) ((-668 . -800) 144505) ((-404 . -401) T) ((-529 . -102) 144483) ((-1044 . -1109) T) ((-224 . -1004) 144467) ((-510 . -102) T) ((-629 . -619) 144449) ((-45 . -856) NIL) ((-629 . -620) 144426) ((-1044 . -616) 144401) ((-908 . -520) 144334) ((-348 . -1058) T) ((-118 . -620) NIL) ((-118 . -619) 144316) ((-878 . -1227) T) ((-676 . -423) 144300) ((-676 . -1132) 144245) ((-506 . -152) 144227) ((-348 . -235) T) ((-348 . -245) T) ((-40 . -1065) 144172) ((-878 . -891) 144156) ((-878 . -893) 144081) ((-718 . -1067) T) ((-700 . -1011) NIL) ((-1261 . -47) 144051) ((-1240 . -47) 144028) ((-1150 . -1019) 143999) ((-3 . |UnionCategory|) T) ((-1129 . -723) 143986) ((-1114 . -619) 143968) ((-1089 . -148) 143947) ((-1089 . -146) 143898) ((-973 . -622) 143882) ((-227 . -927) T) ((-40 . -111) 143811) ((-878 . -1047) 143675) ((-1013 . -368) T) ((-1012 . -233) 143652) ((-707 . -1060) 143639) ((-921 . -368) T) ((-707 . -646) 143626) ((-323 . -1215) 143592) ((-384 . -311) T) ((-323 . -1212) 143558) ((-320 . -174) 143537) ((-317 . -174) T) ((-587 . -1296) 143524) ((-524 . -1296) 143501) ((-364 . -148) 143480) ((-117 . -1060) 143467) ((-364 . -146) 143418) ((-358 . -148) 143397) ((-358 . -146) 143348) ((-350 . -148) 143327) ((-614 . -1203) 143303) ((-117 . -646) 143290) ((-350 . -146) 143241) ((-323 . -35) 143207) ((-481 . -1203) 143186) ((0 . |EnumerationCategory|) T) ((-323 . -95) 143152) ((-384 . -1031) T) ((-108 . -148) T) ((-108 . -146) NIL) ((-45 . -237) 143102) ((-660 . -1109) T) ((-614 . -107) 143049) ((-491 . -132) T) ((-481 . -107) 142999) ((-242 . -1121) 142909) ((-878 . -382) 142893) ((-878 . -343) 142877) ((-242 . -23) 142747) ((-40 . -622) 142677) ((-1071 . -927) T) ((-1071 . -826) T) ((-587 . -373) T) ((-524 . -373) T) ((-1290 . -520) 142610) ((-1269 . -562) 142589) ((-356 . -1161) T) ((-331 . -34) T) ((-44 . -423) 142573) ((-1191 . -622) 142509) ((-879 . -1227) T) ((-396 . -750) 142493) ((-1262 . -1231) 142472) ((-1262 . -562) 142423) ((-1151 . -652) 142382) ((-737 . -132) T) ((-678 . -622) 142366) ((-1241 . -1231) 142345) ((-1241 . -562) 142296) ((-1240 . -1227) 142275) ((-1240 . -893) 142148) ((-1240 . -891) 142118) ((-1184 . -132) T) ((-315 . -1092) T) ((-1183 . -132) T) ((-743 . -520) 142051) ((-1177 . -132) T) ((-1135 . -132) T) ((-900 . -1109) T) ((-145 . -850) T) ((-1033 . -1011) T) ((-697 . -619) 142033) ((-1013 . -23) T) ((-529 . -313) 141971) ((-1013 . -1121) T) ((-142 . -520) NIL) ((-872 . -652) 141916) ((-1012 . -354) NIL) ((-980 . -23) T) ((-921 . -1121) T) ((-356 . -38) 141881) ((-921 . -23) T) ((-878 . -907) 141840) ((-82 . -619) 141822) ((-40 . -1058) T) ((-876 . -1065) 141809) ((-876 . -111) 141794) ((-707 . -102) T) ((-700 . -619) 141776) ((-608 . -1227) T) ((-602 . -562) 141755) ((-433 . -1121) T) ((-344 . -1060) 141739) ((-215 . -1109) T) ((-176 . -1060) 141671) ((-480 . -47) 141641) ((-135 . -102) T) ((-40 . -235) 141613) ((-40 . -245) T) ((-117 . -102) T) ((-601 . -562) 141592) ((-344 . -646) 141576) ((-700 . -620) 141484) ((-320 . -520) 141450) ((-176 . -646) 141382) ((-317 . -520) 141274) ((-1261 . -1047) 141258) ((-1240 . -1047) 141044) ((-1008 . -417) 141028) ((-433 . -23) T) ((-1129 . -174) T) ((-1263 . -294) T) ((-660 . -723) 140998) ((-145 . -1109) T) ((-48 . -1011) T) ((-413 . -233) 140982) ((-299 . -237) 140932) ((-877 . -927) T) ((-877 . -826) NIL) ((-876 . -622) 140904) ((-870 . -856) T) ((-1240 . -343) 140874) ((-1240 . -382) 140844) ((-224 . -1130) 140828) ((-1277 . -292) 140805) ((-1221 . -654) 140730) ((-1012 . -652) 140660) ((-970 . -21) T) ((-970 . -25) T) ((-741 . -21) T) ((-741 . -25) T) ((-721 . -21) T) ((-721 . -25) T) ((-717 . -654) 140625) ((-459 . -21) T) ((-459 . -25) T) ((-344 . -102) T) ((-176 . -102) T) ((-1008 . -1067) T) ((-876 . -1058) T) ((-780 . -102) T) ((-1262 . -368) 140604) ((-1261 . -907) 140510) ((-1241 . -368) 140489) ((-1240 . -907) 140340) ((-1033 . -619) 140322) ((-413 . -834) 140275) ((-1184 . -499) 140241) ((-171 . -927) 140172) ((-1183 . -499) 140138) ((-1177 . -499) 140104) ((-718 . -1109) T) ((-1135 . -499) 140070) ((-586 . -1065) 140057) ((-570 . -1065) 140044) ((-501 . -1065) 140009) ((-320 . -294) 139988) ((-317 . -294) T) ((-359 . -619) 139970) ((-424 . -25) T) ((-424 . -21) T) ((-99 . -290) 139949) ((-586 . -111) 139934) ((-570 . -111) 139919) ((-501 . -111) 139875) ((-1186 . -893) 139842) ((-908 . -495) 139826) ((-48 . -619) 139808) ((-48 . -620) 139753) ((-242 . -132) 139623) ((-1300 . -652) 139582) ((-1250 . -927) 139561) ((-822 . -1231) 139540) ((-394 . -496) 139521) ((-1044 . -520) 139365) ((-394 . -619) 139331) ((-822 . -562) 139262) ((-592 . -654) 139237) ((-267 . -47) 139209) ((-249 . -47) 139166) ((-537 . -515) 139143) ((-586 . -622) 139115) ((-570 . -622) 139087) ((-501 . -622) 139020) ((-1083 . -1227) T) ((-1009 . -1227) T) ((-1269 . -23) T) ((-705 . -1065) 138985) ((-1269 . -1121) T) ((-1262 . -1121) T) ((-1262 . -23) T) ((-1241 . -1121) T) ((-1241 . -23) T) ((-1012 . -375) 138957) ((-112 . -373) T) ((-480 . -907) 138863) ((-1221 . -732) T) ((-911 . -619) 138845) ((-55 . -622) 138827) ((-91 . -107) 138811) ((-1129 . -294) T) ((-912 . -856) 138762) ((-707 . -1161) T) ((-705 . -111) 138718) ((-849 . -652) 138635) ((-602 . -1121) T) ((-601 . -1121) T) ((-718 . -723) 138464) ((-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) 138401) ((-586 . -1058) T) ((-570 . -1058) T) ((-501 . -1058) T) ((-602 . -23) T) ((-348 . -1296) 138378) ((-323 . -458) 138357) ((-344 . -313) 138344) ((-601 . -23) T) ((-433 . -132) T) ((-664 . -654) 138318) ((-247 . -1019) 138302) ((-878 . -311) T) ((-1301 . -1291) 138286) ((-777 . -798) T) ((-777 . -801) T) ((-707 . -38) 138273) ((-570 . -235) T) ((-501 . -245) T) ((-501 . -235) T) ((-1159 . -237) 138223) ((-1096 . -916) 138202) ((-117 . -38) 138189) ((-211 . -806) T) ((-210 . -806) T) ((-209 . -806) T) ((-208 . -806) T) ((-878 . -1031) 138167) ((-1290 . -495) 138151) ((-788 . -916) 138130) ((-786 . -916) 138109) ((-1199 . -1227) T) ((-460 . -916) 138088) ((-743 . -495) 138072) ((-1096 . -654) 137997) ((-705 . -622) 137932) ((-788 . -654) 137857) ((-629 . -1065) 137844) ((-485 . -1227) T) ((-348 . -373) T) ((-142 . -495) 137826) ((-786 . -654) 137751) ((-1150 . -1227) T) ((-555 . -856) T) ((-467 . -654) 137722) ((-267 . -893) 137581) ((-249 . -893) NIL) ((-118 . -1065) 137526) ((-460 . -654) 137451) ((-670 . -1047) 137428) ((-629 . -111) 137413) ((-396 . -1060) 137397) ((-360 . -1047) 137381) ((-357 . -1047) 137365) ((-349 . -1047) 137349) ((-267 . -1047) 137193) ((-249 . -1047) 137069) ((-118 . -111) 136998) ((-59 . -1227) T) ((-396 . -646) 136982) ((-627 . -1060) 136966) ((-525 . -1227) T) ((-522 . -1227) T) ((-503 . -1227) T) ((-502 . -1227) T) ((-443 . -619) 136948) ((-440 . -619) 136930) ((-627 . -646) 136914) ((-3 . -102) T) ((-1036 . -1220) 136883) ((-839 . -102) T) ((-695 . -57) 136841) ((-705 . -1058) T) ((-641 . -652) 136810) ((-613 . -652) 136779) ((-50 . -654) 136753) ((-293 . -458) T) ((-482 . -1220) 136722) ((0 . -102) T) ((-587 . -654) 136687) ((-524 . -654) 136632) ((-49 . -102) T) ((-917 . -1047) 136619) ((-705 . -245) T) ((-1089 . -415) 136598) ((-737 . -645) 136546) ((-1008 . -1109) T) ((-718 . -174) 136437) ((-629 . -622) 136332) ((-493 . -1001) 136314) ((-267 . -382) 136298) ((-249 . -382) 136282) ((-405 . -1109) T) ((-1035 . -102) 136260) ((-344 . -38) 136244) ((-219 . -1001) 136226) ((-118 . -622) 136156) ((-176 . -38) 136088) ((-1261 . -311) 136067) ((-1240 . -311) 136046) ((-664 . -732) T) ((-99 . -619) 136028) ((-483 . -1060) 135993) ((-1177 . -645) 135945) ((-483 . -646) 135910) ((-491 . -25) T) ((-491 . -21) T) ((-1240 . -1031) 135862) ((-1066 . -1227) T) ((-629 . -1058) T) ((-384 . -410) T) ((-396 . -102) T) ((-1114 . -624) 135777) ((-267 . -907) 135723) ((-249 . -907) 135700) ((-118 . -1058) T) ((-822 . -1121) T) ((-1096 . -732) T) ((-629 . -235) 135679) ((-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) 135658) ((-78 . -402) T) ((-78 . -401) T) ((-539 . -773) 135640) ((-700 . -1065) 135590) ((-1269 . -132) T) ((-1262 . -132) T) ((-1241 . -132) T) ((-1184 . -25) T) ((-1151 . -417) 135574) ((-641 . -372) 135506) ((-613 . -372) 135438) ((-1166 . -1158) 135422) ((-103 . -1109) 135400) ((-1184 . -21) T) ((-1183 . -21) T) ((-871 . -619) 135382) ((-1008 . -723) 135330) ((-225 . -654) 135297) ((-700 . -111) 135231) ((-50 . -732) T) ((-1183 . -25) T) ((-356 . -354) T) ((-1177 . -21) T) ((-1089 . -458) 135182) ((-1177 . -25) T) ((-718 . -520) 135129) ((-587 . -732) T) ((-524 . -732) T) ((-1135 . -21) T) ((-1135 . -25) T) ((-1302 . -102) T) ((-602 . -132) T) ((-298 . -652) 134864) ((-601 . -132) T) ((-364 . -458) T) ((-358 . -458) T) ((-350 . -458) T) ((-480 . -311) 134843) ((-1235 . -102) T) ((-317 . -290) 134778) ((-108 . -458) T) ((-79 . -447) T) ((-79 . -401) T) ((-483 . -102) T) ((-697 . -622) 134762) ((-1306 . -619) 134744) ((-1306 . -620) 134726) ((-1089 . -408) 134705) ((-1044 . -495) 134636) ((-570 . -801) T) ((-570 . -798) T) ((-1072 . -237) 134582) ((-364 . -408) 134533) ((-358 . -408) 134484) ((-350 . -408) 134435) ((-1292 . -1121) T) ((-1301 . -1060) 134419) ((-386 . -1060) 134403) ((-1301 . -646) 134373) ((-386 . -646) 134343) ((-700 . -622) 134278) ((-1292 . -23) T) ((-1279 . -102) T) ((-177 . -619) 134260) ((-1151 . -1067) T) ((-553 . -373) T) ((-676 . -750) 134244) ((-1188 . -146) 134223) ((-1188 . -148) 134202) ((-1155 . -1109) T) ((-1155 . -1080) 134171) ((-69 . -1227) T) ((-1033 . -1065) 134108) ((-356 . -652) 134038) ((-872 . -1067) T) ((-242 . -645) 133944) ((-700 . -1058) T) ((-359 . -1065) 133889) ((-61 . -1227) T) ((-1033 . -111) 133805) ((-908 . -619) 133716) ((-700 . -245) T) ((-700 . -235) NIL) ((-849 . -854) 133695) ((-705 . -801) T) ((-705 . -798) T) ((-1012 . -417) 133672) ((-359 . -111) 133601) ((-384 . -927) T) ((-413 . -854) 133580) ((-718 . -294) 133491) ((-225 . -732) T) ((-1269 . -499) 133457) ((-1262 . -499) 133423) ((-1241 . -499) 133389) ((-584 . -1109) T) ((-320 . -1011) 133368) ((-224 . -1109) 133346) ((-1234 . -850) T) ((-323 . -982) 133308) ((-105 . -102) T) ((-48 . -1065) 133273) ((-1301 . -102) T) ((-386 . -102) T) ((-48 . -111) 133229) ((-1013 . -645) 133211) ((-1263 . -619) 133193) ((-537 . -102) T) ((-506 . -102) T) ((-1142 . -1143) 133177) ((-153 . -1284) 133161) ((-247 . -1227) T) ((-1226 . -102) T) ((-1033 . -622) 133098) ((-1182 . -1231) 133077) ((-359 . -622) 133007) ((-1134 . -1231) 132986) ((-242 . -21) 132896) ((-242 . -25) 132747) ((-128 . -120) 132731) ((-122 . -120) 132715) ((-44 . -750) 132699) ((-1182 . -562) 132610) ((-1134 . -562) 132541) ((-1234 . -1109) T) ((-1044 . -290) 132516) ((-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) 132426) ((-253 . -1121) 132336) ((-1033 . -1058) T) ((-1012 . -1067) T) ((-48 . -622) 132269) ((-348 . -654) 132214) ((-627 . -38) 132198) ((-1290 . -619) 132160) ((-1290 . -620) 132121) ((-1086 . -619) 132103) ((-1033 . -245) T) ((-359 . -1058) T) ((-821 . -1284) 132073) ((-254 . -23) T) ((-253 . -23) T) ((-996 . -619) 132055) ((-743 . -620) 132016) ((-743 . -619) 131998) ((-805 . -856) 131977) ((-1169 . -152) 131924) ((-1008 . -520) 131836) ((-359 . -235) T) ((-359 . -245) T) ((-394 . -622) 131817) ((-1013 . -25) T) ((-142 . -619) 131799) ((-142 . -620) 131758) ((-917 . -311) T) ((-1013 . -21) T) ((-980 . -25) T) ((-921 . -21) T) ((-921 . -25) T) ((-433 . -21) T) ((-433 . -25) T) ((-849 . -417) 131742) ((-48 . -1058) T) ((-1299 . -1291) 131726) ((-1297 . -1291) 131710) ((-1044 . -610) 131685) ((-320 . -620) 131546) ((-320 . -619) 131528) ((-317 . -620) NIL) ((-317 . -619) 131510) ((-48 . -245) T) ((-48 . -235) T) ((-660 . -290) 131471) ((-556 . -237) 131421) ((-140 . -619) 131388) ((-137 . -619) 131370) ((-115 . -619) 131352) ((-483 . -38) 131317) ((-1301 . -1298) 131296) ((-1292 . -132) T) ((-1300 . -1067) T) ((-1091 . -102) T) ((-88 . -1227) T) ((-506 . -313) NIL) ((-1009 . -107) 131280) ((-896 . -1109) T) ((-892 . -1109) T) ((-1277 . -657) 131264) ((-1277 . -378) 131248) ((-331 . -1227) T) ((-599 . -856) T) ((-1151 . -1109) T) ((-1151 . -1062) 131188) ((-103 . -520) 131121) ((-934 . -619) 131103) ((-348 . -732) T) ((-30 . -619) 131085) ((-872 . -1109) T) ((-849 . -1067) 131064) ((-40 . -654) 131009) ((-227 . -1231) T) ((-413 . -1067) T) ((-1168 . -152) 130991) ((-1008 . -294) 130942) ((-623 . -1109) T) ((-227 . -562) T) ((-323 . -1258) 130926) ((-323 . -1255) 130896) ((-707 . -652) 130868) ((-1199 . -1203) 130847) ((-1084 . -619) 130829) ((-1199 . -107) 130779) ((-653 . -152) 130763) ((-638 . -152) 130709) ((-117 . -652) 130681) ((-485 . -1203) 130660) ((-493 . -148) T) ((-493 . -146) NIL) ((-1129 . -620) 130575) ((-444 . -619) 130557) ((-219 . -148) T) ((-219 . -146) NIL) ((-1129 . -619) 130539) ((-130 . -102) T) ((-52 . -102) T) ((-1241 . -645) 130491) ((-485 . -107) 130441) ((-1002 . -23) T) ((-1301 . -38) 130411) ((-1182 . -1121) T) ((-1134 . -1121) T) ((-1071 . -1231) T) ((-315 . -102) T) ((-860 . -1121) T) ((-959 . -1231) 130390) ((-487 . -1231) 130369) ((-1071 . -562) T) ((-959 . -562) 130300) ((-1182 . -23) T) ((-1160 . -1092) T) ((-1134 . -23) T) ((-860 . -23) T) ((-487 . -562) 130231) ((-1151 . -723) 130163) ((-676 . -1060) 130147) ((-1155 . -520) 130080) ((-676 . -646) 130064) ((-1044 . -620) NIL) ((-1044 . -619) 130046) ((-96 . -1092) T) ((-872 . -723) 130016) ((-1221 . -47) 129985) ((-254 . -132) T) ((-253 . -132) T) ((-1113 . -1109) T) ((-1012 . -1109) T) ((-62 . -619) 129967) ((-1177 . -856) NIL) ((-1033 . -798) T) ((-1033 . -801) T) ((-1306 . -1065) 129954) ((-1306 . -111) 129939) ((-1269 . -25) T) ((-1269 . -21) T) ((-876 . -654) 129926) ((-1262 . -21) T) ((-1262 . -25) T) ((-1241 . -21) T) ((-1241 . -25) T) ((-1036 . -152) 129910) ((-878 . -826) 129889) ((-878 . -927) T) ((-718 . -290) 129816) ((-602 . -21) T) ((-344 . -652) 129775) ((-602 . -25) T) ((-601 . -21) T) ((-176 . -652) 129692) ((-40 . -732) T) ((-224 . -520) 129625) ((-601 . -25) T) ((-482 . -152) 129609) ((-469 . -152) 129593) ((-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) 129577) ((-1297 . -1060) 129561) ((-1299 . -646) 129531) ((-1166 . -1109) 129509) ((-877 . -1231) T) ((-1297 . -646) 129479) ((-660 . -619) 129461) ((-877 . -562) T) ((-700 . -373) NIL) ((-44 . -1060) 129445) ((-1306 . -622) 129427) ((-1300 . -1109) T) ((-676 . -102) T) ((-364 . -1284) 129411) ((-358 . -1284) 129395) ((-44 . -646) 129379) ((-350 . -1284) 129363) ((-554 . -102) T) ((-526 . -856) 129342) ((-1055 . -1109) T) ((-823 . -458) 129321) ((-153 . -1060) 129305) ((-1055 . -1080) 129234) ((-1036 . -985) 129203) ((-825 . -1121) T) ((-1012 . -723) 129148) ((-153 . -646) 129132) ((-392 . -1121) T) ((-482 . -985) 129101) ((-469 . -985) 129070) ((-110 . -152) 129052) ((-73 . -619) 129034) ((-900 . -619) 129016) ((-1089 . -730) 128995) ((-1306 . -1058) T) ((-822 . -645) 128943) ((-298 . -1067) 128885) ((-171 . -1231) 128790) ((-227 . -1121) T) ((-328 . -23) T) ((-1177 . -1001) 128742) ((-849 . -1109) T) ((-1263 . -1065) 128647) ((-1135 . -746) 128626) ((-1261 . -927) 128605) ((-1240 . -927) 128584) ((-876 . -732) T) ((-171 . -562) 128495) ((-586 . -654) 128482) ((-570 . -654) 128469) ((-413 . -1109) T) ((-266 . -1109) T) ((-215 . -619) 128451) ((-501 . -654) 128416) ((-227 . -23) T) ((-1240 . -826) 128369) ((-1299 . -102) T) ((-359 . -1296) 128346) ((-1297 . -102) T) ((-1263 . -111) 128238) ((-821 . -1060) 128135) ((-821 . -646) 128077) ((-145 . -619) 128059) ((-1002 . -132) T) ((-44 . -102) T) ((-242 . -856) 128010) ((-1250 . -1231) 127989) ((-103 . -495) 127973) ((-1300 . -723) 127943) ((-1096 . -47) 127904) ((-1071 . -1121) T) ((-959 . -1121) T) ((-128 . -34) T) ((-122 . -34) T) ((-788 . -47) 127881) ((-786 . -47) 127853) ((-1250 . -562) 127764) ((-359 . -373) T) ((-487 . -1121) T) ((-1182 . -132) T) ((-1134 . -132) T) ((-460 . -47) 127743) ((-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) 127676) ((-598 . -1092) T) ((-592 . -1047) 127660) ((-1263 . -622) 127534) ((-487 . -23) T) ((-356 . -1067) T) ((-1221 . -907) 127515) ((-676 . -313) 127453) ((-1122 . -1284) 127423) ((-705 . -654) 127388) ((-1012 . -174) T) ((-970 . -146) 127367) ((-641 . -1109) T) ((-613 . -1109) T) ((-970 . -148) 127346) ((-1013 . -856) T) ((-741 . -148) 127325) ((-741 . -146) 127304) ((-980 . -856) T) ((-839 . -652) 127221) ((-480 . -927) 127200) ((-323 . -1060) 127035) ((-320 . -1065) 126945) ((-317 . -1065) 126874) ((-1008 . -290) 126832) ((-413 . -723) 126784) ((-323 . -646) 126625) ((-707 . -854) T) ((-1263 . -1058) T) ((-320 . -111) 126521) ((-317 . -111) 126434) ((-971 . -102) T) ((-821 . -102) 126224) ((-718 . -620) NIL) ((-718 . -619) 126206) ((-664 . -1047) 126102) ((-1263 . -330) 126046) ((-1044 . -292) 126021) ((-586 . -732) T) ((-570 . -800) T) ((-171 . -368) 125972) ((-570 . -797) T) ((-570 . -732) T) ((-501 . -732) T) ((-1155 . -495) 125956) ((-1096 . -893) NIL) ((-877 . -1121) T) ((-118 . -916) NIL) ((-1299 . -1298) 125932) ((-1297 . -1298) 125911) ((-788 . -893) NIL) ((-786 . -893) 125770) ((-1292 . -25) T) ((-1292 . -21) T) ((-1224 . -102) 125748) ((-1115 . -401) T) ((-629 . -654) 125735) ((-460 . -893) NIL) ((-681 . -102) 125713) ((-1096 . -1047) 125540) ((-877 . -23) T) ((-788 . -1047) 125399) ((-786 . -1047) 125256) ((-118 . -654) 125201) ((-460 . -1047) 125077) ((-320 . -622) 124641) ((-317 . -622) 124524) ((-396 . -652) 124493) ((-655 . -1047) 124477) ((-633 . -102) T) ((-224 . -495) 124461) ((-1277 . -34) T) ((-627 . -652) 124420) ((-293 . -1060) 124407) ((-137 . -622) 124391) ((-293 . -646) 124378) ((-641 . -723) 124362) ((-613 . -723) 124346) ((-676 . -38) 124306) ((-323 . -102) T) ((-85 . -619) 124288) ((-50 . -1047) 124272) ((-1129 . -1065) 124259) ((-1096 . -382) 124243) ((-788 . -382) 124227) ((-705 . -732) T) ((-705 . -800) T) ((-705 . -797) T) ((-587 . -1047) 124214) ((-524 . -1047) 124191) ((-60 . -57) 124153) ((-328 . -132) T) ((-320 . -1058) 124043) ((-317 . -1058) T) ((-171 . -1121) T) ((-786 . -382) 124027) ((-45 . -152) 123977) ((-1013 . -1001) 123959) ((-460 . -382) 123943) ((-413 . -174) T) ((-320 . -245) 123922) ((-317 . -245) T) ((-317 . -235) NIL) ((-298 . -1109) 123704) ((-227 . -132) T) ((-1129 . -111) 123689) ((-171 . -23) T) ((-805 . -148) 123668) ((-805 . -146) 123647) ((-254 . -645) 123553) ((-253 . -645) 123459) ((-323 . -288) 123425) ((-1166 . -520) 123358) ((-483 . -652) 123308) ((-1142 . -1109) T) ((-227 . -1069) T) ((-821 . -313) 123246) ((-1096 . -907) 123181) ((-788 . -907) 123124) ((-786 . -907) 123108) ((-1299 . -38) 123078) ((-1297 . -38) 123048) ((-1250 . -1121) T) ((-861 . -1121) T) ((-460 . -907) 123025) ((-864 . -1109) T) ((-1250 . -23) T) ((-1129 . -622) 122997) ((-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) 122898) ((-487 . -132) T) ((-577 . -23) T) ((-681 . -313) 122836) ((-641 . -767) T) ((-613 . -767) T) ((-1241 . -856) NIL) ((-1089 . -1060) 122746) ((-1012 . -294) T) ((-700 . -654) 122696) ((-254 . -21) T) ((-356 . -1109) T) ((-254 . -25) T) ((-253 . -21) T) ((-253 . -25) T) ((-153 . -38) 122680) ((-2 . -102) T) ((-917 . -927) T) ((-1089 . -646) 122548) ((-488 . -1284) 122518) ((-1129 . -1058) T) ((-717 . -311) T) ((-364 . -1060) 122470) ((-358 . -1060) 122422) ((-350 . -1060) 122374) ((-364 . -646) 122326) ((-225 . -1047) 122303) ((-358 . -646) 122255) ((-108 . -1060) 122205) ((-350 . -646) 122157) ((-298 . -723) 122099) ((-707 . -1067) T) ((-493 . -458) T) ((-413 . -520) 122011) ((-108 . -646) 121961) ((-219 . -458) T) ((-1129 . -235) T) ((-299 . -152) 121911) ((-1008 . -620) 121872) ((-1008 . -619) 121854) ((-998 . -619) 121836) ((-117 . -1067) T) ((-660 . -1065) 121820) ((-227 . -499) T) ((-405 . -619) 121802) ((-405 . -620) 121779) ((-1063 . -1284) 121749) ((-660 . -111) 121728) ((-1151 . -495) 121712) ((-1301 . -652) 121671) ((-386 . -652) 121640) ((-821 . -38) 121610) ((-63 . -447) T) ((-63 . -401) T) ((-1169 . -102) T) ((-877 . -132) T) ((-490 . -102) 121588) ((-1306 . -373) T) ((-1089 . -102) T) ((-1070 . -102) T) ((-356 . -723) 121533) ((-737 . -148) 121512) ((-737 . -146) 121491) ((-660 . -622) 121409) ((-1033 . -654) 121346) ((-529 . -1109) 121324) ((-364 . -102) T) ((-358 . -102) T) ((-350 . -102) T) ((-108 . -102) T) ((-510 . -1109) T) ((-359 . -654) 121269) ((-1182 . -645) 121217) ((-1134 . -645) 121165) ((-390 . -515) 121144) ((-839 . -854) 121123) ((-384 . -1231) T) ((-700 . -732) T) ((-1241 . -1001) 121075) ((-344 . -1067) T) ((-112 . -1227) T) ((-176 . -1067) T) ((-103 . -619) 121007) ((-1184 . -146) 120986) ((-1184 . -148) 120965) ((-384 . -562) T) ((-1183 . -148) 120944) ((-1183 . -146) 120923) ((-1177 . -146) 120830) ((-413 . -294) T) ((-1177 . -148) 120737) ((-1135 . -148) 120716) ((-1135 . -146) 120695) ((-323 . -38) 120536) ((-171 . -132) T) ((-317 . -801) NIL) ((-317 . -798) NIL) ((-660 . -1058) T) ((-48 . -654) 120501) ((-1122 . -1060) 120398) ((-900 . -622) 120375) ((-1122 . -646) 120317) ((-1176 . -102) T) ((-1003 . -102) T) ((-1002 . -21) T) ((-128 . -1019) 120301) ((-122 . -1019) 120285) ((-1002 . -25) T) ((-908 . -120) 120269) ((-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) 120248) ((-653 . -102) 120226) ((-638 . -102) T) ((-1169 . -313) 120021) ((-577 . -132) T) ((-627 . -854) 120000) ((-1166 . -495) 119984) ((-1159 . -152) 119934) ((-1155 . -619) 119896) ((-1155 . -620) 119857) ((-1033 . -797) T) ((-1033 . -800) T) ((-1033 . -732) T) ((-718 . -1065) 119680) ((-490 . -313) 119618) ((-459 . -423) 119588) ((-356 . -174) T) ((-293 . -38) 119575) ((-277 . -102) T) ((-276 . -102) T) ((-275 . -102) T) ((-274 . -102) T) ((-273 . -102) T) ((-272 . -102) T) ((-348 . -1047) 119552) ((-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) 119361) ((-676 . -233) 119345) ((-587 . -311) T) ((-524 . -311) T) ((-298 . -520) 119294) ((-108 . -313) NIL) ((-72 . -401) T) ((-1122 . -102) 119084) ((-839 . -417) 119068) ((-1129 . -801) T) ((-1129 . -798) T) ((-707 . -1109) T) ((-584 . -619) 119050) ((-384 . -368) T) ((-171 . -499) 119028) ((-224 . -619) 118960) ((-135 . -1109) T) ((-117 . -1109) T) ((-973 . -1227) T) ((-48 . -732) T) ((-1055 . -495) 118925) ((-142 . -431) 118907) ((-142 . -373) T) ((-1036 . -102) T) ((-518 . -515) 118886) ((-718 . -622) 118642) ((-482 . -102) T) ((-469 . -102) T) ((-1043 . -1121) T) ((-1234 . -619) 118624) ((-1191 . -1047) 118560) ((-1184 . -35) 118526) ((-1184 . -95) 118492) ((-1184 . -1215) 118458) ((-1184 . -1212) 118424) ((-1168 . -313) NIL) ((-89 . -402) T) ((-89 . -401) T) ((-1089 . -1161) 118403) ((-1183 . -1212) 118369) ((-1183 . -1215) 118335) ((-1043 . -23) T) ((-1183 . -95) 118301) ((-577 . -499) T) ((-1183 . -35) 118267) ((-1177 . -1212) 118233) ((-1177 . -1215) 118199) ((-1177 . -95) 118165) ((-366 . -1121) T) ((-364 . -1161) 118144) ((-358 . -1161) 118123) ((-350 . -1161) 118102) ((-1177 . -35) 118068) ((-1135 . -35) 118034) ((-1135 . -95) 118000) ((-108 . -1161) T) ((-1135 . -1215) 117966) ((-839 . -1067) 117945) ((-653 . -313) 117883) ((-638 . -313) 117734) ((-1135 . -1212) 117700) ((-718 . -1058) T) ((-1071 . -645) 117682) ((-1089 . -38) 117550) ((-959 . -645) 117498) ((-1013 . -148) T) ((-1013 . -146) NIL) ((-384 . -1121) T) ((-328 . -25) T) ((-326 . -23) T) ((-950 . -856) 117477) ((-718 . -330) 117454) ((-487 . -645) 117402) ((-40 . -1047) 117290) ((-718 . -235) T) ((-707 . -723) 117277) ((-344 . -1109) T) ((-176 . -1109) T) ((-335 . -856) T) ((-424 . -458) 117227) ((-384 . -23) T) ((-364 . -38) 117192) ((-358 . -38) 117157) ((-350 . -38) 117122) ((-80 . -447) T) ((-80 . -401) T) ((-227 . -25) T) ((-227 . -21) T) ((-842 . -1121) T) ((-108 . -38) 117072) ((-833 . -1121) T) ((-780 . -1109) T) ((-117 . -723) 117059) ((-678 . -1047) 117043) ((-618 . -102) T) ((-842 . -23) T) ((-833 . -23) T) ((-1166 . -290) 117020) ((-1122 . -313) 116958) ((-488 . -1060) 116855) ((-1111 . -237) 116839) ((-64 . -402) T) ((-64 . -401) T) ((-1160 . -102) T) ((-110 . -102) T) ((-488 . -646) 116781) ((-40 . -382) 116758) ((-96 . -102) T) ((-659 . -858) 116742) ((-1144 . -1092) T) ((-1071 . -21) T) ((-1071 . -25) T) ((-1063 . -1060) 116726) ((-821 . -233) 116695) ((-959 . -25) T) ((-959 . -21) T) ((-1063 . -646) 116637) ((-627 . -1067) T) ((-1129 . -373) T) ((-1036 . -313) 116575) ((-676 . -652) 116534) ((-487 . -25) T) ((-487 . -21) T) ((-390 . -1060) 116518) ((-896 . -619) 116500) ((-892 . -619) 116482) ((-529 . -520) 116415) ((-254 . -856) 116366) ((-253 . -856) 116317) ((-390 . -646) 116287) ((-877 . -645) 116264) ((-482 . -313) 116202) ((-469 . -313) 116140) ((-356 . -294) T) ((-1166 . -1265) 116124) ((-1151 . -619) 116086) ((-1151 . -620) 116047) ((-1149 . -102) T) ((-1008 . -1065) 115943) ((-40 . -907) 115895) ((-1166 . -610) 115872) ((-1306 . -654) 115859) ((-872 . -496) 115836) ((-1072 . -152) 115782) ((-878 . -1231) T) ((-1008 . -111) 115664) ((-344 . -723) 115648) ((-872 . -619) 115610) ((-176 . -723) 115542) ((-413 . -290) 115500) ((-878 . -562) T) ((-108 . -406) 115482) ((-84 . -389) T) ((-84 . -401) T) ((-707 . -174) T) ((-623 . -619) 115464) ((-99 . -732) T) ((-488 . -102) 115254) ((-99 . -479) T) ((-117 . -174) T) ((-1299 . -652) 115213) ((-1297 . -652) 115172) ((-1122 . -38) 115142) ((-171 . -645) 115090) ((-1063 . -102) T) ((-1008 . -622) 114980) ((-877 . -25) T) ((-821 . -240) 114959) ((-877 . -21) T) ((-824 . -102) T) ((-44 . -652) 114902) ((-420 . -102) T) ((-390 . -102) T) ((-110 . -313) NIL) ((-229 . -102) 114880) ((-128 . -1227) T) ((-122 . -1227) T) ((-823 . -1060) 114831) ((-823 . -646) 114773) ((-1043 . -132) T) ((-676 . -372) 114757) ((-153 . -652) 114716) ((-1008 . -1058) T) ((-1250 . -645) 114664) ((-1113 . -619) 114646) ((-1012 . -619) 114628) ((-521 . -23) T) ((-516 . -23) T) ((-348 . -311) T) ((-514 . -23) T) ((-326 . -132) T) ((-3 . -1109) T) ((-1012 . -620) 114612) ((-1008 . -245) 114591) ((-1008 . -235) 114570) ((-1306 . -732) T) ((-1269 . -146) 114549) ((-839 . -1109) T) ((-1269 . -148) 114528) ((-1262 . -148) 114507) ((-1262 . -146) 114486) ((-1261 . -1231) 114465) ((-1241 . -146) 114372) ((-1241 . -148) 114279) ((-1240 . -1231) 114258) ((-384 . -132) T) ((-570 . -893) 114240) ((0 . -1109) T) ((-176 . -174) T) ((-171 . -21) T) ((-171 . -25) T) ((-49 . -1109) T) ((-1263 . -654) 114145) ((-1261 . -562) 114096) ((-720 . -1121) T) ((-1240 . -562) 114047) ((-570 . -1047) 114029) ((-601 . -148) 114008) ((-601 . -146) 113987) ((-501 . -1047) 113930) ((-1144 . -1146) T) ((-87 . -389) T) ((-87 . -401) T) ((-878 . -368) T) ((-842 . -132) T) ((-833 . -132) T) ((-971 . -652) 113874) ((-720 . -23) T) ((-512 . -619) 113840) ((-508 . -619) 113822) ((-821 . -652) 113572) ((-1301 . -1067) T) ((-384 . -1069) T) ((-1035 . -1109) 113550) ((-55 . -1047) 113532) ((-908 . -34) T) ((-488 . -313) 113470) ((-598 . -102) T) ((-1166 . -620) 113431) ((-1166 . -619) 113363) ((-1188 . -1060) 113246) ((-45 . -102) T) ((-823 . -102) T) ((-1188 . -646) 113143) ((-1250 . -25) T) ((-1250 . -21) T) ((-861 . -25) T) ((-44 . -372) 113127) ((-861 . -21) T) ((-737 . -458) 113078) ((-1300 . -619) 113060) ((-1289 . -1060) 113030) ((-1063 . -313) 112968) ((-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) 112938) ((-627 . -1109) T) ((-705 . -893) 112920) ((-1277 . -1227) T) ((-229 . -313) 112858) ((-145 . -373) T) ((-1055 . -620) 112800) ((-1055 . -619) 112743) ((-317 . -916) NIL) ((-1235 . -850) T) ((-705 . -1047) 112688) ((-717 . -927) T) ((-480 . -1231) 112667) ((-1183 . -458) 112646) ((-1177 . -458) 112625) ((-334 . -102) T) ((-878 . -1121) T) ((-323 . -652) 112507) ((-320 . -654) 112328) ((-317 . -654) 112257) ((-480 . -562) 112208) ((-344 . -520) 112174) ((-556 . -152) 112124) ((-40 . -311) T) ((-849 . -619) 112106) ((-707 . -294) T) ((-878 . -23) T) ((-384 . -499) T) ((-1089 . -233) 112076) ((-518 . -102) T) ((-413 . -620) 111883) ((-413 . -619) 111865) ((-266 . -619) 111847) ((-117 . -294) T) ((-1263 . -732) T) ((-1302 . -1109) T) ((-1261 . -368) 111826) ((-1240 . -368) 111805) ((-1290 . -34) T) ((-1235 . -1109) T) ((-118 . -1227) T) ((-108 . -233) 111787) ((-1188 . -102) T) ((-483 . -1109) T) ((-529 . -495) 111771) ((-743 . -34) T) ((-659 . -1060) 111755) ((-488 . -38) 111725) ((-659 . -646) 111695) ((-142 . -34) T) ((-118 . -891) 111672) ((-118 . -893) NIL) ((-629 . -1047) 111555) ((-650 . -856) 111534) ((-1289 . -102) T) ((-299 . -102) T) ((-718 . -373) 111513) ((-118 . -1047) 111490) ((-396 . -723) 111474) ((-627 . -723) 111458) ((-45 . -313) 111262) ((-822 . -146) 111241) ((-822 . -148) 111220) ((-293 . -652) 111192) ((-1300 . -387) 111171) ((-825 . -856) T) ((-1279 . -1109) T) ((-1169 . -231) 111118) ((-392 . -856) 111097) ((-1269 . -1215) 111063) ((-1269 . -1212) 111029) ((-1262 . -1212) 110995) ((-521 . -132) T) ((-1262 . -1215) 110961) ((-1241 . -1212) 110927) ((-1241 . -1215) 110893) ((-1269 . -35) 110859) ((-1269 . -95) 110825) ((-641 . -619) 110794) ((-613 . -619) 110763) ((-227 . -856) T) ((-1262 . -95) 110729) ((-1262 . -35) 110695) ((-1261 . -1121) T) ((-1129 . -654) 110682) ((-1241 . -95) 110648) ((-1240 . -1121) T) ((-599 . -152) 110630) ((-1089 . -354) 110609) ((-176 . -294) T) ((-118 . -382) 110586) ((-118 . -343) 110563) ((-1241 . -35) 110529) ((-876 . -311) T) ((-317 . -800) NIL) ((-317 . -797) NIL) ((-320 . -732) 110378) ((-317 . -732) T) ((-480 . -368) 110357) ((-364 . -354) 110336) ((-358 . -354) 110315) ((-350 . -354) 110294) ((-320 . -479) 110273) ((-1261 . -23) T) ((-1240 . -23) T) ((-724 . -1121) T) ((-720 . -132) T) ((-659 . -102) T) ((-483 . -723) 110238) ((-45 . -286) 110188) ((-105 . -1109) T) ((-68 . -619) 110170) ((-979 . -102) T) ((-870 . -102) T) ((-629 . -907) 110129) ((-1301 . -1109) T) ((-386 . -1109) T) ((-82 . -1227) T) ((-1226 . -1109) T) ((-1071 . -856) T) ((-118 . -907) NIL) ((-788 . -927) 110108) ((-719 . -856) T) ((-537 . -1109) T) ((-506 . -1109) T) ((-360 . -1231) T) ((-357 . -1231) T) ((-349 . -1231) T) ((-267 . -1231) 110087) ((-249 . -1231) 110066) ((-539 . -866) T) ((-1122 . -233) 110035) ((-1168 . -834) T) ((-1151 . -1065) 110019) ((-396 . -767) T) ((-700 . -1227) T) ((-697 . -1047) 110003) ((-360 . -562) T) ((-357 . -562) T) ((-349 . -562) T) ((-267 . -562) 109934) ((-249 . -562) 109865) ((-531 . -1092) T) ((-1151 . -111) 109844) ((-459 . -750) 109814) ((-872 . -1065) 109784) ((-823 . -38) 109726) ((-700 . -891) 109708) ((-700 . -893) 109690) ((-299 . -313) 109494) ((-917 . -1231) T) ((-1166 . -292) 109471) ((-1089 . -652) 109366) ((-676 . -417) 109350) ((-872 . -111) 109315) ((-1013 . -458) T) ((-700 . -1047) 109260) ((-917 . -562) T) ((-539 . -619) 109242) ((-587 . -927) T) ((-493 . -1060) 109192) ((-480 . -1121) T) ((-524 . -927) T) ((-921 . -458) T) ((-65 . -619) 109174) ((-219 . -1060) 109124) ((-493 . -646) 109074) ((-364 . -652) 109011) ((-358 . -652) 108948) ((-350 . -652) 108885) ((-638 . -231) 108831) ((-219 . -646) 108781) ((-108 . -652) 108731) ((-480 . -23) T) ((-1129 . -800) T) ((-878 . -132) T) ((-1129 . -797) T) ((-1292 . -1294) 108710) ((-1129 . -732) T) ((-660 . -654) 108684) ((-298 . -619) 108425) ((-1151 . -622) 108343) ((-1044 . -34) T) ((-821 . -854) 108322) ((-586 . -311) T) ((-570 . -311) T) ((-501 . -311) T) ((-1301 . -723) 108292) ((-700 . -382) 108274) ((-700 . -343) 108256) ((-483 . -174) T) ((-386 . -723) 108226) ((-872 . -622) 108161) ((-877 . -856) NIL) ((-570 . -1031) T) ((-501 . -1031) T) ((-1142 . -619) 108143) ((-1122 . -240) 108122) ((-216 . -102) T) ((-1159 . -102) T) ((-71 . -619) 108104) ((-1151 . -1058) T) ((-1188 . -38) 108001) ((-864 . -619) 107983) ((-570 . -551) T) ((-676 . -1067) T) ((-737 . -956) 107936) ((-1151 . -235) 107915) ((-1091 . -1109) T) ((-1043 . -25) T) ((-1043 . -21) T) ((-1012 . -1065) 107860) ((-912 . -102) T) ((-872 . -1058) T) ((-700 . -907) NIL) ((-360 . -333) 107844) ((-360 . -368) T) ((-357 . -333) 107828) ((-357 . -368) T) ((-349 . -333) 107812) ((-349 . -368) T) ((-493 . -102) T) ((-1289 . -38) 107782) ((-552 . -856) T) ((-529 . -693) 107732) ((-219 . -102) T) ((-1033 . -1047) 107612) ((-1012 . -111) 107541) ((-1184 . -982) 107510) ((-526 . -152) 107494) ((-1089 . -375) 107473) ((-356 . -619) 107455) ((-326 . -21) T) ((-359 . -1047) 107432) ((-326 . -25) T) ((-1183 . -982) 107394) ((-1177 . -982) 107363) ((-76 . -619) 107345) ((-1135 . -982) 107312) ((-705 . -311) T) ((-130 . -850) T) ((-917 . -368) T) ((-384 . -25) T) ((-384 . -21) T) ((-917 . -333) 107299) ((-86 . -619) 107281) ((-705 . -1031) T) ((-683 . -856) T) ((-1261 . -132) T) ((-1240 . -132) T) ((-908 . -1019) 107265) ((-842 . -21) T) ((-48 . -1047) 107208) ((-842 . -25) T) ((-833 . -25) T) ((-833 . -21) T) ((-1122 . -652) 106958) ((-1299 . -1067) T) ((-555 . -102) T) ((-1297 . -1067) T) ((-660 . -732) T) ((-1113 . -624) 106861) ((-1012 . -622) 106791) ((-1300 . -1065) 106775) ((-821 . -417) 106744) ((-103 . -120) 106728) ((-130 . -1109) T) ((-52 . -1109) T) ((-933 . -619) 106710) ((-877 . -1001) 106687) ((-829 . -102) T) ((-1300 . -111) 106666) ((-659 . -38) 106636) ((-577 . -856) T) ((-360 . -1121) T) ((-357 . -1121) T) ((-349 . -1121) T) ((-267 . -1121) T) ((-249 . -1121) T) ((-629 . -311) 106615) ((-1159 . -313) 106419) ((-670 . -23) T) ((-530 . -1092) T) ((-315 . -1109) T) ((-488 . -233) 106388) ((-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) 106367) ((-1166 . -622) 106344) ((-1012 . -235) 106316) ((-1012 . -245) T) ((-118 . -1031) NIL) ((-917 . -1121) T) ((-1262 . -458) 106295) ((-1241 . -458) 106274) ((-529 . -619) 106206) ((-718 . -654) 106131) ((-413 . -1065) 106083) ((-510 . -619) 106065) ((-917 . -23) T) ((-493 . -313) NIL) ((-1300 . -622) 106021) ((-480 . -132) T) ((-219 . -313) NIL) ((-413 . -111) 105959) ((-821 . -1067) 105889) ((-743 . -1107) 105873) ((-1261 . -499) 105839) ((-1240 . -499) 105805) ((-554 . -850) T) ((-142 . -1107) 105787) ((-483 . -294) T) ((-1300 . -1058) T) ((-1232 . -102) T) ((-1072 . -102) T) ((-849 . -622) 105655) ((-506 . -520) NIL) ((-488 . -240) 105634) ((-413 . -622) 105532) ((-970 . -1060) 105415) ((-741 . -1060) 105385) ((-970 . -646) 105282) ((-1182 . -146) 105261) ((-741 . -646) 105231) ((-459 . -1060) 105201) ((-1182 . -148) 105180) ((-1134 . -148) 105159) ((-1134 . -146) 105138) ((-641 . -1065) 105122) ((-613 . -1065) 105106) ((-459 . -646) 105076) ((-1184 . -1268) 105060) ((-1184 . -1255) 105037) ((-676 . -1109) T) ((-676 . -1062) 104977) ((-1183 . -1260) 104938) ((-554 . -1109) T) ((-493 . -1161) T) ((-1183 . -1255) 104908) ((-1183 . -1258) 104892) ((-1177 . -1239) 104853) ((-219 . -1161) T) ((-348 . -927) T) ((-824 . -269) 104837) ((-641 . -111) 104816) ((-613 . -111) 104795) ((-1177 . -1255) 104772) ((-849 . -1058) 104751) ((-1177 . -1237) 104735) ((-521 . -25) T) ((-501 . -306) T) ((-517 . -23) T) ((-516 . -25) T) ((-514 . -25) T) ((-513 . -23) T) ((-424 . -1060) 104709) ((-413 . -1058) T) ((-323 . -1067) T) ((-700 . -311) T) ((-424 . -646) 104683) ((-108 . -854) T) ((-718 . -732) T) ((-413 . -245) T) ((-413 . -235) 104662) ((-493 . -38) 104612) ((-219 . -38) 104562) ((-480 . -499) 104528) ((-1234 . -373) T) ((-1168 . -1153) T) ((-1110 . -102) T) ((-707 . -619) 104510) ((-707 . -620) 104425) ((-720 . -21) T) ((-720 . -25) T) ((-1144 . -102) T) ((-488 . -652) 104175) ((-135 . -619) 104157) ((-117 . -619) 104139) ((-158 . -25) T) ((-1299 . -1109) T) ((-878 . -645) 104087) ((-1297 . -1109) T) ((-970 . -102) T) ((-741 . -102) T) ((-721 . -102) T) ((-459 . -102) T) ((-822 . -458) 104038) ((-44 . -1109) T) ((-1097 . -856) T) ((-1072 . -313) 103889) ((-670 . -132) T) ((-1063 . -652) 103858) ((-676 . -723) 103842) ((-293 . -1067) T) ((-360 . -132) T) ((-357 . -132) T) ((-349 . -132) T) ((-267 . -132) T) ((-249 . -132) T) ((-390 . -652) 103811) ((-424 . -102) T) ((-153 . -1109) T) ((-45 . -231) 103761) ((-805 . -1060) 103745) ((-965 . -856) 103724) ((-1008 . -654) 103662) ((-805 . -646) 103646) ((-242 . -1284) 103616) ((-1033 . -311) T) ((-298 . -1065) 103537) ((-917 . -132) T) ((-40 . -927) T) ((-493 . -406) 103519) ((-359 . -311) T) ((-219 . -406) 103501) ((-1089 . -417) 103485) ((-298 . -111) 103401) ((-1193 . -856) T) ((-1192 . -856) T) ((-878 . -25) T) ((-878 . -21) T) ((-344 . -619) 103383) ((-1263 . -47) 103327) ((-227 . -148) T) ((-176 . -619) 103309) ((-1122 . -854) 103288) ((-780 . -619) 103270) ((-129 . -856) T) ((-614 . -237) 103217) ((-481 . -237) 103167) ((-1299 . -723) 103137) ((-48 . -311) T) ((-1297 . -723) 103107) ((-65 . -622) 103036) ((-971 . -1109) T) ((-821 . -1109) 102826) ((-316 . -102) T) ((-908 . -1227) T) ((-48 . -1031) T) ((-1240 . -645) 102734) ((-695 . -102) 102712) ((-44 . -723) 102696) ((-556 . -102) T) ((-298 . -622) 102627) ((-67 . -388) T) ((-67 . -401) T) ((-668 . -23) T) ((-823 . -652) 102563) ((-676 . -767) T) ((-1224 . -1109) 102541) ((-356 . -1065) 102486) ((-681 . -1109) 102464) ((-1071 . -148) T) ((-959 . -148) 102443) ((-959 . -146) 102422) ((-805 . -102) T) ((-153 . -723) 102406) ((-487 . -148) 102385) ((-487 . -146) 102364) ((-356 . -111) 102293) ((-1089 . -1067) T) ((-326 . -856) 102272) ((-1269 . -982) 102241) ((-633 . -1109) T) ((-1262 . -982) 102203) ((-517 . -132) T) ((-513 . -132) T) ((-299 . -231) 102153) ((-364 . -1067) T) ((-358 . -1067) T) ((-350 . -1067) T) ((-298 . -1058) 102095) ((-1241 . -982) 102064) ((-384 . -856) T) ((-108 . -1067) T) ((-1008 . -732) T) ((-876 . -927) T) ((-849 . -801) 102043) ((-849 . -798) 102022) ((-424 . -313) 101961) ((-474 . -102) T) ((-601 . -982) 101930) ((-323 . -1109) T) ((-413 . -801) 101909) ((-413 . -798) 101888) ((-506 . -495) 101870) ((-1263 . -1047) 101836) ((-1261 . -21) T) ((-1261 . -25) T) ((-1240 . -21) T) ((-1240 . -25) T) ((-821 . -723) 101778) ((-356 . -622) 101708) ((-705 . -410) T) ((-1290 . -1227) T) ((-612 . -102) T) ((-1122 . -417) 101677) ((-1012 . -373) NIL) ((-677 . -102) T) ((-182 . -102) T) ((-162 . -102) T) ((-157 . -102) T) ((-155 . -102) T) ((-103 . -34) T) ((-1188 . -652) 101587) ((-743 . -1227) T) ((-737 . -1060) 101430) ((-44 . -767) T) ((-737 . -646) 101279) ((-599 . -102) T) ((-77 . -402) T) ((-77 . -401) T) ((-659 . -662) 101263) ((-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) 101196) ((-1289 . -652) 101141) ((-695 . -313) 101079) ((-970 . -38) 100976) ((-1190 . -619) 100958) ((-741 . -38) 100928) ((-556 . -313) 100732) ((-1184 . -1060) 100615) ((-320 . -1227) T) ((-356 . -235) T) ((-356 . -245) T) ((-317 . -1227) T) ((-293 . -1109) T) ((-1183 . -1060) 100450) ((-1177 . -1060) 100240) ((-1135 . -1060) 100123) ((-1184 . -646) 100020) ((-1183 . -646) 99861) ((-717 . -1231) T) ((-1177 . -646) 99657) ((-1166 . -657) 99641) ((-1135 . -646) 99538) ((-1221 . -562) 99517) ((-825 . -391) 99501) ((-717 . -562) T) ((-320 . -891) 99485) ((-320 . -893) 99410) ((-317 . -891) 99371) ((-317 . -893) NIL) ((-805 . -313) 99336) ((-323 . -723) 99177) ((-392 . -391) 99161) ((-328 . -327) 99138) ((-491 . -102) T) ((-480 . -25) T) ((-480 . -21) T) ((-424 . -38) 99112) ((-320 . -1047) 98775) ((-227 . -1212) T) ((-227 . -1215) T) ((-3 . -619) 98757) ((-317 . -1047) 98687) ((-2 . -1109) T) ((-2 . |RecordCategory|) T) ((-839 . -619) 98669) ((-1122 . -1067) 98599) ((-586 . -927) T) ((-570 . -826) T) ((-570 . -927) T) ((-501 . -927) T) ((-137 . -1047) 98583) ((-227 . -95) T) ((-171 . -148) 98562) ((-75 . -447) T) ((0 . -619) 98544) ((-75 . -401) T) ((-171 . -146) 98495) ((-227 . -35) T) ((-49 . -619) 98477) ((-483 . -1067) T) ((-493 . -233) 98459) ((-490 . -977) 98443) ((-488 . -854) 98422) ((-219 . -233) 98404) ((-81 . -447) T) ((-81 . -401) T) ((-1155 . -34) T) ((-821 . -174) 98383) ((-737 . -102) T) ((-659 . -652) 98342) ((-1035 . -619) 98309) ((-506 . -290) 98284) ((-320 . -382) 98253) ((-317 . -382) 98214) ((-317 . -343) 98175) ((-1094 . -619) 98157) ((-822 . -956) 98104) ((-668 . -132) T) ((-1250 . -146) 98083) ((-1250 . -148) 98062) ((-1184 . -102) T) ((-1183 . -102) T) ((-1177 . -102) T) ((-1169 . -1109) T) ((-1135 . -102) T) ((-224 . -34) T) ((-293 . -723) 98049) ((-1169 . -616) 98025) ((-599 . -313) NIL) ((-490 . -1109) 98003) ((-1159 . -231) 97953) ((-396 . -619) 97935) ((-516 . -856) T) ((-1129 . -1227) T) ((-1269 . -1268) 97919) ((-1269 . -1255) 97896) ((-1262 . -1260) 97857) ((-1262 . -1255) 97827) ((-1262 . -1258) 97811) ((-1241 . -1239) 97772) ((-1241 . -1255) 97749) ((-627 . -619) 97731) ((-1241 . -1237) 97715) ((-705 . -927) T) ((-1184 . -288) 97681) ((-1183 . -288) 97647) ((-1177 . -288) 97613) ((-1089 . -1109) T) ((-1070 . -1109) T) ((-48 . -306) T) ((-320 . -907) 97579) ((-317 . -907) NIL) ((-1070 . -1077) 97558) ((-1129 . -893) 97540) ((-805 . -38) 97524) ((-267 . -645) 97472) ((-249 . -645) 97420) ((-707 . -1065) 97407) ((-601 . -1255) 97384) ((-1135 . -288) 97350) ((-323 . -174) 97281) ((-364 . -1109) T) ((-358 . -1109) T) ((-350 . -1109) T) ((-506 . -19) 97263) ((-1129 . -1047) 97245) ((-1111 . -152) 97229) ((-108 . -1109) T) ((-117 . -1065) 97216) ((-717 . -368) T) ((-506 . -610) 97191) ((-707 . -111) 97176) ((-442 . -102) T) ((-882 . -1272) T) ((-252 . -102) T) ((-45 . -1158) 97126) ((-117 . -111) 97111) ((-641 . -726) T) ((-613 . -726) T) ((-1302 . -619) 97078) ((-1302 . -496) 97060) ((-1279 . -619) 97042) ((-1235 . -619) 97024) ((-1233 . -856) T) ((-821 . -520) 96957) ((-1044 . -1227) T) ((-242 . -1060) 96854) ((-1221 . -1121) T) ((-1221 . -23) T) ((-950 . -152) 96838) ((-1182 . -458) 96769) ((-1177 . -313) 96654) ((-242 . -646) 96596) ((-1176 . -1109) T) ((-1168 . -1109) T) ((-1151 . -654) 96570) ((-531 . -102) T) ((-526 . -102) 96520) ((-1135 . -313) 96507) ((-1134 . -458) 96458) ((-1096 . -1231) 96437) ((-788 . -1231) 96416) ((-786 . -1231) 96395) ((-62 . -1227) T) ((-483 . -619) 96347) ((-483 . -620) 96269) ((-1096 . -562) 96200) ((-1003 . -1109) T) ((-788 . -562) 96111) ((-786 . -562) 96042) ((-488 . -417) 96011) ((-629 . -927) 95990) ((-460 . -1231) 95969) ((-737 . -313) 95956) ((-707 . -622) 95928) ((-404 . -619) 95910) ((-681 . -520) 95843) ((-670 . -25) T) ((-670 . -21) T) ((-460 . -562) 95774) ((-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) 95756) ((-117 . -622) 95728) ((-1089 . -723) 95596) ((-1013 . -1060) 95546) ((-1013 . -646) 95496) ((-950 . -989) 95480) ((-921 . -646) 95432) ((-921 . -1060) 95384) ((-917 . -21) T) ((-917 . -25) T) ((-878 . -856) 95335) ((-872 . -654) 95295) ((-717 . -1121) T) ((-717 . -23) T) ((-293 . -174) T) ((-707 . -1058) T) ((-315 . -93) T) ((-707 . -235) T) ((-653 . -1109) 95273) ((-638 . -616) 95248) ((-638 . -1109) T) ((-587 . -1231) T) ((-587 . -562) T) ((-524 . -1231) T) ((-524 . -562) T) ((-493 . -652) 95198) ((-433 . -1060) 95182) ((-433 . -646) 95166) ((-364 . -723) 95118) ((-358 . -723) 95070) ((-344 . -1065) 95054) ((-350 . -723) 95006) ((-344 . -111) 94985) ((-176 . -1065) 94917) ((-219 . -652) 94867) ((-176 . -111) 94778) ((-108 . -723) 94728) ((-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) 94706) ((-171 . -1212) 94684) ((-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) 94474) ((-171 . -35) 94452) ((-171 . -95) 94430) ((-660 . -1047) 94326) ((-488 . -1067) 94256) ((-1122 . -1109) 94046) ((-1151 . -34) T) ((-676 . -495) 94030) ((-73 . -1227) T) ((-105 . -619) 94012) ((-1301 . -619) 93994) ((-386 . -619) 93976) ((-344 . -622) 93928) ((-176 . -622) 93845) ((-1226 . -496) 93826) ((-737 . -38) 93675) ((-577 . -1215) T) ((-577 . -1212) T) ((-537 . -619) 93657) ((-526 . -313) 93595) ((-506 . -619) 93577) ((-506 . -620) 93559) ((-1226 . -619) 93525) ((-1177 . -1161) NIL) ((-1036 . -1080) 93494) ((-1036 . -1109) T) ((-1013 . -102) T) ((-980 . -102) T) ((-921 . -102) T) ((-900 . -1047) 93471) ((-1151 . -732) T) ((-1012 . -654) 93416) ((-482 . -1109) T) ((-469 . -1109) T) ((-592 . -23) T) ((-577 . -35) T) ((-577 . -95) T) ((-433 . -102) T) ((-1072 . -231) 93362) ((-1184 . -38) 93259) ((-872 . -732) T) ((-700 . -927) T) ((-517 . -25) T) ((-513 . -21) T) ((-513 . -25) T) ((-1183 . -38) 93100) ((-344 . -1058) T) ((-1177 . -38) 92896) ((-1089 . -174) T) ((-176 . -1058) T) ((-1135 . -38) 92793) ((-718 . -47) 92770) ((-364 . -174) T) ((-358 . -174) T) ((-525 . -57) 92744) ((-503 . -57) 92694) ((-356 . -1296) 92671) ((-227 . -458) T) ((-323 . -294) 92622) ((-350 . -174) T) ((-176 . -245) T) ((-1240 . -856) 92521) ((-108 . -174) T) ((-878 . -1001) 92505) ((-664 . -1121) T) ((-587 . -368) T) ((-587 . -333) 92492) ((-524 . -333) 92469) ((-524 . -368) T) ((-320 . -311) 92448) ((-317 . -311) T) ((-608 . -856) 92427) ((-1122 . -723) 92369) ((-526 . -286) 92353) ((-664 . -23) T) ((-424 . -233) 92337) ((-317 . -1031) NIL) ((-341 . -23) T) ((-103 . -1019) 92321) ((-45 . -36) 92300) ((-618 . -1109) T) ((-356 . -373) T) ((-530 . -102) T) ((-501 . -27) T) ((-242 . -313) 92238) ((-1096 . -1121) T) ((-1300 . -654) 92212) ((-788 . -1121) T) ((-786 . -1121) T) ((-460 . -1121) T) ((-1071 . -458) T) ((-1160 . -1109) T) ((-959 . -458) 92163) ((-1124 . -1092) T) ((-110 . -1109) T) ((-1096 . -23) T) ((-823 . -1067) T) ((-788 . -23) T) ((-786 . -23) T) ((-487 . -458) 92114) ((-1169 . -520) 91897) ((-386 . -387) 91876) ((-1188 . -417) 91860) ((-467 . -23) T) ((-460 . -23) T) ((-96 . -1109) T) ((-490 . -520) 91793) ((-1269 . -1060) 91676) ((-1269 . -646) 91573) ((-1262 . -646) 91414) ((-1262 . -1060) 91249) ((-293 . -294) T) ((-1241 . -1060) 91039) ((-1091 . -619) 91021) ((-1091 . -620) 91002) ((-413 . -916) 90981) ((-1241 . -646) 90777) ((-50 . -1121) T) ((-1221 . -132) T) ((-1033 . -927) T) ((-1012 . -732) T) ((-849 . -654) 90750) ((-718 . -893) NIL) ((-602 . -1060) 90710) ((-587 . -1121) T) ((-524 . -1121) T) ((-601 . -1060) 90593) ((-1177 . -406) 90545) ((-1013 . -313) NIL) ((-821 . -495) 90529) ((-602 . -646) 90502) ((-359 . -927) T) ((-601 . -646) 90399) ((-1166 . -34) T) ((-413 . -654) 90351) ((-50 . -23) T) ((-717 . -132) T) ((-718 . -1047) 90231) ((-587 . -23) T) ((-108 . -520) NIL) ((-524 . -23) T) ((-171 . -415) 90202) ((-1149 . -1109) T) ((-1292 . -1291) 90186) ((-707 . -801) T) ((-707 . -798) T) ((-1129 . -311) T) ((-384 . -148) T) ((-284 . -619) 90168) ((-283 . -619) 90150) ((-1240 . -1001) 90120) ((-48 . -927) T) ((-681 . -495) 90104) ((-254 . -1284) 90074) ((-253 . -1284) 90044) ((-1186 . -856) T) ((-1122 . -174) 90023) ((-1129 . -1031) T) ((-1055 . -34) T) ((-842 . -148) 90002) ((-842 . -146) 89981) ((-743 . -107) 89965) ((-618 . -133) T) ((-488 . -1109) 89755) ((-1188 . -1067) T) ((-877 . -458) T) ((-85 . -1227) T) ((-242 . -38) 89725) ((-142 . -107) 89707) ((-718 . -382) 89691) ((-839 . -622) 89559) ((-1300 . -732) T) ((-1289 . -1067) T) ((-1129 . -551) T) ((-585 . -102) T) ((-130 . -496) 89541) ((-1269 . -102) T) ((-396 . -1065) 89525) ((-1262 . -102) T) ((-1182 . -956) 89494) ((-130 . -619) 89461) ((-52 . -619) 89443) ((-1134 . -956) 89410) ((-659 . -417) 89394) ((-1241 . -102) T) ((-1168 . -520) NIL) ((-668 . -25) T) ((-627 . -1065) 89378) ((-668 . -21) T) ((-970 . -652) 89288) ((-741 . -652) 89233) ((-721 . -652) 89205) ((-396 . -111) 89184) ((-224 . -257) 89168) ((-1063 . -1062) 89108) ((-1063 . -1109) T) ((-1013 . -1161) T) ((-824 . -1109) T) ((-459 . -652) 89023) ((-348 . -1231) T) ((-641 . -654) 89007) ((-627 . -111) 88986) ((-613 . -654) 88970) ((-602 . -102) T) ((-315 . -496) 88951) ((-592 . -132) T) ((-601 . -102) T) ((-420 . -1109) T) ((-390 . -1109) T) ((-315 . -619) 88917) ((-229 . -1109) 88895) ((-653 . -520) 88828) ((-638 . -520) 88672) ((-839 . -1058) 88651) ((-650 . -152) 88635) ((-348 . -562) T) ((-718 . -907) 88578) ((-556 . -231) 88528) ((-1269 . -288) 88494) ((-1262 . -288) 88460) ((-1089 . -294) 88411) ((-493 . -854) T) ((-225 . -1121) T) ((-1241 . -288) 88377) ((-1221 . -499) 88343) ((-1013 . -38) 88293) ((-219 . -854) T) ((-424 . -652) 88252) ((-921 . -38) 88204) ((-849 . -800) 88183) ((-849 . -797) 88162) ((-849 . -732) 88141) ((-364 . -294) T) ((-358 . -294) T) ((-350 . -294) T) ((-171 . -458) 88072) ((-433 . -38) 88056) ((-108 . -294) T) ((-225 . -23) T) ((-413 . -800) 88035) ((-413 . -797) 88014) ((-413 . -732) T) ((-506 . -292) 87989) ((-483 . -1065) 87954) ((-664 . -132) T) ((-627 . -622) 87923) ((-1122 . -520) 87856) ((-341 . -132) T) ((-171 . -408) 87835) ((-488 . -723) 87777) ((-821 . -290) 87754) ((-483 . -111) 87710) ((-659 . -1067) T) ((-822 . -1060) 87553) ((-1288 . -1092) T) ((-1250 . -458) 87484) ((-822 . -646) 87333) ((-1287 . -1092) T) ((-1096 . -132) T) ((-1063 . -723) 87275) ((-788 . -132) T) ((-786 . -132) T) ((-577 . -458) T) ((-1036 . -520) 87208) ((-627 . -1058) T) ((-598 . -1109) T) ((-539 . -175) T) ((-467 . -132) T) ((-460 . -132) T) ((-45 . -1109) T) ((-390 . -723) 87178) ((-823 . -1109) T) ((-482 . -520) 87111) ((-469 . -520) 87044) ((-1302 . -622) 87026) ((-459 . -372) 86996) ((-45 . -616) 86975) ((-320 . -306) T) ((-483 . -622) 86925) ((-1241 . -313) 86810) ((-676 . -619) 86772) ((-59 . -856) 86751) ((-1013 . -406) 86733) ((-554 . -619) 86715) ((-805 . -652) 86674) ((-821 . -610) 86651) ((-522 . -856) 86630) ((-502 . -856) 86609) ((-40 . -1231) T) ((-1008 . -1047) 86505) ((-50 . -132) T) ((-587 . -132) T) ((-524 . -132) T) ((-298 . -654) 86365) ((-348 . -333) 86342) ((-348 . -368) T) ((-326 . -327) 86319) ((-323 . -290) 86304) ((-40 . -562) T) ((-384 . -1212) T) ((-384 . -1215) T) ((-1044 . -1203) 86279) ((-1199 . -237) 86229) ((-1177 . -233) 86181) ((-334 . -1109) T) ((-384 . -95) T) ((-384 . -35) T) ((-1044 . -107) 86127) ((-483 . -1058) T) ((-1301 . -1065) 86111) ((-485 . -237) 86061) ((-1169 . -495) 85995) ((-1292 . -1060) 85979) ((-386 . -1065) 85963) ((-1292 . -646) 85933) ((-483 . -245) T) ((-822 . -102) T) ((-720 . -148) 85912) ((-720 . -146) 85891) ((-490 . -495) 85875) ((-491 . -340) 85844) ((-1301 . -111) 85823) ((-518 . -1109) T) ((-488 . -174) 85802) ((-1008 . -382) 85786) ((-419 . -102) T) ((-386 . -111) 85765) ((-1008 . -343) 85749) ((-282 . -992) 85733) ((-281 . -992) 85717) ((-1299 . -619) 85699) ((-1297 . -619) 85681) ((-110 . -520) NIL) ((-1182 . -1253) 85665) ((-860 . -858) 85649) ((-1188 . -1109) T) ((-103 . -1227) T) ((-959 . -956) 85610) ((-823 . -723) 85552) ((-1241 . -1161) NIL) ((-487 . -956) 85497) ((-1071 . -144) T) ((-60 . -102) 85475) ((-44 . -619) 85457) ((-78 . -619) 85439) ((-356 . -654) 85384) ((-1289 . -1109) T) ((-517 . -856) T) ((-348 . -1121) T) ((-299 . -1109) T) ((-1008 . -907) 85343) ((-299 . -616) 85322) ((-1301 . -622) 85271) ((-1269 . -38) 85168) ((-1262 . -38) 85009) ((-1241 . -38) 84805) ((-493 . -1067) T) ((-386 . -622) 84789) ((-219 . -1067) T) ((-348 . -23) T) ((-153 . -619) 84771) ((-839 . -801) 84750) ((-839 . -798) 84729) ((-1226 . -622) 84710) ((-602 . -38) 84683) ((-601 . -38) 84580) ((-876 . -562) T) ((-225 . -132) T) ((-323 . -1011) 84546) ((-79 . -619) 84528) ((-718 . -311) 84507) ((-298 . -732) 84409) ((-830 . -102) T) ((-870 . -850) T) ((-298 . -479) 84388) ((-1292 . -102) T) ((-40 . -368) T) ((-878 . -148) 84367) ((-491 . -652) 84349) ((-878 . -146) 84328) ((-1168 . -495) 84310) ((-1301 . -1058) T) ((-488 . -520) 84243) ((-1155 . -1227) T) ((-971 . -619) 84225) ((-653 . -495) 84209) ((-638 . -495) 84140) ((-821 . -619) 83871) ((-48 . -27) T) ((-1188 . -723) 83768) ((-659 . -1109) T) ((-867 . -866) T) ((-442 . -369) 83742) ((-737 . -652) 83652) ((-1111 . -102) T) ((-979 . -1109) T) ((-870 . -1109) T) ((-822 . -313) 83639) ((-539 . -533) T) ((-539 . -582) T) ((-1297 . -387) 83611) ((-1063 . -520) 83544) ((-1169 . -290) 83520) ((-242 . -233) 83489) ((-254 . -1060) 83386) ((-253 . -1060) 83283) ((-1289 . -723) 83253) ((-1176 . -93) T) ((-1003 . -93) T) ((-823 . -174) 83232) ((-254 . -646) 83174) ((-253 . -646) 83116) ((-1224 . -496) 83093) ((-229 . -520) 83026) ((-627 . -801) 83005) ((-627 . -798) 82984) ((-1224 . -619) 82896) ((-224 . -1227) T) ((-681 . -619) 82828) ((-1184 . -652) 82738) ((-1166 . -1019) 82722) ((-950 . -102) 82672) ((-356 . -732) T) ((-867 . -619) 82654) ((-1183 . -652) 82536) ((-1177 . -652) 82373) ((-1135 . -652) 82283) ((-1241 . -406) 82235) ((-1122 . -495) 82219) ((-60 . -313) 82157) ((-335 . -102) T) ((-1221 . -21) T) ((-1221 . -25) T) ((-40 . -1121) T) ((-717 . -21) T) ((-633 . -619) 82139) ((-521 . -327) 82118) ((-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) 82100) ((-1013 . -233) 82082) ((-171 . -167) 82066) ((-586 . -562) T) ((-570 . -562) T) ((-501 . -562) T) ((-777 . -23) T) ((-1261 . -148) 82045) ((-1169 . -610) 82021) ((-1261 . -146) 82000) ((-1036 . -495) 81984) ((-1240 . -146) 81909) ((-1240 . -148) 81834) ((-1292 . -1298) 81813) ((-482 . -495) 81797) ((-469 . -495) 81781) ((-529 . -34) T) ((-659 . -723) 81751) ((-112 . -976) T) ((-668 . -856) 81730) ((-1188 . -174) 81681) ((-370 . -102) T) ((-242 . -240) 81660) ((-254 . -102) T) ((-253 . -102) T) ((-1250 . -956) 81629) ((-247 . -856) 81608) ((-822 . -38) 81457) ((-45 . -520) 81249) ((-1168 . -290) 81224) ((-216 . -1109) T) ((-1159 . -1109) T) ((-1159 . -616) 81203) ((-592 . -25) T) ((-592 . -21) T) ((-1111 . -313) 81141) ((-970 . -417) 81125) ((-705 . -1231) T) ((-638 . -290) 81100) ((-1096 . -645) 81048) ((-788 . -645) 80996) ((-786 . -645) 80944) ((-348 . -132) T) ((-293 . -619) 80926) ((-912 . -1109) T) ((-705 . -562) T) ((-130 . -622) 80908) ((-876 . -1121) T) ((-460 . -645) 80856) ((-912 . -910) 80840) ((-384 . -458) T) ((-493 . -1109) T) ((-950 . -313) 80778) ((-707 . -654) 80765) ((-555 . -850) T) ((-219 . -1109) T) ((-320 . -927) 80744) ((-317 . -927) T) ((-317 . -826) NIL) ((-396 . -726) T) ((-876 . -23) T) ((-117 . -654) 80731) ((-480 . -146) 80710) ((-424 . -417) 80694) ((-480 . -148) 80673) ((-110 . -495) 80655) ((-315 . -622) 80636) ((-2 . -619) 80618) ((-188 . -102) T) ((-1168 . -19) 80600) ((-1168 . -610) 80575) ((-664 . -21) T) ((-664 . -25) T) ((-599 . -1153) T) ((-1122 . -290) 80552) ((-341 . -25) T) ((-341 . -21) T) ((-242 . -652) 80302) ((-501 . -368) T) ((-1292 . -38) 80272) ((-1182 . -1060) 80095) ((-1151 . -1227) T) ((-1134 . -1060) 79938) ((-860 . -1060) 79922) ((-638 . -610) 79897) ((-1299 . -1065) 79881) ((-1297 . -1065) 79865) ((-1182 . -646) 79694) ((-1134 . -646) 79543) ((-860 . -646) 79513) ((-1261 . -1212) 79479) ((-1261 . -1215) 79445) ((-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) 79429) ((-523 . -1092) T) ((-467 . -25) T) ((-118 . -562) T) ((-467 . -21) T) ((-460 . -25) T) ((-460 . -21) T) ((-1261 . -95) 79395) ((-1160 . -93) T) ((-1151 . -1047) 79291) ((-823 . -294) 79270) ((-1244 . -102) 79248) ((-829 . -1109) T) ((-973 . -976) T) ((-676 . -111) 79227) ((-623 . -1227) T) ((-299 . -520) 79019) ((-1241 . -233) 78971) ((-1240 . -1212) 78937) ((-1240 . -1215) 78903) ((-254 . -313) 78841) ((-253 . -313) 78779) ((-1235 . -373) T) ((-1169 . -620) NIL) ((-1169 . -619) 78761) ((-1232 . -850) T) ((-1151 . -382) 78745) ((-1129 . -826) T) ((-96 . -93) T) ((-1129 . -927) T) ((-1122 . -610) 78722) ((-1089 . -620) 78706) ((-1013 . -652) 78656) ((-921 . -652) 78593) ((-821 . -292) 78570) ((-490 . -619) 78502) ((-614 . -152) 78449) ((-493 . -723) 78399) ((-424 . -1067) T) ((-488 . -495) 78383) ((-433 . -652) 78342) ((-331 . -856) 78321) ((-344 . -654) 78295) ((-50 . -21) T) ((-50 . -25) T) ((-219 . -723) 78245) ((-171 . -730) 78216) ((-176 . -654) 78148) ((-587 . -21) T) ((-587 . -25) T) ((-524 . -25) T) ((-524 . -21) T) ((-481 . -152) 78098) ((-1089 . -619) 78080) ((-1070 . -619) 78062) ((-1002 . -102) T) ((-868 . -102) T) ((-805 . -417) 78025) ((-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) 78007) ((-358 . -619) 77989) ((-350 . -619) 77971) ((-66 . -402) T) ((-66 . -401) T) ((-108 . -620) 77901) ((-108 . -619) 77843) ((-213 . -902) T) ((-965 . -152) 77827) ((-777 . -132) T) ((-676 . -622) 77745) ((-135 . -732) T) ((-117 . -732) T) ((-1261 . -35) 77711) ((-1063 . -495) 77695) ((-586 . -23) T) ((-570 . -23) T) ((-501 . -23) T) ((-1240 . -95) 77661) ((-1240 . -35) 77627) ((-1182 . -102) T) ((-1134 . -102) T) ((-860 . -102) T) ((-229 . -495) 77611) ((-1299 . -111) 77590) ((-1297 . -111) 77569) ((-44 . -1065) 77553) ((-1299 . -622) 77499) ((-1250 . -1253) 77483) ((-861 . -858) 77467) ((-1299 . -1058) T) ((-1188 . -294) 77446) ((-110 . -290) 77421) ((-1297 . -622) 77350) ((-129 . -152) 77332) ((-1151 . -907) 77291) ((-44 . -111) 77270) ((-1232 . -1109) T) ((-1191 . -1272) T) ((-1176 . -496) 77251) ((-1176 . -619) 77217) ((-676 . -1058) T) ((-1168 . -620) NIL) ((-1168 . -619) 77199) ((-1072 . -616) 77174) ((-1072 . -1109) T) ((-1003 . -496) 77155) ((-74 . -447) T) ((-74 . -401) T) ((-1003 . -619) 77121) ((-153 . -1065) 77105) ((-676 . -235) 77084) ((-577 . -560) 77068) ((-360 . -148) 77047) ((-360 . -146) 76998) ((-357 . -148) 76977) ((-357 . -146) 76928) ((-349 . -148) 76907) ((-349 . -146) 76858) ((-267 . -146) 76837) ((-267 . -148) 76816) ((-254 . -38) 76786) ((-249 . -148) 76765) ((-118 . -368) T) ((-249 . -146) 76744) ((-253 . -38) 76714) ((-153 . -111) 76693) ((-1012 . -1047) 76581) ((-1177 . -854) NIL) ((-700 . -1231) T) ((-805 . -1067) T) ((-705 . -1121) T) ((-1297 . -1058) T) ((-1166 . -1227) T) ((-1012 . -382) 76558) ((-917 . -146) T) ((-917 . -148) 76540) ((-876 . -132) T) ((-821 . -1065) 76437) ((-705 . -23) T) ((-700 . -562) T) ((-227 . -1060) 76402) ((-653 . -619) 76334) ((-653 . -620) 76295) ((-638 . -620) NIL) ((-638 . -619) 76277) ((-493 . -174) T) ((-227 . -646) 76242) ((-225 . -21) T) ((-219 . -174) T) ((-225 . -25) T) ((-480 . -1215) 76208) ((-480 . -1212) 76174) ((-277 . -619) 76156) ((-276 . -619) 76138) ((-275 . -619) 76120) ((-274 . -619) 76102) ((-273 . -619) 76084) ((-506 . -657) 76066) ((-272 . -619) 76048) ((-344 . -732) T) ((-271 . -619) 76030) ((-110 . -19) 76012) ((-176 . -732) T) ((-506 . -378) 75994) ((-214 . -619) 75976) ((-526 . -1158) 75960) ((-506 . -124) T) ((-110 . -610) 75935) ((-213 . -619) 75917) ((-480 . -35) 75883) ((-480 . -95) 75849) ((-211 . -619) 75831) ((-210 . -619) 75813) ((-209 . -619) 75795) ((-208 . -619) 75777) ((-205 . -619) 75759) ((-204 . -619) 75741) ((-203 . -619) 75723) ((-202 . -619) 75705) ((-201 . -619) 75687) ((-200 . -619) 75669) ((-199 . -619) 75651) ((-542 . -1112) 75603) ((-198 . -619) 75585) ((-197 . -619) 75567) ((-45 . -495) 75504) ((-196 . -619) 75486) ((-195 . -619) 75468) ((-153 . -622) 75437) ((-1124 . -102) T) ((-821 . -111) 75327) ((-650 . -102) 75277) ((-488 . -290) 75254) ((-1122 . -619) 74985) ((-1110 . -1109) T) ((-1055 . -1227) T) ((-1300 . -1047) 74969) ((-1071 . -1060) 74956) ((-1182 . -313) 74943) ((-959 . -1060) 74786) ((-1144 . -1109) T) ((-1134 . -313) 74773) ((-629 . -1121) T) ((-1071 . -646) 74760) ((-1105 . -1092) T) ((-959 . -646) 74609) ((-1099 . -1092) T) ((-487 . -1060) 74452) ((-1082 . -1092) T) ((-1075 . -1092) T) ((-1045 . -1092) T) ((-1028 . -1092) T) ((-118 . -1121) T) ((-487 . -646) 74301) ((-825 . -102) T) ((-632 . -1092) T) ((-629 . -23) T) ((-1159 . -520) 74093) ((-489 . -1092) T) ((-392 . -102) T) ((-328 . -102) T) ((-220 . -1092) T) ((-970 . -1109) T) ((-153 . -1058) T) ((-737 . -417) 74077) ((-118 . -23) T) ((-1012 . -907) 74029) ((-741 . -1109) T) ((-721 . -1109) T) ((-459 . -1109) T) ((-413 . -1227) T) ((-320 . -436) 74013) ((-598 . -93) T) ((-1269 . -652) 73923) ((-1036 . -620) 73884) ((-1033 . -1231) T) ((-227 . -102) T) ((-1036 . -619) 73846) ((-1262 . -652) 73728) ((-822 . -233) 73712) ((-821 . -622) 73442) ((-1241 . -652) 73279) ((-1033 . -562) T) ((-839 . -654) 73252) ((-359 . -1231) T) ((-482 . -619) 73214) ((-482 . -620) 73175) ((-469 . -620) 73136) ((-469 . -619) 73098) ((-602 . -652) 73057) ((-413 . -891) 73041) ((-323 . -1065) 72876) ((-413 . -893) 72801) ((-601 . -652) 72711) ((-849 . -1047) 72607) ((-493 . -520) NIL) ((-488 . -610) 72584) ((-359 . -562) T) ((-219 . -520) NIL) ((-878 . -458) T) ((-424 . -1109) T) ((-413 . -1047) 72448) ((-323 . -111) 72269) ((-700 . -368) T) ((-227 . -288) T) ((-1224 . -622) 72246) ((-48 . -1231) T) ((-821 . -1058) 72176) ((-1182 . -1161) 72154) ((-586 . -132) T) ((-570 . -132) T) ((-501 . -132) T) ((-1169 . -292) 72130) ((-48 . -562) T) ((-1071 . -102) T) ((-959 . -102) T) ((-877 . -1060) 72075) ((-320 . -27) 72054) ((-821 . -235) 72006) ((-251 . -841) 71988) ((-242 . -854) 71967) ((-189 . -841) 71949) ((-719 . -102) T) ((-299 . -495) 71886) ((-877 . -646) 71831) ((-487 . -102) T) ((-737 . -1067) T) ((-618 . -619) 71813) ((-618 . -620) 71674) ((-413 . -382) 71658) ((-413 . -343) 71642) ((-323 . -622) 71468) ((-1182 . -38) 71297) ((-1134 . -38) 71146) ((-860 . -38) 71116) ((-396 . -654) 71100) ((-650 . -313) 71038) ((-1160 . -496) 71019) ((-1160 . -619) 70985) ((-970 . -723) 70882) ((-741 . -723) 70852) ((-224 . -107) 70836) ((-45 . -290) 70761) ((-627 . -654) 70735) ((-316 . -1109) T) ((-293 . -1065) 70722) ((-110 . -619) 70704) ((-110 . -620) 70686) ((-459 . -723) 70656) ((-822 . -256) 70595) ((-695 . -1109) 70573) ((-556 . -1109) T) ((-1184 . -1067) T) ((-1183 . -1067) T) ((-96 . -496) 70554) ((-1177 . -1067) T) ((-293 . -111) 70539) ((-1135 . -1067) T) ((-556 . -616) 70518) ((-96 . -619) 70484) ((-1013 . -854) T) ((-229 . -693) 70442) ((-700 . -1121) T) ((-1221 . -746) 70418) ((-1033 . -368) T) ((-844 . -841) 70400) ((-839 . -800) 70379) ((-413 . -907) 70338) ((-323 . -1058) T) ((-348 . -25) T) ((-348 . -21) T) ((-171 . -1060) 70248) ((-68 . -1227) T) ((-839 . -797) 70227) ((-424 . -723) 70201) ((-805 . -1109) T) ((-718 . -927) 70180) ((-705 . -132) T) ((-171 . -646) 70008) ((-700 . -23) T) ((-493 . -294) T) ((-839 . -732) 69987) ((-323 . -235) 69939) ((-323 . -245) 69918) ((-219 . -294) T) ((-130 . -373) T) ((-1261 . -458) 69897) ((-1240 . -458) 69876) ((-359 . -333) 69853) ((-359 . -368) T) ((-1149 . -619) 69835) ((-45 . -1265) 69785) ((-877 . -102) T) ((-650 . -286) 69769) ((-705 . -1069) T) ((-1288 . -102) T) ((-1287 . -102) T) ((-483 . -654) 69734) ((-474 . -1109) T) ((-45 . -610) 69659) ((-1168 . -292) 69634) ((-293 . -622) 69606) ((-40 . -645) 69545) ((-1250 . -1060) 69368) ((-861 . -1060) 69352) ((-48 . -368) T) ((-1115 . -619) 69334) ((-1250 . -646) 69163) ((-861 . -646) 69133) ((-638 . -292) 69108) ((-822 . -652) 69018) ((-577 . -1060) 69005) ((-488 . -619) 68736) ((-242 . -417) 68705) ((-959 . -313) 68692) ((-577 . -646) 68679) ((-65 . -1227) T) ((-1072 . -520) 68523) ((-677 . -1109) T) ((-629 . -132) T) ((-487 . -313) 68510) ((-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) 68461) ((-979 . -93) T) ((-1089 . -1065) 68371) ((-627 . -800) 68350) ((-599 . -1109) T) ((-627 . -797) 68329) ((-627 . -732) T) ((-299 . -290) 68308) ((-298 . -1227) T) ((-1063 . -619) 68270) ((-1063 . -620) 68231) ((-1033 . -1121) T) ((-171 . -102) T) ((-278 . -856) T) ((-1175 . -1109) T) ((-824 . -619) 68213) ((-1122 . -292) 68190) ((-1111 . -231) 68174) ((-1012 . -311) T) ((-805 . -723) 68158) ((-364 . -1065) 68110) ((-359 . -1121) T) ((-358 . -1065) 68062) ((-420 . -619) 68044) ((-390 . -619) 68026) ((-350 . -1065) 67978) ((-229 . -619) 67910) ((-1089 . -111) 67806) ((-1033 . -23) T) ((-108 . -1065) 67756) ((-905 . -102) T) ((-847 . -102) T) ((-814 . -102) T) ((-775 . -102) T) ((-683 . -102) T) ((-480 . -458) 67735) ((-424 . -174) T) ((-364 . -111) 67673) ((-358 . -111) 67611) ((-350 . -111) 67549) ((-254 . -233) 67518) ((-253 . -233) 67487) ((-359 . -23) T) ((-71 . -1227) T) ((-227 . -38) 67452) ((-108 . -111) 67386) ((-40 . -25) T) ((-40 . -21) T) ((-676 . -726) T) ((-171 . -288) 67364) ((-48 . -1121) T) ((-928 . -25) T) ((-777 . -25) T) ((-1301 . -654) 67338) ((-1159 . -495) 67275) ((-491 . -1109) T) ((-1292 . -652) 67234) ((-1250 . -102) T) ((-1071 . -1161) T) ((-861 . -102) T) ((-242 . -1067) 67164) ((-971 . -798) 67117) ((-971 . -801) 67070) ((-386 . -654) 67054) ((-48 . -23) T) ((-821 . -801) 67005) ((-821 . -798) 66956) ((-554 . -373) T) ((-299 . -610) 66935) ((-483 . -732) T) ((-577 . -102) T) ((-1089 . -622) 66753) ((-251 . -187) T) ((-189 . -187) T) ((-877 . -313) 66710) ((-659 . -290) 66689) ((-112 . -667) T) ((-364 . -622) 66626) ((-358 . -622) 66563) ((-350 . -622) 66500) ((-76 . -1227) T) ((-108 . -622) 66450) ((-112 . -113) T) ((-1071 . -38) 66437) ((-670 . -379) 66416) ((-959 . -38) 66265) ((-737 . -1109) T) ((-487 . -38) 66114) ((-86 . -1227) T) ((-598 . -496) 66095) ((-577 . -288) T) ((-1241 . -854) NIL) ((-598 . -619) 66061) ((-1184 . -1109) T) ((-1183 . -1109) T) ((-1089 . -1058) T) ((-356 . -1047) 66038) ((-823 . -496) 66022) ((-1013 . -1067) T) ((-45 . -619) 66004) ((-45 . -620) NIL) ((-921 . -1067) T) ((-823 . -619) 65973) ((-1177 . -1109) T) ((-1156 . -102) 65951) ((-1089 . -245) 65902) ((-433 . -1067) T) ((-364 . -1058) T) ((-370 . -369) 65879) ((-358 . -1058) T) ((-350 . -1058) T) ((-254 . -240) 65858) ((-253 . -240) 65837) ((-1089 . -235) 65762) ((-1135 . -1109) T) ((-298 . -907) 65721) ((-108 . -1058) T) ((-700 . -132) T) ((-424 . -520) 65563) ((-364 . -235) 65542) ((-364 . -245) T) ((-44 . -726) T) ((-358 . -235) 65521) ((-358 . -245) T) ((-350 . -235) 65500) ((-350 . -245) T) ((-1176 . -622) 65481) ((-171 . -313) 65446) ((-108 . -245) T) ((-108 . -235) T) ((-1003 . -622) 65427) ((-323 . -798) T) ((-876 . -21) T) ((-876 . -25) T) ((-413 . -311) T) ((-506 . -34) T) ((-110 . -292) 65402) ((-1122 . -1065) 65299) ((-877 . -1161) NIL) ((-334 . -619) 65281) ((-413 . -1031) 65259) ((-1122 . -111) 65149) ((-697 . -1272) T) ((-442 . -1109) T) ((-252 . -1109) T) ((-1301 . -732) T) ((-63 . -619) 65131) ((-877 . -38) 65076) ((-529 . -1227) T) ((-608 . -152) 65060) ((-518 . -619) 65042) ((-1250 . -313) 65029) ((-737 . -723) 64878) ((-537 . -799) T) ((-537 . -800) T) ((-570 . -645) 64860) ((-501 . -645) 64820) ((-360 . -458) T) ((-357 . -458) T) ((-349 . -458) T) ((-267 . -458) 64771) ((-531 . -1109) T) ((-526 . -1109) 64721) ((-249 . -458) 64672) ((-1159 . -290) 64651) ((-1188 . -619) 64633) ((-695 . -520) 64566) ((-970 . -294) 64545) ((-556 . -520) 64337) ((-254 . -652) 64157) ((-253 . -652) 63964) ((-1289 . -619) 63933) ((-1289 . -496) 63917) ((-1182 . -233) 63901) ((-1122 . -622) 63631) ((-171 . -1161) 63610) ((-1184 . -723) 63507) ((-1183 . -723) 63348) ((-973 . -113) T) ((-899 . -102) T) ((-1177 . -723) 63144) ((-1135 . -723) 63041) ((-1166 . -680) 63025) ((-360 . -408) 62976) ((-357 . -408) 62927) ((-349 . -408) 62878) ((-1033 . -132) T) ((-805 . -520) 62790) ((-299 . -620) NIL) ((-299 . -619) 62772) ((-917 . -458) T) ((-971 . -373) 62725) ((-821 . -373) 62704) ((-516 . -515) 62683) ((-514 . -515) 62662) ((-493 . -290) NIL) ((-488 . -292) 62639) ((-424 . -294) T) ((-359 . -132) T) ((-219 . -290) NIL) ((-700 . -499) NIL) ((-99 . -1121) T) ((-171 . -38) 62467) ((-1261 . -982) 62429) ((-1156 . -313) 62367) ((-1240 . -982) 62336) ((-917 . -408) T) ((-1122 . -1058) 62266) ((-1263 . -562) T) ((-1159 . -610) 62245) ((-112 . -856) T) ((-1072 . -495) 62176) ((-586 . -21) T) ((-586 . -25) T) ((-570 . -21) T) ((-570 . -25) T) ((-501 . -25) T) ((-501 . -21) T) ((-1250 . -1161) 62154) ((-1122 . -235) 62106) ((-48 . -132) T) ((-1208 . -102) T) ((-242 . -1109) 61896) ((-877 . -406) 61873) ((-1097 . -102) T) ((-1085 . -102) T) ((-614 . -102) T) ((-481 . -102) T) ((-1250 . -38) 61702) ((-861 . -38) 61672) ((-1043 . -1060) 61646) ((-737 . -174) 61557) ((-659 . -619) 61539) ((-651 . -1092) T) ((-1043 . -646) 61523) ((-577 . -38) 61510) ((-979 . -496) 61491) ((-979 . -619) 61457) ((-965 . -102) 61407) ((-870 . -619) 61389) ((-870 . -620) 61311) ((-599 . -520) NIL) ((-1269 . -1067) T) ((-1262 . -1067) T) ((-326 . -1060) 61293) ((-1241 . -1067) T) ((-1306 . -1121) T) ((-1221 . -148) 61272) ((-326 . -646) 61254) ((-1221 . -146) 61233) ((-1194 . -102) T) ((-1193 . -102) T) ((-1192 . -102) T) ((-1184 . -174) 61184) ((-602 . -1067) T) ((-601 . -1067) T) ((-1183 . -174) 61115) ((-1177 . -174) 61046) ((-384 . -1060) 61011) ((-1160 . -622) 60992) ((-1135 . -174) 60943) ((-1013 . -1109) T) ((-980 . -1109) T) ((-921 . -1109) T) ((-384 . -646) 60908) ((-805 . -803) 60892) ((-705 . -25) T) ((-705 . -21) T) ((-118 . -645) 60869) ((-707 . -893) 60851) ((-433 . -1109) T) ((-320 . -1231) 60830) ((-317 . -1231) T) ((-171 . -406) 60814) ((-842 . -1060) 60784) ((-480 . -982) 60746) ((-131 . -102) T) ((-129 . -102) T) ((-72 . -619) 60728) ((-833 . -1060) 60712) ((-108 . -801) T) ((-108 . -798) T) ((-707 . -1047) 60694) ((-320 . -562) 60673) ((-317 . -562) T) ((-842 . -646) 60643) ((-833 . -646) 60613) ((-1306 . -23) T) ((-135 . -1047) 60595) ((-96 . -622) 60576) ((-1002 . -652) 60558) ((-488 . -1065) 60455) ((-45 . -292) 60380) ((-242 . -723) 60322) ((-523 . -102) T) ((-488 . -111) 60212) ((-1101 . -102) 60182) ((-1043 . -102) T) ((-1182 . -652) 60092) ((-1134 . -652) 60002) ((-860 . -652) 59961) ((-650 . -834) 59940) ((-737 . -520) 59883) ((-1063 . -1065) 59867) ((-1144 . -93) T) ((-1072 . -290) 59842) ((-629 . -21) T) ((-629 . -25) T) ((-530 . -1109) T) ((-676 . -654) 59816) ((-366 . -102) T) ((-326 . -102) T) ((-390 . -1065) 59800) ((-1063 . -111) 59779) ((-822 . -417) 59763) ((-118 . -25) T) ((-89 . -619) 59745) ((-118 . -21) T) ((-614 . -313) 59540) ((-481 . -313) 59344) ((-1159 . -620) NIL) ((-390 . -111) 59323) ((-384 . -102) T) ((-216 . -619) 59305) ((-1159 . -619) 59287) ((-1177 . -520) 59056) ((-1013 . -723) 59006) ((-1135 . -520) 58976) ((-921 . -723) 58928) ((-488 . -622) 58658) ((-356 . -311) T) ((-1199 . -152) 58608) ((-965 . -313) 58546) ((-842 . -102) T) ((-433 . -723) 58530) ((-227 . -834) T) ((-833 . -102) T) ((-831 . -102) T) ((-485 . -152) 58480) ((-1261 . -1260) 58459) ((-1129 . -1231) T) ((-344 . -1047) 58426) ((-1261 . -1255) 58396) ((-1261 . -1258) 58380) ((-1240 . -1239) 58359) ((-80 . -619) 58341) ((-912 . -619) 58323) ((-1240 . -1255) 58300) ((-1129 . -562) T) ((-928 . -856) T) ((-777 . -856) T) ((-678 . -856) T) ((-493 . -620) 58230) ((-493 . -619) 58171) ((-384 . -288) T) ((-1240 . -1237) 58155) ((-1263 . -1121) T) ((-219 . -620) 58085) ((-219 . -619) 58026) ((-1299 . -654) 58000) ((-1072 . -610) 57975) ((-824 . -622) 57959) ((-59 . -152) 57943) ((-522 . -152) 57927) ((-502 . -152) 57911) ((-364 . -1296) 57895) ((-358 . -1296) 57879) ((-350 . -1296) 57863) ((-320 . -368) 57842) ((-317 . -368) T) ((-488 . -1058) 57772) ((-700 . -645) 57754) ((-1297 . -654) 57728) ((-129 . -313) NIL) ((-1263 . -23) T) ((-695 . -495) 57712) ((-64 . -619) 57694) ((-1122 . -801) 57645) ((-1122 . -798) 57596) ((-556 . -495) 57533) ((-676 . -34) T) ((-488 . -235) 57485) ((-299 . -292) 57464) ((-242 . -174) 57443) ((-822 . -1067) T) ((-44 . -654) 57401) ((-1089 . -373) 57352) ((-1096 . -146) 57331) ((-737 . -294) 57262) ((-526 . -520) 57195) ((-823 . -1065) 57146) ((-1096 . -148) 57125) ((-555 . -619) 57107) ((-364 . -373) 57086) ((-358 . -373) 57065) ((-350 . -373) 57044) ((-975 . -1227) T) ((-877 . -233) 57021) ((-823 . -111) 56963) ((-788 . -146) 56942) ((-788 . -148) 56921) ((-267 . -956) 56888) ((-254 . -854) 56867) ((-249 . -956) 56812) ((-253 . -854) 56791) ((-786 . -146) 56770) ((-786 . -148) 56749) ((-153 . -654) 56723) ((-585 . -1109) T) ((-460 . -148) 56702) ((-460 . -146) 56681) ((-676 . -732) T) ((-829 . -619) 56663) ((-1269 . -1109) T) ((-1262 . -1109) T) ((-1241 . -1109) T) ((-1221 . -1215) 56629) ((-1221 . -1212) 56595) ((-1184 . -294) 56574) ((-1183 . -294) 56525) ((-1177 . -294) 56476) ((-1135 . -294) 56455) ((-344 . -907) 56436) ((-1013 . -174) T) ((-921 . -174) T) ((-700 . -21) T) ((-700 . -25) T) ((-227 . -652) 56386) ((-602 . -1109) T) ((-601 . -1109) T) ((-480 . -1258) 56370) ((-480 . -1255) 56340) ((-424 . -290) 56268) ((-553 . -856) T) ((-320 . -1121) 56117) ((-317 . -1121) T) ((-1221 . -35) 56083) ((-1221 . -95) 56049) ((-84 . -619) 56031) ((-91 . -102) 56009) ((-1306 . -132) T) ((-720 . -1060) 55979) ((-598 . -622) 55960) ((-587 . -146) T) ((-587 . -148) 55942) ((-524 . -148) 55924) ((-524 . -146) T) ((-720 . -646) 55894) ((-320 . -23) 55746) ((-40 . -347) 55720) ((-317 . -23) T) ((-823 . -622) 55634) ((-1168 . -657) 55616) ((-1292 . -1067) T) ((-1168 . -378) 55598) ((-821 . -654) 55446) ((-1105 . -102) T) ((-1099 . -102) T) ((-1082 . -102) T) ((-171 . -233) 55430) ((-1075 . -102) T) ((-1045 . -102) T) ((-1028 . -102) T) ((-599 . -495) 55412) ((-632 . -102) T) ((-242 . -520) 55345) ((-489 . -102) T) ((-1299 . -732) T) ((-1297 . -732) T) ((-220 . -102) T) ((-1188 . -1065) 55228) ((-1071 . -652) 55200) ((-959 . -652) 55110) ((-1188 . -111) 54979) ((-882 . -1092) T) ((-487 . -652) 54889) ((-867 . -175) T) ((-823 . -1058) T) ((-687 . -1092) T) ((-682 . -1092) T) ((-521 . -102) T) ((-516 . -102) T) ((-48 . -645) 54849) ((-514 . -102) T) ((-484 . -1092) T) ((-1289 . -1065) 54819) ((-139 . -1092) T) ((-138 . -1092) T) ((-134 . -1092) T) ((-1043 . -38) 54803) ((-823 . -235) T) ((-823 . -245) 54782) ((-1289 . -111) 54747) ((-1269 . -723) 54644) ((-1262 . -723) 54485) ((-556 . -290) 54464) ((-1250 . -233) 54448) ((-1232 . -619) 54430) ((-612 . -93) T) ((-1072 . -620) NIL) ((-1072 . -619) 54412) ((-677 . -93) T) ((-182 . -93) T) ((-162 . -93) T) ((-157 . -93) T) ((-155 . -93) T) ((-1241 . -723) 54208) ((-1012 . -927) T) ((-153 . -732) T) ((-1188 . -622) 54061) ((-1122 . -373) 54040) ((-1033 . -25) T) ((-1013 . -520) NIL) ((-254 . -417) 54009) ((-253 . -417) 53978) ((-1033 . -21) T) ((-878 . -1060) 53930) ((-602 . -723) 53903) ((-601 . -723) 53800) ((-805 . -290) 53758) ((-127 . -102) 53736) ((-839 . -1047) 53632) ((-171 . -834) 53611) ((-323 . -654) 53508) ((-821 . -34) T) ((-720 . -102) T) ((-1129 . -1121) T) ((-1035 . -1227) T) ((-878 . -646) 53460) ((-384 . -38) 53425) ((-359 . -25) T) ((-359 . -21) T) ((-189 . -102) T) ((-163 . -102) T) ((-251 . -102) T) ((-158 . -102) T) ((-360 . -1284) 53409) ((-357 . -1284) 53393) ((-349 . -1284) 53377) ((-171 . -354) 53356) ((-570 . -856) T) ((-1129 . -23) T) ((-87 . -619) 53338) ((-707 . -311) T) ((-842 . -38) 53308) ((-833 . -38) 53278) ((-1289 . -622) 53220) ((-1263 . -132) T) ((-1159 . -292) 53199) ((-971 . -732) 53098) ((-971 . -799) 53051) ((-971 . -800) 53004) ((-821 . -797) 52983) ((-117 . -311) T) ((-91 . -313) 52921) ((-681 . -34) T) ((-556 . -610) 52900) ((-48 . -25) T) ((-48 . -21) T) ((-821 . -800) 52851) ((-821 . -799) 52830) ((-707 . -1031) T) ((-659 . -1065) 52814) ((-877 . -652) 52744) ((-821 . -732) 52654) ((-971 . -479) 52607) ((-488 . -801) 52558) ((-488 . -798) 52509) ((-917 . -1284) 52496) ((-1188 . -1058) T) ((-659 . -111) 52475) ((-1188 . -330) 52452) ((-1213 . -102) 52430) ((-1110 . -619) 52412) ((-707 . -551) T) ((-822 . -1109) T) ((-1289 . -1058) T) ((-1144 . -496) 52393) ((-1233 . -102) T) ((-419 . -1109) T) ((-1144 . -619) 52359) ((-254 . -1067) 52289) ((-253 . -1067) 52219) ((-844 . -102) T) ((-293 . -654) 52206) ((-599 . -290) 52181) ((-695 . -693) 52139) ((-970 . -619) 52121) ((-878 . -102) T) ((-741 . -619) 52103) ((-721 . -619) 52085) ((-1269 . -174) 52036) ((-1262 . -174) 51967) ((-1241 . -174) 51898) ((-705 . -856) T) ((-1013 . -294) T) ((-459 . -619) 51880) ((-633 . -732) T) ((-60 . -1109) 51858) ((-247 . -152) 51842) ((-921 . -294) T) ((-1033 . -1021) T) ((-633 . -479) T) ((-718 . -1231) 51821) ((-659 . -622) 51739) ((-171 . -652) 51634) ((-1277 . -856) 51613) ((-602 . -174) 51592) ((-601 . -174) 51543) ((-1261 . -646) 51384) ((-1261 . -1060) 51219) ((-1240 . -646) 51033) ((-1240 . -1060) 50841) ((-718 . -562) 50752) ((-413 . -927) T) ((-413 . -826) 50731) ((-323 . -800) T) ((-979 . -622) 50712) ((-323 . -732) T) ((-424 . -619) 50694) ((-424 . -620) 50601) ((-650 . -1158) 50585) ((-110 . -657) 50567) ((-176 . -311) T) ((-127 . -313) 50505) ((-110 . -378) 50487) ((-404 . -1227) T) ((-320 . -132) 50358) ((-317 . -132) T) ((-69 . -401) T) ((-110 . -124) T) ((-526 . -495) 50342) ((-660 . -1121) T) ((-599 . -19) 50324) ((-61 . -447) T) ((-61 . -401) T) ((-830 . -1109) T) ((-599 . -610) 50299) ((-483 . -1047) 50259) ((-659 . -1058) T) ((-660 . -23) T) ((-1292 . -1109) T) ((-31 . -102) T) ((-1250 . -652) 50169) ((-861 . -652) 50128) ((-822 . -723) 49977) ((-583 . -866) T) ((-577 . -652) 49949) ((-118 . -856) NIL) ((-1182 . -417) 49933) ((-1134 . -417) 49917) ((-860 . -417) 49901) ((-879 . -102) 49852) ((-1261 . -102) T) ((-1241 . -520) 49621) ((-1240 . -102) T) ((-1213 . -313) 49559) ((-1184 . -290) 49544) ((-1183 . -290) 49529) ((-531 . -93) T) ((-1177 . -290) 49377) ((-316 . -619) 49359) ((-1111 . -1109) T) ((-1089 . -654) 49269) ((-717 . -458) T) ((-695 . -619) 49201) ((-293 . -732) T) ((-108 . -916) NIL) ((-695 . -620) 49162) ((-607 . -619) 49144) ((-583 . -619) 49126) ((-556 . -620) NIL) ((-556 . -619) 49108) ((-535 . -619) 49090) ((-517 . -515) 49069) ((-493 . -1065) 49019) ((-480 . -1060) 48854) ((-513 . -515) 48833) ((-480 . -646) 48674) ((-219 . -1065) 48624) ((-364 . -654) 48576) ((-358 . -654) 48528) ((-227 . -854) T) ((-350 . -654) 48480) ((-608 . -102) 48430) ((-488 . -373) 48409) ((-108 . -654) 48359) ((-493 . -111) 48293) ((-242 . -495) 48277) ((-348 . -148) 48259) ((-348 . -146) T) ((-171 . -375) 48230) ((-950 . -1275) 48214) ((-219 . -111) 48148) ((-878 . -313) 48113) ((-950 . -1109) 48063) ((-805 . -620) 48024) ((-805 . -619) 48006) ((-724 . -102) T) ((-335 . -1109) T) ((-216 . -622) 47983) ((-1129 . -132) T) ((-720 . -38) 47953) ((-320 . -499) 47932) ((-506 . -1227) T) ((-1261 . -288) 47898) ((-1240 . -288) 47864) ((-331 . -152) 47848) ((-445 . -1109) T) ((-1072 . -292) 47823) ((-1292 . -723) 47793) ((-1169 . -34) T) ((-1301 . -1047) 47770) ((-474 . -619) 47752) ((-490 . -34) T) ((-386 . -1047) 47736) ((-1182 . -1067) T) ((-1134 . -1067) T) ((-860 . -1067) T) ((-1071 . -854) T) ((-493 . -622) 47686) ((-219 . -622) 47636) ((-822 . -174) 47547) ((-526 . -290) 47524) ((-1269 . -294) 47503) ((-1208 . -369) 47477) ((-1097 . -269) 47461) ((-677 . -496) 47442) ((-677 . -619) 47408) ((-612 . -496) 47389) ((-118 . -1001) 47366) ((-612 . -619) 47316) ((-480 . -102) T) ((-182 . -496) 47297) ((-182 . -619) 47263) ((-162 . -496) 47244) ((-157 . -496) 47225) ((-155 . -496) 47206) ((-162 . -619) 47172) ((-157 . -619) 47138) ((-370 . -1109) T) ((-254 . -1109) T) ((-253 . -1109) T) ((-155 . -619) 47104) ((-1262 . -294) 47055) ((-1241 . -294) 47006) ((-878 . -1161) 46984) ((-1184 . -1011) 46950) ((-614 . -369) 46890) ((-1183 . -1011) 46856) ((-614 . -231) 46803) ((-700 . -856) T) ((-599 . -619) 46785) ((-599 . -620) NIL) ((-481 . -231) 46735) ((-493 . -1058) T) ((-1177 . -1011) 46701) ((-88 . -446) T) ((-88 . -401) T) ((-219 . -1058) T) ((-1135 . -1011) 46667) ((-1089 . -732) T) ((-718 . -1121) T) ((-602 . -294) 46646) ((-601 . -294) 46625) ((-493 . -245) T) ((-493 . -235) T) ((-219 . -245) T) ((-219 . -235) T) ((-1175 . -619) 46607) ((-878 . -38) 46559) ((-364 . -732) T) ((-358 . -732) T) ((-350 . -732) T) ((-108 . -800) T) ((-108 . -797) T) ((-718 . -23) T) ((-108 . -732) T) ((-526 . -1265) 46543) ((-1306 . -25) T) ((-480 . -288) 46509) ((-1306 . -21) T) ((-1240 . -313) 46448) ((-1186 . -102) T) ((-40 . -146) 46420) ((-40 . -148) 46392) ((-526 . -610) 46369) ((-1122 . -654) 46217) ((-608 . -313) 46155) ((-45 . -657) 46105) ((-45 . -672) 46055) ((-45 . -378) 46005) ((-1168 . -34) T) ((-877 . -854) NIL) ((-660 . -132) T) ((-491 . -619) 45987) ((-242 . -290) 45964) ((-188 . -1109) T) ((-1096 . -458) 45915) ((-822 . -520) 45789) ((-670 . -1060) 45773) ((-653 . -34) T) ((-638 . -34) T) ((-788 . -458) 45704) ((-670 . -646) 45688) ((-360 . -1060) 45640) ((-357 . -1060) 45592) ((-349 . -1060) 45544) ((-267 . -1060) 45387) ((-249 . -1060) 45230) ((-786 . -458) 45181) ((-360 . -646) 45133) ((-357 . -646) 45085) ((-349 . -646) 45037) ((-267 . -646) 44886) ((-249 . -646) 44735) ((-460 . -458) 44686) ((-959 . -417) 44670) ((-737 . -619) 44652) ((-254 . -723) 44594) ((-253 . -723) 44536) ((-737 . -620) 44397) ((-487 . -417) 44381) ((-344 . -306) T) ((-530 . -93) T) ((-356 . -927) T) ((-1009 . -102) 44359) ((-917 . -1060) 44324) ((-1033 . -856) T) ((-60 . -520) 44257) ((-917 . -646) 44222) ((-1240 . -1161) 44174) ((-1013 . -290) NIL) ((-227 . -1067) T) ((-384 . -834) T) ((-1122 . -34) T) ((-587 . -458) T) ((-524 . -458) T) ((-1244 . -1102) 44158) ((-1244 . -1109) 44136) ((-242 . -610) 44113) ((-1244 . -1104) 44070) ((-1184 . -619) 44052) ((-1183 . -619) 44034) ((-1177 . -619) 44016) ((-1177 . -620) NIL) ((-1135 . -619) 43998) ((-878 . -406) 43982) ((-603 . -102) T) ((-591 . -102) T) ((-542 . -102) T) ((-1261 . -38) 43823) ((-1240 . -38) 43637) ((-876 . -148) T) ((-587 . -408) T) ((-524 . -408) T) ((-1273 . -102) T) ((-1263 . -21) T) ((-1263 . -25) T) ((-1122 . -797) 43616) ((-1122 . -800) 43567) ((-1122 . -799) 43546) ((-1002 . -1109) T) ((-1036 . -34) T) ((-868 . -1109) T) ((-1122 . -732) 43456) ((-670 . -102) T) ((-651 . -102) T) ((-556 . -292) 43435) ((-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) 43341) ((-317 . -645) 43302) ((-1182 . -1109) T) ((-487 . -1067) T) ((-485 . -102) T) ((-442 . -619) 43284) ((-1134 . -1109) T) ((-252 . -619) 43266) ((-860 . -1109) T) ((-1150 . -102) T) ((-822 . -294) 43197) ((-970 . -1065) 43080) ((-483 . -1031) T) ((-741 . -1065) 43050) ((-1043 . -652) 43009) ((-459 . -1065) 42979) ((-1156 . -1130) 42963) ((-1111 . -520) 42896) ((-970 . -111) 42765) ((-917 . -102) T) ((-741 . -111) 42730) ((-531 . -496) 42711) ((-531 . -619) 42677) ((-59 . -102) 42627) ((-526 . -620) 42588) ((-526 . -619) 42500) ((-525 . -102) 42478) ((-522 . -102) 42428) ((-503 . -102) 42406) ((-502 . -102) 42356) ((-459 . -111) 42319) ((-254 . -174) 42298) ((-253 . -174) 42277) ((-326 . -652) 42259) ((-424 . -1065) 42233) ((-1221 . -982) 42195) ((-1008 . -1121) T) ((-384 . -652) 42145) ((-1144 . -622) 42126) ((-950 . -520) 42059) ((-493 . -801) T) ((-480 . -38) 41900) ((-424 . -111) 41867) ((-493 . -798) T) ((-1009 . -313) 41805) ((-219 . -801) T) ((-219 . -798) T) ((-1008 . -23) T) ((-718 . -132) T) ((-1240 . -406) 41775) ((-842 . -652) 41720) ((-833 . -652) 41679) ((-320 . -25) 41531) ((-171 . -417) 41515) ((-320 . -21) 41386) ((-317 . -25) T) ((-317 . -21) T) ((-870 . -373) T) ((-970 . -622) 41239) ((-110 . -34) T) ((-741 . -622) 41195) ((-721 . -622) 41177) ((-488 . -654) 41025) ((-877 . -1067) T) ((-599 . -292) 41000) ((-586 . -148) T) ((-570 . -148) T) ((-501 . -148) T) ((-1182 . -723) 40829) ((-1066 . -102) 40807) ((-1134 . -723) 40656) ((-1129 . -645) 40638) ((-860 . -723) 40608) ((-676 . -1227) T) ((-1 . -102) T) ((-424 . -622) 40516) ((-242 . -619) 40247) ((-1124 . -1109) T) ((-1250 . -417) 40231) ((-1199 . -313) 40035) ((-970 . -1058) T) ((-741 . -1058) T) ((-721 . -1058) T) ((-650 . -1109) 39985) ((-1063 . -654) 39969) ((-861 . -417) 39953) ((-517 . -102) T) ((-513 . -102) T) ((-267 . -313) 39940) ((-249 . -313) 39927) ((-970 . -330) 39906) ((-390 . -654) 39890) ((-676 . -1047) 39786) ((-485 . -313) 39590) ((-254 . -520) 39523) ((-253 . -520) 39456) ((-1150 . -313) 39382) ((-825 . -1109) T) ((-805 . -1065) 39366) ((-1269 . -290) 39351) ((-1262 . -290) 39336) ((-1241 . -290) 39184) ((-392 . -1109) T) ((-328 . -1109) T) ((-424 . -1058) T) ((-171 . -1067) T) ((-59 . -313) 39122) ((-805 . -111) 39101) ((-601 . -290) 39086) ((-525 . -313) 39024) ((-522 . -313) 38962) ((-503 . -313) 38900) ((-502 . -313) 38838) ((-424 . -235) 38817) ((-488 . -34) T) ((-227 . -1109) T) ((-1013 . -620) 38747) ((-1013 . -619) 38707) ((-980 . -619) 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 ed019478..131d383c 100644
--- a/src/share/algebra/compress.daase
+++ b/src/share/algebra/compress.daase
@@ -1,6 +1,6 @@
-(30 . 3480886509)
-(4452 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
+(30 . 3480912608)
+(4455 |Enumeration| |Mapping| |Record| |Union| |ofCategory| |isDomain|
ATTRIBUTE |package| |domain| |category| CATEGORY |nobranch| AND |Join|
|ofType| SIGNATURE "failed" "algebra" |OneDimensionalArrayAggregate&|
|OneDimensionalArrayAggregate| |AbelianGroup&| |AbelianGroup|
@@ -481,664 +481,667 @@
|WeightedPolynomials| |WuWenTsunTriangularSet| |XAlgebra|
|XDistributedPolynomial| |XExponentialPackage| |XFreeAlgebra|
|ExtensionField&| |ExtensionField| |XPBWPolynomial| |XPolynomialsCat|
- |XPolynomial| |XPolynomialRing| |XRecursivePolynomial|
+ |XPolynomial| |XPolynomialRing| |XRecursivePolynomial| |YoungDiagram|
|ParadoxicalCombinatorsForStreams| |ZeroDimensionalSolvePackage|
|IntegerLinearDependence| |IntegerMod| |Enumeration| |Mapping|
- |Record| |Union| |sncndn| |head| |seriesToOutputForm| |ceiling|
- |e02aef| |pi| |solveLinear| |OMsend| |tanh2trigh| |fmecg| |OMputFloat|
- |integralLastSubResultant| |elaborate| |constantIfCan| |infinity|
- |OMgetAttr| |comparison| |removeCoshSq| |doubleDisc|
- |subResultantGcdEuclidean| |numerator| |internalDecompose|
- |atrapezoidal| |region| |highCommonTerms| |rectangularMatrix| |cond|
- |sechIfCan| |fracPart| |newReduc| |deepestTail| |argumentListOf|
- |copy!| |tanSum| |minGbasis| |contract| |subResultantsChain|
- |generate| |bumptab1| |applyRules| |log10| |accuracyIF| |sinIfCan|
- |kovacic| |complexNumericIfCan| |length| |map| |sturmVariationsOf|
- |countRealRoots| |imports| |OMgetString| |integerIfCan|
- |getVariableOrder| |bitand| |iisech| |kernel| |complexSolve| |cycle|
- |pointPlot| |scripts| |ramifiedAtInfinity?| |scripted?| |isQuotient|
- |graeffe| |incrementBy| |PDESolve| |clikeUniv| |getBadValues|
- |outerProduct| |bitior| |isEquiv| |draw| |backOldPos| |perfectSqrt|
- |decomposeFunc| |insert!| |hspace| |OMputBind| |belong?| |secIfCan|
- |qualifier| |zCoord| |expand| |createGenericMatrix| |pleskenSplit|
- |rombergo| |f02ajf| |f04maf| |OMgetType| |resultantEuclidean|
- |currentEnv| |refine| |OMgetInteger| |sub| |filterWhile| |basicSet|
- |crest| |tubeRadius| |pdf2df| |build| |ratDsolve| |inputBinaryFile|
- |complexElementary| |arbitrary| |exactQuotient| |SturmHabicht|
- |triangular?| |filterUntil| |symbol| |getCode| |quadraticNorm|
- |s19acf| |realEigenvectors| |mainVariables| |radix| |convert| |tanAn|
- |maxdeg| |previous| |s14aaf| |setPrologue!| |select|
- |mainCoefficients| |viewWriteAvailable| |expression| |slex|
- |makeObject| |yCoordinates| |musserTrials| |OMcloseConn| |errorKind|
- |addMatchRestricted| |moduloP| |pToDmp| |height| |OMencodingBinary|
- |maxPoints3D| |truncate| |sqfree| |integer| |realSolve| |curve?|
- |coef| |pquo| |setValue!| |point?| |sts2stst| |rationalPower| |high|
- |minimize| |maxIndex| |var1Steps| |coth2trigh| |weakBiRank|
- |zeroSquareMatrix| |makeUnit| |recur| |minPoints3D|
- |numberOfFractionalTerms| |subResultantChain| |mesh?| |palgextint0|
- |tanhIfCan| |coerceListOfPairs| |outputAsScript| |bringDown|
- |tubeRadiusDefault| |yRange| |completeHermite| |negative?|
- |removeSinhSq| ** |deepCopy| |replace| |radPoly| |leftFactor|
- |complement| |mathieu22| |poisson| |zRange| |inspect|
- |initiallyReduced?| |repSq| |mkAnswer| |meshPar1Var| |writeInt8!|
- |approxNthRoot| |critMTonD1| |screenResolution| |rightRank| |setTex!|
- |imaginary| |map!| |rootOfIrreduciblePoly| |exprToXXP| |compdegd|
- |discriminantEuclidean| |hMonic| |column| |df2st| |logpart|
- |makeRecord| |imagi| |repeating| |lo| |zeroSetSplit| |cCsc| |qsetelt!|
- |coerceP| |leadingExponent| |submod| |power| |conjug| |extractIfCan|
- |schwerpunkt| |totalGroebner| |unitsColorDefault| |socf2socdf| |incr|
- |round| |dualSignature| |ranges| |label| |getZechTable|
- |clipPointsDefault| |matrixConcat3D| |adaptive?| |initial| |rootsOf|
- |times!| |monomRDE| |resetNew| |leftCharacteristicPolynomial|
- |totalDifferential| |reduceByQuasiMonic| |localReal?| |rowEch|
- |laurentIfCan| |tRange| |integralRepresents| |OMgetEndError|
- |completeEchelonBasis| |maxRowIndex| |removeSquaresIfCan|
- |limitedIntegrate| |rst| |UnVectorise| |possiblyNewVariety?|
- |perspective| |lazyPquo| |factorials| |distdfact| |divisor|
- |processTemplate| |screenResolution3D| |physicalLength| |s17aff|
- |getDatabase| |singRicDE| |subNode?| |makeop| Y |printStatement|
- |asimpson| |youngGroup| |leftPower| |shiftRight| |nullary| |acsch|
- |findConstructor| |genericLeftDiscriminant| |consnewpol|
- |selectPolynomials| |iterationVar| |zag| |fixedPoints| |s21bcf|
- |continuedFraction| |choosemon| |preprocess| |extendedEuclidean|
- |ratDenom| |dAndcExp| |SFunction| |bernoulliB| |cyclic| |checkForZero|
- |irreducible?| |semiDegreeSubResultantEuclidean| |failed?|
- |cyclicEntries| |midpoints| |tail| |integralBasisAtInfinity|
- |virtualDegree| |imagK| |makeYoungTableau| |readByte!| |startTable!|
- |constructor| |rules| |LiePoly| |front| |addmod| |solveRetract|
- |collect| |topFortranOutputStack| |numberOfChildren| |setClosed|
- |mainExpression| |dmpToHdmp| |evenInfiniteProduct| |perfectNthPower?|
- |nothing| |mainPrimitivePart| |ramified?| |cLog| |cschIfCan| |option|
- |interactiveEnv| |f04atf| |ode| |getPickedPoints| |ridHack1|
- |prepareSubResAlgo| |showSummary| |mergeFactors| |explicitlyEmpty?|
- |cAcosh| |cubic| |e02dcf| |multiEuclidean| |lllp| |axes|
- |bezoutDiscriminant| |pair?| |s18dcf| |graphCurves| |divisors|
- |splitSquarefree| |iicos| |rightFactorCandidate| |squareFree| |trigs|
- |changeWeightLevel| |e02baf| |getExplanations| |showAttributes|
- |bitCoef| |factorSquareFreePolynomial| |bits| |optional?|
- |setprevious!| |genus| |unknown| |OMbindTCP|
- |rightRegularRepresentation| |imagk| |f2st| |symmetricPower| |iroot|
- |macroExpand| |rootSimp| |headAst| |zeroMatrix| |rightTrim| |s15adf|
- |intcompBasis| |radicalEigenvector| |sumSquares|
- |genericRightMinimalPolynomial| |d01anf| |lowerBound|
- |prolateSpheroidal| |rightDiscriminant| |bernoulli|
- |semiResultantEuclidean2| |leftTrim| |increment| |nlde| |extendIfCan|
- |f02awf| |light| |simpson| |normal01| |iitan| |listOfMonoms| |iibinom|
- |halfExtendedResultant2| |antisymmetricTensors| |leftFactorIfCan|
- |relativeApprox| |nextPrimitivePoly| |enumerate| |solid| |sample|
- |say| |moduleSum| F |cyclicEqual?| |createIrreduciblePoly|
- |denomRicDE| |multiplyCoefficients| |checkRur| |setelt!| |functorData|
- |d01amf| |explogs2trigs| |aromberg| |algSplitSimple| |symmetricGroup|
- |factorsOfDegree| |cAsin| |linGenPos| |mvar| |f01bsf|
- |reduceBasisAtInfinity| |newSubProgram| |selectOptimizationRoutines|
- |tab| |cycles| |mainMonomials| |maxColIndex| |wholePart|
- |basisOfRightAnnihilator| |symmetric?| |charClass| |rootRadius|
- |leftRegularRepresentation| |function| |push!| |remove| |multivariate|
- |invertible?| |e01baf| |rquo| |nextIrreduciblePoly| |extendedint|
- |heapSort| |minus!| |splitConstant| |fortran|
- |tryFunctionalDecomposition| |mpsode| |symmetricProduct| |variables|
- |currentScope| |result| |fortranCompilerName| |lastSubResultant|
- |tableau| |lquo| |open| |rightAlternative?| |alternative?| |middle|
- |useEisensteinCriterion?| |nextsousResultant2| |c05adf| |last| |eval|
- |compound?| |reset| |swapColumns!| |mainDefiningPolynomial|
- |simpleBounds?| |polygon?| |updatF| |assoc| |linearAssociatedOrder|
- |fillPascalTriangle| |eof?| |null| |vconcat| |basisOfNucleus| |f04faf|
- |f04asf| |transcendent?| |charpol| |diagonalProduct| |find| |bottom!|
- |infieldIntegrate| |pattern| |outputAsTex| |not| |bracket| |qPot|
- |outputBinaryFile| |write| |oneDimensionalArray| |outputArgs|
- |OMgetEndAtp| |atanhIfCan| |s01eaf| |indices| |traceMatrix| |addiag|
- |OMgetBind| |and| |surface| |midpoint| |save| |c06gcf|
- |algebraicDecompose| |tanIfCan| |selectIntegrationRoutines|
- |operations| |se2rfi| |forLoop| |hue| |cAcot| |lagrange| |or|
- |resetBadValues| |taylor| |halfExtendedSubResultantGcd2| |scaleRoots|
- |rdHack1| |deleteProperty!| |leftAlternative?| |bivariateSLPEBR|
- |rotatex| |e02daf| |log2| |arity| |internalSubQuasiComponent?| |xor|
- |laurent| |cycleEntry| |packageCall| |OMputSymbol| |outputGeneral|
- |inverseColeman| |stirling1| |weighted| |message| |usingTable?|
- |content| |wronskianMatrix| |subPolSet?| |case| |puiseux| |initTable!|
- |toroidal| |f04mbf| |quickSort| |groebner| |btwFact| |f01rcf|
- |cylindrical| |Zero| |updateStatus!| |pointSizeDefault|
- |complexIntegrate| |asinhIfCan| |iiacot| |interval| |entry?|
- |cycleRagits| |hi| |OMputEndError| |solveInField|
- |showFortranOutputStack| |d02gaf| |One| |roughBase?| |inv| |medialSet|
- |whitePoint| |SturmHabichtMultiple| |nand| |getStream| |OMread|
- |lookup| |squareTop| |ground?| |transform| |reducedDiscriminant|
- |f01qcf| |monicCompleteDecompose| |groebner?| |expandLog| |makeCos|
- |mathieu11| |isExpt| |s17dlf| |legendreP| |ground| |lcm| |parseString|
- |limitPlus| |expextendedint| |movedPoints| |rootBound| |argument|
- |halfExtendedResultant1| |lieAdmissible?| |closedCurve| |lexico|
- |printTypes| |positiveSolve| |beauzamyBound| |perfectSquare?|
- |shuffle| |leadingMonomial| |clearDenominator| |matrixGcd|
- |mapExponents| |singleFactorBound| |integers|
- |numberOfIrreduciblePoly| |dual| |basisOfCommutingElements| |append|
- |hessian| |tan2cot| |leadingCoefficient| |symbol?| |binaryTournament|
- |leadingIndex| |drawComplexVectorField| |modulus| |rename!| |iiasinh|
- |iflist2Result| |fortranReal| |pointLists| |primitiveMonomials|
- |stopTableInvSet!| |completeSmith| |elt| |gcd| |output| |meshFun2Var|
- |hdmpToP| |euclideanNormalForm| |gensym| |unrankImproperPartitions1|
- |acotIfCan| |lieAlgebra?| |getOperands| |cSec|
- |solveLinearPolynomialEquationByFractions| |false| |fintegrate|
- |reductum| |univariatePolynomials| |c05pbf| |rk4a|
- |functionIsContinuousAtEndPoints| |internalSubPolSet?| |algebraicOf|
- |lowerPolynomial| |removeZeroes| |computeCycleEntry| |squareMatrix|
- |numFunEvals| |var2StepsDefault| |logGamma|
- |primPartElseUnitCanonical| |lowerCase| |basis| |radicalEigenvalues|
- |makeCrit| |internalLastSubResultant| |iidsum|
- |factorSquareFreeByRecursion| |genericPosition| |rootOf|
- |sortConstraints| |points| |closed?| |over|
- |removeRoughlyRedundantFactorsInContents| |binaryTree| |aCubic|
- |conditionsForIdempotents| |latex| |readUInt16!| |cyclicSubmodule|
- |completeEval| |integralAtInfinity?| |rangePascalTriangle| |shellSort|
- |linearDependenceOverZ| |reflect| |generic| |derivationCoordinates|
- |mindegTerm| |moebiusMu| |cyclicParents| |degreePartition| |hcrf|
- |fractionFreeGauss!| |binarySearchTree| |cCsch| |parabolic| |isOp|
- |integer?| |upperCase!| |df2ef| |setFormula!| |genericLeftNorm|
- |internalIntegrate0| |writeUInt8!| |lprop| |empty?|
- |leftMinimalPolynomial| |categories| |conjugate| |putColorInfo|
- |subResultantGcd| |hasPredicate?| |merge| |iiatan| |presub|
- |companionBlocks| |sylvesterMatrix| |associates?| |seriesSolve|
- |atoms| |pointColorPalette| |flexibleArray| |unitNormal|
- |headReduced?| |rightMinimalPolynomial| |countable?| |cAsinh|
- |numberOfVariables| |divideIfCan| |cAsech| |inconsistent?|
- |leadingIdeal| |selectOrPolynomials| |adaptive| |cPower| |c02agf|
- |s17dhf| |pastel| |torsion?| |SturmHabichtCoefficients|
- |recoverAfterFail| |createThreeSpace| |rightRecip| |makeViewport2D|
- |HermiteIntegrate| |exponents| |startTableGcd!|
- |fortranCarriageReturn| |e02ahf| |simplifyLog| |putGraph|
- |primeFrobenius| |characteristicSerie| |tablePow| |prod|
- |plusInfinity| |rational| |commutativeEquality| |lazyEvaluate|
- |OMencodingUnknown| |Lazard2| |jokerMode| |semiResultantEuclideannaif|
- |changeBase| |quotedOperators| |symmetricSquare| |ODESolve|
- |minusInfinity| |read!| |lexGroebner| |bag| |s15aef| |rotate!|
- |stripCommentsAndBlanks| |bothWays|
- |removeRoughlyRedundantFactorsInPols| |cartesian| |solve1| |multiset|
- |linkToFortran| |getMatch| |lfunc| |primlimintfrac| |extractClosed|
- |closeComponent| |Ei| |superHeight| |rootNormalize| |laguerre|
- |monicModulo| |setImagSteps| |thenBranch| |blankSeparate| |composite|
- |key| |iisinh| |host| |realEigenvalues| |odd?| |escape|
- |cyclotomicFactorization| |iicsch| |cot2trig| |optpair|
- |createLowComplexityTable| |reopen!| |readInt8!| |factorset| |mulmod|
- |componentUpperBound| |s13aaf| |nullSpace| |largest| |bfEntry|
- |specialTrigs| |filename| |removeZero| |OMclose| |degree| |mapGen|
- |An| |vertConcat| |leftExactQuotient| |type| |duplicates|
- |determinant| |rowEchelonLocal| |OMconnInDevice| |brillhartTrials|
- |reducedContinuedFraction| |euclideanSize| |scanOneDimSubspaces|
- |ricDsolve| |extendedSubResultantGcd| |traverse| |fill!| |equiv|
- |radicalSolve| |parse| |leftZero| |endOfFile?| |cCot| |twoFactor|
- |ptFunc| |solveLinearPolynomialEquationByRecursion| |froot| |next|
- |hermite| |upperCase| |printStats!| |setchildren!| |getMeasure|
- |relerror| |interReduce| |SturmHabichtSequence| |subscript| |merge!|
- |sin?| |e02ajf| |commonDenominator| |d02kef| |diagonalMatrix|
- |powerSum| |e02zaf| |fullDisplay| |delay| |dictionary| |multinomial|
- |shrinkable| |f02aaf| |iCompose| |setMinPoints| |setleft!|
- |elementary| |coefficients| |checkPrecision| |fixPredicate| |jacobian|
- |crushedSet| |trailingCoefficient| |part?| |singularitiesOf| |sec2cos|
- |elaborateFile| |nthr| |queue| |elRow2!| EQ
- |standardBasisOfCyclicSubmodule| |irreducibleFactor| |lfextendedint|
- |nextPrime| |inRadical?| |e04gcf| |nullity| |returnTypeOf|
- |deepExpand| |isTimes| |sumOfSquares| |rangeIsFinite| |integral| |lhs|
- |revert| |ScanFloatIgnoreSpaces| |tanh2coth| |insertBottom!|
- |cyclicCopy| |row| |nextColeman| |pushdterm| |d02gbf| |e01bff|
- |factorPolynomial| |rhs| |simplifyPower| |lambert| |chebyshevU|
- |isAnd| |padicFraction| |internalAugment| |lex| |OMputApp|
- |OMmakeConn| |prinpolINFO| |f02adf| |rootKerSimp| |safeFloor|
- |cyclotomicDecomposition| |firstSubsetGray| |commaSeparate|
- |fibonacci| |csubst| |domainTemplate| |absolutelyIrreducible?|
- |mainSquareFreePart| |laurentRep| |quasiMonic?| |coefficient| |f02agf|
- |rarrow| |doubleResultant| |wordsForStrongGenerators| |deref| |rule|
- |Gamma| |plot| |pointData| |OMencodingSGML| |qroot| |hermiteH|
- |withPredicates| |s18adf| |cycleLength| |setsubMatrix!| |innerSolve1|
- |partition| |index| |oddlambert| |quote| |typeList| |bandedHessian|
- |stoseInvertibleSet| |ipow| |makeViewport3D| |invertIfCan| |vectorise|
- |iiexp| |numberOfComponents| |increasePrecision| |mainValue| |bit?|
- |e02dff| |getProperties| |HenselLift| |useNagFunctions|
- |identification| |center| |discreteLog| |modularFactor| |systemSizeIF|
- |mainMonomial| |pureLex| |externalList| GF2FG |hitherPlane|
- |viewThetaDefault| |denominators| |makeSin| |pair| |noKaratsuba|
- |e01daf| |e02akf| |sayLength| |monomialIntPoly| |startStats!|
- |wholeRadix| |value| |generalizedEigenvectors| |f01maf| |sqfrFactor|
- |normInvertible?| |constDsolve| |showScalarValues| |generic?|
- |setVariableOrder| |sizePascalTriangle| UP2UTS |hasTopPredicate?|
- |cTan| |optAttributes| |karatsuba| |pushucoef| |qqq| |divergence|
- |digamma| |numberOfDivisors| |epilogue| |cCosh| |coord| |littleEndian|
- |cot2tan| |iicsc| |computePowers| |before?| |setStatus!| |ldf2lst|
- |quatern| |leftTrace| |entry| |predicates| |drawComplex| |pushdown|
- |binary| |e01sbf| |OMputEndApp| |shiftLeft| |divideIfCan!|
- |modularGcdPrimitive| |primintfldpoly| |extractIndex|
- |irreducibleFactors| |splitNodeOf!| |OMputObject|
- |solveLinearPolynomialEquation| |tube| |resetVariableOrder|
- |degreeSubResultantEuclidean| |monomial?| |showIntensityFunctions|
- |setColumn!| |multiplyExponents| |setlast!| |leftDivide| |subHeight|
- |representationType| |OMsupportsCD?| |e01bhf| |quasiAlgebraicSet|
- |readBytes!| |digit| |derivative| |groebSolve| |leftDiscriminant|
- |stosePrepareSubResAlgo| |cycleElt| |reverse| |monicRightDivide|
- |pole?| |empty| |nary?| |lyndon| |minIndex| |divide| |string?|
- |argscript| |ScanArabic| |errorInfo| |makeFR| |symbolTableOf| |write!|
- |call| |s13acf| |expPot| |const| |constantToUnaryFunction| |hclf|
- |biRank| |raisePolynomial| |trueEqual| |augment| |dfRange| |leaves|
- |d01fcf| |tree| |d01apf| |resultantReduit| |genericRightDiscriminant|
- |stopTable!| |OMUnknownSymbol?| |cyclicGroup| |stirling2| |htrigs|
- |semiResultantEuclidean1| |mat| |unparse| |maxrank|
- |initializeGroupForWordProblem| |untab| |trapezoidal| |shufflein|
- |orbits| |sturmSequence| |lexTriangular| |leastPower| |npcoef|
- |selectsecond| |sizeMultiplication| |chiSquare| |postfix| |extend|
- |factorsOfCyclicGroupSize| |associative?| |OMputBVar| |rootProduct|
- |OMgetEndBVar| |returnType!| |init| |node?| |stoseInvertibleSetsqfreg|
- |OMopenFile| |isAtom| |numberOfNormalPoly| |clearTheIFTable|
- |alternating| |f02aef| |attributeData| |evaluate| |romberg|
- |rewriteIdealWithRemainder| |computeInt| |imagI| |mapExpon| |dark|
- |definingInequation| |newTypeLists| |realRoots| |testDim| |showAll?|
- |addPoint2| |inf| |s21bdf| |polyred| |bubbleSort!| |f04jgf|
- |generator| |roughSubIdeal?| |lintgcd| |sincos| |pade| |phiCoord|
- |iitanh| |setAdaptive| |leftRank| |irreducibleRepresentation|
- |rightUnit| |prime| |normalize| |po| |integral?| |paren| |lazy?|
- |permutationGroup| |measure2Result| |deepestInitial|
- |numericalOptimization| |goodnessOfFit| |laplace| |taylorRep|
- |shallowExpand| |irVar| |leadingTerm| |genericLeftTraceForm|
- |probablyZeroDim?| |contains?| |search| |clipParametric| |ldf2vmf|
- |overset?| |e02agf| |finite?| |stack| |palgLODE| |lifting1|
- |semiSubResultantGcdEuclidean1| |rem| |lowerCase!| |mesh|
- |transcendenceDegree| |showTheIFTable| |parent|
- |functionIsOscillatory| |power!| |getIdentifier| |listRepresentation|
- |csc2sin| |nthExpon| |quo| |monomRDEsys| |initiallyReduce| |range|
- |partialFraction| |zerosOf| |dequeue!| |condition| |factorSFBRlcUnit|
- |divideExponents| |returns| |unrankImproperPartitions0| |extractTop!|
- |laguerreL| |c05nbf| |extractProperty| |credPol| |showClipRegion|
- |var2Steps| |iiGamma| |div| |edf2ef| |permutations|
- |inverseIntegralMatrixAtInfinity| |primitive?| |duplicates?| |null?|
- |unitNormalize| |prindINFO| |exquo| |scale|
- |ScanFloatIgnoreSpacesIfCan| |dim| |patternMatchTimes| |gcdcofact|
- |polyRDE| |eyeDistance| |characteristicSet| |c06fpf| |twist| ~=
- |getSyntaxFormsFromFile| |iisin| |algebraic?| |createNormalPoly|
- |createRandomElement| |fractionPart| |zoom| |toseSquareFreePart|
- |e04naf| |degreeSubResultant| |#| |removeRedundantFactorsInPols|
- |matrix| |patternVariable| |quotient| |dec| |minimumDegree| |f07adf|
- |validExponential| |rightZero| ~ |seed| |getProperty| |addPoint|
- |shiftRoots| |concat| |combineFeatureCompatibility| |maxPoints|
- |extensionDegree| |stopMusserTrials| |saturate| |doubleRank|
- |lSpaceBasis| |leftMult| |nthRootIfCan| |neglist| |removeSinSq|
- |iFTable| |readable?| |cTanh| |printInfo| |taylorIfCan|
- |jacobiIdentity?| |newLine| |freeOf?| |plenaryPower| |clearCache|
- |leaf?| |aLinear| |level| |dot| |nthFactor| |numberOfCycles| |mdeg|
- |outputFixed| |d01akf| |leftUnits| |ratpart| |rotate| |isOpen?|
- |nextItem| |pushup| |triangSolve| |abs| |cfirst| |makeSketch|
- |graphState| |interpolate| |substring?| |mainContent| |elaboration|
- |ParCondList| |monicDivide| |char| |makeSeries| |f04mcf|
- |expintfldpoly| |failed| |basisOfRightNucleus| |critT| |stopTableGcd!|
- |tableForDiscreteLogarithm| |bsolve| |defineProperty| |eq?| |check|
- |inverseLaplace| |suffix?| |position!| |nextNormalPrimitivePoly|
- |baseRDEsys| |superscript| |meshPar2Var| |primitiveElement| |pack!|
- |s14baf| |viewPhiDefault| |d02ejf| |f02axf| |partialQuotients|
- |d01gaf| |recolor| |genericRightNorm| |compile| |cup|
- |exprHasAlgebraicWeight| |asecIfCan| |prefix?| |status| |subCase?|
- |zeroDimensional?| |gcdcofactprim| |roman| |f02xef| |integralBasis|
- |categoryMode| |homogeneous?| |Is| |pseudoQuotient| |ffactor|
- |diagonals| |noncommutativeJordanAlgebra?| |logIfCan|
- |variationOfParameters| |balancedBinaryTree| |cAcoth| |aQuartic|
- |second| |block| |dominantTerm| |fortranLiteralLine| |erf| |e01bef|
- |redpps| |float| |messagePrint| |permutationRepresentation|
- |modifyPoint| |pr2dmp| |third| |reverseLex| |quotientByP|
- |triangularSystems| |positiveRemainder| |iteratedInitials|
- |basisOfRightNucloid| |rightPower| |rootDirectory| |integralMatrix|
- |OMconnOutDevice| |complementaryBasis| |outputForm| |OMgetEndAttr|
- |UpTriBddDenomInv| |void| |LyndonWordsList| |semicolonSeparate|
- |clipSurface| |d01alf| |critpOrder| |axesColorDefault| |complexExpand|
- |horizConcat| |dilog| |f01mcf| |eigenvector| |c06frf| |roughBasicSet|
- |infix?| |overbar| |exportedOperators| |intersect|
- |rewriteSetByReducingWithParticularGenerators| |readIfCan!| |sin|
- |viewpoint| |mask| |monicDecomposeIfCan| |digits| |distance|
- |wordInGenerators| |cos| |scalarMatrix| |normalForm| |toseInvertible?|
- |compactFraction| |KrullNumber| |c06gsf| |iisec| |diagonal|
- |att2Result| |f04qaf| |tan| |members| |expr| |real?|
- |definingPolynomial| |internal?| |numberOfComposites| |changeName|
- |subTriSet?| |intensity| |basisOfCentroid| |low| |doubleFloatFormat|
- |geometric| |e01bgf| |cot| |factor1| |expenseOfEvaluationIF|
- |quadratic| |writeBytes!| |partialDenominators| |B1solve| |sdf2lst|
- |sec| |leftLcm| UTS2UP GE |isMult| |prinshINFO| |regime| |double|
- |graphStates| |nor| |invmod| |red| |RemainderList| |oddintegers| |csc|
- |log| GT |laplacian| |rationalPoint?| |innerSolve|
- |primPartElseUnitCanonical!| |bytes| |constantRight| |unitVector|
- |variable| |parametric?| |max| |asin| LE |ScanRoman|
- |makeFloatFunction| |rationalIfCan| |setErrorBound| |solid?|
- |anfactor| |heap| |cyclotomic| |iterators| BY |powers| |acos| LT
- |deleteRoutine!| |computeCycleLength| |regularRepresentation|
- |purelyAlgebraic?| |exprHasWeightCosWXorSinWX| |enterPointData|
- |squareFreePrim| |f01ref| |f02bjf| |atan| |antiCommutative?|
- |flagFactor| |dmp2rfi| |qfactor| |setright!| |OMwrite| |diff|
- |adaptive3D?| |leftGcd| |acot| |f02akf| |principalAncestors|
- |rightQuotient| |s18acf| |byteBuffer| |antisymmetric?| |patternMatch|
- |symFunc| |reverse!| |asec| |ratPoly| |rotatez| |rCoord| |primeFactor|
- |getConstant| |pdf2ef| |eigenvalues| |complete| |f04axf| |acsc|
- |operators| |expint| |binomial| |declare!| |has?|
- |createNormalPrimitivePoly| |reduced?| |perfectNthRoot| |OMgetFloat|
- |hasHi| |sinh| |indicialEquation| |iiperm| |setfirst!|
- |bandedJacobian| |normalizeAtInfinity| |shade| |cAcsc| |birth| |recip|
- |cosh| |minColIndex| |minset| |changeThreshhold| NOT |normalElement|
- |nthCoef| |primintegrate| |e01sff| |unexpand| |printHeader| |tanh|
- |f2df| |df2mf| |lists| |irCtor| OR |shallowCopy| |printCode|
- |mathieu12| |OMputEndAtp| |subresultantVector| |integrate| |coth|
- |nextNormalPoly| |prinb| |groebgen| AND |decreasePrecision|
- |complexEigenvalues| |copyInto!| |OMgetEndApp| |linears| |OMgetAtp|
- |df2fi| |keys| |indiceSubResultantEuclidean| |resize| |d01gbf|
- |elliptic| |karatsubaOnce| |primitivePart!| |depth|
- |currentCategoryFrame| |repeating?| |Ci|
- |unprotectedRemoveRedundantFactors| |nthRoot| |lazyPrem|
- |lastSubResultantElseSplit| |solveid| |nextLatticePermutation|
- |cotIfCan| |more?| |factorOfDegree| |replaceKthElement| |debug|
- |contractSolve| |segment| |lighting| |topPredicate| |kroneckerDelta|
- |generalizedInverse| |alphanumeric?| |sequences| |fortranComplex| D
- |factorByRecursion| |lazyPseudoDivide| |gcdprim| |nthFlag|
- |finiteBasis| |generateIrredPoly| |OMputEndBVar|
- |algebraicCoefficients?| |dimension| |dflist| |euler| |nullary?|
- |colorFunction| |ideal| |firstDenom| |exptMod| |norm|
- |removeSuperfluousCases| |getlo| |hyperelliptic| |s14abf|
- |rightExtendedGcd| |branchPoint?| |c06ecf| |nsqfree|
- |mainCharacterization| |Hausdorff| |e04dgf| |infRittWu?| |cSin|
- |getMultiplicationTable| |safeCeiling| |debug3D| |elements| |quartic|
- |denominator| |mapCoef| |signatureAst| |iiacsc|
- |halfExtendedSubResultantGcd1| |rightUnits| |irDef| |edf2efi|
- |stronglyReduced?| |innerint| |setvalue!| |noValueMode| *
- |linearAssociatedLog| |iiatanh| |option?| |list?| |localAbs| |d03eef|
- |minPol| |identitySquareMatrix| |alternatingGroup| |OMputInteger|
- |upperCase?| |d01aqf| |s17ahf| |bombieriNorm| |s17adf| |properties|
- |numberOfOperations| |optimize| |s21baf| |setScreenResolution|
- |s20adf| |vedf2vef| |bitLength| |LazardQuotient2| |identity|
- |gradient| |translate| |readUInt32!| |Si| |mergeDifference| |padecf| =
- |isNot| |polyRicDE| |isOr| |dihedralGroup| |bat| |lflimitedint|
- |print| |s17aef| |pToHdmp| |sh| |viewPosDefault| |bindings|
- |principalIdeal| |goodPoint| |outputFloating| |resolve| |measure|
- |rationalPoints| |binaryFunction| < |allRootsOf| |numberOfFactors|
- |cap| |eulerPhi| |ReduceOrder| |cosh2sech| |f07fdf| |omError|
- |trivialIdeal?| > |disjunction| |tan2trig| |localUnquote|
- |getOperator| |dequeue| |e02adf| |upDateBranches| |setFieldInfo|
- |acoshIfCan| <= |internalZeroSetSplit| |makeVariable| |push|
- |anticoord| |routines| |supRittWu?| |setLegalFortranSourceExtensions|
- |rk4f| |gderiv| >= |back| |unitCanonical| |changeVar| |setEpilogue!|
- |readInt16!| |quasiRegular?| |prepareDecompose|
- |brillhartIrreducible?| |outputSpacing| |operation| |vark| |mapUp!|
- |PollardSmallFactor| |expIfCan| |setStatus| |radicalOfLeftTraceForm|
- |leftUnit| |trigs2explogs| |acothIfCan| |useSingleFactorBound?| |inR?|
- |varselect| |removeRedundantFactorsInContents| |interpret|
- |fprindINFO| |encodingDirectory| |pdct| |associatedEquations| +
- |critMonD1| |drawToScale| |dimensionsOf| |imagJ| |true| |close!|
- |pile| |bivariatePolynomials| |removeDuplicates!| - |cn|
- |approximants| |matrixDimensions| |lllip| |OMgetObject| |writeLine!|
- |iiacoth| |updatD| |mantissa| |selectSumOfSquaresRoutines| / |lifting|
- |primaryDecomp| |leftExtendedGcd| |eigenvectors| |lineColorDefault|
- |unit| |branchPointAtInfinity?| |setMaxPoints| |exprToUPS|
- |expressIdealMember| |Lazard| |quasiMonicPolynomials| |rischDE|
- |category| |printingInfo?| |closed| |nil| |mapdiv| |create3Space|
- |fullPartialFraction| |cardinality| |lfintegrate| |symmetricTensors|
- |domain| |overlabel| |OMsupportsSymbol?| |bumprow| |curryRight|
- |cAcsch| |uniform| |package| |expt| |elColumn2!| |multiple?| |subSet|
- |asechIfCan| |numberOfImproperPartitions| |shift| |infLex?|
- |multisect| |evaluateInverse| |rootPower| |basisOfLeftNucleus| |prem|
- |approximate| |mapUnivariateIfCan| |fixedDivisor| |sylvesterSequence|
- |stoseLastSubResultant| |powern| |numberOfMonomials| |nonLinearPart|
- |complex| |OMputVariable| |removeCosSq| |readInt32!| |varList|
- |univariate?| |color| |spherical| |lfextlimint| |irForm| |compBound|
- |integralCoordinates| |sinh2csch| |show| |gbasis| |is?| |limit|
- |stoseSquareFreePart| |dimensions| |property|
- |constantCoefficientRicDE| |jordanAdmissible?| |doubleComplex?|
- |primextintfrac| |arrayStack| |linearlyDependent?| |f01qdf|
- |leastAffineMultiple| |OMputEndBind| |maximumExponent| |complexRoots|
- |isConnected?| |trace| |rationalFunction| |ellipticCylindrical|
- |reorder| |f02fjf| |normalizedDivide| |karatsubaDivide| |asinIfCan|
- |iicot| |retract| |ParCond| |leader| |bezoutMatrix| |modTree|
- |tubePlot| |units| |weight| |getMultiplicationMatrix| |delta| |imagj|
- |typeLists| |rightFactorIfCan| |restorePrecision| |modularGcd| |less?|
- |groebnerIdeal| |palgint0| |incrementKthElement| |root| |getCurve|
- |viewport2D| |firstUncouplingMatrix| |pseudoRemainder| |splitLinear|
- |resultantEuclideannaif| |rational?| |represents| |transpose| |key?|
- |quadraticForm| |makingStats?| |decimal| |remove!| |s21bbf| |sin2csc|
- |sequence| |linearDependence| |viewZoomDefault| |stFunc2| |wreath|
- |typeForm| |f04adf| |leftRecip| |invertibleSet| |code| |exprex|
- |insertionSort!| |mirror| |e02bbf| |dn| |leftTraceMatrix| |edf2fi|
- |physicalLength!| |realZeros| |tryFunctionalDecomposition?|
- |upperBound| |even?| |formula| |pmComplexintegrate| |concat!|
- |hexDigit| |relationsIdeal| |c02aff| |e04ycf| |listYoungTableaus|
- |showArrayValues| |setClipValue| |lambda| |diagonal?| |chebyshevT|
- |toseInvertibleSet| |notelem| |selectODEIVPRoutines| |setRealSteps|
- RF2UTS |paraboloidal| |plus| |uncouplingMatrices| |normalDenom|
- |stiffnessAndStabilityOfODEIF| |viewDefaults| |shanksDiscLogAlgorithm|
- |chvar| |mix| |curve| |insertMatch| |extractPoint| |bat1| |morphism|
- |e01saf| |squareFreeFactors| |dom| |OMputString| |cAtanh|
- |removeSuperfluousQuasiComponents| |llprop| |approxSqrt| |linSolve|
- |OMUnknownCD?| |nrows| |subNodeOf?| |sum| |clearFortranOutputStack|
- |datalist| |pmintegrate| |leftOne| |pointColorDefault| |coth2tanh|
- |atom?| |supersub| |sinhIfCan| |ncols| |generalizedEigenvector|
- |palglimint| |FormatArabic| |hconcat| |increase| |rotatey| |xCoord|
- |times| |iicosh| |BasicMethod| |setButtonValue| |noLinearFactor?|
- |tubePoints| |ocf2ocdf| |setMinPoints3D| |s17dcf| |symbolTable|
- |separateFactors| |linear| |removeConstantTerm| |LyndonBasis|
- |constantOperator| |corrPoly| |isPower| |top| |gramschmidt|
- |coercePreimagesImages| |complexForm| |exponent| |lp| |systemCommand|
- |complexZeros| |factorSquareFree| |mainVariable| |invmultisect|
- |summation| |pushFortranOutputStack| |scalarTypeOf|
- |numberOfComputedEntries| |stoseInvertible?reg| |title| |comp|
- |getOrder| |polynomial| |clipWithRanges| |stiffnessAndStabilityFactor|
- |linear?| |factorGroebnerBasis| |point| |selectAndPolynomials|
- |toScale| |popFortranOutputStack| |eisensteinIrreducible?|
- |monicLeftDivide| |external?| |monom| |node| |options|
- |nextPrimitiveNormalPoly| |nilFactor| |generalPosition| |exponential|
- |satisfy?| |continue| |sort| |semiLastSubResultantEuclidean| |orbit|
- |outputAsFortran| |children| |iisqrt2| |normal| |iiabs| |redPol|
- |primlimitedint| |myDegree| |graphs|
- |rewriteIdealWithQuasiMonicGenerators| |e| |makeTerm| |moebius|
- |mappingAst| |closedCurve?| |ip4Address| |unravel| |symbolIfCan|
- |possiblyInfinite?| |totalDegree| |terms| |listLoops| |series|
- |prologue| |list| |OMgetEndBind| |OMunhandledSymbol| |pol|
- |coordinates| |fortranDouble| |common| |inHallBasis?| |string|
- |distFact| |lazyPremWithDefault| |linearMatrix| |cross| |d01ajf|
- |wrregime| |car| |isobaric?| |convergents| |exists?| |fTable| |ksec|
- |unvectorise| |quadratic?| |e04ucf| |distribute| |f04arf| |random|
- |cdr| |normalizedAssociate| |reduction| |normalizeIfCan|
- |supDimElseRittWu?| |d02raf| |FormatRoman| |leftRankPolynomial|
- |computeBasis| |functionIsFracPolynomial?| |setDifference| |e04mbf|
- |delete!| |cCoth| |isAbsolutelyIrreducible?| |createPrimitivePoly|
- |randomR| |definingEquations| |f07fef| |min| |zero?| |setIntersection|
- |smith| |constantOpIfCan| |c06ebf| |createZechTable| |sizeLess?|
- |e04jaf| |unit?| |solve| |factors| |setUnion| |insertRoot!| |fi2df|
- |OMsetEncoding| |scan| |parabolicCylindrical| |stronglyReduce|
- |coerceImages| |interpretString| |sPol| |indicialEquationAtInfinity|
- |apply| |inverse| |bipolarCylindrical| |moreAlgebraic?| |dmpToP|
- |elRow1!| |OMgetVariable| |iiacosh| |strongGenerators| |redPo|
- |characteristic| |divisorCascade| |makeEq| |curryLeft|
- |getButtonValue| |zero| |pushuconst| |coleman| |cothIfCan| |getGraph|
- |harmonic| |size| |trace2PowMod| |resetAttributeButtons| |rubiksGroup|
- |style| |makeGraphImage| |explimitedint| |d01bbf| |rightGcd| |width|
- |algebraicSort| |minimalPolynomial| |cSech| |rightScalarTimes!|
- |elem?| |And| |setProperties| |reindex| |enqueue!| |algDsolve|
- |equation| |polynomialZeros| |charthRoot| |makeResult| |initials|
- |vector| |tensorProduct| |Or| |decrease| |enterInCache| |factorList|
- |fortranTypeOf| |slash| |first| |normFactors| |lazyPseudoRemainder|
- |eulerE| |differentiate| |chineseRemainder| |Not| |bezoutResultant|
- |getRef| |complex?| |characteristicPolynomial| |components| |rest|
- |UP2ifCan| |indicialEquations| |removeIrreducibleRedundantFactors|
- |parents| |maxrow| |numeric| |iiasech| |pow| |besselJ| |nonQsign|
- |fixedPointExquo| |substitute| |univariatePolynomial| |cExp|
- |discriminant| |weights| |radical| |partialNumerators|
- |fortranDoubleComplex| |listOfLists| |logical?| |hash| |rdregime|
- |removeDuplicates| |binding| |iExquo| |linearPolynomials| |maxint|
- |count| |intPatternMatch| |normalized?| |LyndonCoordinates|
- |countRealRootsMultiple| |atanIfCan| |top!| |squareFreeLexTriangular|
- |mr| |LowTriBddDenomInv| |algintegrate|
- |rightCharacteristicPolynomial| |writable?| |super| |showTheFTable|
- |endSubProgram| |name| |optional| |gethi| |bipolar| |mainForm| |ode1|
- |rischNormalize| |explicitlyFinite?| |pascalTriangle| |zeroDimPrime?|
- |frobenius| |d03edf| |lift| |body| |subQuasiComponent?| |inc|
- |viewDeltaXDefault| |addBadValue| |prime?| |numericalIntegration|
- |badNum| |iidprod| |s13adf| |permanent| |reduce| |findBinding|
- |setPoly| |parts| |OMputEndAttr| |hasSolution?| |nextsubResultant2|
- |OMreadStr| |resultantnaif| |hostPlatform| |extension| |airyBi| |pop!|
- |rightNorm| |s17agf| |certainlySubVariety?| |pseudoDivide| |randomLC|
- |every?| |primextendedint| |splitDenominator| |intChoose| |coerceS|
- |extract!| |constantLeft| |tanintegrate| |bitTruth| |rspace|
- |nonSingularModel| |univariatePolynomialsGcds| |isPlus|
- |OMParseError?| |OMputAtp| |nthFractionalTerm| |reducedForm| |bounds|
- |clipBoolean| |green| FG2F |quoted?| |figureUnits| |floor| |reseed|
- |cos2sec| SEGMENT |conical| |error| |setLabelValue| |iprint|
- |singular?| |extendedIntegrate| |safetyMargin| |port| |rightTrace|
- |d01asf| |critBonD| |leftNorm| |d02bhf| |rightOne| |assert| |tower|
- |totalfract| |leastMonomial| |symmetricRemainder|
- |lastSubResultantEuclidean| |minordet| |inputOutputBinaryFile|
- |remainder| |nodeOf?| |mapBivariate| |problemPoints|
- |createMultiplicationMatrix| |tab1| |e02ddf| |t| |yellow| |entries|
- |reify| |root?| |lepol| |tanNa| LODO2FUN |nextSubsetGray| |direction|
- |loadNativeModule| |viewport3D| |collectUpper| |clearTable!|
- |bivariate?| |intermediateResultsIF| |coefChoose| |knownInfBasis|
- |algebraicVariables| |palgRDE0| |unaryFunction|
- |generalizedContinuumHypothesisAssumed| |pomopo!| |gcdPrimitive| |hex|
- |printInfo!| |s19adf| |constant| |nextSublist| |monicRightFactorIfCan|
- |critM| |complexNumeric| |fortranLogical| |infiniteProduct|
- |leviCivitaSymbol| |showAllElements| |pointColor| |space| |iiasin|
- |roughUnitIdeal?| |byte| |predicate| |wholeRagits| |quasiRegular|
- |conjugates| |padicallyExpand| |sup| |unknownEndian| |child?|
- |changeNameToObjf| |kernels| |numberOfPrimitivePoly| |thetaCoord|
- |getGoodPrime| |associatedSystem| |select!|
- |createPrimitiveNormalPoly| |swap| |operator| |singularAtInfinity?|
- |cons| |e02bdf| |idealSimplify| |iiacsch| |setAdaptive3D| |prevPrime|
- |associator| |semiResultantReduitEuclidean|
- |stoseIntegralLastSubResultant| |iomode| |mathieu24| |critB| |step|
- |taylorQuoByVar| |yCoord| |besselI| |split| |univariate| |zeroDim?|
- |viewDeltaYDefault| |listBranches| |makeMulti| |complexNormalize|
- |clearTheSymbolTable| |comment| |chiSquare1| |palgLODE0|
- |univariateSolve| |element?| |extendedResultant| |rootSplit|
- |mkIntegral| |userOrdered?| |subresultantSequence| |iiacos|
- |complexLimit| |iifact| |commutative?| |integralDerivationMatrix|
- |ode2| |fixedPoint| |coerce| |identityMatrix| |factor| |algint|
- |lazyResidueClass| |Nul| |completeHensel| |stoseInvertible?sqfreg|
- |int| |fortranLinkerArgs| |firstNumer| |acschIfCan| |construct|
- |float?| |overlap| |sqrt| |OMconnectTCP| |source| |cyclic?| |mkcomm|
- |OMgetEndObject| |qelt| |controlPanel| |parameters| |real| |cCos|
- |purelyAlgebraicLeadingMonomial?| |frst| |c06eaf| |lazyVariations|
- |f02abf| |setref| |qsetelt| |flexible?| |imag| |vspace|
- |zeroSetSplitIntoTriangularSystems| |compiledFunction| |child|
- |meatAxe| |hypergeometric0F1| |Vectorise| |xRange|
- |expandTrigProducts| |directProduct| |palgextint| |oddInfiniteProduct|
- |curveColor| |outputMeasure| |exteriorDifferential| |rroot| |create|
- |swap!| |indiceSubResultant| |OMgetApp| |hostByteOrder| |totolex|
- |chainSubResultants| |scopes| |antiCommutator| |groebnerFactorize|
- |complexEigenvectors| |brace| |OMputEndObject| |target| |ptree|
- |integralMatrixAtInfinity| |generators| |argumentList!|
- |rewriteSetWithReduction| |rowEchLocal| |e01sef|
- |associatorDependence| |qinterval| |destruct| |internalIntegrate|
- |makeprod| |genericRightTrace| |evenlambert| |e02bcf| |rightDivide|
- |nodes| |stoseInvertible?| |generalizedContinuumHypothesisAssumed?|
- |curveColorPalette| |whatInfinity| |s19abf| |symmetricDifference|
- |kind| |internalInfRittWu?| |stoseInvertibleSetreg| |besselK|
- |expenseOfEvaluation| |polCase| |s17ajf| |dioSolve| |generalTwoFactor|
- |nthExponent| |op| |cRationalPower| |acosIfCan| |makeSUP| |cAtan|
- |useEisensteinCriterion| |positive?| |separant| |f02aff| |mappingMode|
- |mainVariable?| |mkPrim| |open?| |oblateSpheroidal| |ravel| |monomial|
- |simplifyExp| |quoByVar| |OMencodingXML| |nextPartition| |coerceL|
- |iicoth| |rightTraceMatrix| |infix| |ran| |sumOfKthPowerDivisors|
- |reshape| |squareFreePolynomial| |rename| |cosSinInfo|
- |toseLastSubResultant| |arguments| |assign| |coordinate| |isList|
- |setelt| |whileLoop| |triangulate| |constant?| |retractable?|
- |buildSyntax| |fglmIfCan| |index?| |setPosition| |schema| |rischDEsys|
- |alphabetic| |Frobenius| |limitedint| |linearlyDependentOverZ?|
- |addMatch| |purelyTranscendental?| |OMopenString| |stFunc1| |copy|
- |mapmult| |tValues| |Aleph| |selectFiniteRoutines| |euclideanGroebner|
- |setTopPredicate| |reciprocalPolynomial| |union| |mapMatrixIfCan|
- |putProperties| |infinityNorm| |setEmpty!| |selectfirst| |bigEndian|
- |mindeg| |d02cjf| |semiIndiceSubResultantEuclidean| |mathieu23|
- |dihedral| |graphImage| |fractRagits| |numerators| |doublyTransitive?|
- |idealiser| |isImplies| |update| |modifyPointData| |adjoint|
- |multMonom| |wordInStrongGenerators| |polygon| |autoCoerce| |opeval|
- |unmakeSUP| |setrest!| |setLength!| |primitivePart| |trim|
- |subtractIfCan| |implies| |readLineIfCan!| |composites| |alphabetic?|
- |sinhcosh| |multiEuclideanTree| |rightMult| |number?| |just|
- |hexDigit?| |leftRemainder| |bfKeys| |createPrimitiveElement| |sort!|
- |drawStyle| |rank| |psolve| |monomials| |unary?| |OMreadFile|
- |changeMeasure| |imagE| |jordanAlgebra?| |split!| |GospersMethod|
- |legendre| |loopPoints| |startPolynomial| |normal?| |prefixRagits|
- |digit?| |rightRemainder| |appendPoint| |lyndon?| |s17dgf|
- |cyclePartition| |position| |contours| |lowerCase?| |randnum|
- |difference| |minPoly| |tracePowMod| |powerAssociative?| |match?|
- |in?| |e02def| |leadingSupport| |variable?| |linearPart|
- |repeatUntilLoop| |lyndonIfCan| |fortranLiteral| |monic?| |zeroOf|
- |exQuo| |roughEqualIdeals?| |OMlistSymbols| |curry|
- |lazyPseudoQuotient| |outlineRender| |uniform01| |aQuadratic| |polar|
- |move| |numberOfHues| |product| |rk4| |rewriteIdealWithHeadRemainder|
- |s19aaf| |capacity| |declare| |cycleSplit!| |inGroundField?| |trunc|
- |parametersOf| |janko2| |findCycle| |viewSizeDefault| |inrootof|
- |permutation| |leftScalarTimes!| |iisqrt3| |infieldint| |setOfMinN|
- |selectNonFiniteRoutines| |categoryFrame| |showTheSymbolTable|
- |primes| |basisOfMiddleNucleus| |voidMode| |denomLODE| |polygamma|
- |univcase| |collectQuasiMonic| |basisOfLeftNucloid| |minrank|
- |swapRows!| |rowEchelon| |invertibleElseSplit?| |listexp| |simplify|
- |writeByte!| |polarCoordinates| |arg1| |iiasec| |reducedQPowers|
- |f02bbf| |tanQ| |lazyIntegrate| |basisOfLeftAnnihilator|
- |balancedFactorisation| |stFuncN| |useSingleFactorBound| |palgint|
- |arg2| |sech| |member?| |boundOfCauchy| |blue| |rur| |rightLcm|
- |radicalRoots| |diag| |ignore?| |airyAi| |csch| |leftQuotient|
- |acscIfCan| |putProperty| |e02gaf| |close|
- |semiSubResultantGcdEuclidean2| |cscIfCan| |genericLeftTrace|
- |innerEigenvectors| |conditions| |bumptab| |asinh| |connect|
- |coshIfCan| |kmax| |minRowIndex| |palginfieldint| |monomialIntegrate|
- |diophantineSystem| |setAttributeButtonStep| |inverseIntegralMatrix|
- |match| |acosh| |ListOfTerms| |colorDef| |mainKernel| |stop| |e02bef|
- |abelianGroup| |display| |autoReduced?| |bright| |ord|
- |rationalApproximation| |precision| |cosIfCan| |atanh|
- |LagrangeInterpolation| |mapDown!| |integerBound| |octon| |cAcos|
- |OMserve| |presuper| |li| |acoth| |mapSolve| |subset?| |henselFact|
- |mightHaveRoots| |genericLeftMinimalPolynomial| |lazyGintegrate|
- |setleaves!| |linearAssociatedExp| |leadingCoefficientRicDE|
- |basisOfCenter| |s18aff| |goto| |asech| |transcendentalDecompose|
- |extractBottom!| |listConjugateBases| |simpsono| |badValues| |s18def|
- |xn| |elseBranch| |palgintegrate| |ef2edf| |character?| |deriv|
- |rootPoly| |BumInSepFFE| |plus!| |multiple| |generalLambert|
- |trapezoidalo| |subspace| |reducedSystem| |input| |minPoints|
- |currentSubProgram| |realElementary| |headReduce| |magnitude|
- |environment| |f07aef| |applyQuote| |constantKernel| |sn| |infinite?|
- |library| |s17akf| |radicalEigenvectors| |differentialVariables|
- |dimensionOfIrreducibleRepresentation| |separateDegrees| |hasoln|
- |totalLex| |gcdPolynomial| |skewSFunction| |alphanumeric|
- |mapUnivariate| |someBasis| |nil?| |sumOfDivisors| |collectUnder|
- |subscriptedVariables| |decompose| |idealiserMatrix| |powmod| |cAsec|
- |explicitEntries?| |besselY| |numericIfCan| |lookupFunction| |d02bbf|
- |ruleset| |removeRoughlyRedundantFactorsInPol| |copies| |f01qef|
- |OMreceive| |LyndonWordsList1| |tubePointsDefault| |baseRDE| |c06gbf|
- |box| |plotPolar| |orthonormalBasis| |binomThmExpt| |s20acf| |set|
- |Beta| |partitions| |generalSqFr| |square?| |clearTheFTable|
- |stoseInternalLastSubResultant| |nativeModuleExtension| |elliptic?|
- |test| |createLowComplexityNormalBasis| |id| |numFunEvals3D|
- |insertTop!| |factorAndSplit| |palgRDE| |edf2df| |d03faf|
- |exprToGenUPS| |suchThat| |testModulus| |normDeriv2| |compose|
- |OMReadError?| |eigenMatrix| |s17acf| |finiteBound| |iilog|
- |palglimint0| |c06fqf| |table| |RittWuCompare| |var1StepsDefault|
- |component| |setCondition!| |showRegion| |any| |clip| |module|
- |polyPart| |expintegrate| |insert| |new| |hdmpToDmp| |branchIfCan|
- |generalInfiniteProduct| |createMultiplicationTable| |torsionIfCan|
- |obj| |lfinfieldint| |structuralConstants| |f02wef| |addPointLast|
- |size?| |showTheRoutinesTable| |solveLinearlyOverQ| |eq| |readLine!|
- |OMgetBVar| |c06fuf| |prefix| |zeroDimPrimary?| |cache|
- |selectMultiDimensionalRoutines| |callForm?| |iipow| |iter| |f01brf|
- |subMatrix| |c06gqf| |sparsityIF| |startTableInvSet!|
- |setScreenResolution3D| |resultant| |order| |OMgetSymbol|
- |setProperty| |delete| |OMputError| |signature| |exponential1|
- |OMputAttr| |signAround| |extractSplittingLeaf| |connectTo|
- |quasiComponent| |subst| |double?| |normalise| |exp1| |OMlistCDs|
- |sech2cosh| |zeroVector| |cSinh| |LiePolyIfCan| |calcRanges|
- |fortranInteger| |one?| |exprHasLogarithmicWeights| |OMgetError|
- |areEquivalent?| |fortranCharacter| |s17def| |csch2sinh| |normalDeriv|
- |principal?| |drawCurves| |fractRadix| |LazardQuotient| |conjunction|
- |e04fdf| |expandPower| |directory| |script| |antiAssociative?|
- |squareFreePart| |factorial| |cycleTail| |lazyIrreducibleFactors|
- |setMaxPoints3D| |directSum| |radicalSimplify| |any?| |central?|
- |readUInt8!| |sorted?| |headRemainder| |weierstrass|
- |exponentialOrder| |setOrder| |ref| |retractIfCan| |rk4qc|
- |rightExactQuotient| |exactQuotient!| |flatten| |aspFilename|
- |selectPDERoutines| |exp| |equality| |removeRedundantFactors| |c06ekf|
- |commutator| |coHeight| |objects| |tex| |sign| |localIntegralBasis|
- |left| |s18aef| |numer| |particularSolution| |ddFact| |factorFraction|
- |leadingBasisTerm| |rightRankPolynomial| |genericRightTraceForm|
- |base| |/\\| |f01rdf| |pushNewContour| |right| |setnext!| |outputList|
- |denom| |droot| |setPredicates| |semiDiscriminantEuclidean|
- |resultantReduitEuclidean| |viewWriteDefault| |setRow!| |\\/| |redmat|
- |minimumExponent| |reduceLODE| F2FG |separate| |createNormalElement|
- |universe| |conditionP| |jacobi| |nil| |infinite| |arbitraryExponent|
+ |Record| |Union| |hyperelliptic| |lexico| |contains?|
+ |viewDeltaXDefault| |pi| |weierstrass| |choosemon| |e04gcf| |concat!|
+ |triangular?| |s14abf| |printTypes| |clipParametric| |addBadValue|
+ |exponentialOrder| |infinity| |hexDigit| |preprocess| |getCode|
+ |nullity| |f01ref| |buildSyntax| |rightExtendedGcd| |positiveSolve|
+ |ldf2vmf| |prime?| |cond| |setOrder| |extendedEuclidean|
+ |quadraticNorm| |relationsIdeal| |returnTypeOf| |fglmIfCan| |f02bjf|
+ |branchPoint?| |beauzamyBound| |numericalIntegration| |overset?|
+ |generate| |ratDenom| |log10| |antiCommutative?| |ref| |deepExpand|
+ |c02aff| |length| |map| |index?| |s19acf| |perfectSquare?| |c06ecf|
+ |e02agf| |badNum| |bitand| |setPosition| |kernel| |dAndcExp| |e04ycf|
+ |isTimes| |scripts| |flagFactor| |realEigenvectors| |isQuotient|
+ |iidprod| |incrementBy| |nsqfree| |shuffle| |finite?| |outerProduct|
+ |bitior| |partitions| |draw| |SFunction| |sumOfSquares| |dmp2rfi|
+ |listYoungTableaus| |schema| |mainVariables| |palgLODE|
+ |mainCharacterization| |clearDenominator| |s13adf| |expand|
+ |generalSqFr| |rangeIsFinite| |bernoulliB| |qfactor| |showArrayValues|
+ |rischDEsys| |radix| |currentEnv| |matrixGcd| |lifting1| |Hausdorff|
+ |permanent| |filterWhile| |square?| |setright!| |cyclic|
+ |setClipValue| |integral| |alphabetic| |tanAn| |mapExponents| |e04dgf|
+ |semiSubResultantGcdEuclidean1| |findBinding| |filterUntil| |symbol|
+ |clearTheFTable| |checkForZero| |ratDsolve| |OMwrite| |diagonal?|
+ |revert| |convert| |Frobenius| |maxdeg| |previous| |singleFactorBound|
+ |setPoly| |lowerCase!| |infRittWu?| |select| |expression|
+ |stoseInternalLastSubResultant| |irreducible?| |makeObject|
+ |inputBinaryFile| |limitedint| |ScanFloatIgnoreSpaces| |chebyshevT|
+ |s14aaf| |diff| |height| |cSin| |OMputEndAttr| |integers| |mesh|
+ |integer| |nativeModuleExtension| |adaptive3D?| |coef|
+ |semiDegreeSubResultantEuclidean| |complexElementary|
+ |toseInvertibleSet| |tanh2coth| |linearlyDependentOverZ?|
+ |setPrologue!| |getMultiplicationTable| |numberOfIrreduciblePoly|
+ |hasSolution?| |transcendenceDegree| |elliptic?| |arbitrary|
+ |insertBottom!| |failed?| |notelem| |leftGcd| |addMatch|
+ |mainCoefficients| |safeCeiling| |dual| |showTheIFTable|
+ |nextsubResultant2| |createLowComplexityNormalBasis| |f02akf| |yRange|
+ |cyclicEntries| |selectODEIVPRoutines| |cyclicCopy| **
+ |purelyTranscendental?| |viewWriteAvailable|
+ |basisOfCommutingElements| |debug3D| |OMreadStr| |parent|
+ |numFunEvals3D| |zRange| |principalAncestors| |midpoints|
+ |setRealSteps| |row| |OMopenString| |slex| |rombergo| |hessian|
+ |elements| |functionIsOscillatory| |resultantnaif| |insertTop!| |map!|
+ |yCoordinates| |integralBasisAtInfinity| |nextColeman| RF2UTS
+ |rightQuotient| |stFunc1| |power!| |makeRecord| |f02ajf| |quartic|
+ |tan2cot| |lo| |hostPlatform| |factorAndSplit| |qsetelt!|
+ |paraboloidal| |virtualDegree| |musserTrials| |pushdterm| |s18acf|
+ |mapmult| |getIdentifier| |denominator| |symbol?| |extension| |incr|
+ |palgRDE| |uncouplingMatrices| |label| |imagK| |byteBuffer| |d02gbf|
+ |tValues| |OMcloseConn| |initial| |binaryTournament| |mapCoef|
+ |listRepresentation| |airyBi| |edf2df| |Aleph| |makeYoungTableau|
+ |normalDenom| |e01bff| |antisymmetric?| |errorKind| |leadingIndex|
+ |signatureAst| |pop!| |csc2sin| |d03faf|
+ |stiffnessAndStabilityOfODEIF| |readByte!| |patternMatch|
+ |factorPolynomial| |selectFiniteRoutines| |addMatchRestricted|
+ |drawComplexVectorField| |iiacsc| |rightNorm| |nthExpon|
+ |exprToGenUPS| |simplifyPower| |euclideanGroebner| |startTable!|
+ |symFunc| |viewDefaults| |moduloP| Y |sncndn| |modulus|
+ |halfExtendedSubResultantGcd1| |s17agf| |monomRDEsys| |testModulus|
+ |acsch| |shanksDiscLogAlgorithm| |LiePoly| |reverse!| |lambert|
+ |setTopPredicate| |pToDmp| |head| |rightUnits| |rename!|
+ |certainlySubVariety?| |initiallyReduce| |normDeriv2| |ratPoly|
+ |front| |chvar| |chebyshevU| |reciprocalPolynomial| |OMencodingBinary|
+ |iiasinh| |irDef| |range| |pseudoDivide| |compose| |tail| |rotatez|
+ |addmod| |mix| |isAnd| |mapMatrixIfCan| |maxPoints3D| |constructor|
+ |rules| |edf2efi| |iflist2Result| |randomLC| |partialFraction|
+ |OMReadError?| |putProperties| |solveRetract| |padicFraction| |curve|
+ |rCoord| |truncate| |fortranReal| |nothing| |stronglyReduced?|
+ |zerosOf| |every?| |eigenMatrix| |option| |primeFactor| |collect|
+ |insertMatch| |internalAugment| |infinityNorm| |sqfree| |showSummary|
+ |innerint| |pointLists| |primextendedint| |dequeue!| |s17acf|
+ |topFortranOutputStack| |extractPoint| |lex| |getConstant| |setEmpty!|
+ |setvalue!| |stopTableInvSet!| |factorSFBRlcUnit| |splitDenominator|
+ |finiteBound| |e02aef| |numberOfChildren| |OMputApp| |bat1| |pdf2ef|
+ |selectfirst| |showAttributes| |noValueMode| |completeSmith|
+ |intChoose| |divideExponents| |iilog| |unknown| |solveLinear|
+ |setClosed| |morphism| |OMmakeConn| |bigEndian| |eigenvalues|
+ |macroExpand| |linearAssociatedLog| |returns| |meshFun2Var| |coerceS|
+ |rightTrim| |palglimint0| |OMsend| |mainExpression| |prinpolINFO|
+ |e01saf| |complete| |mindeg| |extract!| |iiatanh| |hdmpToP|
+ |unrankImproperPartitions0| |leftTrim| |c06fqf| |tanh2trigh|
+ |dmpToHdmp| |f02adf| |squareFreeFactors| |d02cjf| |f04axf| |option?|
+ |euclideanNormalForm| |extractTop!| |constantLeft| |RittWuCompare|
+ |fmecg| |evenInfiniteProduct| |rootKerSimp| |OMputString| |operators|
+ |semiIndiceSubResultantEuclidean| |say| |gensym| F |list?|
+ |tanintegrate| |laguerreL| |var1StepsDefault| |OMputFloat|
+ |perfectNthPower?| |safeFloor| |cAtanh| |expint| |mathieu23|
+ |localAbs| |unrankImproperPartitions1| |bitTruth| |c05nbf| |component|
+ |integralLastSubResultant| |mainPrimitivePart|
+ |cyclotomicDecomposition| |removeSuperfluousQuasiComponents|
+ |dihedral| |binomial| |d03eef| |acotIfCan| |rspace| |extractProperty|
+ |has?| |setCondition!| |elaborate| |ramified?| |firstSubsetGray|
+ |graphImage| |llprop| |remove| |function| |multivariate| |lieAlgebra?|
+ |minPol| |nonSingularModel| |credPol| |createNormalPrimitivePoly|
+ |showRegion| |constantIfCan| |fortran| |approxSqrt| |cLog| |variables|
+ |commaSeparate| |fractRagits| |result| |identitySquareMatrix|
+ |getOperands| |univariatePolynomialsGcds| |showClipRegion|
+ |numerators| |clip| |open| |OMgetAttr| |fibonacci| |cschIfCan|
+ |linSolve| |last| |eval| |reduced?| |reset| |cSec| |alternatingGroup|
+ |var2Steps| |isPlus| |module| |assoc| |comparison| |interactiveEnv|
+ |null| |OMUnknownCD?| |csubst| |doublyTransitive?| |perfectNthRoot|
+ |solveLinearPolynomialEquationByFractions| |OMputInteger| |iiGamma|
+ |OMParseError?| |polyPart| |domainTemplate| |removeCoshSq| |f04atf|
+ |pattern| |not| |subNodeOf?| |idealiser| |OMgetFloat| |write|
+ |upperCase?| |fintegrate| |edf2ef| |OMputAtp| |expintegrate|
+ |doubleDisc| |absolutelyIrreducible?| |ode| |clearFortranOutputStack|
+ |and| |isImplies| |hasHi| |save| |d01aqf| |univariatePolynomials|
+ |permutations| |nthFractionalTerm| |operations| |hdmpToDmp|
+ |pmintegrate| |subResultantGcdEuclidean| |taylor| |getPickedPoints|
+ |or| |mainSquareFreePart| |indicialEquation| |modifyPointData|
+ |c05pbf| |s17ahf| |reducedForm| |inverseIntegralMatrixAtInfinity|
+ |branchIfCan| |iiperm| |numerator| |leftOne| |ridHack1| |xor|
+ |laurentRep| |laurent| |adjoint| |bombieriNorm| |rk4a| |primitive?|
+ |bounds| |multMonom| |generalInfiniteProduct| |message|
+ |internalDecompose| |prepareSubResAlgo| |quasiMonic?| |case|
+ |pointColorDefault| |puiseux| |setfirst!|
+ |functionIsContinuousAtEndPoints| |s17adf| |clipBoolean| |duplicates?|
+ |createMultiplicationTable| |atrapezoidal| |mergeFactors| |Zero|
+ |coth2tanh| |coefficient| |bandedJacobian| |wordInStrongGenerators|
+ |numberOfOperations| |internalSubPolSet?| |green| |hi| |null?|
+ |torsionIfCan| |region| |normalizeAtInfinity| |f02agf| |One| |atom?|
+ |inv| |polygon| |s21baf| |algebraicOf| |unitNormalize| FG2F
+ |lfinfieldint| |highCommonTerms| |imagi| |ground?| |supersub| |rarrow|
+ |opeval| |shade| |lowerPolynomial| |setScreenResolution| |prindINFO|
+ |quoted?| |structuralConstants| |repeating| |rectangularMatrix|
+ |doubleResultant| |ground| |lcm| |sinhIfCan| |cAcsc| |unmakeSUP|
+ |seriesToOutputForm| |s20adf| |removeZeroes| |figureUnits| |scale|
+ |f02wef| |zeroSetSplit| |sechIfCan| |generalizedEigenvector|
+ |leadingMonomial| |wordsForStrongGenerators| |birth| |setrest!|
+ |ceiling| |ScanFloatIgnoreSpacesIfCan| |floor| |addPointLast|
+ |fracPart| |cCsc| |setLength!| |palglimint| |append| |deref|
+ |leadingCoefficient| |recip| |rotatex| |f2df| |size?|
+ |patternMatchTimes| |reseed| |coerceP| |newReduc| |FormatArabic|
+ |primitiveMonomials| |gcd| |output| |Gamma| |elt| |minColIndex|
+ |primitivePart| |df2mf| |e02daf| |build| |gcdcofact| |cos2sec|
+ |showTheRoutinesTable| |leadingExponent| |deepestTail| |false|
+ |reductum| |hconcat| |plot| |minset| |trim| |log2| |irCtor| |conical|
+ |polyRDE| |solveLinearlyOverQ| |submod| |argumentListOf|
+ |subtractIfCan| |changeThreshhold| |arity| |shallowCopy|
+ |setLabelValue| |eyeDistance| |readLine!| |copy!| |power|
+ |isConnected?| |OMconnInDevice| |normalElement| |implies| |printCode|
+ |internalSubQuasiComponent?| |iprint| |characteristicSet| |OMgetBVar|
+ |conjug| |tanSum| |brillhartTrials| |rationalFunction| |nthCoef|
+ |readLineIfCan!| |mathieu12| |cycleEntry| |singular?| |c06fpf|
+ |c06fuf| |minGbasis| |extractIfCan| |reducedContinuedFraction|
+ |ellipticCylindrical| |primintegrate| |composites| |packageCall|
+ |OMputEndAtp| |zeroDimPrimary?| |schwerpunkt| |contract|
+ |euclideanSize| |reorder| |alphabetic?| |e01sff| |OMputSymbol|
+ |subresultantVector| |rootProduct| |factorList|
+ |selectMultiDimensionalRoutines| |subResultantsChain| |totalGroebner|
+ |f02fjf| |scanOneDimSubspaces| |categories| |sinhcosh| |unexpand|
+ |outputGeneral| |integrate| |OMgetEndBVar| |fortranTypeOf| |callForm?|
+ |unitsColorDefault| |bumptab1| |normalizedDivide| |ricDsolve|
+ |multiEuclideanTree| |printHeader| |nextNormalPoly| |inverseColeman|
+ |slash| |returnType!| |iipow| |applyRules| |socf2socdf|
+ |extendedSubResultantGcd| |karatsubaDivide| |stirling1| |prinb|
+ |normFactors| |node?| |f01brf| |accuracyIF| |round| |asinIfCan|
+ |traverse| |internalIntegrate| |members| |groebgen| |weighted|
+ |lazyPseudoRemainder| |stoseInvertibleSetsqfreg| |subMatrix|
+ |dualSignature| |sinIfCan| |iicot| |fill!| |makeprod| |real?|
+ |decreasePrecision| |usingTable?| |eulerE| |OMopenFile| |plusInfinity|
+ |c06gqf| |ranges| |kovacic| |ParCond| |equiv| |genericRightTrace|
+ |definingPolynomial| |complexEigenvalues| |content| |chineseRemainder|
+ |isAtom| |minusInfinity| |getZechTable| |complexNumericIfCan|
+ |bezoutMatrix| |radicalSolve| |internal?| |evenlambert| |copyInto!|
+ |wronskianMatrix| |bezoutResultant| |numberOfNormalPoly| |character?|
+ |clipPointsDefault| |sturmVariationsOf| |modTree| |leftZero| |e02bcf|
+ |numberOfComposites| |OMgetEndApp| |subPolSet?| |getRef|
+ |clearTheIFTable| |deriv| |tubePlot| |matrixConcat3D| |countRealRoots|
+ |endOfFile?| |key| |changeName| |rightDivide| |linears| |initTable!|
+ |alternating| |complex?| |rootPoly| |imports| |adaptive?| |weight|
+ |cCot| |nodes| |subTriSet?| |toroidal| |OMgetAtp| |f02aef|
+ |characteristicPolynomial| |BumInSepFFE| |rootsOf|
+ |getMultiplicationMatrix| |filename| |twoFactor| |stoseInvertible?|
+ |intensity| |df2fi| |f04mbf| |attributeData| |components| |type|
+ |plus!| |times!| |ptFunc| |imagj| |basisOfCentroid|
+ |generalizedContinuumHypothesisAssumed?| |quickSort|
+ |indiceSubResultantEuclidean| |UP2ifCan| |evaluate| |generalLambert|
+ |solveLinearPolynomialEquationByRecursion| |monomRDE| |parse|
+ |typeLists| |curveColorPalette| |low| |groebner| |resize| |romberg|
+ |indicialEquations| |trapezoidalo| |next| |resetNew| |froot|
+ |rightFactorIfCan| |whatInfinity| |doubleFloatFormat| |btwFact|
+ |d01gbf| |rewriteIdealWithRemainder|
+ |removeIrreducibleRedundantFactors| |subspace|
+ |leftCharacteristicPolynomial| |restorePrecision| |hermite| |s19abf|
+ |geometric| |elliptic| |f01rcf| |computeInt| |maxrow| |reducedSystem|
+ |totalDifferential| |modularGcd| |upperCase| |e01bgf|
+ |symmetricDifference| |cylindrical| |iiasech| |karatsubaOnce|
+ |checkPrecision| |imagI| |minPoints| |reduceByQuasiMonic|
+ |printStats!| |less?| |factor1| |internalInfRittWu?| |mapExpon|
+ |primitivePart!| |updateStatus!| |pow| EQ |currentSubProgram|
+ |localReal?| |groebnerIdeal| |setchildren!| |expenseOfEvaluationIF|
+ |stoseInvertibleSetreg| |currentCategoryFrame| |pointSizeDefault|
+ |dark| |besselJ| |realElementary| |palgint0| |rowEch| |getMeasure|
+ |lhs| |quadratic| |besselK| |complexIntegrate| |repeating?|
+ |definingInequation| |nonQsign| |headReduce| |relerror| |laurentIfCan|
+ |incrementKthElement| |rhs| |expenseOfEvaluation| |writeBytes!| |Ci|
+ |asinhIfCan| |newTypeLists| |getVariableOrder| |fixedPointExquo|
+ |magnitude| |tRange| |root| |interReduce| |partialDenominators|
+ |polCase| |iiacot| |iisech| |unprotectedRemoveRedundantFactors|
+ |realRoots| |univariatePolynomial| |environment| |integralRepresents|
+ |SturmHabichtSequence| |getCurve| |s17ajf| |B1solve| |interval|
+ |nthRoot| |testDim| |cExp| |f07aef| |rule| |OMgetEndError| |subscript|
+ |viewport2D| |dioSolve| |sdf2lst| |entry?| |lazyPrem| |showAll?|
+ |discriminant| |constantKernel| |index| |completeEchelonBasis|
+ |firstUncouplingMatrix| |merge!| |leftLcm| |generalTwoFactor|
+ |cycleRagits| |lastSubResultantElseSplit| |weights| |addPoint2|
+ |infinite?| |maxRowIndex| |sin?| |pseudoRemainder| |nthExponent|
+ UTS2UP |solveid| |OMputEndError| |partialNumerators| |inf| |s17akf|
+ |removeSquaresIfCan| |center| |splitLinear| |e02ajf| |isMult|
+ |cRationalPower| |solveInField| |nextLatticePermutation|
+ |fortranDoubleComplex| |s21bdf| |radicalEigenvectors|
+ |limitedIntegrate| |pair| |resultantEuclideannaif| |commonDenominator|
+ |prinshINFO| |acosIfCan| |showFortranOutputStack| |cotIfCan| |polyred|
+ |value| |listOfLists| |differentialVariables| |rst| |d02kef|
+ |rational?| |regime| |makeSUP| |d02gaf| |more?| |logical?|
+ |bubbleSort!| |dimensionOfIrreducibleRepresentation| |UnVectorise|
+ |represents| |diagonalMatrix| |cAtan| |graphStates| |factorOfDegree|
+ |roughBase?| |f04jgf| |rdregime| |separateDegrees|
+ |possiblyNewVariety?| |powerSum| |transpose| |nor|
+ |useEisensteinCriterion| |replaceKthElement| |medialSet| |binding|
+ |roughSubIdeal?| |entry| |hasoln| |perspective| |key?| |e02zaf|
+ |invmod| |positive?| |whitePoint| |contractSolve| |lintgcd| |iExquo|
+ |totalLex| |lazyPquo| |fullDisplay| |quadraticForm| |separant| |red|
+ |SturmHabichtMultiple| |lighting| |linearPolynomials| |sincos|
+ |gcdPolynomial| |factorials| |delay| |makingStats?| |f02aff|
+ |RemainderList| |nand| |topPredicate| |maxint| |pade| |skewSFunction|
+ |distdfact| |decimal| |dictionary| |mappingMode| |oddintegers|
+ |kroneckerDelta| |intPatternMatch| |getStream| |reverse| |phiCoord|
+ |alphanumeric| |divisor| |multinomial| |remove!| |laplacian|
+ |mainVariable?| |generalizedInverse| |OMread| |iitanh| |normalized?|
+ |mapUnivariate| |call| |processTemplate| |shrinkable| |s21bbf|
+ |rationalPoint?| |mkPrim| |alphanumeric?| |lookup| |LyndonCoordinates|
+ |setAdaptive| |someBasis| |leaves| |tree| |screenResolution3D|
+ |f02aaf| |sin2csc| |innerSolve| |open?| |squareTop| |sequences|
+ |leftRank| |countRealRootsMultiple| |nil?| |physicalLength| |sequence|
+ |iCompose| |oblateSpheroidal| |primPartElseUnitCanonical!|
+ |fortranComplex| |transform| |irreducibleRepresentation| |atanIfCan|
+ |sumOfDivisors| |s17aff| |linearDependence| |setMinPoints| |bytes|
+ |simplifyExp| |factorByRecursion| |reducedDiscriminant| |top!|
+ |rightUnit| |collectUnder| |setleft!| |getDatabase| |viewZoomDefault|
+ |init| |constantRight| |quoByVar| |f01qcf| |lazyPseudoDivide|
+ |squareFreeLexTriangular| |prime| |subscriptedVariables| |singRicDE|
+ |elementary| |stFunc2| |OMencodingXML| |unitVector| |gcdprim|
+ |monicCompleteDecompose| |normalize| |LowTriBddDenomInv| |decompose|
+ |subNode?| |wreath| |coefficients| |parametric?| |nextPartition|
+ |nthFlag| |groebner?| |algintegrate| |po| |idealiserMatrix|
+ |generator| |makeop| |f04adf| |fixPredicate| |coerceL| |max|
+ |finiteBasis| |expandLog| |integral?| |rightCharacteristicPolynomial|
+ |powmod| |printStatement| |jacobian| |leftRecip| |iicoth| |ScanRoman|
+ |makeCos| |generateIrredPoly| |writable?| |paren| |cAsec| |asimpson|
+ |crushedSet| |invertibleSet| |rightTraceMatrix| |makeFloatFunction|
+ |showTheFTable| |OMputEndBVar| |mathieu11| |search| |lazy?|
+ |explicitEntries?| |trailingCoefficient| |exprex| |infix|
+ |rationalIfCan| |stack| |rem| |isExpt| |algebraicCoefficients?|
+ |permutationGroup| |endSubProgram| |besselY| |realSolve| |part?|
+ |insertionSort!| |setErrorBound| |ran| |gethi| |s17dlf| |dimension|
+ |measure2Result| |quo| |numericIfCan| |curve?| |singularitiesOf|
+ |mirror| |solid?| |sumOfKthPowerDivisors| |condition| |dflist|
+ |legendreP| |bipolar| |deepestInitial| |lookupFunction| |pquo|
+ |e02bbf| |sec2cos| |anfactor| |squareFreePolynomial|
+ |numericalOptimization| |div| |mainForm| |d02bbf| |setValue!|
+ |elaborateFile| |dn| |heap| |rename| |rightAlternative?|
+ |goodnessOfFit| |exquo| |ode1| |dim|
+ |removeRoughlyRedundantFactorsInPol| |point?| |leftTraceMatrix| |nthr|
+ |cyclotomic| |cosSinInfo| |alternative?| |rischNormalize| |laplace| ~=
+ |copies| |sts2stst| |edf2fi| |queue| |powers| |toseLastSubResultant|
+ |middle| |explicitlyFinite?| |taylorRep| |#| |f01qef| |matrix|
+ |rationalPower| |dec| |assign| |deleteRoutine!|
+ |useEisensteinCriterion?| |shallowExpand| |pascalTriangle| ~
+ |OMreceive| |read!| |high| |fullPartialFraction| |concat|
+ |computeCycleLength| |coordinate| |nextsousResultant2| |zeroDimPrime?|
+ |irVar| |LyndonWordsList1| |minimize| |cardinality| |lexGroebner|
+ |regularRepresentation| |isList| |c05adf| |leadingTerm| |frobenius|
+ |printInfo| |tubePointsDefault| |maxIndex| |bag| |lfintegrate|
+ |whileLoop| |clearCache| |purelyAlgebraic?| |compound?| |level|
+ |baseRDE| |var1Steps| |s15aef| |symmetricTensors|
+ |exprHasWeightCosWXorSinWX| |triangulate| |swapColumns!| |unit?|
+ |stosePrepareSubResAlgo| |c06gbf| |coth2trigh| |overlabel| |rotate!|
+ |enterPointData| |constant?| |cycleElt| |mainDefiningPolynomial|
+ |solve| |substring?| |plotPolar| |weakBiRank| |OMsupportsSymbol?|
+ |stripCommentsAndBlanks| |char| |squareFreePrim| |retractable?|
+ |simpleBounds?| |failed| |factors| |monicRightDivide|
+ |orthonormalBasis| |zeroSquareMatrix| |bothWays| |bumprow|
+ |insertRoot!| |polygon?| |pole?| |suffix?| |binomThmExpt| |makeUnit|
+ |curryRight| |removeRoughlyRedundantFactorsInPols| |lazyResidueClass|
+ |aQuartic| |updatF| |fi2df| |empty| |s20acf| |recur| |cartesian|
+ |cAcsch| |Nul| |block| |compile| |nary?| |linearAssociatedOrder|
+ |OMsetEncoding| |prefix?| |status| |Beta| |minPoints3D| |solve1|
+ |uniform| |completeHensel| |dominantTerm| |fillPascalTriangle|
+ |lyndon| |scan| |numberOfFractionalTerms| |multiset| |expt|
+ |fortranLiteralLine| |stoseInvertible?sqfreg| |parabolicCylindrical|
+ |eof?| |minIndex| |youngDiagram| |leftQuotient| |second|
+ |linkToFortran| |subResultantChain| |erf| |elColumn2!| |e01bef|
+ |fortranLinkerArgs| |float| |divide| |vconcat| |stronglyReduce|
+ |shape| |acscIfCan| |third| |mesh?| |getMatch| |multiple?|
+ |firstNumer| |redpps| |basisOfNucleus| |coerceImages| |string?|
+ |putProperty| |palgextint0| |lfunc| |subSet| |messagePrint|
+ |acschIfCan| |void| |f04faf| |argscript| |interpretString| |e02gaf|
+ |primlimintfrac| |tanhIfCan| |dilog| |asechIfCan|
+ |permutationRepresentation| |float?| |sPol| |f04asf| |ScanArabic|
+ |infix?| |semiSubResultantGcdEuclidean2| |overlap| |coerceListOfPairs|
+ |numberOfImproperPartitions| |extractClosed| |sin| |modifyPoint|
+ |mask| |transcendent?| |indicialEquationAtInfinity| |errorInfo|
+ |cscIfCan| |cos| |outputAsScript| |infLex?| |closeComponent|
+ |OMconnectTCP| |pr2dmp| |charpol| |makeFR| |inverse|
+ |genericLeftTrace| |bringDown| |Ei| |tan| |expr| |multisect|
+ |reverseLex| |cyclic?| |diagonalProduct| |bipolarCylindrical|
+ |symbolTableOf| |innerEigenvectors| |mkcomm| |tubeRadiusDefault|
+ |evaluateInverse| |superHeight| |cot| |quotientByP| |find| |write!|
+ |moreAlgebraic?| |bumptab| |rootPower| |completeHermite|
+ |rootNormalize| |sec| |OMgetEndObject| |triangularSystems| GE
+ |bottom!| |s13acf| |dmpToP| |double| |connect| |basisOfLeftNucleus|
+ |positiveRemainder| |negative?| |controlPanel| |laguerre| |csc| |log|
+ GT |infieldIntegrate| |expPot| |elRow1!| |coshIfCan| |cCos|
+ |removeSinhSq| |variable| |monicModulo| |prem| |iteratedInitials|
+ |asin| LE |outputAsTex| |const| |OMgetVariable| |kmax|
+ |basisOfRightNucloid| |setImagSteps| |mapUnivariateIfCan| |deepCopy|
+ |iterators| BY |purelyAlgebraicLeadingMonomial?| |acos| LT |bracket|
+ |iiacosh| |constantToUnaryFunction| |minRowIndex| |thenBranch|
+ |replace| |frst| |fixedDivisor| |rightPower| |atan| |qPot| |hclf|
+ |strongGenerators| |palginfieldint| |radPoly| |c06eaf| |blankSeparate|
+ |sylvesterSequence| |rootDirectory| |acot| |outputBinaryFile| |biRank|
+ |redPo| |monomialIntegrate| |integralMatrix| |leftFactor|
+ |stoseLastSubResultant| |composite| |lazyVariations| |asec|
+ |oneDimensionalArray| |raisePolynomial| |characteristic|
+ |diophantineSystem| |iisinh| |complement| |f02abf| |powern|
+ |OMconnOutDevice| |acsc| |divisorCascade| |outputArgs| |trueEqual|
+ |declare!| |setAttributeButtonStep| |complementaryBasis| |mathieu22|
+ |host| |numberOfMonomials| |setref| |sinh| |OMgetEndAtp| |makeEq|
+ |augment| |inverseIntegralMatrix| |nonLinearPart| |poisson|
+ |flexible?| |realEigenvalues| |outputForm| |cosh| |dfRange|
+ |atanhIfCan| |curryLeft| NOT |ListOfTerms| |inspect| |OMgetEndAttr|
+ |OMputVariable| |odd?| |vspace| |tanh| |getButtonValue| |s01eaf|
+ |lists| |d01fcf| OR |colorDef| |escape| |initiallyReduced?|
+ |UpTriBddDenomInv| |removeCosSq| |zeroSetSplitIntoTriangularSystems|
+ |coth| |indices| |pushuconst| |d01apf| AND |mainKernel| |repSq|
+ |cyclotomicFactorization| |readInt32!| |LyndonWordsList|
+ |compiledFunction| |traceMatrix| |keys| |resultantReduit| |coleman|
+ |e02bef| |iicsch| |mkAnswer| |univariate?| |depth| |semicolonSeparate|
+ |child| |addiag| |genericRightDiscriminant| |cothIfCan| |abelianGroup|
+ |meshPar1Var| |color| |cot2trig| |meatAxe| |clipSurface| |stopTable!|
+ |OMgetBind| |debug| |segment| |getGraph| |autoReduced?| |writeInt8!|
+ |spherical| |optpair| |hypergeometric0F1| |d01alf| |surface| D
+ |harmonic| |OMUnknownSymbol?| |ord| |approxNthRoot|
+ |createLowComplexityTable| |lfextlimint| |critpOrder| |Vectorise|
+ |midpoint| |trace2PowMod| |cyclicGroup| |rationalApproximation|
+ |critMTonD1| |irForm| |reopen!| |expandTrigProducts|
+ |axesColorDefault| |c06gcf| |resetAttributeButtons| |stirling2|
+ |cosIfCan| |screenResolution| |compBound| |readInt8!| |palgextint|
+ |complexExpand| |algebraicDecompose| |rubiksGroup| |htrigs|
+ |LagrangeInterpolation| |rightRank| |integralCoordinates| |factorset|
+ |horizConcat| |oddInfiniteProduct| |tanIfCan| |style|
+ |semiResultantEuclidean1| |mapDown!| |setTex!| |mulmod| |sinh2csch|
+ |curveColor| |f01mcf| |mat| |selectIntegrationRoutines|
+ |makeGraphImage| * |integerBound| |imaginary| |gbasis|
+ |componentUpperBound| |eigenvector| |outputMeasure| |se2rfi| |unparse|
+ |explimitedint| |octon| |rootOfIrreduciblePoly| |s13aaf| |is?|
+ |exteriorDifferential| |c06frf| |properties| |forLoop| |optimize|
+ |d01bbf| |maxrank| |cAcos| |exprToXXP| |limit| |nullSpace| |rroot|
+ |roughBasicSet| |translate| |hue| |rightGcd|
+ |initializeGroupForWordProblem| |OMserve| = |compdegd|
+ |stoseSquareFreePart| |largest| |overbar| |create| |cAcot| |print|
+ |algebraicSort| |untab| |presuper| |discriminantEuclidean| |bfEntry|
+ |dimensions| |exportedOperators| |swap!| |resolve| |lagrange|
+ |minimalPolynomial| |trapezoidal| < |mapSolve| |hMonic| |specialTrigs|
+ |constantCoefficientRicDE| |indiceSubResultant| |intersect|
+ |resetBadValues| |cSech| |shufflein| > |subset?| |column|
+ |jordanAdmissible?| |removeZero| |OMgetApp|
+ |rewriteSetByReducingWithParticularGenerators|
+ |halfExtendedSubResultantGcd2| |rightScalarTimes!| |orbits| <=
+ |henselFact| |df2st| |doubleComplex?| |OMclose| |hostByteOrder|
+ |readIfCan!| |scaleRoots| |elem?| |sturmSequence| >= |mightHaveRoots|
+ |logpart| |primextintfrac| |degree| |totolex| |viewpoint| |rdHack1|
+ |setProperties| |lexTriangular| |operation|
+ |genericLeftMinimalPolynomial| |arrayStack| |mapGen|
+ |chainSubResultants| |monicDecomposeIfCan| |deleteProperty!| |reindex|
+ |leastPower| |lazyGintegrate| |linearlyDependent?| |An| |scopes|
+ |digits| |interpret| |leftAlternative?| |npcoef| |enqueue!|
+ |setleaves!| + |vertConcat| |f01qdf| |antiCommutator| |distance|
+ |true| |bivariateSLPEBR| |algDsolve| |selectsecond|
+ |linearAssociatedExp| - |cn| |backOldPos| |leastAffineMultiple|
+ |leftExactQuotient| |groebnerFactorize| |wordInGenerators|
+ |polynomialZeros| |sizeMultiplication| |mantissa|
+ |leadingCoefficientRicDE| / |perfectSqrt| |duplicates| |OMputEndBind|
+ |complexEigenvectors| |scalarMatrix| |halfExtendedResultant2|
+ |charthRoot| |chiSquare| |basisOfCenter| |maximumExponent|
+ |determinant| |OMputEndObject| |normalForm| |category|
+ |antisymmetricTensors| |nil| |postfix| |makeResult| |s18aff|
+ |complexRoots| |rowEchelonLocal| |integralMatrixAtInfinity|
+ |toseInvertible?| |domain| |leftFactorIfCan| |initials| |extend|
+ |goto| |generators| |compactFraction| |package| |relativeApprox|
+ |factorsOfCyclicGroupSize| |tensorProduct| |transcendentalDecompose|
+ |setEpilogue!| |subResultantGcd| |shift| |KrullNumber| |argumentList!|
+ |pointPlot| |nextPrimitivePoly| |decrease| |associative?|
+ |approximate| |extractBottom!| |readInt16!| |hasPredicate?| |c06gsf|
+ |rewriteSetWithReduction| |ramifiedAtInfinity?| |enumerate| |complex|
+ |OMputBVar| |enterInCache| |listConjugateBases| |varList| |merge|
+ |quasiRegular?| |iisec| |rowEchLocal| |solid| |simpsono| |iiatan|
+ |prepareDecompose| |show| |e01sef| |diagonal| |mappingAst| |sample|
+ UP2UTS |property| |badValues| |brillhartIrreducible?| |belong?|
+ |presub| |att2Result| |associatorDependence| |moduleSum|
+ |hasTopPredicate?| |closedCurve?| |s18def| |outputSpacing|
+ |companionBlocks| |secIfCan| |trace| |qinterval| |f04qaf|
+ |cyclicEqual?| |ip4Address| |cTan| |xn| |sylvesterMatrix| |vark|
+ |retract| |leader| |unravel| |createIrreduciblePoly| |optAttributes|
+ |units| |elseBranch| |mapUp!| |associates?| |delta| |roughUnitIdeal?|
+ |abs| |denomRicDE| |symbolIfCan| |karatsuba| |palgintegrate|
+ |seriesSolve| |PollardSmallFactor| |wholeRagits| |cfirst|
+ |multiplyCoefficients| |pushucoef| |possiblyInfinite?| |ef2edf|
+ |atoms| |expIfCan| |makeSketch| |quasiRegular| |checkRur|
+ |totalDegree| |qqq| |pointColorPalette| |setStatus| |conjugates|
+ |graphState| |setelt!| |divergence| |terms| |product|
+ |radicalOfLeftTraceForm| |typeForm| |flexibleArray| |padicallyExpand|
+ |interpolate| |functorData| |code| |digamma| |listLoops| |rk4|
+ |leftUnit| |unitNormal| |sup| |mainContent| |d01amf|
+ |numberOfDivisors| |prologue| |rewriteIdealWithHeadRemainder|
+ |formula| |trigs2explogs| |headReduced?| |unknownEndian| |elaboration|
+ |explogs2trigs| |OMgetEndBind| |epilogue| |s19aaf|
+ |rightMinimalPolynomial| |lambda| |acothIfCan| |ParCondList| |child?|
+ |rk4qc| |aromberg| |cCosh| |OMunhandledSymbol| |capacity| |plus|
+ |countable?| |useSingleFactorBound?| |changeNameToObjf| |monicDivide|
+ |rightExactQuotient| |algSplitSimple| |pol| |coord| |cycleSplit!|
+ |cAsinh| |inR?| |numberOfPrimitivePoly| |makeSeries| |exactQuotient!|
+ |dom| |symmetricGroup| |littleEndian| |coordinates| |inGroundField?|
+ |varselect| |f04mcf| |nrows| |numberOfVariables| |thetaCoord| |sum|
+ |aspFilename| |datalist| |factorsOfDegree| |fortranDouble| |cot2tan|
+ |trunc| |hspace| |removeRedundantFactorsInContents| |ncols|
+ |divideIfCan| |expintfldpoly| |getGoodPrime| |selectPDERoutines|
+ |cAsin| |iicsc| |inHallBasis?| |parametersOf| |times| |fprindINFO|
+ |cAsech| |basisOfRightNucleus| |associatedSystem| |equality|
+ |distFact| |linGenPos| |computePowers| |symbolTable| |janko2| |linear|
+ |encodingDirectory| |inconsistent?| |select!| |critT|
+ |removeRedundantFactors| |top| |mvar| |lazyPremWithDefault| |before?|
+ |findCycle| |lp| |systemCommand| |leadingIdeal| |pdct|
+ |createPrimitiveNormalPoly| |stopTableGcd!| |c06ekf| |linearMatrix|
+ |pushFortranOutputStack| |f01bsf| |setStatus!| |title| |comp|
+ |viewSizeDefault| |polynomial| |associatedEquations| |swap|
+ |selectOrPolynomials| |tableForDiscreteLogarithm| |point| |commutator|
+ |ldf2lst| |reduceBasisAtInfinity| |popFortranOutputStack| |cross|
+ |inrootof| |monom| |node| |options| |critMonD1| |adaptive|
+ |singularAtInfinity?| |bsolve| |coHeight| |continue| |sort| |d01ajf|
+ |newSubProgram| |quatern| |outputAsFortran| |permutation| |normal|
+ |drawToScale| |cPower| |e02bdf| |PDESolve| |defineProperty| |sign| |e|
+ |complexSolve| |selectOptimizationRoutines| |leftTrace| |wrregime|
+ |leftScalarTimes!| |eq?| |c02agf| |dimensionsOf| |clikeUniv|
+ |qualifier| |idealSimplify| |series| |localIntegralBasis| |list|
+ |cycle| |tab| |isobaric?| |predicates| |iisqrt3| |common| |s17dhf|
+ |string| |zCoord| |imagJ| |iiacsch| |check| |s18aef| |car| |scripted?|
+ |cycles| |convergents| |drawComplex| |infieldint| |close!| |pastel|
+ |inverseLaplace| |setAdaptive3D| |graeffe| |particularSolution|
+ |random| |cdr| |mainMonomials| |exists?| |pushdown| |setOfMinN| |pile|
+ |torsion?| |position!| |prevPrime| |ddFact| |setDifference|
+ |maxColIndex| |binary| |fTable| |selectNonFiniteRoutines|
+ |nextNormalPrimitivePoly| |bivariatePolynomials|
+ |SturmHabichtCoefficients| |associator| |min| |factorFraction|
+ |setIntersection| |wholePart| |ksec| |e01sbf| |categoryFrame|
+ |removeDuplicates!| |recoverAfterFail| |semiResultantReduitEuclidean|
+ |baseRDEsys| |leadingBasisTerm| |setUnion| |basisOfRightAnnihilator|
+ |OMputEndApp| |unvectorise| |showTheSymbolTable| |approximants|
+ |createThreeSpace| |stoseIntegralLastSubResultant| |superscript|
+ |rightRankPolynomial| |decomposeFunc| |apply| |symmetric?|
+ |quadratic?| |shiftLeft| |primes| |matrixDimensions| |rightRecip|
+ |iomode| |meshPar2Var| |genericRightTraceForm| |insert!| |charClass|
+ |divideIfCan!| |e04ucf| |basisOfMiddleNucleus| |zero| |lllip|
+ |makeViewport2D| |mathieu24| |primitiveElement| |f01rdf| |size|
+ |rootRadius| |distribute| |modularGcdPrimitive| |voidMode| |critB|
+ |HermiteIntegrate| |OMgetObject| |pack!| |width| |pushNewContour|
+ |leftRegularRepresentation| |primintfldpoly| |f04arf| |denomLODE|
+ |And| |exponents| |taylorQuoByVar| |writeLine!| |s14baf| |equation|
+ |setnext!| |normalizedAssociate| |push!| |extractIndex| |vector|
+ |polygamma| |Or| |iiacoth| |startTableGcd!| |yCoord| |viewPhiDefault|
+ |droot| |first| |reduction| |invertible?| |irreducibleFactors|
+ |differentiate| |univcase| |Not| |fortranCarriageReturn| |updatD|
+ |d02ejf| |besselI| |setPredicates| |rest| |e01baf| |normalizeIfCan|
+ |splitNodeOf!| |parents| |collectQuasiMonic| |numeric| |e02ahf|
+ |selectSumOfSquaresRoutines| |f02axf| |split|
+ |semiDiscriminantEuclidean| |substitute| |rquo| |OMputObject|
+ |supDimElseRittWu?| |basisOfLeftNucloid| |radical| |partialQuotients|
+ |lifting| |simplifyLog| |zeroDim?| |hash| |resultantReduitEuclidean|
+ |removeDuplicates| |nextIrreduciblePoly| |d02raf|
+ |solveLinearPolynomialEquation| |minrank| |count| |primaryDecomp|
+ |putGraph| |d01gaf| |viewDeltaYDefault| |viewWriteDefault|
+ |extendedint| |FormatRoman| |mr| |tube| |swapRows!| |recolor|
+ |primeFrobenius| |super| |leftExtendedGcd| |name| |optional|
+ |listBranches| |setRow!| |heapSort| |leftRankPolynomial|
+ |resetVariableOrder| |OMgetString| |rowEchelon| |eigenvectors|
+ |genericRightNorm| |makeMulti| |characteristicSerie| |lift| |body|
+ |redmat| |inc| |minus!| |computeBasis| |degreeSubResultantEuclidean|
+ |integerIfCan| |invertibleElseSplit?| |cup| |tablePow|
+ |lineColorDefault| |reduce| |complexNormalize| |minimumExponent|
+ |parts| |splitConstant| |functionIsFracPolynomial?| |monomial?|
+ |listexp| |unit| |prod| |exprHasAlgebraicWeight| |clearTheSymbolTable|
+ |reduceLODE| |tryFunctionalDecomposition| |e04mbf|
+ |showIntensityFunctions| |simplify| |branchPointAtInfinity?|
+ |rational| |asecIfCan| |chiSquare1| F2FG |mpsode| |setColumn!|
+ |delete!| |writeByte!| |commutativeEquality| |setMaxPoints|
+ |palgLODE0| |subCase?| |separate| |symmetricProduct| |cCoth|
+ |multiplyExponents| |polarCoordinates| |createGenericMatrix|
+ |exprToUPS| |lazyEvaluate| |zeroDimensional?| |univariateSolve|
+ |createNormalElement| |currentScope| |isAbsolutelyIrreducible?|
+ SEGMENT |setlast!| |iiasec| |error| |pleskenSplit| |gcdcofactprim|
+ |OMencodingUnknown| |expressIdealMember| |element?| |port| |pdf2df|
+ |universe| |fortranCompilerName| |createPrimitivePoly| |leftDivide|
+ |reducedQPowers| |assert| |tower| |Lazard| |Lazard2|
+ |extendedResultant| |roman| |conditionP| |lastSubResultant|
+ |subHeight| |randomR| |f02bbf| |rootSplit| |jokerMode|
+ |quasiMonicPolynomials| |f02xef| |t| |jacobi| |tableau|
+ |representationType| |definingEquations| |tanQ|
+ |semiResultantEuclideannaif| |rischDE| |mkIntegral| |integralBasis|
+ |loadNativeModule| |lquo| |f07fef| |OMsupportsCD?| |lazyIntegrate|
+ |changeBase| |printingInfo?| |categoryMode| |userOrdered?| |e01bhf|
+ |zero?| |basisOfLeftAnnihilator| |closed| |quotedOperators|
+ |homogeneous?| |subresultantSequence| |explicitlyEmpty?| |constant|
+ |quasiAlgebraicSet| |smith| |balancedFactorisation| |complexNumeric|
+ |symmetricSquare| |mapdiv| |iiacos| |Is| |cAcosh| |constantOpIfCan|
+ |readBytes!| |stFuncN| |byte| |predicate| |ODESolve| |create3Space|
+ |complexLimit| |pseudoQuotient| |cubic| |digit| |c06ebf|
+ |useSingleFactorBound| |kernels| |iifact| |ffactor| |e02dcf|
+ |derivative| |createZechTable| |palgint| |computeCycleEntry|
+ |operator| |vedf2vef| |cons| |commutative?| |diagonals|
+ |multiEuclidean| |sizeLess?| |groebSolve| |member?| |bitLength|
+ |squareMatrix| |integralDerivationMatrix| |getBadValues|
+ |noncommutativeJordanAlgebra?| |step| |lllp| |leftDiscriminant|
+ |e04jaf| |boundOfCauchy| |univariate| |numFunEvals| |LazardQuotient2|
+ |isEquiv| |logIfCan| |ode2| |axes| |comment| |blue| |identity|
+ |var2StepsDefault| |fixedPoint| |variationOfParameters|
+ |bezoutDiscriminant| |increase| |pointData| |rur| |logGamma|
+ |gradient| |balancedBinaryTree| |identityMatrix| |rotatey| |pair?|
+ |OMencodingSGML| |coerce| |rightLcm| |factor| |readUInt32!|
+ |primPartElseUnitCanonical| |algint| |cAcoth| |OMputBind| |int|
+ |s18dcf| |qroot| |xCoord| |construct| |radicalRoots| |Si| |sqrt|
+ |source| |lowerCase| |graphCurves| |iicosh| |hermiteH| |diag| |qelt|
+ |parameters| |real| |basis| |mergeDifference| |extendedIntegrate|
+ |twist| |divisors| |BasicMethod| |withPredicates| |qsetelt| |ignore?|
+ |imag| |padecf| |radicalEigenvalues| |safetyMargin|
+ |getSyntaxFormsFromFile| |splitSquarefree| |setButtonValue| |s18adf|
+ |xRange| |airyAi| |directProduct| |makeCrit| |isNot| |iisin|
+ |rightTrace| |iicos| |noLinearFactor?| |cycleLength| |polyRicDE|
+ |internalLastSubResultant| |d01asf| |algebraic?| |f04maf|
+ |rightFactorCandidate| |tubePoints| |setsubMatrix!| |rightMult|
+ |iidsum| |brace| |isOr| |target| |ptree| |createNormalPoly| |critBonD|
+ |OMgetType| |squareFree| |ocf2ocdf| |innerSolve1| |number?| |destruct|
+ |factorSquareFreeByRecursion| |dihedralGroup| |crest| |leftNorm|
+ |createRandomElement| |trigs| |setMinPoints3D| |partition| |just|
+ |tubeRadius| |genericPosition| |bat| |d02bhf| |fractionPart| |kind|
+ |changeWeightLevel| |s17dcf| |oddlambert| |hexDigit?| |lflimitedint|
+ |rootOf| |rightOne| |zoom| |sparsityIF| |op| |e02baf|
+ |separateFactors| |quote| |leftRemainder| |sortConstraints| |s17aef|
+ |totalfract| |toseSquareFreePart| |startTableInvSet!|
+ |getExplanations| |removeConstantTerm| |typeList| |bfKeys| |ravel|
+ |monomial| |pToHdmp| |points| |e04naf| |leastMonomial|
+ |setScreenResolution3D| |bitCoef| |LyndonBasis| |bandedHessian|
+ |createPrimitiveElement| |symmetricRemainder| |closed?| |sh| |reshape|
+ |degreeSubResultant| |resultant| |arguments| |constantOperator|
+ |factorSquareFreePolynomial| |stoseInvertibleSet| |setelt| |sort!|
+ |over| |viewPosDefault| |lastSubResultantEuclidean|
+ |removeRedundantFactorsInPols| |order| |bits| |ipow| |corrPoly|
+ |drawStyle| |bindings| |removeRoughlyRedundantFactorsInContents|
+ |patternVariable| |minordet| |OMgetSymbol| |resultantEuclidean|
+ |isPower| |optional?| |copy| |makeViewport3D| |psolve| |binaryTree|
+ |principalIdeal| |quotient| |inputOutputBinaryFile| |setProperty|
+ |union| |refine| |setprevious!| |invertIfCan| |gramschmidt|
+ |monomials| |goodPoint| |aCubic| |minimumDegree| |remainder|
+ |OMputError| |genus| |coercePreimagesImages| |vectorise| |unary?|
+ |outputFloating| |conditionsForIdempotents| |f07adf| |nodeOf?|
+ |update| |exponential1| |iiexp| |OMbindTCP| |autoCoerce| |complexForm|
+ |OMreadFile| |measure| |latex| |validExponential| |mapBivariate|
+ |OMputAttr| |rightRegularRepresentation| |exponent|
+ |numberOfComponents| |changeMeasure| |rationalPoints| |readUInt16!|
+ |rightZero| |problemPoints| |signAround| |imagk| |complexZeros|
+ |increasePrecision| |imagE| |createMultiplicationMatrix|
+ |binaryFunction| |cyclicSubmodule| |rank| |seed|
+ |extractSplittingLeaf| |f2st| |mainValue| |factorSquareFree|
+ |jordanAlgebra?| |completeEval| |allRootsOf| |getProperty| |tab1|
+ |connectTo| |symmetricPower| |bit?| |mainVariable| |digit?| |split!|
+ |integralAtInfinity?| |numberOfFactors| |e02ddf| |position| |addPoint|
+ |quasiComponent| |iroot| |e02dff| |invmultisect| |GospersMethod| |cap|
+ |rangePascalTriangle| |match?| |yellow| |shiftRoots| |double?|
+ |rootSimp| |summation| |getProperties| |legendre| |shellSort|
+ |eulerPhi| |combineFeatureCompatibility| |entries| |normalise|
+ |headAst| |scalarTypeOf| |HenselLift| |loopPoints| |ReduceOrder|
+ |linearDependenceOverZ| |reify| |maxPoints| |exp1| |zeroMatrix|
+ |useNagFunctions| |numberOfComputedEntries| |startPolynomial|
+ |reflect| |declare| |cosh2sech| |root?| |extensionDegree| |OMlistCDs|
+ |s15adf| |identification| |stoseInvertible?reg| |normal?| |generic|
+ |f07fdf| |stopMusserTrials| |lepol| |sech2cosh| |intcompBasis|
+ |discreteLog| |getOrder| |prefixRagits| |derivationCoordinates|
+ |omError| |saturate| |tanNa| |zeroVector| |radicalEigenvector|
+ |clipWithRanges| |modularFactor| |rightRemainder| |trivialIdeal?|
+ |mindegTerm| |doubleRank| LODO2FUN |cSinh| |sumSquares| |arg1|
+ |stiffnessAndStabilityFactor| |systemSizeIF| |appendPoint| |moebiusMu|
+ |disjunction| |lSpaceBasis| |nextSubsetGray| |LiePolyIfCan|
+ |genericRightMinimalPolynomial| |arg2| |sech| |linear?| |mainMonomial|
+ |lyndon?| |cyclicParents| |tan2trig| |leftMult| |direction|
+ |calcRanges| |factorGroebnerBasis| |d01anf| |csch| |pureLex| |s17dgf|
+ |localUnquote| |degreePartition| |close| |nthRootIfCan| |viewport3D|
+ |fortranInteger| |asinh| |conditions| |lowerBound|
+ |selectAndPolynomials| |externalList| |cyclePartition| |hcrf|
+ |getOperator| |neglist| |collectUpper| |one?| |prolateSpheroidal|
+ |toScale| |match| GF2FG |acosh| |contours| |dequeue| |stop|
+ |fractionFreeGauss!| |clearTable!| |display| |removeSinSq| |bright|
+ |exprHasLogarithmicWeights| |rightDiscriminant|
+ |eisensteinIrreducible?| |precision| |atanh| |hitherPlane|
+ |lowerCase?| |binarySearchTree| |e02adf| |iFTable| |bivariate?|
+ |OMgetError| |li| |acoth| |bernoulli| |monicLeftDivide|
+ |viewThetaDefault| |randnum| |cCsch| |upDateBranches|
+ |intermediateResultsIF| |readable?| |areEquivalent?| |denominators|
+ |semiResultantEuclidean2| |external?| |asech| |difference| |parabolic|
+ |setFieldInfo| |cTanh| |coefChoose| |fortranCharacter| |increment|
+ |nextPrimitiveNormalPoly| |makeSin| |minPoly| |isOp| |acoshIfCan|
+ |knownInfBasis| |taylorIfCan| |s17def| |nilFactor| |nlde| |multiple|
+ |noKaratsuba| |tracePowMod| |input| |integer?| |internalZeroSetSplit|
+ |jacobiIdentity?| |algebraicVariables| |csch2sinh| |applyQuote|
+ |extendIfCan| |generalPosition| |e01daf| |sn| |powerAssociative?|
+ |makeVariable| |library| |upperCase!| |newLine| |palgRDE0|
+ |normalDeriv| |f02awf| |e02akf| |exponential| |in?| |push| |df2ef|
+ |freeOf?| |unaryFunction| |principal?| |light| |sayLength| |satisfy?|
+ |e02def| |setFormula!| |anticoord|
+ |generalizedContinuumHypothesisAssumed| |plenaryPower| |drawCurves|
+ |monomialIntPoly| |simpson| |ruleset| |semiLastSubResultantEuclidean|
+ |leadingSupport| |genericLeftNorm| |routines| |pomopo!| |leaf?|
+ |fractRadix| |box| |normal01| |orbit| |startStats!| |variable?|
+ |internalIntegrate0| |supRittWu?| |set| |gcdPrimitive| |aLinear|
+ |LazardQuotient| |iitan| |wholeRadix| |children| |linearPart| |test|
+ |setLegalFortranSourceExtensions| |id| |writeUInt8!| |hex| |dot|
+ |conjunction| |iisqrt2| |listOfMonoms| |generalizedEigenvectors|
+ |suchThat| |repeatUntilLoop| |rk4f| |lprop| |nthFactor| |printInfo!|
+ |e04fdf| |iibinom| |iiabs| |f01maf| |lyndonIfCan| |table| |empty?|
+ |gderiv| |s19adf| |numberOfCycles| |expandPower| |any| |sqfrFactor|
+ |redPol| |fortranLiteral| |leftMinimalPolynomial| |insert| |new|
+ |back| |nextSublist| |mdeg| |antiAssociative?| |youngGroup| |obj|
+ |primlimitedint| |normInvertible?| |OMgetInteger| |monic?|
+ |outputFixed| |unitCanonical| |conjugate| |eq| |monicRightFactorIfCan|
+ |squareFreePart| |leftPower| |prefix| |myDegree| |cache| |constDsolve|
+ |zeroOf| |critM| |putColorInfo| |changeVar| |iter| |d01akf|
+ |factorial| |shiftRight| |showScalarValues| |graphs| |exQuo| |sub|
+ |fortranLogical| |leftUnits| |delete| |signature| |cycleTail|
+ |nullary| |generic?| |rewriteIdealWithQuasiMonicGenerators| |basicSet|
+ |roughEqualIdeals?| |subst| |parseString| |euler| |ratpart|
+ |infiniteProduct| |lazyIrreducibleFactors| |findConstructor|
+ |makeTerm| |setVariableOrder| |OMlistSymbols| |nullary?| |limitPlus|
+ |leviCivitaSymbol| |rotate| |setMaxPoints3D| |genericLeftDiscriminant|
+ |sizePascalTriangle| |moebius| |curry| |colorFunction|
+ |expextendedint| |isOpen?| |showAllElements| |directSum| |consnewpol|
+ |lazyPseudoQuotient| |directory| |script| |ideal| |movedPoints|
+ |pointColor| |nextItem| |radicalSimplify| |selectPolynomials|
+ |physicalLength!| |elRow2!| |outlineRender| |rootBound| |firstDenom|
+ |space| |pushup| |any?| |realZeros| |iterationVar|
+ |standardBasisOfCyclicSubmodule| |retractIfCan| |uniform01| |argument|
+ |exptMod| |iiasin| |flatten| |exp| |triangSolve| |central?| |zag|
+ |irreducibleFactor| |tryFunctionalDecomposition?| |aQuadratic|
+ |objects| |tex| |halfExtendedResultant1| |norm| |left| |readUInt8!|
+ |numer| |fixedPoints| |lfextendedint| |upperBound| |polar|
+ |lieAdmissible?| |genericLeftTraceForm| |base| |/\\|
+ |removeSuperfluousCases| |d03edf| |right| |sorted?| |outputList|
+ |denom| |s21bcf| |even?| |nextPrime| |exactQuotient| |move| |getlo|
+ |\\/| |closedCurve| |probablyZeroDim?| |subQuasiComponent?|
+ |headRemainder| |continuedFraction| |inRadical?| |pmComplexintegrate|
+ |SturmHabicht| |numberOfHues| |nil| |infinite| |arbitraryExponent|
|approximate| |complex| |shallowMutable| |canonical| |noetherian|
|central| |partiallyOrderedSet| |arbitraryPrecision|
|canonicalsClosed| |noZeroDivisors| |rightUnitary| |leftUnitary|
diff --git a/src/share/algebra/interp.daase b/src/share/algebra/interp.daase
index af30144d..91a221e1 100644
--- a/src/share/algebra/interp.daase
+++ b/src/share/algebra/interp.daase
@@ -1,4700 +1,4700 @@
-(3228567 . 3480886534)
-((-4374 (((-112) (-1 (-112) |#2| |#2|) $) 86) (((-112) $) NIL)) (-4004 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-3932 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-1244 (-570)) |#2|) 44)) (-2844 (($ $) 80)) (-3624 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $) 49)) (-4027 (((-570) (-1 (-112) |#2|) $) 27) (((-570) |#2| $) NIL) (((-570) |#2| $ (-570)) 96)) (-3627 (((-650 |#2|) $) 13)) (-2024 (($ (-1 (-112) |#2| |#2|) $ $) 64) (($ $ $) NIL)) (-1502 (($ (-1 |#2| |#2|) $) 37)) (-1356 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 60)) (-4290 (($ |#2| $ (-570)) NIL) (($ $ $ (-570)) 67)) (-1790 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 29)) (-3642 (((-112) (-1 (-112) |#2|) $) 23)) (-1941 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL) (($ $ (-1244 (-570))) 66)) (-4326 (($ $ (-570)) 76) (($ $ (-1244 (-570))) 75)) (-3584 (((-777) (-1 (-112) |#2|) $) 34) (((-777) |#2| $) NIL)) (-2906 (($ $ $ (-570)) 69)) (-3951 (($ $) 68)) (-3811 (($ (-650 |#2|)) 73)) (-2584 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 87) (($ (-650 $)) 85)) (-3799 (((-868) $) 92)) (-4371 (((-112) (-1 (-112) |#2|) $) 22)) (-3022 (((-112) $ $) 95)) (-3042 (((-112) $ $) 99)))
-(((-18 |#1| |#2|) (-10 -8 (-15 -3022 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3042 ((-112) |#1| |#1|)) (-15 -4004 (|#1| |#1|)) (-15 -4004 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2844 (|#1| |#1|)) (-15 -2906 (|#1| |#1| |#1| (-570))) (-15 -4374 ((-112) |#1|)) (-15 -2024 (|#1| |#1| |#1|)) (-15 -4027 ((-570) |#2| |#1| (-570))) (-15 -4027 ((-570) |#2| |#1|)) (-15 -4027 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4374 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -2024 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3932 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -4290 (|#1| |#1| |#1| (-570))) (-15 -4290 (|#1| |#2| |#1| (-570))) (-15 -4326 (|#1| |#1| (-1244 (-570)))) (-15 -4326 (|#1| |#1| (-570))) (-15 -1941 (|#1| |#1| (-1244 (-570)))) (-15 -1356 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2584 (|#1| (-650 |#1|))) (-15 -2584 (|#1| |#1| |#1|)) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#2|)) (-15 -3811 (|#1| (-650 |#2|))) (-15 -1790 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1941 (|#2| |#1| (-570))) (-15 -1941 (|#2| |#1| (-570) |#2|)) (-15 -3932 (|#2| |#1| (-570) |#2|)) (-15 -3584 ((-777) |#2| |#1|)) (-15 -3627 ((-650 |#2|) |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1502 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3951 (|#1| |#1|))) (-19 |#2|) (-1227)) (T -18))
+(3229139 . 3480912632)
+((-4414 (((-112) (-1 (-112) |#2| |#2|) $) 86) (((-112) $) NIL)) (-3936 (($ (-1 (-112) |#2| |#2|) $) 18) (($ $) NIL)) (-3935 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-1244 (-570)) |#2|) 44)) (-1582 (($ $) 80)) (-3627 ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 52) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 50) ((|#2| (-1 |#2| |#2| |#2|) $) 49)) (-4029 (((-570) (-1 (-112) |#2|) $) 27) (((-570) |#2| $) NIL) (((-570) |#2| $ (-570)) 96)) (-3630 (((-650 |#2|) $) 13)) (-3183 (($ (-1 (-112) |#2| |#2|) $ $) 64) (($ $ $) NIL)) (-1503 (($ (-1 |#2| |#2|) $) 37)) (-1357 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 60)) (-4293 (($ |#2| $ (-570)) NIL) (($ $ $ (-570)) 67)) (-2770 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 29)) (-1627 (((-112) (-1 (-112) |#2|) $) 23)) (-1942 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL) (($ $ (-1244 (-570))) 66)) (-4330 (($ $ (-570)) 76) (($ $ (-1244 (-570))) 75)) (-3587 (((-777) (-1 (-112) |#2|) $) 34) (((-777) |#2| $) NIL)) (-2087 (($ $ $ (-570)) 69)) (-3954 (($ $) 68)) (-3814 (($ (-650 |#2|)) 73)) (-2585 (($ $ |#2|) NIL) (($ |#2| $) NIL) (($ $ $) 87) (($ (-650 $)) 85)) (-3802 (((-868) $) 92)) (-4379 (((-112) (-1 (-112) |#2|) $) 22)) (-3025 (((-112) $ $) 95)) (-3045 (((-112) $ $) 99)))
+(((-18 |#1| |#2|) (-10 -8 (-15 -3025 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3045 ((-112) |#1| |#1|)) (-15 -3936 (|#1| |#1|)) (-15 -3936 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1582 (|#1| |#1|)) (-15 -2087 (|#1| |#1| |#1| (-570))) (-15 -4414 ((-112) |#1|)) (-15 -3183 (|#1| |#1| |#1|)) (-15 -4029 ((-570) |#2| |#1| (-570))) (-15 -4029 ((-570) |#2| |#1|)) (-15 -4029 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4414 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3183 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3935 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -4293 (|#1| |#1| |#1| (-570))) (-15 -4293 (|#1| |#2| |#1| (-570))) (-15 -4330 (|#1| |#1| (-1244 (-570)))) (-15 -4330 (|#1| |#1| (-570))) (-15 -1942 (|#1| |#1| (-1244 (-570)))) (-15 -1357 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2585 (|#1| (-650 |#1|))) (-15 -2585 (|#1| |#1| |#1|)) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#2|)) (-15 -3814 (|#1| (-650 |#2|))) (-15 -2770 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1942 (|#2| |#1| (-570))) (-15 -1942 (|#2| |#1| (-570) |#2|)) (-15 -3935 (|#2| |#1| (-570) |#2|)) (-15 -3587 ((-777) |#2| |#1|)) (-15 -3630 ((-650 |#2|) |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1503 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3954 (|#1| |#1|))) (-19 |#2|) (-1227)) (T -18))
NIL
-(-10 -8 (-15 -3022 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3042 ((-112) |#1| |#1|)) (-15 -4004 (|#1| |#1|)) (-15 -4004 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2844 (|#1| |#1|)) (-15 -2906 (|#1| |#1| |#1| (-570))) (-15 -4374 ((-112) |#1|)) (-15 -2024 (|#1| |#1| |#1|)) (-15 -4027 ((-570) |#2| |#1| (-570))) (-15 -4027 ((-570) |#2| |#1|)) (-15 -4027 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4374 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -2024 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3932 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -4290 (|#1| |#1| |#1| (-570))) (-15 -4290 (|#1| |#2| |#1| (-570))) (-15 -4326 (|#1| |#1| (-1244 (-570)))) (-15 -4326 (|#1| |#1| (-570))) (-15 -1941 (|#1| |#1| (-1244 (-570)))) (-15 -1356 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2584 (|#1| (-650 |#1|))) (-15 -2584 (|#1| |#1| |#1|)) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#2|)) (-15 -3811 (|#1| (-650 |#2|))) (-15 -1790 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1941 (|#2| |#1| (-570))) (-15 -1941 (|#2| |#1| (-570) |#2|)) (-15 -3932 (|#2| |#1| (-570) |#2|)) (-15 -3584 ((-777) |#2| |#1|)) (-15 -3627 ((-650 |#2|) |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1502 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3951 (|#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-2844 (($ $) 91 (|has| $ (-6 -4450)))) (-2377 (($ $) 101)) (-3579 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 52)) (-4027 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-4291 (($ (-777) |#1|) 70)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-3466 (($ $ $) 88 (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-2800 (($ $ $) 87 (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 43 (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2147 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4326 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2906 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 71)) (-2584 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) 85 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 84 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3062 (((-112) $ $) 86 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(-10 -8 (-15 -3025 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3045 ((-112) |#1| |#1|)) (-15 -3936 (|#1| |#1|)) (-15 -3936 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -1582 (|#1| |#1|)) (-15 -2087 (|#1| |#1| |#1| (-570))) (-15 -4414 ((-112) |#1|)) (-15 -3183 (|#1| |#1| |#1|)) (-15 -4029 ((-570) |#2| |#1| (-570))) (-15 -4029 ((-570) |#2| |#1|)) (-15 -4029 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4414 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3183 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3935 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -4293 (|#1| |#1| |#1| (-570))) (-15 -4293 (|#1| |#2| |#1| (-570))) (-15 -4330 (|#1| |#1| (-1244 (-570)))) (-15 -4330 (|#1| |#1| (-570))) (-15 -1942 (|#1| |#1| (-1244 (-570)))) (-15 -1357 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -2585 (|#1| (-650 |#1|))) (-15 -2585 (|#1| |#1| |#1|)) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#2|)) (-15 -3814 (|#1| (-650 |#2|))) (-15 -2770 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1942 (|#2| |#1| (-570))) (-15 -1942 (|#2| |#1| (-570) |#2|)) (-15 -3935 (|#2| |#1| (-570) |#2|)) (-15 -3587 ((-777) |#2| |#1|)) (-15 -3630 ((-650 |#2|) |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1503 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3954 (|#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4453))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4453))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-1582 (($ $) 91 (|has| $ (-6 -4453)))) (-2380 (($ $) 101)) (-3582 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 52)) (-4029 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-4294 (($ (-777) |#1|) 70)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-3469 (($ $ $) 88 (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-2472 (($ $ $) 87 (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 43 (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2061 (($ $ |#1|) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4330 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2087 (($ $ $ (-570)) 92 (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 71)) (-2585 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) 85 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 84 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3065 (((-112) $ $) 86 (|has| |#1| (-856)))) (-3045 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-19 |#1|) (-141) (-1227)) (T -19))
NIL
-(-13 (-378 |t#1|) (-10 -7 (-6 -4450)))
-(((-34) . T) ((-102) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2892 (|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) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
-((-3990 (((-3 $ "failed") $ $) 12)) (-3111 (($ $) NIL) (($ $ $) 9)) (* (($ (-928) $) NIL) (($ (-777) $) 16) (($ (-570) $) 26)))
-(((-20 |#1|) (-10 -8 (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -3990 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-21)) (T -20))
+(-13 (-378 |t#1|) (-10 -7 (-6 -4453)))
+(((-34) . T) ((-102) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2895 (|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) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
+((-1966 (((-3 $ "failed") $ $) 12)) (-3114 (($ $) NIL) (($ $ $) 9)) (* (($ (-928) $) NIL) (($ (-777) $) 16) (($ (-570) $) 26)))
+(((-20 |#1|) (-10 -8 (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -1966 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|))) (-21)) (T -20))
NIL
-(-10 -8 (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -3990 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24)))
+(-10 -8 (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -1966 ((-3 |#1| "failed") |#1| |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24)))
(((-21) (-141)) (T -21))
-((-3111 (*1 *1 *1) (-4 *1 (-21))) (-3111 (*1 *1 *1 *1) (-4 *1 (-21))))
-(-13 (-132) (-652 (-570)) (-10 -8 (-15 -3111 ($ $)) (-15 -3111 ($ $ $))))
+((-3114 (*1 *1 *1) (-4 *1 (-21))) (-3114 (*1 *1 *1 *1) (-4 *1 (-21))))
+(-13 (-132) (-652 (-570)) (-10 -8 (-15 -3114 ($ $)) (-15 -3114 ($ $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-1109) . T))
-((-3467 (((-112) $) 10)) (-1705 (($) 15)) (* (($ (-928) $) 14) (($ (-777) $) 19)))
-(((-22 |#1|) (-10 -8 (-15 * (|#1| (-777) |#1|)) (-15 -3467 ((-112) |#1|)) (-15 -1705 (|#1|)) (-15 * (|#1| (-928) |#1|))) (-23)) (T -22))
+((-3721 (((-112) $) 10)) (-3195 (($) 15)) (* (($ (-928) $) 14) (($ (-777) $) 19)))
+(((-22 |#1|) (-10 -8 (-15 * (|#1| (-777) |#1|)) (-15 -3721 ((-112) |#1|)) (-15 -3195 (|#1|)) (-15 * (|#1| (-928) |#1|))) (-23)) (T -22))
NIL
-(-10 -8 (-15 * (|#1| (-777) |#1|)) (-15 -3467 ((-112) |#1|)) (-15 -1705 (|#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
+(-10 -8 (-15 * (|#1| (-777) |#1|)) (-15 -3721 ((-112) |#1|)) (-15 -3195 (|#1|)) (-15 * (|#1| (-928) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
(((-23) (-141)) (T -23))
-((-1861 (*1 *1) (-4 *1 (-23))) (-1705 (*1 *1) (-4 *1 (-23))) (-3467 (*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 (-1861) ($) -3725) (-15 -1705 ($) -3725) (-15 -3467 ((-112) $)) (-15 * ($ (-777) $))))
+((-1862 (*1 *1) (-4 *1 (-23))) (-3195 (*1 *1) (-4 *1 (-23))) (-3721 (*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 (-1862) ($) -3728) (-15 -3195 ($) -3728) (-15 -3721 ((-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|)))
-((-2558 (((-112) $ $) 7)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14)))
+((-2560 (((-112) $ $) 7)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14)))
(((-25) (-141)) (T -25))
-((-3101 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-928)))))
-(-13 (-1109) (-10 -8 (-15 -3101 ($ $ $)) (-15 * ($ (-928) $))))
+((-3104 (*1 *1 *1 *1) (-4 *1 (-25))) (* (*1 *1 *2 *1) (-12 (-4 *1 (-25)) (-5 *2 (-928)))))
+(-13 (-1109) (-10 -8 (-15 -3104 ($ $ $)) (-15 * ($ (-928) $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2523 (((-650 $) (-959 $)) 32) (((-650 $) (-1182 $)) 16) (((-650 $) (-1182 $) (-1186)) 20)) (-4045 (($ (-959 $)) 30) (($ (-1182 $)) 11) (($ (-1182 $) (-1186)) 60)) (-1538 (((-650 $) (-959 $)) 33) (((-650 $) (-1182 $)) 18) (((-650 $) (-1182 $) (-1186)) 19)) (-1979 (($ (-959 $)) 31) (($ (-1182 $)) 13) (($ (-1182 $) (-1186)) NIL)))
-(((-26 |#1|) (-10 -8 (-15 -2523 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2523 ((-650 |#1|) (-1182 |#1|))) (-15 -2523 ((-650 |#1|) (-959 |#1|))) (-15 -4045 (|#1| (-1182 |#1|) (-1186))) (-15 -4045 (|#1| (-1182 |#1|))) (-15 -4045 (|#1| (-959 |#1|))) (-15 -1538 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -1538 ((-650 |#1|) (-1182 |#1|))) (-15 -1538 ((-650 |#1|) (-959 |#1|))) (-15 -1979 (|#1| (-1182 |#1|) (-1186))) (-15 -1979 (|#1| (-1182 |#1|))) (-15 -1979 (|#1| (-959 |#1|)))) (-27)) (T -26))
+((-1626 (((-650 $) (-959 $)) 32) (((-650 $) (-1182 $)) 16) (((-650 $) (-1182 $) (-1186)) 20)) (-4316 (($ (-959 $)) 30) (($ (-1182 $)) 11) (($ (-1182 $) (-1186)) 60)) (-2126 (((-650 $) (-959 $)) 33) (((-650 $) (-1182 $)) 18) (((-650 $) (-1182 $) (-1186)) 19)) (-3896 (($ (-959 $)) 31) (($ (-1182 $)) 13) (($ (-1182 $) (-1186)) NIL)))
+(((-26 |#1|) (-10 -8 (-15 -1626 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -1626 ((-650 |#1|) (-1182 |#1|))) (-15 -1626 ((-650 |#1|) (-959 |#1|))) (-15 -4316 (|#1| (-1182 |#1|) (-1186))) (-15 -4316 (|#1| (-1182 |#1|))) (-15 -4316 (|#1| (-959 |#1|))) (-15 -2126 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2126 ((-650 |#1|) (-1182 |#1|))) (-15 -2126 ((-650 |#1|) (-959 |#1|))) (-15 -3896 (|#1| (-1182 |#1|) (-1186))) (-15 -3896 (|#1| (-1182 |#1|))) (-15 -3896 (|#1| (-959 |#1|)))) (-27)) (T -26))
NIL
-(-10 -8 (-15 -2523 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2523 ((-650 |#1|) (-1182 |#1|))) (-15 -2523 ((-650 |#1|) (-959 |#1|))) (-15 -4045 (|#1| (-1182 |#1|) (-1186))) (-15 -4045 (|#1| (-1182 |#1|))) (-15 -4045 (|#1| (-959 |#1|))) (-15 -1538 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -1538 ((-650 |#1|) (-1182 |#1|))) (-15 -1538 ((-650 |#1|) (-959 |#1|))) (-15 -1979 (|#1| (-1182 |#1|) (-1186))) (-15 -1979 (|#1| (-1182 |#1|))) (-15 -1979 (|#1| (-959 |#1|))))
-((-2558 (((-112) $ $) 7)) (-2523 (((-650 $) (-959 $)) 88) (((-650 $) (-1182 $)) 87) (((-650 $) (-1182 $) (-1186)) 86)) (-4045 (($ (-959 $)) 91) (($ (-1182 $)) 90) (($ (-1182 $) (-1186)) 89)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3814 (($ $) 100)) (-3473 (((-112) $ $) 65)) (-1705 (($) 18 T CONST)) (-1538 (((-650 $) (-959 $)) 94) (((-650 $) (-1182 $)) 93) (((-650 $) (-1182 $) (-1186)) 92)) (-1979 (($ (-959 $)) 97) (($ (-1182 $)) 96) (($ (-1182 $) (-1186)) 95)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-3618 (((-112) $) 79)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 99)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-3801 (((-424 $) $) 82)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 73)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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 -1626 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -1626 ((-650 |#1|) (-1182 |#1|))) (-15 -1626 ((-650 |#1|) (-959 |#1|))) (-15 -4316 (|#1| (-1182 |#1|) (-1186))) (-15 -4316 (|#1| (-1182 |#1|))) (-15 -4316 (|#1| (-959 |#1|))) (-15 -2126 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2126 ((-650 |#1|) (-1182 |#1|))) (-15 -2126 ((-650 |#1|) (-959 |#1|))) (-15 -3896 (|#1| (-1182 |#1|) (-1186))) (-15 -3896 (|#1| (-1182 |#1|))) (-15 -3896 (|#1| (-959 |#1|))))
+((-2560 (((-112) $ $) 7)) (-1626 (((-650 $) (-959 $)) 88) (((-650 $) (-1182 $)) 87) (((-650 $) (-1182 $) (-1186)) 86)) (-4316 (($ (-959 $)) 91) (($ (-1182 $)) 90) (($ (-1182 $) (-1186)) 89)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3817 (($ $) 100)) (-3765 (((-112) $ $) 65)) (-3195 (($) 18 T CONST)) (-2126 (((-650 $) (-959 $)) 94) (((-650 $) (-1182 $)) 93) (((-650 $) (-1182 $) (-1186)) 92)) (-3896 (($ (-959 $)) 97) (($ (-1182 $)) 96) (($ (-1182 $) (-1186)) 95)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-1336 (((-112) $) 79)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 99)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3804 (((-424 $) $) 82)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 73)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1979 (*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27)))) (-1979 (*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27)))) (-1979 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27)))) (-1538 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-1538 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-1538 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-4045 (*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27)))) (-4045 (*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27)))) (-4045 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27)))) (-2523 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-2523 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-2523 (*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 -1979 ($ (-959 $))) (-15 -1979 ($ (-1182 $))) (-15 -1979 ($ (-1182 $) (-1186))) (-15 -1538 ((-650 $) (-959 $))) (-15 -1538 ((-650 $) (-1182 $))) (-15 -1538 ((-650 $) (-1182 $) (-1186))) (-15 -4045 ($ (-959 $))) (-15 -4045 ($ (-1182 $))) (-15 -4045 ($ (-1182 $) (-1186))) (-15 -2523 ((-650 $) (-959 $))) (-15 -2523 ((-650 $) (-1182 $))) (-15 -2523 ((-650 $) (-1182 $) (-1186)))))
+((-3896 (*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27)))) (-3896 (*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27)))) (-3896 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27)))) (-2126 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-2126 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-2126 (*1 *2 *3 *4) (-12 (-5 *3 (-1182 *1)) (-5 *4 (-1186)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-4316 (*1 *1 *2) (-12 (-5 *2 (-959 *1)) (-4 *1 (-27)))) (-4316 (*1 *1 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-27)))) (-4316 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-5 *3 (-1186)) (-4 *1 (-27)))) (-1626 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-1626 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-27)) (-5 *2 (-650 *1)))) (-1626 (*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 -3896 ($ (-959 $))) (-15 -3896 ($ (-1182 $))) (-15 -3896 ($ (-1182 $) (-1186))) (-15 -2126 ((-650 $) (-959 $))) (-15 -2126 ((-650 $) (-1182 $))) (-15 -2126 ((-650 $) (-1182 $) (-1186))) (-15 -4316 ($ (-959 $))) (-15 -4316 ($ (-1182 $))) (-15 -4316 ($ (-1182 $) (-1186))) (-15 -1626 ((-650 $) (-959 $))) (-15 -1626 ((-650 $) (-1182 $))) (-15 -1626 ((-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))
-((-2523 (((-650 $) (-959 $)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 $) (-1186)) 55) (((-650 $) $) 22) (((-650 $) $ (-1186)) 46)) (-4045 (($ (-959 $)) NIL) (($ (-1182 $)) NIL) (($ (-1182 $) (-1186)) 57) (($ $) 20) (($ $ (-1186)) 40)) (-1538 (((-650 $) (-959 $)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 $) (-1186)) 53) (((-650 $) $) 18) (((-650 $) $ (-1186)) 48)) (-1979 (($ (-959 $)) NIL) (($ (-1182 $)) NIL) (($ (-1182 $) (-1186)) NIL) (($ $) 15) (($ $ (-1186)) 42)))
-(((-28 |#1| |#2|) (-10 -8 (-15 -2523 ((-650 |#1|) |#1| (-1186))) (-15 -4045 (|#1| |#1| (-1186))) (-15 -2523 ((-650 |#1|) |#1|)) (-15 -4045 (|#1| |#1|)) (-15 -1538 ((-650 |#1|) |#1| (-1186))) (-15 -1979 (|#1| |#1| (-1186))) (-15 -1538 ((-650 |#1|) |#1|)) (-15 -1979 (|#1| |#1|)) (-15 -2523 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2523 ((-650 |#1|) (-1182 |#1|))) (-15 -2523 ((-650 |#1|) (-959 |#1|))) (-15 -4045 (|#1| (-1182 |#1|) (-1186))) (-15 -4045 (|#1| (-1182 |#1|))) (-15 -4045 (|#1| (-959 |#1|))) (-15 -1538 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -1538 ((-650 |#1|) (-1182 |#1|))) (-15 -1538 ((-650 |#1|) (-959 |#1|))) (-15 -1979 (|#1| (-1182 |#1|) (-1186))) (-15 -1979 (|#1| (-1182 |#1|))) (-15 -1979 (|#1| (-959 |#1|)))) (-29 |#2|) (-562)) (T -28))
+((-1626 (((-650 $) (-959 $)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 $) (-1186)) 55) (((-650 $) $) 22) (((-650 $) $ (-1186)) 46)) (-4316 (($ (-959 $)) NIL) (($ (-1182 $)) NIL) (($ (-1182 $) (-1186)) 57) (($ $) 20) (($ $ (-1186)) 40)) (-2126 (((-650 $) (-959 $)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-1182 $) (-1186)) 53) (((-650 $) $) 18) (((-650 $) $ (-1186)) 48)) (-3896 (($ (-959 $)) NIL) (($ (-1182 $)) NIL) (($ (-1182 $) (-1186)) NIL) (($ $) 15) (($ $ (-1186)) 42)))
+(((-28 |#1| |#2|) (-10 -8 (-15 -1626 ((-650 |#1|) |#1| (-1186))) (-15 -4316 (|#1| |#1| (-1186))) (-15 -1626 ((-650 |#1|) |#1|)) (-15 -4316 (|#1| |#1|)) (-15 -2126 ((-650 |#1|) |#1| (-1186))) (-15 -3896 (|#1| |#1| (-1186))) (-15 -2126 ((-650 |#1|) |#1|)) (-15 -3896 (|#1| |#1|)) (-15 -1626 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -1626 ((-650 |#1|) (-1182 |#1|))) (-15 -1626 ((-650 |#1|) (-959 |#1|))) (-15 -4316 (|#1| (-1182 |#1|) (-1186))) (-15 -4316 (|#1| (-1182 |#1|))) (-15 -4316 (|#1| (-959 |#1|))) (-15 -2126 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2126 ((-650 |#1|) (-1182 |#1|))) (-15 -2126 ((-650 |#1|) (-959 |#1|))) (-15 -3896 (|#1| (-1182 |#1|) (-1186))) (-15 -3896 (|#1| (-1182 |#1|))) (-15 -3896 (|#1| (-959 |#1|)))) (-29 |#2|) (-562)) (T -28))
NIL
-(-10 -8 (-15 -2523 ((-650 |#1|) |#1| (-1186))) (-15 -4045 (|#1| |#1| (-1186))) (-15 -2523 ((-650 |#1|) |#1|)) (-15 -4045 (|#1| |#1|)) (-15 -1538 ((-650 |#1|) |#1| (-1186))) (-15 -1979 (|#1| |#1| (-1186))) (-15 -1538 ((-650 |#1|) |#1|)) (-15 -1979 (|#1| |#1|)) (-15 -2523 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2523 ((-650 |#1|) (-1182 |#1|))) (-15 -2523 ((-650 |#1|) (-959 |#1|))) (-15 -4045 (|#1| (-1182 |#1|) (-1186))) (-15 -4045 (|#1| (-1182 |#1|))) (-15 -4045 (|#1| (-959 |#1|))) (-15 -1538 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -1538 ((-650 |#1|) (-1182 |#1|))) (-15 -1538 ((-650 |#1|) (-959 |#1|))) (-15 -1979 (|#1| (-1182 |#1|) (-1186))) (-15 -1979 (|#1| (-1182 |#1|))) (-15 -1979 (|#1| (-959 |#1|))))
-((-2558 (((-112) $ $) 7)) (-2523 (((-650 $) (-959 $)) 88) (((-650 $) (-1182 $)) 87) (((-650 $) (-1182 $) (-1186)) 86) (((-650 $) $) 134) (((-650 $) $ (-1186)) 132)) (-4045 (($ (-959 $)) 91) (($ (-1182 $)) 90) (($ (-1182 $) (-1186)) 89) (($ $) 135) (($ $ (-1186)) 133)) (-3467 (((-112) $) 17)) (-1755 (((-650 (-1186)) $) 203)) (-3775 (((-413 (-1182 $)) $ (-618 $)) 235 (|has| |#1| (-562)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3684 (((-650 (-618 $)) $) 166)) (-3990 (((-3 $ "failed") $ $) 20)) (-4335 (($ $ (-650 (-618 $)) (-650 $)) 156) (($ $ (-650 (-298 $))) 155) (($ $ (-298 $)) 154)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3814 (($ $) 100)) (-3473 (((-112) $ $) 65)) (-1705 (($) 18 T CONST)) (-1538 (((-650 $) (-959 $)) 94) (((-650 $) (-1182 $)) 93) (((-650 $) (-1182 $) (-1186)) 92) (((-650 $) $) 138) (((-650 $) $ (-1186)) 136)) (-1979 (($ (-959 $)) 97) (($ (-1182 $)) 96) (($ (-1182 $) (-1186)) 95) (($ $) 139) (($ $ (-1186)) 137)) (-4380 (((-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 (-2892 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-3216 (((-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 (-2892 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-2506 (($ $ $) 61)) (-4196 (((-695 |#1|) (-695 $)) 243 (|has| |#1| (-1058))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 242 (|has| |#1| (-1058))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 129 (-2892 (-1809 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-1809 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (((-695 (-570)) (-695 $)) 128 (-2892 (-1809 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-1809 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-3618 (((-112) $) 79)) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 195 (|has| |#1| (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 194 (|has| |#1| (-893 (-570))))) (-2481 (($ (-650 $)) 160) (($ $) 159)) (-2856 (((-650 (-115)) $) 167)) (-3756 (((-115) (-115)) 168)) (-4346 (((-112) $) 35)) (-2110 (((-112) $) 188 (|has| $ (-1047 (-570))))) (-1330 (($ $) 220 (|has| |#1| (-1058)))) (-4399 (((-1134 |#1| (-618 $)) $) 219 (|has| |#1| (-1058)))) (-2923 (($ $ (-570)) 99)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-4032 (((-1182 $) (-618 $)) 185 (|has| $ (-1058)))) (-1356 (($ (-1 $ $) (-618 $)) 174)) (-4143 (((-3 (-618 $) "failed") $) 164)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-3748 (((-650 (-618 $)) $) 165)) (-1365 (($ (-115) (-650 $)) 173) (($ (-115) $) 172)) (-2209 (((-3 (-650 $) "failed") $) 214 (|has| |#1| (-1121)))) (-3352 (((-3 (-2 (|:| |val| $) (|:| -3357 (-570))) "failed") $) 223 (|has| |#1| (-1058)))) (-3654 (((-3 (-650 $) "failed") $) 216 (|has| |#1| (-25)))) (-2778 (((-3 (-2 (|:| -1452 (-570)) (|:| |var| (-618 $))) "failed") $) 217 (|has| |#1| (-25)))) (-1895 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-1186)) 222 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-115)) 221 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $) 215 (|has| |#1| (-1121)))) (-3190 (((-112) $ (-1186)) 171) (((-112) $ (-115)) 170)) (-1877 (($ $) 78)) (-1444 (((-777) $) 163)) (-3577 (((-1129) $) 11)) (-1886 (((-112) $) 201)) (-1898 ((|#1| $) 202)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2603 (((-112) $ (-1186)) 176) (((-112) $ $) 175)) (-3801 (((-424 $) $) 82)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-3273 (((-112) $) 187 (|has| $ (-1047 (-570))))) (-1770 (($ $ (-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)) (-2142 (((-777) $) 64)) (-1941 (($ (-115) (-650 $)) 153) (($ (-115) $ $ $ $) 152) (($ (-115) $ $ $) 151) (($ (-115) $ $) 150) (($ (-115) $) 149)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-3444 (($ $ $) 162) (($ $) 161)) (-3547 (($ $ (-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)))) (-2978 (($ $) 230 (|has| |#1| (-562)))) (-4413 (((-1134 |#1| (-618 $)) $) 229 (|has| |#1| (-562)))) (-2755 (($ $) 186 (|has| $ (-1058)))) (-1425 (((-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)))))) (-2020 (($ $ $) 256 (|has| |#1| (-479)))) (-4391 (($ $ $) 255 (|has| |#1| (-479)))) (-3799 (((-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)) (-3532 (((-3 $ "failed") $) 241 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-4244 (($ (-650 $)) 158) (($ $) 157)) (-1388 (((-112) (-115)) 169)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-4205 (($ (-1186) (-650 $)) 208) (($ (-1186) $ $ $ $) 207) (($ (-1186) $ $ $) 206) (($ (-1186) $ $) 205) (($ (-1186) $) 204)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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)))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 73) (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 231 (|has| |#1| (-562)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))
+(-10 -8 (-15 -1626 ((-650 |#1|) |#1| (-1186))) (-15 -4316 (|#1| |#1| (-1186))) (-15 -1626 ((-650 |#1|) |#1|)) (-15 -4316 (|#1| |#1|)) (-15 -2126 ((-650 |#1|) |#1| (-1186))) (-15 -3896 (|#1| |#1| (-1186))) (-15 -2126 ((-650 |#1|) |#1|)) (-15 -3896 (|#1| |#1|)) (-15 -1626 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -1626 ((-650 |#1|) (-1182 |#1|))) (-15 -1626 ((-650 |#1|) (-959 |#1|))) (-15 -4316 (|#1| (-1182 |#1|) (-1186))) (-15 -4316 (|#1| (-1182 |#1|))) (-15 -4316 (|#1| (-959 |#1|))) (-15 -2126 ((-650 |#1|) (-1182 |#1|) (-1186))) (-15 -2126 ((-650 |#1|) (-1182 |#1|))) (-15 -2126 ((-650 |#1|) (-959 |#1|))) (-15 -3896 (|#1| (-1182 |#1|) (-1186))) (-15 -3896 (|#1| (-1182 |#1|))) (-15 -3896 (|#1| (-959 |#1|))))
+((-2560 (((-112) $ $) 7)) (-1626 (((-650 $) (-959 $)) 88) (((-650 $) (-1182 $)) 87) (((-650 $) (-1182 $) (-1186)) 86) (((-650 $) $) 134) (((-650 $) $ (-1186)) 132)) (-4316 (($ (-959 $)) 91) (($ (-1182 $)) 90) (($ (-1182 $) (-1186)) 89) (($ $) 135) (($ $ (-1186)) 133)) (-3721 (((-112) $) 17)) (-1755 (((-650 (-1186)) $) 203)) (-3778 (((-413 (-1182 $)) $ (-618 $)) 235 (|has| |#1| (-562)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-3687 (((-650 (-618 $)) $) 166)) (-1966 (((-3 $ "failed") $ $) 20)) (-4338 (($ $ (-650 (-618 $)) (-650 $)) 156) (($ $ (-650 (-298 $))) 155) (($ $ (-298 $)) 154)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3817 (($ $) 100)) (-3765 (((-112) $ $) 65)) (-3195 (($) 18 T CONST)) (-2126 (((-650 $) (-959 $)) 94) (((-650 $) (-1182 $)) 93) (((-650 $) (-1182 $) (-1186)) 92) (((-650 $) $) 138) (((-650 $) $ (-1186)) 136)) (-3896 (($ (-959 $)) 97) (($ (-1182 $)) 96) (($ (-1182 $) (-1186)) 95) (($ $) 139) (($ $ (-1186)) 137)) (-4383 (((-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 (-2895 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-3220 (((-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 (-2895 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-2504 (($ $ $) 61)) (-2179 (((-695 |#1|) (-695 $)) 243 (|has| |#1| (-1058))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 242 (|has| |#1| (-1058))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 129 (-2895 (-1810 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-1810 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (((-695 (-570)) (-695 $)) 128 (-2895 (-1810 (|has| |#1| (-1058)) (|has| |#1| (-645 (-570)))) (-1810 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-1336 (((-112) $) 79)) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 195 (|has| |#1| (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 194 (|has| |#1| (-893 (-570))))) (-2486 (($ (-650 $)) 160) (($ $) 159)) (-1705 (((-650 (-115)) $) 167)) (-3759 (((-115) (-115)) 168)) (-4139 (((-112) $) 35)) (-2888 (((-112) $) 188 (|has| $ (-1047 (-570))))) (-1834 (($ $) 220 (|has| |#1| (-1058)))) (-4402 (((-1134 |#1| (-618 $)) $) 219 (|has| |#1| (-1058)))) (-2252 (($ $ (-570)) 99)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-4189 (((-1182 $) (-618 $)) 185 (|has| $ (-1058)))) (-1357 (($ (-1 $ $) (-618 $)) 174)) (-2907 (((-3 (-618 $) "failed") $) 164)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-3751 (((-650 (-618 $)) $) 165)) (-1366 (($ (-115) (-650 $)) 173) (($ (-115) $) 172)) (-1369 (((-3 (-650 $) "failed") $) 214 (|has| |#1| (-1121)))) (-3952 (((-3 (-2 (|:| |val| $) (|:| -3994 (-570))) "failed") $) 223 (|has| |#1| (-1058)))) (-1777 (((-3 (-650 $) "failed") $) 216 (|has| |#1| (-25)))) (-2292 (((-3 (-2 (|:| -1453 (-570)) (|:| |var| (-618 $))) "failed") $) 217 (|has| |#1| (-25)))) (-2505 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-1186)) 222 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-115)) 221 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $) 215 (|has| |#1| (-1121)))) (-3006 (((-112) $ (-1186)) 171) (((-112) $ (-115)) 170)) (-1878 (($ $) 78)) (-1445 (((-777) $) 163)) (-3580 (((-1129) $) 11)) (-1887 (((-112) $) 201)) (-1900 ((|#1| $) 202)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-4224 (((-112) $ (-1186)) 176) (((-112) $ $) 175)) (-3804 (((-424 $) $) 82)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-4418 (((-112) $) 187 (|has| $ (-1047 (-570))))) (-1771 (($ $ (-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)) (-2006 (((-777) $) 64)) (-1942 (($ (-115) (-650 $)) 153) (($ (-115) $ $ $ $) 152) (($ (-115) $ $ $) 151) (($ (-115) $ $) 150) (($ (-115) $) 149)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-3515 (($ $ $) 162) (($ $) 161)) (-3550 (($ $ (-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)))) (-1526 (($ $) 230 (|has| |#1| (-562)))) (-4416 (((-1134 |#1| (-618 $)) $) 229 (|has| |#1| (-562)))) (-2075 (($ $) 186 (|has| $ (-1058)))) (-1426 (((-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)))))) (-4307 (($ $ $) 256 (|has| |#1| (-479)))) (-3381 (($ $ $) 255 (|has| |#1| (-479)))) (-3802 (((-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)) (-3132 (((-3 $ "failed") $) 241 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-4246 (($ (-650 $)) 158) (($ $) 157)) (-3200 (((-112) (-115)) 169)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-4206 (($ (-1186) (-650 $)) 208) (($ (-1186) $ $ $ $) 207) (($ (-1186) $ $ $) 206) (($ (-1186) $ $) 205) (($ (-1186) $) 204)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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)))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 73) (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 231 (|has| |#1| (-562)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1979 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))) (-1538 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))) (-1979 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562)))) (-1538 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *4)))) (-4045 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))) (-2523 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))) (-4045 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562)))) (-2523 (*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 -1979 ($ $)) (-15 -1538 ((-650 $) $)) (-15 -1979 ($ $ (-1186))) (-15 -1538 ((-650 $) $ (-1186))) (-15 -4045 ($ $)) (-15 -2523 ((-650 $) $)) (-15 -4045 ($ $ (-1186))) (-15 -2523 ((-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))) -2892 (|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))
-((-1477 (((-1103 (-227)) $) NIL)) (-3841 (((-1103 (-227)) $) NIL)) (-1401 (($ $ (-227)) 164)) (-2624 (($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570)))) 104)) (-3778 (((-650 (-650 (-950 (-227)))) $) 180)) (-3799 (((-868) $) 194)))
-(((-30) (-13 (-962) (-10 -8 (-15 -2624 ($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570))))) (-15 -1401 ($ $ (-227)))))) (T -30))
-((-2624 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-959 (-570))) (-5 *3 (-1186)) (-5 *4 (-1103 (-413 (-570)))) (-5 *1 (-30)))) (-1401 (*1 *1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-30)))))
-(-13 (-962) (-10 -8 (-15 -2624 ($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570))))) (-15 -1401 ($ $ (-227)))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-1144) $) 11)) (-2335 (((-112) $ $) NIL)) (-4406 (((-1144) $) 9)) (-3022 (((-112) $ $) NIL)))
-(((-31) (-13 (-1092) (-10 -8 (-15 -4406 ((-1144) $)) (-15 -3613 ((-1144) $))))) (T -31))
-((-4406 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31)))))
-(-13 (-1092) (-10 -8 (-15 -4406 ((-1144) $)) (-15 -3613 ((-1144) $))))
-((-1979 ((|#2| (-1182 |#2|) (-1186)) 41)) (-3756 (((-115) (-115)) 55)) (-4032 (((-1182 |#2|) (-618 |#2|)) 149 (|has| |#1| (-1047 (-570))))) (-1670 ((|#2| |#1| (-570)) 137 (|has| |#1| (-1047 (-570))))) (-4070 ((|#2| (-1182 |#2|) |#2|) 29)) (-4414 (((-868) (-650 |#2|)) 86)) (-2755 ((|#2| |#2|) 144 (|has| |#1| (-1047 (-570))))) (-1388 (((-112) (-115)) 17)) (** ((|#2| |#2| (-413 (-570))) 103 (|has| |#1| (-1047 (-570))))))
-(((-32 |#1| |#2|) (-10 -7 (-15 -1979 (|#2| (-1182 |#2|) (-1186))) (-15 -3756 ((-115) (-115))) (-15 -1388 ((-112) (-115))) (-15 -4070 (|#2| (-1182 |#2|) |#2|)) (-15 -4414 ((-868) (-650 |#2|))) (IF (|has| |#1| (-1047 (-570))) (PROGN (-15 ** (|#2| |#2| (-413 (-570)))) (-15 -4032 ((-1182 |#2|) (-618 |#2|))) (-15 -2755 (|#2| |#2|)) (-15 -1670 (|#2| |#1| (-570)))) |%noBranch|)) (-562) (-436 |#1|)) (T -32))
-((-1670 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-4 *2 (-436 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1047 *4)) (-4 *3 (-562)))) (-2755 (*1 *2 *2) (-12 (-4 *3 (-1047 (-570))) (-4 *3 (-562)) (-5 *1 (-32 *3 *2)) (-4 *2 (-436 *3)))) (-4032 (*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)))) (-4414 (*1 *2 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-562)) (-5 *2 (-868)) (-5 *1 (-32 *4 *5)))) (-4070 (*1 *2 *3 *2) (-12 (-5 *3 (-1182 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-32 *4 *2)))) (-1388 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-436 *4)))) (-3756 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-32 *3 *4)) (-4 *4 (-436 *3)))) (-1979 (*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 -1979 (|#2| (-1182 |#2|) (-1186))) (-15 -3756 ((-115) (-115))) (-15 -1388 ((-112) (-115))) (-15 -4070 (|#2| (-1182 |#2|) |#2|)) (-15 -4414 ((-868) (-650 |#2|))) (IF (|has| |#1| (-1047 (-570))) (PROGN (-15 ** (|#2| |#2| (-413 (-570)))) (-15 -4032 ((-1182 |#2|) (-618 |#2|))) (-15 -2755 (|#2| |#2|)) (-15 -1670 (|#2| |#1| (-570)))) |%noBranch|))
-((-4302 (((-112) $ (-777)) 20)) (-1705 (($) 10)) (-2929 (((-112) $ (-777)) 19)) (-3231 (((-112) $ (-777)) 17)) (-2643 (((-112) $ $) 8)) (-2017 (((-112) $) 15)))
-(((-33 |#1|) (-10 -8 (-15 -1705 (|#1|)) (-15 -4302 ((-112) |#1| (-777))) (-15 -2929 ((-112) |#1| (-777))) (-15 -3231 ((-112) |#1| (-777))) (-15 -2017 ((-112) |#1|)) (-15 -2643 ((-112) |#1| |#1|))) (-34)) (T -33))
-NIL
-(-10 -8 (-15 -1705 (|#1|)) (-15 -4302 ((-112) |#1| (-777))) (-15 -2929 ((-112) |#1| (-777))) (-15 -3231 ((-112) |#1| (-777))) (-15 -2017 ((-112) |#1|)) (-15 -2643 ((-112) |#1| |#1|)))
-((-4302 (((-112) $ (-777)) 8)) (-1705 (($) 7 T CONST)) (-2929 (((-112) $ (-777)) 9)) (-3231 (((-112) $ (-777)) 10)) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-3951 (($ $) 13)) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-3896 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))) (-2126 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))) (-3896 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562)))) (-2126 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *4)))) (-4316 (*1 *1 *1) (-12 (-4 *1 (-29 *2)) (-4 *2 (-562)))) (-1626 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-650 *1)) (-4 *1 (-29 *3)))) (-4316 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-29 *3)) (-4 *3 (-562)))) (-1626 (*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 -3896 ($ $)) (-15 -2126 ((-650 $) $)) (-15 -3896 ($ $ (-1186))) (-15 -2126 ((-650 $) $ (-1186))) (-15 -4316 ($ $)) (-15 -1626 ((-650 $) $)) (-15 -4316 ($ $ (-1186))) (-15 -1626 ((-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))) -2895 (|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))
+((-1478 (((-1103 (-227)) $) NIL)) (-3844 (((-1103 (-227)) $) NIL)) (-3963 (($ $ (-227)) 164)) (-3246 (($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570)))) 104)) (-3604 (((-650 (-650 (-950 (-227)))) $) 180)) (-3802 (((-868) $) 194)))
+(((-30) (-13 (-962) (-10 -8 (-15 -3246 ($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570))))) (-15 -3963 ($ $ (-227)))))) (T -30))
+((-3246 (*1 *1 *2 *3 *3 *4 *4) (-12 (-5 *2 (-959 (-570))) (-5 *3 (-1186)) (-5 *4 (-1103 (-413 (-570)))) (-5 *1 (-30)))) (-3963 (*1 *1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-30)))))
+(-13 (-962) (-10 -8 (-15 -3246 ($ (-959 (-570)) (-1186) (-1186) (-1103 (-413 (-570))) (-1103 (-413 (-570))))) (-15 -3963 ($ $ (-227)))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-1144) $) 11)) (-3359 (((-112) $ $) NIL)) (-4409 (((-1144) $) 9)) (-3025 (((-112) $ $) NIL)))
+(((-31) (-13 (-1092) (-10 -8 (-15 -4409 ((-1144) $)) (-15 -3616 ((-1144) $))))) (T -31))
+((-4409 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31)))))
+(-13 (-1092) (-10 -8 (-15 -4409 ((-1144) $)) (-15 -3616 ((-1144) $))))
+((-3896 ((|#2| (-1182 |#2|) (-1186)) 41)) (-3759 (((-115) (-115)) 55)) (-4189 (((-1182 |#2|) (-618 |#2|)) 149 (|has| |#1| (-1047 (-570))))) (-4032 ((|#2| |#1| (-570)) 137 (|has| |#1| (-1047 (-570))))) (-3386 ((|#2| (-1182 |#2|) |#2|) 29)) (-3545 (((-868) (-650 |#2|)) 86)) (-2075 ((|#2| |#2|) 144 (|has| |#1| (-1047 (-570))))) (-3200 (((-112) (-115)) 17)) (** ((|#2| |#2| (-413 (-570))) 103 (|has| |#1| (-1047 (-570))))))
+(((-32 |#1| |#2|) (-10 -7 (-15 -3896 (|#2| (-1182 |#2|) (-1186))) (-15 -3759 ((-115) (-115))) (-15 -3200 ((-112) (-115))) (-15 -3386 (|#2| (-1182 |#2|) |#2|)) (-15 -3545 ((-868) (-650 |#2|))) (IF (|has| |#1| (-1047 (-570))) (PROGN (-15 ** (|#2| |#2| (-413 (-570)))) (-15 -4189 ((-1182 |#2|) (-618 |#2|))) (-15 -2075 (|#2| |#2|)) (-15 -4032 (|#2| |#1| (-570)))) |%noBranch|)) (-562) (-436 |#1|)) (T -32))
+((-4032 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-4 *2 (-436 *3)) (-5 *1 (-32 *3 *2)) (-4 *3 (-1047 *4)) (-4 *3 (-562)))) (-2075 (*1 *2 *2) (-12 (-4 *3 (-1047 (-570))) (-4 *3 (-562)) (-5 *1 (-32 *3 *2)) (-4 *2 (-436 *3)))) (-4189 (*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)))) (-3545 (*1 *2 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-562)) (-5 *2 (-868)) (-5 *1 (-32 *4 *5)))) (-3386 (*1 *2 *3 *2) (-12 (-5 *3 (-1182 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-32 *4 *2)))) (-3200 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-32 *4 *5)) (-4 *5 (-436 *4)))) (-3759 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-32 *3 *4)) (-4 *4 (-436 *3)))) (-3896 (*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 -3896 (|#2| (-1182 |#2|) (-1186))) (-15 -3759 ((-115) (-115))) (-15 -3200 ((-112) (-115))) (-15 -3386 (|#2| (-1182 |#2|) |#2|)) (-15 -3545 ((-868) (-650 |#2|))) (IF (|has| |#1| (-1047 (-570))) (PROGN (-15 ** (|#2| |#2| (-413 (-570)))) (-15 -4189 ((-1182 |#2|) (-618 |#2|))) (-15 -2075 (|#2| |#2|)) (-15 -4032 (|#2| |#1| (-570)))) |%noBranch|))
+((-1932 (((-112) $ (-777)) 20)) (-3195 (($) 10)) (-2317 (((-112) $ (-777)) 19)) (-2193 (((-112) $ (-777)) 17)) (-3415 (((-112) $ $) 8)) (-4283 (((-112) $) 15)))
+(((-33 |#1|) (-10 -8 (-15 -3195 (|#1|)) (-15 -1932 ((-112) |#1| (-777))) (-15 -2317 ((-112) |#1| (-777))) (-15 -2193 ((-112) |#1| (-777))) (-15 -4283 ((-112) |#1|)) (-15 -3415 ((-112) |#1| |#1|))) (-34)) (T -33))
+NIL
+(-10 -8 (-15 -3195 (|#1|)) (-15 -1932 ((-112) |#1| (-777))) (-15 -2317 ((-112) |#1| (-777))) (-15 -2193 ((-112) |#1| (-777))) (-15 -4283 ((-112) |#1|)) (-15 -3415 ((-112) |#1| |#1|)))
+((-1932 (((-112) $ (-777)) 8)) (-3195 (($) 7 T CONST)) (-2317 (((-112) $ (-777)) 9)) (-2193 (((-112) $ (-777)) 10)) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-3954 (($ $) 13)) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-34) (-141)) (T -34))
-((-2643 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3951 (*1 *1 *1) (-4 *1 (-34))) (-2380 (*1 *1) (-4 *1 (-34))) (-2017 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3231 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-2929 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-4302 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-1705 (*1 *1) (-4 *1 (-34))) (-2569 (*1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-34)) (-5 *2 (-777)))))
-(-13 (-1227) (-10 -8 (-15 -2643 ((-112) $ $)) (-15 -3951 ($ $)) (-15 -2380 ($)) (-15 -2017 ((-112) $)) (-15 -3231 ((-112) $ (-777))) (-15 -2929 ((-112) $ (-777))) (-15 -4302 ((-112) $ (-777))) (-15 -1705 ($) -3725) (IF (|has| $ (-6 -4449)) (-15 -2569 ((-777) $)) |%noBranch|)))
+((-3415 (*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-3954 (*1 *1 *1) (-4 *1 (-34))) (-2656 (*1 *1) (-4 *1 (-34))) (-4283 (*1 *2 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))) (-2193 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-2317 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-1932 (*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))) (-3195 (*1 *1) (-4 *1 (-34))) (-2570 (*1 *2 *1) (-12 (|has| *1 (-6 -4452)) (-4 *1 (-34)) (-5 *2 (-777)))))
+(-13 (-1227) (-10 -8 (-15 -3415 ((-112) $ $)) (-15 -3954 ($ $)) (-15 -2656 ($)) (-15 -4283 ((-112) $)) (-15 -2193 ((-112) $ (-777))) (-15 -2317 ((-112) $ (-777))) (-15 -1932 ((-112) $ (-777))) (-15 -3195 ($) -3728) (IF (|has| $ (-6 -4452)) (-15 -2570 ((-777) $)) |%noBranch|)))
(((-1227) . T))
-((-4154 (($ $) 11)) (-4129 (($ $) 10)) (-4176 (($ $) 9)) (-1578 (($ $) 8)) (-4163 (($ $) 7)) (-4140 (($ $) 6)))
+((-4157 (($ $) 11)) (-4129 (($ $) 10)) (-4179 (($ $) 9)) (-1579 (($ $) 8)) (-4166 (($ $) 7)) (-4144 (($ $) 6)))
(((-35) (-141)) (T -35))
-((-4154 (*1 *1 *1) (-4 *1 (-35))) (-4129 (*1 *1 *1) (-4 *1 (-35))) (-4176 (*1 *1 *1) (-4 *1 (-35))) (-1578 (*1 *1 *1) (-4 *1 (-35))) (-4163 (*1 *1 *1) (-4 *1 (-35))) (-4140 (*1 *1 *1) (-4 *1 (-35))))
-(-13 (-10 -8 (-15 -4140 ($ $)) (-15 -4163 ($ $)) (-15 -1578 ($ $)) (-15 -4176 ($ $)) (-15 -4129 ($ $)) (-15 -4154 ($ $))))
-((-2558 (((-112) $ $) 19 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2308 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 126)) (-2698 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 149)) (-1602 (($ $) 147)) (-4279 (($) 73) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 72)) (-3851 (((-1282) $ |#1| |#1|) 100 (|has| $ (-6 -4450))) (((-1282) $ (-570) (-570)) 179 (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) 160 (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 210) (((-112) $) 204 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-4004 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 201 (|has| $ (-6 -4450))) (($ $) 200 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)) (|has| $ (-6 -4450))))) (-3393 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 211) (($ $) 205 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-4302 (((-112) $ (-777)) 8)) (-2988 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 135 (|has| $ (-6 -4450)))) (-3986 (($ $ $) 156 (|has| $ (-6 -4450)))) (-2363 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 158 (|has| $ (-6 -4450)))) (-2869 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 154 (|has| $ (-6 -4450)))) (-3932 ((|#2| $ |#1| |#2|) 74) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 190 (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-1244 (-570)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 161 (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "last" (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 159 (|has| $ (-6 -4450))) (($ $ "rest" $) 157 (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "first" (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 155 (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "value" (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 134 (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) 133 (|has| $ (-6 -4450)))) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 46 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 217)) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 56 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 176 (|has| $ (-6 -4449)))) (-2686 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 148)) (-2496 (((-3 |#2| "failed") |#1| $) 62)) (-1705 (($) 7 T CONST)) (-2844 (($ $) 202 (|has| $ (-6 -4450)))) (-2377 (($ $) 212)) (-3555 (($ $ (-777)) 143) (($ $) 141)) (-3110 (($ $) 215 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3579 (($ $) 59 (-2892 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449))) (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 47 (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 63) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 221) (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 216 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 55 (|has| $ (-6 -4449))) (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 178 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 175 (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 57 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 54 (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 53 (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 177 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 174 (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 173 (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 191 (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) 89) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) 189)) (-3414 (((-112) $) 193)) (-4027 (((-570) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 209) (((-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 208 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))) (((-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) 207 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 31 (|has| $ (-6 -4449))) (((-650 |#2|) $) 80 (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 115 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 124)) (-2439 (((-112) $ $) 132 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-4291 (($ (-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 170)) (-2929 (((-112) $ (-777)) 9)) (-2383 ((|#1| $) 97 (|has| |#1| (-856))) (((-570) $) 181 (|has| (-570) (-856)))) (-3466 (($ $ $) 199 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-2168 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ $) 218) (($ $ $) 214 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-2024 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ $) 213) (($ $ $) 206 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 30 (|has| $ (-6 -4449))) (((-650 |#2|) $) 81 (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 116 (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449)))) (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 118 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-1460 ((|#1| $) 96 (|has| |#1| (-856))) (((-570) $) 182 (|has| (-570) (-856)))) (-2800 (($ $ $) 198 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 35 (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4450))) (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 111 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71) (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ $) 167) (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 110)) (-3420 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 226)) (-3231 (((-112) $ (-777)) 10)) (-2403 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 129)) (-2606 (((-112) $) 125)) (-1988 (((-1168) $) 22 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-1769 (($ $ (-777)) 146) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 144)) (-2911 (((-650 |#1|) $) 64)) (-3245 (((-112) |#1| $) 65)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 40)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 41) (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) 220) (($ $ $ (-570)) 219)) (-4290 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) 163) (($ $ $ (-570)) 162)) (-1805 (((-650 |#1|) $) 94) (((-650 (-570)) $) 184)) (-3939 (((-112) |#1| $) 93) (((-112) (-570) $) 185)) (-3577 (((-1129) $) 21 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3543 ((|#2| $) 98 (|has| |#1| (-856))) (($ $ (-777)) 140) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 138)) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 52) (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 172)) (-2147 (($ $ |#2|) 99 (|has| $ (-6 -4450))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 180 (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 42)) (-3607 (((-112) $) 192)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 33 (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 113 (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) 27 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 26 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 25 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 24 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 122 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 121 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 120 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) 119 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 183 (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3700 (((-650 |#2|) $) 92) (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 186)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 188) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) 187) (($ $ (-1244 (-570))) 166) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "last") 145) (($ $ "rest") 142) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "first") 139) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "value") 127)) (-2738 (((-570) $ $) 130)) (-2178 (($) 50) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 49)) (-3459 (($ $ (-570)) 223) (($ $ (-1244 (-570))) 222)) (-4326 (($ $ (-570)) 165) (($ $ (-1244 (-570))) 164)) (-3817 (((-112) $) 128)) (-4366 (($ $) 152)) (-4063 (($ $) 153 (|has| $ (-6 -4450)))) (-2264 (((-777) $) 151)) (-1839 (($ $) 150)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 32 (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 114 (|has| $ (-6 -4449)))) (-2906 (($ $ $ (-570)) 203 (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542)))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 51) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 171)) (-3276 (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 225) (($ $ $) 224)) (-2584 (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 169) (($ (-650 $)) 168) (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 137) (($ $ $) 136)) (-3799 (((-868) $) 18 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868)))))) (-3397 (((-650 $) $) 123)) (-3746 (((-112) $ $) 131 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2335 (((-112) $ $) 23 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 43)) (-1778 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") |#1| $) 109)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 34 (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 112 (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) 196 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-3052 (((-112) $ $) 195 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-3022 (((-112) $ $) 20 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3062 (((-112) $ $) 197 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-3042 (((-112) $ $) 194 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-4157 (*1 *1 *1) (-4 *1 (-35))) (-4129 (*1 *1 *1) (-4 *1 (-35))) (-4179 (*1 *1 *1) (-4 *1 (-35))) (-1579 (*1 *1 *1) (-4 *1 (-35))) (-4166 (*1 *1 *1) (-4 *1 (-35))) (-4144 (*1 *1 *1) (-4 *1 (-35))))
+(-13 (-10 -8 (-15 -4144 ($ $)) (-15 -4166 ($ $)) (-15 -1579 ($ $)) (-15 -4179 ($ $)) (-15 -4129 ($ $)) (-15 -4157 ($ $))))
+((-2560 (((-112) $ $) 19 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2308 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 126)) (-2701 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 149)) (-1603 (($ $) 147)) (-4282 (($) 73) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 72)) (-3040 (((-1282) $ |#1| |#1|) 100 (|has| $ (-6 -4453))) (((-1282) $ (-570) (-570)) 179 (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) 160 (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 210) (((-112) $) 204 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3936 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 201 (|has| $ (-6 -4453))) (($ $) 200 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)) (|has| $ (-6 -4453))))) (-3396 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 211) (($ $) 205 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-1932 (((-112) $ (-777)) 8)) (-1647 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 135 (|has| $ (-6 -4453)))) (-1917 (($ $ $) 156 (|has| $ (-6 -4453)))) (-3671 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 158 (|has| $ (-6 -4453)))) (-1854 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 154 (|has| $ (-6 -4453)))) (-3935 ((|#2| $ |#1| |#2|) 74) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 190 (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-1244 (-570)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 161 (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "last" (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 159 (|has| $ (-6 -4453))) (($ $ "rest" $) 157 (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "first" (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 155 (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "value" (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 134 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 133 (|has| $ (-6 -4453)))) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 46 (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 217)) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 56 (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 176 (|has| $ (-6 -4452)))) (-2688 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 148)) (-2496 (((-3 |#2| "failed") |#1| $) 62)) (-3195 (($) 7 T CONST)) (-1582 (($ $) 202 (|has| $ (-6 -4453)))) (-2380 (($ $) 212)) (-3558 (($ $ (-777)) 143) (($ $) 141)) (-3476 (($ $) 215 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3582 (($ $) 59 (-2895 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452))) (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 47 (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) 63) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 221) (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 216 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 55 (|has| $ (-6 -4452))) (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 178 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 175 (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 57 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 54 (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 53 (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 177 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 174 (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 173 (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 191 (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) 89) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) 189)) (-3242 (((-112) $) 193)) (-4029 (((-570) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 209) (((-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 208 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))) (((-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) 207 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 31 (|has| $ (-6 -4452))) (((-650 |#2|) $) 80 (|has| $ (-6 -4452))) (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 115 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 124)) (-2045 (((-112) $ $) 132 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-4294 (($ (-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 170)) (-2317 (((-112) $ (-777)) 9)) (-2685 ((|#1| $) 97 (|has| |#1| (-856))) (((-570) $) 181 (|has| (-570) (-856)))) (-3469 (($ $ $) 199 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-2270 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ $) 218) (($ $ $) 214 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3183 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ $) 213) (($ $ $) 206 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 30 (|has| $ (-6 -4452))) (((-650 |#2|) $) 81 (|has| $ (-6 -4452))) (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 116 (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452)))) (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 118 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452))))) (-2602 ((|#1| $) 96 (|has| |#1| (-856))) (((-570) $) 182 (|has| (-570) (-856)))) (-2472 (($ $ $) 198 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 35 (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4453))) (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 111 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71) (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ $) 167) (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 110)) (-3423 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 226)) (-2193 (((-112) $ (-777)) 10)) (-2404 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 129)) (-4244 (((-112) $) 125)) (-3989 (((-1168) $) 22 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-1770 (($ $ (-777)) 146) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 144)) (-2914 (((-650 |#1|) $) 64)) (-2343 (((-112) |#1| $) 65)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 40)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 41) (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) 220) (($ $ $ (-570)) 219)) (-4293 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) 163) (($ $ $ (-570)) 162)) (-2903 (((-650 |#1|) $) 94) (((-650 (-570)) $) 184)) (-1358 (((-112) |#1| $) 93) (((-112) (-570) $) 185)) (-3580 (((-1129) $) 21 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3546 ((|#2| $) 98 (|has| |#1| (-856))) (($ $ (-777)) 140) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 138)) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 52) (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 172)) (-2061 (($ $ |#2|) 99 (|has| $ (-6 -4453))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 180 (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 42)) (-2568 (((-112) $) 192)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 33 (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 113 (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) 27 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 26 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 25 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 24 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 122 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 121 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 120 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) 119 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 183 (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-4049 (((-650 |#2|) $) 92) (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 186)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 188) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) 187) (($ $ (-1244 (-570))) 166) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "last") 145) (($ $ "rest") 142) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "first") 139) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "value") 127)) (-3108 (((-570) $ $) 130)) (-2374 (($) 50) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 49)) (-3651 (($ $ (-570)) 223) (($ $ (-1244 (-570))) 222)) (-4330 (($ $ (-570)) 165) (($ $ (-1244 (-570))) 164)) (-2759 (((-112) $) 128)) (-4332 (($ $) 152)) (-3305 (($ $) 153 (|has| $ (-6 -4453)))) (-3853 (((-777) $) 151)) (-1991 (($ $) 150)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 32 (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-777) |#2| $) 82 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 117 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 114 (|has| $ (-6 -4452)))) (-2087 (($ $ $ (-570)) 203 (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542)))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 51) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 171)) (-1319 (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 225) (($ $ $) 224)) (-2585 (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 169) (($ (-650 $)) 168) (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 137) (($ $ $) 136)) (-3802 (((-868) $) 18 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868)))))) (-4259 (((-650 $) $) 123)) (-3290 (((-112) $ $) 131 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3359 (((-112) $ $) 23 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 43)) (-1779 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") |#1| $) 109)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 34 (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 112 (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) 196 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3055 (((-112) $ $) 195 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3025 (((-112) $ $) 20 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3065 (((-112) $ $) 197 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3045 (((-112) $ $) 194 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-36 |#1| |#2|) (-141) (-1109) (-1109)) (T -36))
-((-1778 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| -2106 *3) (|:| -2340 *4))))))
-(-13 (-1203 |t#1| |t#2|) (-672 (-2 (|:| -2106 |t#1|) (|:| -2340 |t#2|))) (-10 -8 (-15 -1778 ((-3 (-2 (|:| -2106 |t#1|) (|:| -2340 |t#2|)) "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T) ((-102) -2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856))) ((-619 (-868)) -2892 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868)))) ((-152 #1=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T) ((-620 (-542)) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)) ((-1019 #1#) . T) ((-1109) -2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856))) ((-1158 #1#) . T) ((-1203 |#1| |#2|) . T) ((-1227) . T) ((-1265 #1#) . T))
-((-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10)))
-(((-37 |#1| |#2|) (-10 -8 (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-38 |#2|) (-174)) (T -37))
-NIL
-(-10 -8 (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-1779 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| -2107 *3) (|:| -2340 *4))))))
+(-13 (-1203 |t#1| |t#2|) (-672 (-2 (|:| -2107 |t#1|) (|:| -2340 |t#2|))) (-10 -8 (-15 -1779 ((-3 (-2 (|:| -2107 |t#1|) (|:| -2340 |t#2|)) "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T) ((-102) -2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856))) ((-619 (-868)) -2895 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868)))) ((-152 #1=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T) ((-620 (-542)) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)) ((-1019 #1#) . T) ((-1109) -2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856))) ((-1158 #1#) . T) ((-1203 |#1| |#2|) . T) ((-1227) . T) ((-1265 #1#) . T))
+((-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10)))
+(((-37 |#1| |#2|) (-10 -8 (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-38 |#2|) (-174)) (T -37))
+NIL
+(-10 -8 (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3774 (((-424 |#1|) |#1|) 41)) (-3801 (((-424 |#1|) |#1|) 30) (((-424 |#1|) |#1| (-650 (-48))) 33)) (-3974 (((-112) |#1|) 59)))
-(((-39 |#1|) (-10 -7 (-15 -3801 ((-424 |#1|) |#1| (-650 (-48)))) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3774 ((-424 |#1|) |#1|)) (-15 -3974 ((-112) |#1|))) (-1253 (-48))) (T -39))
-((-3974 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-3774 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-3801 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-3801 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-48))) (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))))
-(-10 -7 (-15 -3801 ((-424 |#1|) |#1| (-650 (-48)))) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3774 ((-424 |#1|) |#1|)) (-15 -3974 ((-112) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1437 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| (-413 |#2|) (-368)))) (-3074 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3475 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-1806 (((-695 (-413 |#2|)) (-1277 $)) NIL) (((-695 (-413 |#2|))) NIL)) (-3207 (((-413 |#2|) $) NIL)) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-413 |#2|) (-354)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1652 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-3473 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3510 (((-777)) NIL (|has| (-413 |#2|) (-373)))) (-3757 (((-112)) NIL)) (-3673 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 (((-570) $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) NIL)) (-3243 (($ (-1277 (-413 |#2|)) (-1277 $)) NIL) (($ (-1277 (-413 |#2|))) 61) (($ (-1277 |#2|) |#2|) 131)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-413 |#2|) (-354)))) (-2506 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2818 (((-695 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) NIL) (((-695 (-413 |#2|)) (-695 $)) NIL)) (-1726 (((-1277 $) (-1277 $)) NIL)) (-3624 (($ |#3|) NIL) (((-3 $ "failed") (-413 |#3|)) NIL (|has| (-413 |#2|) (-368)))) (-2875 (((-3 $ "failed") $) NIL)) (-3040 (((-650 (-650 |#1|))) NIL (|has| |#1| (-373)))) (-2792 (((-112) |#1| |#1|) NIL)) (-4006 (((-928)) NIL)) (-3446 (($) NIL (|has| (-413 |#2|) (-373)))) (-1370 (((-112)) NIL)) (-1625 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2518 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| (-413 |#2|) (-368)))) (-3988 (($ $) NIL)) (-2652 (($) NIL (|has| (-413 |#2|) (-354)))) (-2542 (((-112) $) NIL (|has| (-413 |#2|) (-354)))) (-2063 (($ $ (-777)) NIL (|has| (-413 |#2|) (-354))) (($ $) NIL (|has| (-413 |#2|) (-354)))) (-3618 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-4323 (((-928) $) NIL (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) NIL (|has| (-413 |#2|) (-354)))) (-4346 (((-112) $) NIL)) (-2279 (((-777)) NIL)) (-2871 (((-1277 $) (-1277 $)) 106)) (-2959 (((-413 |#2|) $) NIL)) (-3652 (((-650 (-959 |#1|)) (-1186)) NIL (|has| |#1| (-368)))) (-2619 (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-354)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-3521 ((|#3| $) NIL (|has| (-413 |#2|) (-368)))) (-1884 (((-928) $) NIL (|has| (-413 |#2|) (-373)))) (-3612 ((|#3| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-1988 (((-1168) $) NIL)) (-3715 (((-1282) (-777)) 84)) (-2541 (((-695 (-413 |#2|))) 56)) (-4138 (((-695 (-413 |#2|))) 49)) (-1877 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1549 (($ (-1277 |#2|) |#2|) 132)) (-3865 (((-695 (-413 |#2|))) 50)) (-2707 (((-695 (-413 |#2|))) 48)) (-3796 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 130)) (-3186 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 68)) (-1603 (((-1277 $)) 47)) (-2673 (((-1277 $)) 46)) (-1992 (((-112) $) NIL)) (-2480 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2438 (($) NIL (|has| (-413 |#2|) (-354)) CONST)) (-2268 (($ (-928)) NIL (|has| (-413 |#2|) (-373)))) (-2962 (((-3 |#2| "failed")) NIL)) (-3577 (((-1129) $) NIL)) (-1663 (((-777)) NIL)) (-2466 (($) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-413 |#2|) (-368)))) (-1942 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| (-413 |#2|) (-354)))) (-3801 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2547 (((-3 $ "failed") $ $) NIL (|has| (-413 |#2|) (-368)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2142 (((-777) $) NIL (|has| (-413 |#2|) (-368)))) (-1941 ((|#1| $ |#1| |#1|) NIL)) (-2915 (((-3 |#2| "failed")) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3570 (((-413 |#2|) (-1277 $)) NIL) (((-413 |#2|)) 44)) (-2289 (((-777) $) NIL (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) NIL (|has| (-413 |#2|) (-354)))) (-3547 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 |#2| |#2|)) 126) (($ $ (-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 (-2892 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2892 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-1998 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368)))) (-2755 ((|#3|) 55)) (-4003 (($) NIL (|has| (-413 |#2|) (-354)))) (-3424 (((-1277 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 |#2|)) $) 62) (((-695 (-413 |#2|)) (-1277 $)) 107)) (-1425 (((-1277 (-413 |#2|)) $) NIL) (($ (-1277 (-413 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-413 |#2|) (-354)))) (-2709 (((-1277 $) (-1277 $)) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 |#2|)) NIL) (($ (-413 (-570))) NIL (-2892 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-368)))) (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3532 (($ $) NIL (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-146)))) (-3553 ((|#3| $) NIL)) (-3499 (((-777)) NIL T CONST)) (-3129 (((-112)) 42)) (-2965 (((-112) |#1|) 54) (((-112) |#2|) 138)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL)) (-2029 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-1719 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2245 (((-112)) NIL)) (-1861 (($) 17 T CONST)) (-1875 (($) 27 T CONST)) (-2942 (($ $ (-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 (-2892 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2892 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3715 ((-1282) (-777))))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) |#3|) (T -40))
-((-3715 (*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 -3715 ((-1282) (-777)))))
-((-3788 ((|#2| |#2|) 47)) (-1672 ((|#2| |#2|) 139 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-2435 ((|#2| |#2|) 100 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-3164 ((|#2| |#2|) 101 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-2237 ((|#2| (-115) |#2| (-777)) 135 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-2846 (((-1182 |#2|) |#2|) 44)) (-1591 ((|#2| |#2| (-650 (-618 |#2|))) 18) ((|#2| |#2| (-650 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
-(((-41 |#1| |#2|) (-10 -7 (-15 -3788 (|#2| |#2|)) (-15 -1591 (|#2| |#2|)) (-15 -1591 (|#2| |#2| |#2|)) (-15 -1591 (|#2| |#2| (-650 |#2|))) (-15 -1591 (|#2| |#2| (-650 (-618 |#2|)))) (-15 -2846 ((-1182 |#2|) |#2|)) (IF (|has| |#1| (-13 (-458) (-1047 (-570)))) (IF (|has| |#2| (-436 |#1|)) (PROGN (-15 -3164 (|#2| |#2|)) (-15 -2435 (|#2| |#2|)) (-15 -1672 (|#2| |#2|)) (-15 -2237 (|#2| (-115) |#2| (-777)))) |%noBranch|) |%noBranch|)) (-562) (-13 (-368) (-306) (-10 -8 (-15 -4399 ((-1134 |#1| (-618 $)) $)) (-15 -4413 ((-1134 |#1| (-618 $)) $)) (-15 -3799 ($ (-1134 |#1| (-618 $))))))) (T -41))
-((-2237 (*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 -3799 ($ (-1134 *5 (-618 $))))))))) (-1672 (*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 -3799 ($ (-1134 *3 (-618 $))))))))) (-2435 (*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 -3799 ($ (-1134 *3 (-618 $))))))))) (-3164 (*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 -3799 ($ (-1134 *3 (-618 $))))))))) (-2846 (*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 -3799 ($ (-1134 *4 (-618 $))))))))) (-1591 (*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 -3799 ($ (-1134 *4 (-618 $))))))) (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))) (-1591 (*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 -3799 ($ (-1134 *4 (-618 $))))))) (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))) (-1591 (*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 -3799 ($ (-1134 *3 (-618 $))))))))) (-1591 (*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 -3799 ($ (-1134 *3 (-618 $))))))))) (-3788 (*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 -3799 ($ (-1134 *3 (-618 $))))))))))
-(-10 -7 (-15 -3788 (|#2| |#2|)) (-15 -1591 (|#2| |#2|)) (-15 -1591 (|#2| |#2| |#2|)) (-15 -1591 (|#2| |#2| (-650 |#2|))) (-15 -1591 (|#2| |#2| (-650 (-618 |#2|)))) (-15 -2846 ((-1182 |#2|) |#2|)) (IF (|has| |#1| (-13 (-458) (-1047 (-570)))) (IF (|has| |#2| (-436 |#1|)) (PROGN (-15 -3164 (|#2| |#2|)) (-15 -2435 (|#2| |#2|)) (-15 -1672 (|#2| |#2|)) (-15 -2237 (|#2| (-115) |#2| (-777)))) |%noBranch|) |%noBranch|))
-((-3801 (((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48))) 23) (((-424 |#3|) |#3| (-650 (-48))) 19)))
-(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -3801 ((-424 |#3|) |#3| (-650 (-48)))) (-15 -3801 ((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48))))) (-856) (-799) (-956 (-48) |#2| |#1|)) (T -42))
-((-3801 (*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)))) (-3801 (*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 -3801 ((-424 |#3|) |#3| (-650 (-48)))) (-15 -3801 ((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48)))))
-((-1463 (((-777) |#2|) 70)) (-1499 (((-777) |#2|) 74)) (-3088 (((-650 |#2|)) 37)) (-2474 (((-777) |#2|) 73)) (-2590 (((-777) |#2|) 69)) (-2398 (((-777) |#2|) 72)) (-2704 (((-650 (-695 |#1|))) 65)) (-2637 (((-650 |#2|)) 60)) (-1734 (((-650 |#2|) |#2|) 48)) (-1784 (((-650 |#2|)) 62)) (-4080 (((-650 |#2|)) 61)) (-4086 (((-650 (-695 |#1|))) 53)) (-3165 (((-650 |#2|)) 59)) (-4101 (((-650 |#2|) |#2|) 47)) (-1923 (((-650 |#2|)) 55)) (-2761 (((-650 (-695 |#1|))) 66)) (-4173 (((-650 |#2|)) 64)) (-1972 (((-1277 |#2|) (-1277 |#2|)) 99 (|has| |#1| (-311)))))
-(((-43 |#1| |#2|) (-10 -7 (-15 -2474 ((-777) |#2|)) (-15 -1499 ((-777) |#2|)) (-15 -2590 ((-777) |#2|)) (-15 -1463 ((-777) |#2|)) (-15 -2398 ((-777) |#2|)) (-15 -1923 ((-650 |#2|))) (-15 -4101 ((-650 |#2|) |#2|)) (-15 -1734 ((-650 |#2|) |#2|)) (-15 -3165 ((-650 |#2|))) (-15 -2637 ((-650 |#2|))) (-15 -4080 ((-650 |#2|))) (-15 -1784 ((-650 |#2|))) (-15 -4173 ((-650 |#2|))) (-15 -4086 ((-650 (-695 |#1|)))) (-15 -2704 ((-650 (-695 |#1|)))) (-15 -2761 ((-650 (-695 |#1|)))) (-15 -3088 ((-650 |#2|))) (IF (|has| |#1| (-311)) (-15 -1972 ((-1277 |#2|) (-1277 |#2|))) |%noBranch|)) (-562) (-423 |#1|)) (T -43))
-((-1972 (*1 *2 *2) (-12 (-5 *2 (-1277 *4)) (-4 *4 (-423 *3)) (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-43 *3 *4)))) (-3088 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2761 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2704 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4086 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4173 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-1784 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-4080 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2637 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3165 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-1734 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-4101 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-1923 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2398 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-1463 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2590 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-1499 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2474 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))))
-(-10 -7 (-15 -2474 ((-777) |#2|)) (-15 -1499 ((-777) |#2|)) (-15 -2590 ((-777) |#2|)) (-15 -1463 ((-777) |#2|)) (-15 -2398 ((-777) |#2|)) (-15 -1923 ((-650 |#2|))) (-15 -4101 ((-650 |#2|) |#2|)) (-15 -1734 ((-650 |#2|) |#2|)) (-15 -3165 ((-650 |#2|))) (-15 -2637 ((-650 |#2|))) (-15 -4080 ((-650 |#2|))) (-15 -1784 ((-650 |#2|))) (-15 -4173 ((-650 |#2|))) (-15 -4086 ((-650 (-695 |#1|)))) (-15 -2704 ((-650 (-695 |#1|)))) (-15 -2761 ((-650 (-695 |#1|)))) (-15 -3088 ((-650 |#2|))) (IF (|has| |#1| (-311)) (-15 -1972 ((-1277 |#2|) (-1277 |#2|))) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3128 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4299 (((-1277 (-695 |#1|)) (-1277 $)) NIL) (((-1277 (-695 |#1|))) 24)) (-4221 (((-1277 $)) 52)) (-1705 (($) NIL T CONST)) (-2983 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL (|has| |#1| (-562)))) (-2476 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-3919 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-3677 ((|#1| $) NIL)) (-1666 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-2054 (((-3 $ "failed") $) NIL (|has| |#1| (-562)))) (-4404 (((-1182 (-959 |#1|))) NIL (|has| |#1| (-368)))) (-2705 (($ $ (-928)) NIL)) (-3637 ((|#1| $) NIL)) (-2036 (((-1182 |#1|) $) NIL (|has| |#1| (-562)))) (-1684 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-3595 (((-1182 |#1|) $) NIL)) (-1763 (((-112)) 99)) (-3243 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) NIL)) (-2875 (((-3 $ "failed") $) 14 (|has| |#1| (-562)))) (-4006 (((-928)) 53)) (-4034 (((-112)) NIL)) (-2604 (($ $ (-928)) NIL)) (-2680 (((-112)) NIL)) (-1950 (((-112)) NIL)) (-1907 (((-112)) 101)) (-2615 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL (|has| |#1| (-562)))) (-3089 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-3267 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-2339 ((|#1| $) NIL)) (-1738 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-3259 (((-3 $ "failed") $) NIL (|has| |#1| (-562)))) (-3454 (((-1182 (-959 |#1|))) NIL (|has| |#1| (-368)))) (-1575 (($ $ (-928)) NIL)) (-3680 ((|#1| $) NIL)) (-2018 (((-1182 |#1|) $) NIL (|has| |#1| (-562)))) (-2374 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-1542 (((-1182 |#1|) $) NIL)) (-1830 (((-112)) 98)) (-1988 (((-1168) $) NIL)) (-4013 (((-112)) 106)) (-3196 (((-112)) 105)) (-2601 (((-112)) 107)) (-3577 (((-1129) $) NIL)) (-3832 (((-112)) 100)) (-1941 ((|#1| $ (-570)) 55)) (-3424 (((-1277 |#1|) $ (-1277 $)) 48) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) 28) (((-695 |#1|) (-1277 $)) NIL)) (-1425 (((-1277 |#1|) $) NIL) (($ (-1277 |#1|)) NIL)) (-1987 (((-650 (-959 |#1|)) (-1277 $)) NIL) (((-650 (-959 |#1|))) NIL)) (-4391 (($ $ $) NIL)) (-3795 (((-112)) 95)) (-3799 (((-868) $) 71) (($ (-1277 |#1|)) 22)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) 51)) (-3871 (((-650 (-1277 |#1|))) NIL (|has| |#1| (-562)))) (-3764 (($ $ $ $) NIL)) (-2433 (((-112)) 91)) (-3489 (($ (-695 |#1|) $) 18)) (-3858 (($ $ $) NIL)) (-2826 (((-112)) 97)) (-4363 (((-112)) 92)) (-1764 (((-112)) 90)) (-1861 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 80) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1151 |#2| |#1|) $) 19)))
-(((-44 |#1| |#2| |#3| |#4|) (-13 (-423 |#1|) (-654 (-1151 |#2| |#1|)) (-10 -8 (-15 -3799 ($ (-1277 |#1|))))) (-368) (-928) (-650 (-1186)) (-1277 (-695 |#1|))) (T -44))
-((-3799 (*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 -3799 ($ (-1277 |#1|)))))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2308 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2698 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1602 (($ $) NIL)) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3851 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450))) (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-4004 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856))))) (-3393 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-2988 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450)))) (-3986 (($ $ $) 33 (|has| $ (-6 -4450)))) (-2363 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450)))) (-2869 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 35 (|has| $ (-6 -4450)))) (-3932 ((|#2| $ |#1| |#2|) 53) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-1244 (-570)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "last" (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450))) (($ $ "rest" $) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "first" (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "value" (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2686 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2496 (((-3 |#2| "failed") |#1| $) 43)) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3555 (($ $ (-777)) NIL) (($ $) 29)) (-3110 (($ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 56) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) NIL) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL)) (-3414 (((-112) $) NIL)) (-4027 (((-570) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (((-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))) (((-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 20 (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 20 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-4291 (($ (-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 ((|#1| $) NIL (|has| |#1| (-856))) (((-570) $) 38 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-2168 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-2024 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-1460 ((|#1| $) NIL (|has| |#1| (-856))) (((-570) $) 40 (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-3420 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-2403 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2606 (((-112) $) NIL)) (-1988 (((-1168) $) 49 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-1769 (($ $ (-777)) NIL) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2911 (((-650 |#1|) $) 22)) (-3245 (((-112) |#1| $) NIL)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL) (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-4290 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 |#1|) $) NIL) (((-650 (-570)) $) NIL)) (-3939 (((-112) |#1| $) NIL) (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3543 ((|#2| $) NIL (|has| |#1| (-856))) (($ $ (-777)) NIL) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 27)) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3607 (((-112) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3700 (((-650 |#2|) $) NIL) (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 19)) (-2017 (((-112) $) 18)) (-2380 (($) 14)) (-1941 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "first") NIL) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $ "value") NIL)) (-2738 (((-570) $ $) NIL)) (-2178 (($) 13) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3459 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3817 (((-112) $) NIL)) (-4366 (($ $) NIL)) (-4063 (($ $) NIL (|has| $ (-6 -4450)))) (-2264 (((-777) $) NIL)) (-1839 (($ $) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3276 (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL) (($ $ $) NIL)) (-2584 (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL) (($ (-650 $)) NIL) (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 31) (($ $ $) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-1778 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") |#1| $) 51)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3062 (((-112) $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-856)))) (-2569 (((-777) $) 25 (|has| $ (-6 -4449)))))
+((-3568 (((-424 |#1|) |#1|) 41)) (-3804 (((-424 |#1|) |#1|) 30) (((-424 |#1|) |#1| (-650 (-48))) 33)) (-1785 (((-112) |#1|) 59)))
+(((-39 |#1|) (-10 -7 (-15 -3804 ((-424 |#1|) |#1| (-650 (-48)))) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -3568 ((-424 |#1|) |#1|)) (-15 -1785 ((-112) |#1|))) (-1253 (-48))) (T -39))
+((-1785 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-3568 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-3804 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))) (-3804 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-48))) (-5 *2 (-424 *3)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))))
+(-10 -7 (-15 -3804 ((-424 |#1|) |#1| (-650 (-48)))) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -3568 ((-424 |#1|) |#1|)) (-15 -1785 ((-112) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1504 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| (-413 |#2|) (-368)))) (-4306 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-2617 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-2913 (((-695 (-413 |#2|)) (-1277 $)) NIL) (((-695 (-413 |#2|))) NIL)) (-3211 (((-413 |#2|) $) NIL)) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-413 |#2|) (-354)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3871 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-3765 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3513 (((-777)) NIL (|has| (-413 |#2|) (-373)))) (-3392 (((-112)) NIL)) (-1992 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 (((-570) $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) NIL)) (-2322 (($ (-1277 (-413 |#2|)) (-1277 $)) NIL) (($ (-1277 (-413 |#2|))) 61) (($ (-1277 |#2|) |#2|) 131)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-413 |#2|) (-354)))) (-2504 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2595 (((-695 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) NIL) (((-695 (-413 |#2|)) (-695 $)) NIL)) (-3383 (((-1277 $) (-1277 $)) NIL)) (-3627 (($ |#3|) NIL) (((-3 $ "failed") (-413 |#3|)) NIL (|has| (-413 |#2|) (-368)))) (-1929 (((-3 $ "failed") $) NIL)) (-3997 (((-650 (-650 |#1|))) NIL (|has| |#1| (-373)))) (-2397 (((-112) |#1| |#1|) NIL)) (-4009 (((-928)) NIL)) (-3449 (($) NIL (|has| (-413 |#2|) (-373)))) (-3176 (((-112)) NIL)) (-1738 (((-112) |#1|) NIL) (((-112) |#2|) NIL)) (-2519 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| (-413 |#2|) (-368)))) (-1944 (($ $) NIL)) (-3511 (($) NIL (|has| (-413 |#2|) (-354)))) (-1843 (((-112) $) NIL (|has| (-413 |#2|) (-354)))) (-3599 (($ $ (-777)) NIL (|has| (-413 |#2|) (-354))) (($ $) NIL (|has| (-413 |#2|) (-354)))) (-1336 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-3941 (((-928) $) NIL (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) NIL (|has| (-413 |#2|) (-354)))) (-4139 (((-112) $) NIL)) (-3995 (((-777)) NIL)) (-1874 (((-1277 $) (-1277 $)) 106)) (-4399 (((-413 |#2|) $) NIL)) (-1747 (((-650 (-959 |#1|)) (-1186)) NIL (|has| |#1| (-368)))) (-4369 (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-354)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-3043 ((|#3| $) NIL (|has| (-413 |#2|) (-368)))) (-2400 (((-928) $) NIL (|has| (-413 |#2|) (-373)))) (-3615 ((|#3| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3989 (((-1168) $) NIL)) (-4192 (((-1282) (-777)) 84)) (-1831 (((-695 (-413 |#2|))) 56)) (-2873 (((-695 (-413 |#2|))) 49)) (-1878 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-2246 (($ (-1277 |#2|) |#2|) 132)) (-3147 (((-695 (-413 |#2|))) 50)) (-2843 (((-695 (-413 |#2|))) 48)) (-3770 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 130)) (-2977 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 68)) (-1505 (((-1277 $)) 47)) (-3710 (((-1277 $)) 46)) (-4026 (((-112) $) NIL)) (-2475 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2439 (($) NIL (|has| (-413 |#2|) (-354)) CONST)) (-2267 (($ (-928)) NIL (|has| (-413 |#2|) (-373)))) (-1311 (((-3 |#2| "failed")) NIL)) (-3580 (((-1129) $) NIL)) (-3973 (((-777)) NIL)) (-2467 (($) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-413 |#2|) (-368)))) (-1939 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| (-413 |#2|) (-354)))) (-3804 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2548 (((-3 $ "failed") $ $) NIL (|has| (-413 |#2|) (-368)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2006 (((-777) $) NIL (|has| (-413 |#2|) (-368)))) (-1942 ((|#1| $ |#1| |#1|) NIL)) (-2175 (((-3 |#2| "failed")) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2265 (((-413 |#2|) (-1277 $)) NIL) (((-413 |#2|)) 44)) (-4080 (((-777) $) NIL (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) NIL (|has| (-413 |#2|) (-354)))) (-3550 (($ $ (-1 (-413 |#2|) (-413 |#2|)) (-777)) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368))) (($ $ (-1 |#2| |#2|)) 126) (($ $ (-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 (-2895 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2895 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-4083 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368)))) (-2075 ((|#3|) 55)) (-3924 (($) NIL (|has| (-413 |#2|) (-354)))) (-3314 (((-1277 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 |#2|)) $) 62) (((-695 (-413 |#2|)) (-1277 $)) 107)) (-1426 (((-1277 (-413 |#2|)) $) NIL) (($ (-1277 (-413 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-413 |#2|) (-354)))) (-2864 (((-1277 $) (-1277 $)) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 |#2|)) NIL) (($ (-413 (-570))) NIL (-2895 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-368)))) (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3132 (($ $) NIL (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-146)))) (-2124 ((|#3| $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3644 (((-112)) 42)) (-1345 (((-112) |#1|) 54) (((-112) |#2|) 138)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL)) (-3228 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3302 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1807 (((-112)) NIL)) (-1862 (($) 17 T CONST)) (-1876 (($) 27 T CONST)) (-2945 (($ $ (-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 (-2895 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2895 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -4192 ((-1282) (-777))))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) |#3|) (T -40))
+((-4192 (*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 -4192 ((-1282) (-777)))))
+((-3697 ((|#2| |#2|) 47)) (-4042 ((|#2| |#2|) 139 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-2012 ((|#2| |#2|) 100 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-2774 ((|#2| |#2|) 101 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-1703 ((|#2| (-115) |#2| (-777)) 135 (-12 (|has| |#2| (-436 |#1|)) (|has| |#1| (-13 (-458) (-1047 (-570))))))) (-1592 (((-1182 |#2|) |#2|) 44)) (-1350 ((|#2| |#2| (-650 (-618 |#2|))) 18) ((|#2| |#2| (-650 |#2|)) 20) ((|#2| |#2| |#2|) 21) ((|#2| |#2|) 16)))
+(((-41 |#1| |#2|) (-10 -7 (-15 -3697 (|#2| |#2|)) (-15 -1350 (|#2| |#2|)) (-15 -1350 (|#2| |#2| |#2|)) (-15 -1350 (|#2| |#2| (-650 |#2|))) (-15 -1350 (|#2| |#2| (-650 (-618 |#2|)))) (-15 -1592 ((-1182 |#2|) |#2|)) (IF (|has| |#1| (-13 (-458) (-1047 (-570)))) (IF (|has| |#2| (-436 |#1|)) (PROGN (-15 -2774 (|#2| |#2|)) (-15 -2012 (|#2| |#2|)) (-15 -4042 (|#2| |#2|)) (-15 -1703 (|#2| (-115) |#2| (-777)))) |%noBranch|) |%noBranch|)) (-562) (-13 (-368) (-306) (-10 -8 (-15 -4402 ((-1134 |#1| (-618 $)) $)) (-15 -4416 ((-1134 |#1| (-618 $)) $)) (-15 -3802 ($ (-1134 |#1| (-618 $))))))) (T -41))
+((-1703 (*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 -4402 ((-1134 *5 (-618 $)) $)) (-15 -4416 ((-1134 *5 (-618 $)) $)) (-15 -3802 ($ (-1134 *5 (-618 $))))))))) (-4042 (*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 -4402 ((-1134 *3 (-618 $)) $)) (-15 -4416 ((-1134 *3 (-618 $)) $)) (-15 -3802 ($ (-1134 *3 (-618 $))))))))) (-2012 (*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 -4402 ((-1134 *3 (-618 $)) $)) (-15 -4416 ((-1134 *3 (-618 $)) $)) (-15 -3802 ($ (-1134 *3 (-618 $))))))))) (-2774 (*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 -4402 ((-1134 *3 (-618 $)) $)) (-15 -4416 ((-1134 *3 (-618 $)) $)) (-15 -3802 ($ (-1134 *3 (-618 $))))))))) (-1592 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-1182 *3)) (-5 *1 (-41 *4 *3)) (-4 *3 (-13 (-368) (-306) (-10 -8 (-15 -4402 ((-1134 *4 (-618 $)) $)) (-15 -4416 ((-1134 *4 (-618 $)) $)) (-15 -3802 ($ (-1134 *4 (-618 $))))))))) (-1350 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-618 *2))) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4402 ((-1134 *4 (-618 $)) $)) (-15 -4416 ((-1134 *4 (-618 $)) $)) (-15 -3802 ($ (-1134 *4 (-618 $))))))) (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))) (-1350 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4402 ((-1134 *4 (-618 $)) $)) (-15 -4416 ((-1134 *4 (-618 $)) $)) (-15 -3802 ($ (-1134 *4 (-618 $))))))) (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))) (-1350 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4402 ((-1134 *3 (-618 $)) $)) (-15 -4416 ((-1134 *3 (-618 $)) $)) (-15 -3802 ($ (-1134 *3 (-618 $))))))))) (-1350 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4402 ((-1134 *3 (-618 $)) $)) (-15 -4416 ((-1134 *3 (-618 $)) $)) (-15 -3802 ($ (-1134 *3 (-618 $))))))))) (-3697 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2)) (-4 *2 (-13 (-368) (-306) (-10 -8 (-15 -4402 ((-1134 *3 (-618 $)) $)) (-15 -4416 ((-1134 *3 (-618 $)) $)) (-15 -3802 ($ (-1134 *3 (-618 $))))))))))
+(-10 -7 (-15 -3697 (|#2| |#2|)) (-15 -1350 (|#2| |#2|)) (-15 -1350 (|#2| |#2| |#2|)) (-15 -1350 (|#2| |#2| (-650 |#2|))) (-15 -1350 (|#2| |#2| (-650 (-618 |#2|)))) (-15 -1592 ((-1182 |#2|) |#2|)) (IF (|has| |#1| (-13 (-458) (-1047 (-570)))) (IF (|has| |#2| (-436 |#1|)) (PROGN (-15 -2774 (|#2| |#2|)) (-15 -2012 (|#2| |#2|)) (-15 -4042 (|#2| |#2|)) (-15 -1703 (|#2| (-115) |#2| (-777)))) |%noBranch|) |%noBranch|))
+((-3804 (((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48))) 23) (((-424 |#3|) |#3| (-650 (-48))) 19)))
+(((-42 |#1| |#2| |#3|) (-10 -7 (-15 -3804 ((-424 |#3|) |#3| (-650 (-48)))) (-15 -3804 ((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48))))) (-856) (-799) (-956 (-48) |#2| |#1|)) (T -42))
+((-3804 (*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)))) (-3804 (*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 -3804 ((-424 |#3|) |#3| (-650 (-48)))) (-15 -3804 ((-424 (-1182 |#3|)) (-1182 |#3|) (-650 (-48)))))
+((-2630 (((-777) |#2|) 70)) (-2976 (((-777) |#2|) 74)) (-3259 (((-650 |#2|)) 37)) (-2413 (((-777) |#2|) 73)) (-4094 (((-777) |#2|) 69)) (-2840 (((-777) |#2|) 72)) (-2810 (((-650 (-695 |#1|))) 65)) (-3342 (((-650 |#2|)) 60)) (-3482 (((-650 |#2|) |#2|) 48)) (-2707 (((-650 |#2|)) 62)) (-3506 (((-650 |#2|)) 61)) (-3574 (((-650 (-695 |#1|))) 53)) (-2786 (((-650 |#2|)) 59)) (-3722 (((-650 |#2|) |#2|) 47)) (-1485 (((-650 |#2|)) 55)) (-2141 (((-650 (-695 |#1|))) 66)) (-3134 (((-650 |#2|)) 64)) (-3827 (((-1277 |#2|) (-1277 |#2|)) 99 (|has| |#1| (-311)))))
+(((-43 |#1| |#2|) (-10 -7 (-15 -2413 ((-777) |#2|)) (-15 -2976 ((-777) |#2|)) (-15 -4094 ((-777) |#2|)) (-15 -2630 ((-777) |#2|)) (-15 -2840 ((-777) |#2|)) (-15 -1485 ((-650 |#2|))) (-15 -3722 ((-650 |#2|) |#2|)) (-15 -3482 ((-650 |#2|) |#2|)) (-15 -2786 ((-650 |#2|))) (-15 -3342 ((-650 |#2|))) (-15 -3506 ((-650 |#2|))) (-15 -2707 ((-650 |#2|))) (-15 -3134 ((-650 |#2|))) (-15 -3574 ((-650 (-695 |#1|)))) (-15 -2810 ((-650 (-695 |#1|)))) (-15 -2141 ((-650 (-695 |#1|)))) (-15 -3259 ((-650 |#2|))) (IF (|has| |#1| (-311)) (-15 -3827 ((-1277 |#2|) (-1277 |#2|))) |%noBranch|)) (-562) (-423 |#1|)) (T -43))
+((-3827 (*1 *2 *2) (-12 (-5 *2 (-1277 *4)) (-4 *4 (-423 *3)) (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-43 *3 *4)))) (-3259 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2141 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2810 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3574 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3134 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2707 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3506 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3342 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2786 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-3482 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-3722 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-1485 (*1 *2) (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4)) (-4 *4 (-423 *3)))) (-2840 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2630 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-4094 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2976 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))) (-2413 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3)) (-4 *3 (-423 *4)))))
+(-10 -7 (-15 -2413 ((-777) |#2|)) (-15 -2976 ((-777) |#2|)) (-15 -4094 ((-777) |#2|)) (-15 -2630 ((-777) |#2|)) (-15 -2840 ((-777) |#2|)) (-15 -1485 ((-650 |#2|))) (-15 -3722 ((-650 |#2|) |#2|)) (-15 -3482 ((-650 |#2|) |#2|)) (-15 -2786 ((-650 |#2|))) (-15 -3342 ((-650 |#2|))) (-15 -3506 ((-650 |#2|))) (-15 -2707 ((-650 |#2|))) (-15 -3134 ((-650 |#2|))) (-15 -3574 ((-650 (-695 |#1|)))) (-15 -2810 ((-650 (-695 |#1|)))) (-15 -2141 ((-650 (-695 |#1|)))) (-15 -3259 ((-650 |#2|))) (IF (|has| |#1| (-311)) (-15 -3827 ((-1277 |#2|) (-1277 |#2|))) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3635 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-1896 (((-1277 (-695 |#1|)) (-1277 $)) NIL) (((-1277 (-695 |#1|))) 24)) (-2403 (((-1277 $)) 52)) (-3195 (($) NIL T CONST)) (-1587 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL (|has| |#1| (-562)))) (-2434 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-2491 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-3850 ((|#1| $) NIL)) (-3993 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-3498 (((-3 $ "failed") $) NIL (|has| |#1| (-562)))) (-3490 (((-1182 (-959 |#1|))) NIL (|has| |#1| (-368)))) (-2827 (($ $ (-928)) NIL)) (-1563 ((|#1| $) NIL)) (-3286 (((-1182 |#1|) $) NIL (|has| |#1| (-562)))) (-4154 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-2476 (((-1182 |#1|) $) NIL)) (-2546 (((-112)) 99)) (-2322 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) NIL)) (-1929 (((-3 $ "failed") $) 14 (|has| |#1| (-562)))) (-4009 (((-928)) 53)) (-4211 (((-112)) NIL)) (-4234 (($ $ (-928)) NIL)) (-3772 (((-112)) NIL)) (-1745 (((-112)) NIL)) (-4407 (((-112)) 101)) (-4329 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL (|has| |#1| (-562)))) (-3269 (((-3 $ "failed")) NIL (|has| |#1| (-562)))) (-2553 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-3412 ((|#1| $) NIL)) (-3524 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-2480 (((-3 $ "failed") $) NIL (|has| |#1| (-562)))) (-3607 (((-1182 (-959 |#1|))) NIL (|has| |#1| (-368)))) (-4311 (($ $ (-928)) NIL)) (-3879 ((|#1| $) NIL)) (-4292 (((-1182 |#1|) $) NIL (|has| |#1| (-562)))) (-3775 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-2170 (((-1182 |#1|) $) NIL)) (-3100 (((-112)) 98)) (-3989 (((-1168) $) NIL)) (-4015 (((-112)) 106)) (-3058 (((-112)) 105)) (-4203 (((-112)) 107)) (-3580 (((-1129) $) NIL)) (-2876 (((-112)) 100)) (-1942 ((|#1| $ (-570)) 55)) (-3314 (((-1277 |#1|) $ (-1277 $)) 48) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) 28) (((-695 |#1|) (-1277 $)) NIL)) (-1426 (((-1277 |#1|) $) NIL) (($ (-1277 |#1|)) NIL)) (-3978 (((-650 (-959 |#1|)) (-1277 $)) NIL) (((-650 (-959 |#1|))) NIL)) (-3381 (($ $ $) NIL)) (-3762 (((-112)) 95)) (-3802 (((-868) $) 71) (($ (-1277 |#1|)) 22)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) 51)) (-3203 (((-650 (-1277 |#1|))) NIL (|has| |#1| (-562)))) (-3468 (($ $ $ $) NIL)) (-3169 (((-112)) 91)) (-3492 (($ (-695 |#1|) $) 18)) (-3107 (($ $ $) NIL)) (-1352 (((-112)) 97)) (-4298 (((-112)) 92)) (-2557 (((-112)) 90)) (-1862 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 80) (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ (-1151 |#2| |#1|) $) 19)))
+(((-44 |#1| |#2| |#3| |#4|) (-13 (-423 |#1|) (-654 (-1151 |#2| |#1|)) (-10 -8 (-15 -3802 ($ (-1277 |#1|))))) (-368) (-928) (-650 (-1186)) (-1277 (-695 |#1|))) (T -44))
+((-3802 (*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 -3802 ($ (-1277 |#1|)))))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2308 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2701 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1603 (($ $) NIL)) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3040 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4453))) (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (((-112) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3936 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856))))) (-3396 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-1647 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453)))) (-1917 (($ $ $) 33 (|has| $ (-6 -4453)))) (-3671 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453)))) (-1854 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 35 (|has| $ (-6 -4453)))) (-3935 ((|#2| $ |#1| |#2|) 53) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-1244 (-570)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "last" (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453))) (($ $ "rest" $) NIL (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "first" (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "value" (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2688 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2496 (((-3 |#2| "failed") |#1| $) 43)) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3558 (($ $ (-777)) NIL) (($ $) 29)) (-3476 (($ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) 56) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4453))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) NIL) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL)) (-3242 (((-112) $) NIL)) (-4029 (((-570) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (((-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))) (((-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 20 (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452))) (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 20 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-4294 (($ (-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 ((|#1| $) NIL (|has| |#1| (-856))) (((-570) $) 38 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-2270 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3183 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ $) NIL) (($ $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452))) (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2602 ((|#1| $) NIL (|has| |#1| (-856))) (((-570) $) 40 (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453))) (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ $) NIL) (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-3423 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-2404 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-4244 (((-112) $) NIL)) (-3989 (((-1168) $) 49 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-1770 (($ $ (-777)) NIL) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2914 (((-650 |#1|) $) 22)) (-2343 (((-112) |#1| $) NIL)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL) (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-4293 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 |#1|) $) NIL) (((-650 (-570)) $) NIL)) (-1358 (((-112) |#1| $) NIL) (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3546 ((|#2| $) NIL (|has| |#1| (-856))) (($ $ (-777)) NIL) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 27)) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2568 (((-112) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-4049 (((-650 |#2|) $) NIL) (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 19)) (-4283 (((-112) $) 18)) (-2656 (($) 14)) (-1942 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "last") NIL) (($ $ "rest") NIL) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "first") NIL) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $ "value") NIL)) (-3108 (((-570) $ $) NIL)) (-2374 (($) 13) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3651 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-2759 (((-112) $) NIL)) (-4332 (($ $) NIL)) (-3305 (($ $) NIL (|has| $ (-6 -4453)))) (-3853 (((-777) $) NIL)) (-1991 (($ $) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-1319 (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL) (($ $ $) NIL)) (-2585 (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL) (($ (-650 $)) NIL) (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 31) (($ $ $) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-1779 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") |#1| $) 51)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3065 (((-112) $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-856)))) (-2570 (((-777) $) 25 (|has| $ (-6 -4452)))))
(((-45 |#1| |#2|) (-36 |#1| |#2|) (-1109) (-1109)) (T -45))
NIL
(-36 |#1| |#2|)
-((-2359 (((-112) $) 12)) (-1356 (($ (-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 -2359 ((-112) |#1|)) (-15 -1356 (|#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))
+((-3633 (((-112) $) 12)) (-1357 (($ (-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 -3633 ((-112) |#1|)) (-15 -1357 (|#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 -2359 ((-112) |#1|)) (-15 -1356 (|#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|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1956 (($ $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-2359 (((-112) $) 74)) (-3912 (($ |#1| |#2|) 73)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-2130 ((|#2| $) 76)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-2249 ((|#1| $ |#2|) 71)) (-3532 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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 -3633 ((-112) |#1|)) (-15 -1357 (|#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|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1954 (($ $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3633 (((-112) $) 74)) (-3915 (($ |#1| |#2|) 73)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3079 ((|#2| $) 76)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1864 ((|#1| $ |#2|) 71)) (-3132 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1927 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-1915 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-2130 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-2359 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-112)))) (-3912 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-1956 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-2249 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-3122 (*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 -1927 (|t#1| $)) (-15 -1915 ($ $)) (-15 -2130 (|t#2| $)) (-15 -1356 ($ (-1 |t#1| |t#1|) $)) (-15 -2359 ((-112) $)) (-15 -3912 ($ |t#1| |t#2|)) (-15 -1956 ($ $)) (-15 -2249 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-368)) (-15 -3122 ($ $ |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 $ $) -2892 (|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) -2892 (|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 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-2523 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-4045 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-3467 (((-112) $) 9)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3684 (((-650 (-618 $)) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3814 (($ $) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-1538 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-1979 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4380 (((-3 (-618 $) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3216 (((-618 $) $) NIL) (((-570) $) NIL) (((-413 (-570)) $) NIL)) (-2506 (($ $ $) NIL)) (-4196 (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2415 (-695 (-413 (-570)))) (|:| |vec| (-1277 (-413 (-570))))) (-695 $) (-1277 $)) NIL) (((-695 (-413 (-570))) (-695 $)) NIL)) (-3624 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-2481 (($ $) NIL) (($ (-650 $)) NIL)) (-2856 (((-650 (-115)) $) NIL)) (-3756 (((-115) (-115)) NIL)) (-4346 (((-112) $) 11)) (-2110 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4399 (((-1134 (-570) (-618 $)) $) NIL)) (-2923 (($ $ (-570)) NIL)) (-2959 (((-1182 $) (-1182 $) (-618 $)) NIL) (((-1182 $) (-1182 $) (-650 (-618 $))) NIL) (($ $ (-618 $)) NIL) (($ $ (-650 (-618 $))) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4032 (((-1182 $) (-618 $)) NIL (|has| $ (-1058)))) (-1356 (($ (-1 $ $) (-618 $)) NIL)) (-4143 (((-3 (-618 $) "failed") $) NIL)) (-1899 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3748 (((-650 (-618 $)) $) NIL)) (-1365 (($ (-115) $) NIL) (($ (-115) (-650 $)) NIL)) (-3190 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1877 (($ $) NIL)) (-1444 (((-777) $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ (-650 $)) NIL) (($ $ $) NIL)) (-2603 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3273 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1770 (($ $ (-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)) (-2142 (((-777) $) NIL)) (-1941 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3444 (($ $) NIL) (($ $ $) NIL)) (-3547 (($ $ (-777)) NIL) (($ $) NIL)) (-4413 (((-1134 (-570) (-618 $)) $) NIL)) (-2755 (($ $) NIL (|has| $ (-1058)))) (-1425 (((-384) $) NIL) (((-227) $) NIL) (((-171 (-384)) $) NIL)) (-3799 (((-868) $) NIL) (($ (-618 $)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-1134 (-570) (-618 $))) NIL)) (-3499 (((-777)) NIL T CONST)) (-4244 (($ $) NIL) (($ (-650 $)) NIL)) (-1388 (((-112) (-115)) NIL)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) 6 T CONST)) (-1875 (($) 10 T CONST)) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3022 (((-112) $ $) 13)) (-3122 (($ $ $) NIL)) (-3111 (($ $ $) NIL) (($ $) NIL)) (-3101 (($ $ $) 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 -3799 ($ (-1134 (-570) (-618 $)))) (-15 -4399 ((-1134 (-570) (-618 $)) $)) (-15 -4413 ((-1134 (-570) (-618 $)) $)) (-15 -3624 ($ $)) (-15 -2959 ((-1182 $) (-1182 $) (-618 $))) (-15 -2959 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2959 ($ $ (-618 $))) (-15 -2959 ($ $ (-650 (-618 $))))))) (T -48))
-((-3799 (*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)))) (-3624 (*1 *1 *1) (-5 *1 (-48))) (-2959 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-618 (-48))) (-5 *1 (-48)))) (-2959 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-650 (-618 (-48)))) (-5 *1 (-48)))) (-2959 (*1 *1 *1 *2) (-12 (-5 *2 (-618 (-48))) (-5 *1 (-48)))) (-2959 (*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 -3799 ($ (-1134 (-570) (-618 $)))) (-15 -4399 ((-1134 (-570) (-618 $)) $)) (-15 -4413 ((-1134 (-570) (-618 $)) $)) (-15 -3624 ($ $)) (-15 -2959 ((-1182 $) (-1182 $) (-618 $))) (-15 -2959 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2959 ($ $ (-618 $))) (-15 -2959 ($ $ (-650 (-618 $))))))
-((-2558 (((-112) $ $) NIL)) (-3822 (((-650 (-512)) $) 17)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 7)) (-3613 (((-1191) $) 18)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-49) (-13 (-1109) (-10 -8 (-15 -3822 ((-650 (-512)) $)) (-15 -3613 ((-1191) $))))) (T -49))
-((-3822 (*1 *2 *1) (-12 (-5 *2 (-650 (-512))) (-5 *1 (-49)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-49)))))
-(-13 (-1109) (-10 -8 (-15 -3822 ((-650 (-512)) $)) (-15 -3613 ((-1191) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 85)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-3936 (((-112) $) 30)) (-4380 (((-3 |#1| "failed") $) 33)) (-3216 ((|#1| $) 34)) (-1956 (($ $) 40)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1927 ((|#1| $) 31)) (-4403 (($ $) 74)) (-1988 (((-1168) $) NIL)) (-2675 (((-112) $) 43)) (-3577 (((-1129) $) NIL)) (-2466 (($ (-777)) 72)) (-4387 (($ (-650 (-570))) 73)) (-2130 (((-777) $) 44)) (-3799 (((-868) $) 91) (($ (-570)) 69) (($ |#1|) 67)) (-2249 ((|#1| $ $) 28)) (-3499 (((-777)) 71 T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 45 T CONST)) (-1875 (($) 17 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 64)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 65) (($ |#1| $) 58)))
-(((-50 |#1| |#2|) (-13 (-626 |#1|) (-1047 |#1|) (-10 -8 (-15 -1927 (|#1| $)) (-15 -4403 ($ $)) (-15 -1956 ($ $)) (-15 -2249 (|#1| $ $)) (-15 -2466 ($ (-777))) (-15 -4387 ($ (-650 (-570)))) (-15 -2675 ((-112) $)) (-15 -3936 ((-112) $)) (-15 -2130 ((-777) $)) (-15 -1356 ($ (-1 |#1| |#1|) $)))) (-1058) (-650 (-1186))) (T -50))
-((-1927 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186))))) (-4403 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))))) (-1956 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))))) (-2249 (*1 *2 *1 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186))))) (-2466 (*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))))) (-2675 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-3936 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-2130 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-1356 (*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 -1927 (|#1| $)) (-15 -4403 ($ $)) (-15 -1956 ($ $)) (-15 -2249 (|#1| $ $)) (-15 -2466 ($ (-777))) (-15 -4387 ($ (-650 (-570)))) (-15 -2675 ((-112) $)) (-15 -3936 ((-112) $)) (-15 -2130 ((-777) $)) (-15 -1356 ($ (-1 |#1| |#1|) $))))
-((-3936 (((-112) (-52)) 18)) (-4380 (((-3 |#1| "failed") (-52)) 20)) (-3216 ((|#1| (-52)) 21)) (-3799 (((-52) |#1|) 14)))
-(((-51 |#1|) (-10 -7 (-15 -3799 ((-52) |#1|)) (-15 -4380 ((-3 |#1| "failed") (-52))) (-15 -3936 ((-112) (-52))) (-15 -3216 (|#1| (-52)))) (-1227)) (T -51))
-((-3216 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227)))) (-3936 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1227)))) (-4380 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227)))) (-3799 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1227)))))
-(-10 -7 (-15 -3799 ((-52) |#1|)) (-15 -4380 ((-3 |#1| "failed") (-52))) (-15 -3936 ((-112) (-52))) (-15 -3216 (|#1| (-52))))
-((-2558 (((-112) $ $) NIL)) (-4297 (((-780) $) 8)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3308 (((-1113) $) 10)) (-3799 (((-868) $) 15)) (-2335 (((-112) $ $) NIL)) (-4285 (($ (-1113) (-780)) 16)) (-3022 (((-112) $ $) 12)))
-(((-52) (-13 (-1109) (-10 -8 (-15 -4285 ($ (-1113) (-780))) (-15 -3308 ((-1113) $)) (-15 -4297 ((-780) $))))) (T -52))
-((-4285 (*1 *1 *2 *3) (-12 (-5 *2 (-1113)) (-5 *3 (-780)) (-5 *1 (-52)))) (-3308 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-52)))) (-4297 (*1 *2 *1) (-12 (-5 *2 (-780)) (-5 *1 (-52)))))
-(-13 (-1109) (-10 -8 (-15 -4285 ($ (-1113) (-780))) (-15 -3308 ((-1113) $)) (-15 -4297 ((-780) $))))
-((-3489 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
-(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -3489 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1058) (-654 |#1|) (-858 |#1|)) (T -53))
-((-3489 (*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 -3489 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
-((-3055 ((|#3| |#3| (-650 (-1186))) 44)) (-1349 ((|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928)) 32) ((|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|) 31)))
-(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -1349 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|)) (-15 -1349 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928))) (-15 -3055 (|#3| |#3| (-650 (-1186))))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -54))
-((-3055 (*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)))))) (-1349 (*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)))) (-1349 (*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 -1349 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|)) (-15 -1349 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928))) (-15 -3055 (|#3| |#3| (-650 (-1186)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 14)) (-4380 (((-3 (-777) "failed") $) 34)) (-3216 (((-777) $) NIL)) (-4346 (((-112) $) 16)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) 18)) (-3799 (((-868) $) 23) (($ (-777)) 29)) (-2335 (((-112) $ $) NIL)) (-1413 (($) 11 T CONST)) (-3022 (((-112) $ $) 20)))
-(((-55) (-13 (-1109) (-1047 (-777)) (-10 -8 (-15 -1413 ($) -3725) (-15 -3467 ((-112) $)) (-15 -4346 ((-112) $))))) (T -55))
-((-1413 (*1 *1) (-5 *1 (-55))) (-3467 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))) (-4346 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))))
-(-13 (-1109) (-1047 (-777)) (-10 -8 (-15 -1413 ($) -3725) (-15 -3467 ((-112) $)) (-15 -4346 ((-112) $))))
-((-4302 (((-112) $ (-777)) 27)) (-4419 (($ $ (-570) |#3|) 66)) (-2361 (($ $ (-570) |#4|) 70)) (-2219 ((|#3| $ (-570)) 79)) (-3627 (((-650 |#2|) $) 47)) (-2929 (((-112) $ (-777)) 31)) (-4108 (((-112) |#2| $) 74)) (-1502 (($ (-1 |#2| |#2|) $) 55)) (-1356 (($ (-1 |#2| |#2|) $) 54) (($ (-1 |#2| |#2| |#2|) $ $) 58) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 62)) (-3231 (((-112) $ (-777)) 29)) (-2147 (($ $ |#2|) 52)) (-3642 (((-112) (-1 (-112) |#2|) $) 21)) (-1941 ((|#2| $ (-570) (-570)) NIL) ((|#2| $ (-570) (-570) |#2|) 35)) (-3584 (((-777) (-1 (-112) |#2|) $) 41) (((-777) |#2| $) 76)) (-3951 (($ $) 51)) (-1508 ((|#4| $ (-570)) 82)) (-3799 (((-868) $) 88)) (-4371 (((-112) (-1 (-112) |#2|) $) 20)) (-3022 (((-112) $ $) 73)) (-2569 (((-777) $) 32)))
-(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1356 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1502 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2361 (|#1| |#1| (-570) |#4|)) (-15 -4419 (|#1| |#1| (-570) |#3|)) (-15 -3627 ((-650 |#2|) |#1|)) (-15 -1508 (|#4| |#1| (-570))) (-15 -2219 (|#3| |#1| (-570))) (-15 -1941 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570) (-570))) (-15 -2147 (|#1| |#1| |#2|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -4108 ((-112) |#2| |#1|)) (-15 -3584 ((-777) |#2| |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2569 ((-777) |#1|)) (-15 -4302 ((-112) |#1| (-777))) (-15 -2929 ((-112) |#1| (-777))) (-15 -3231 ((-112) |#1| (-777))) (-15 -3951 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1227) (-378 |#2|) (-378 |#2|)) (T -56))
-NIL
-(-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1356 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1502 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2361 (|#1| |#1| (-570) |#4|)) (-15 -4419 (|#1| |#1| (-570) |#3|)) (-15 -3627 ((-650 |#2|) |#1|)) (-15 -1508 (|#4| |#1| (-570))) (-15 -2219 (|#3| |#1| (-570))) (-15 -1941 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570) (-570))) (-15 -2147 (|#1| |#1| |#2|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -4108 ((-112) |#2| |#1|)) (-15 -3584 ((-777) |#2| |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2569 ((-777) |#1|)) (-15 -4302 ((-112) |#1| (-777))) (-15 -2929 ((-112) |#1| (-777))) (-15 -3231 ((-112) |#1| (-777))) (-15 -3951 (|#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#1| $ (-570) (-570) |#1|) 45)) (-4419 (($ $ (-570) |#2|) 43)) (-2361 (($ $ (-570) |#3|) 42)) (-1705 (($) 7 T CONST)) (-2219 ((|#2| $ (-570)) 47)) (-1517 ((|#1| $ (-570) (-570) |#1|) 44)) (-3820 ((|#1| $ (-570) (-570)) 49)) (-3627 (((-650 |#1|) $) 31)) (-3316 (((-777) $) 52)) (-4291 (($ (-777) (-777) |#1|) 58)) (-3328 (((-777) $) 51)) (-2929 (((-112) $ (-777)) 9)) (-4133 (((-570) $) 56)) (-2877 (((-570) $) 54)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1552 (((-570) $) 55)) (-1732 (((-570) $) 53)) (-1502 (($ (-1 |#1| |#1|) $) 35)) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2147 (($ $ |#1|) 57)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) (-570)) 50) ((|#1| $ (-570) (-570) |#1|) 48)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1508 ((|#3| $ (-570)) 46)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-1928 (*1 *2 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-1914 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-3079 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-3633 (*1 *2 *1) (-12 (-4 *1 (-47 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-112)))) (-3915 (*1 *1 *2 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-1954 (*1 *1 *1) (-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-1864 (*1 *2 *1 *3) (-12 (-4 *1 (-47 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-3125 (*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 -1928 (|t#1| $)) (-15 -1914 ($ $)) (-15 -3079 (|t#2| $)) (-15 -1357 ($ (-1 |t#1| |t#1|) $)) (-15 -3633 ((-112) $)) (-15 -3915 ($ |t#1| |t#2|)) (-15 -1954 ($ $)) (-15 -1864 (|t#1| $ |t#2|)) (IF (|has| |t#1| (-368)) (-15 -3125 ($ $ |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 $ $) -2895 (|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) -2895 (|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 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
+((-2560 (((-112) $ $) NIL)) (-1626 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-4316 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-3721 (((-112) $) 9)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-3687 (((-650 (-618 $)) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4338 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3817 (($ $) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2126 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-3896 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4383 (((-3 (-618 $) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3220 (((-618 $) $) NIL) (((-570) $) NIL) (((-413 (-570)) $) NIL)) (-2504 (($ $ $) NIL)) (-2179 (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2990 (-695 (-413 (-570)))) (|:| |vec| (-1277 (-413 (-570))))) (-695 $) (-1277 $)) NIL) (((-695 (-413 (-570))) (-695 $)) NIL)) (-3627 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2486 (($ $) NIL) (($ (-650 $)) NIL)) (-1705 (((-650 (-115)) $) NIL)) (-3759 (((-115) (-115)) NIL)) (-4139 (((-112) $) 11)) (-2888 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4402 (((-1134 (-570) (-618 $)) $) NIL)) (-2252 (($ $ (-570)) NIL)) (-4399 (((-1182 $) (-1182 $) (-618 $)) NIL) (((-1182 $) (-1182 $) (-650 (-618 $))) NIL) (($ $ (-618 $)) NIL) (($ $ (-650 (-618 $))) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4189 (((-1182 $) (-618 $)) NIL (|has| $ (-1058)))) (-1357 (($ (-1 $ $) (-618 $)) NIL)) (-2907 (((-3 (-618 $) "failed") $) NIL)) (-1901 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3751 (((-650 (-618 $)) $) NIL)) (-1366 (($ (-115) $) NIL) (($ (-115) (-650 $)) NIL)) (-3006 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1878 (($ $) NIL)) (-1445 (((-777) $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4224 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4418 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1771 (($ $ (-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)) (-2006 (((-777) $) NIL)) (-1942 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3515 (($ $) NIL) (($ $ $) NIL)) (-3550 (($ $ (-777)) NIL) (($ $) NIL)) (-4416 (((-1134 (-570) (-618 $)) $) NIL)) (-2075 (($ $) NIL (|has| $ (-1058)))) (-1426 (((-384) $) NIL) (((-227) $) NIL) (((-171 (-384)) $) NIL)) (-3802 (((-868) $) NIL) (($ (-618 $)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-1134 (-570) (-618 $))) NIL)) (-2851 (((-777)) NIL T CONST)) (-4246 (($ $) NIL) (($ (-650 $)) NIL)) (-3200 (((-112) (-115)) NIL)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) 6 T CONST)) (-1876 (($) 10 T CONST)) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3025 (((-112) $ $) 13)) (-3125 (($ $ $) NIL)) (-3114 (($ $ $) NIL) (($ $) NIL)) (-3104 (($ $ $) 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 -3802 ($ (-1134 (-570) (-618 $)))) (-15 -4402 ((-1134 (-570) (-618 $)) $)) (-15 -4416 ((-1134 (-570) (-618 $)) $)) (-15 -3627 ($ $)) (-15 -4399 ((-1182 $) (-1182 $) (-618 $))) (-15 -4399 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -4399 ($ $ (-618 $))) (-15 -4399 ($ $ (-650 (-618 $))))))) (T -48))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-4402 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-4416 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48)))) (-3627 (*1 *1 *1) (-5 *1 (-48))) (-4399 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-618 (-48))) (-5 *1 (-48)))) (-4399 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-48))) (-5 *3 (-650 (-618 (-48)))) (-5 *1 (-48)))) (-4399 (*1 *1 *1 *2) (-12 (-5 *2 (-618 (-48))) (-5 *1 (-48)))) (-4399 (*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 -3802 ($ (-1134 (-570) (-618 $)))) (-15 -4402 ((-1134 (-570) (-618 $)) $)) (-15 -4416 ((-1134 (-570) (-618 $)) $)) (-15 -3627 ($ $)) (-15 -4399 ((-1182 $) (-1182 $) (-618 $))) (-15 -4399 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -4399 ($ $ (-618 $))) (-15 -4399 ($ $ (-650 (-618 $))))))
+((-2560 (((-112) $ $) NIL)) (-3825 (((-650 (-512)) $) 17)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 7)) (-3616 (((-1191) $) 18)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-49) (-13 (-1109) (-10 -8 (-15 -3825 ((-650 (-512)) $)) (-15 -3616 ((-1191) $))))) (T -49))
+((-3825 (*1 *2 *1) (-12 (-5 *2 (-650 (-512))) (-5 *1 (-49)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-49)))))
+(-13 (-1109) (-10 -8 (-15 -3825 ((-650 (-512)) $)) (-15 -3616 ((-1191) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 85)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-2635 (((-112) $) 30)) (-4383 (((-3 |#1| "failed") $) 33)) (-3220 ((|#1| $) 34)) (-1954 (($ $) 40)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-1928 ((|#1| $) 31)) (-3480 (($ $) 74)) (-3989 (((-1168) $) NIL)) (-3725 (((-112) $) 43)) (-3580 (((-1129) $) NIL)) (-2467 (($ (-777)) 72)) (-4389 (($ (-650 (-570))) 73)) (-3079 (((-777) $) 44)) (-3802 (((-868) $) 91) (($ (-570)) 69) (($ |#1|) 67)) (-1864 ((|#1| $ $) 28)) (-2851 (((-777)) 71 T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 45 T CONST)) (-1876 (($) 17 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 64)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 65) (($ |#1| $) 58)))
+(((-50 |#1| |#2|) (-13 (-626 |#1|) (-1047 |#1|) (-10 -8 (-15 -1928 (|#1| $)) (-15 -3480 ($ $)) (-15 -1954 ($ $)) (-15 -1864 (|#1| $ $)) (-15 -2467 ($ (-777))) (-15 -4389 ($ (-650 (-570)))) (-15 -3725 ((-112) $)) (-15 -2635 ((-112) $)) (-15 -3079 ((-777) $)) (-15 -1357 ($ (-1 |#1| |#1|) $)))) (-1058) (-650 (-1186))) (T -50))
+((-1928 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186))))) (-3480 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))))) (-1954 (*1 *1 *1) (-12 (-5 *1 (-50 *2 *3)) (-4 *2 (-1058)) (-14 *3 (-650 (-1186))))) (-1864 (*1 *2 *1 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-50 *2 *3)) (-14 *3 (-650 (-1186))))) (-2467 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-4389 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-3725 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-2635 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-3079 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058)) (-14 *4 (-650 (-1186))))) (-1357 (*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 -1928 (|#1| $)) (-15 -3480 ($ $)) (-15 -1954 ($ $)) (-15 -1864 (|#1| $ $)) (-15 -2467 ($ (-777))) (-15 -4389 ($ (-650 (-570)))) (-15 -3725 ((-112) $)) (-15 -2635 ((-112) $)) (-15 -3079 ((-777) $)) (-15 -1357 ($ (-1 |#1| |#1|) $))))
+((-2635 (((-112) (-52)) 18)) (-4383 (((-3 |#1| "failed") (-52)) 20)) (-3220 ((|#1| (-52)) 21)) (-3802 (((-52) |#1|) 14)))
+(((-51 |#1|) (-10 -7 (-15 -3802 ((-52) |#1|)) (-15 -4383 ((-3 |#1| "failed") (-52))) (-15 -2635 ((-112) (-52))) (-15 -3220 (|#1| (-52)))) (-1227)) (T -51))
+((-3220 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227)))) (-2635 (*1 *2 *3) (-12 (-5 *3 (-52)) (-5 *2 (-112)) (-5 *1 (-51 *4)) (-4 *4 (-1227)))) (-4383 (*1 *2 *3) (|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227)))) (-3802 (*1 *2 *3) (-12 (-5 *2 (-52)) (-5 *1 (-51 *3)) (-4 *3 (-1227)))))
+(-10 -7 (-15 -3802 ((-52) |#1|)) (-15 -4383 ((-3 |#1| "failed") (-52))) (-15 -2635 ((-112) (-52))) (-15 -3220 (|#1| (-52))))
+((-2560 (((-112) $ $) NIL)) (-4300 (((-780) $) 8)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3311 (((-1113) $) 10)) (-3802 (((-868) $) 15)) (-3359 (((-112) $ $) NIL)) (-4288 (($ (-1113) (-780)) 16)) (-3025 (((-112) $ $) 12)))
+(((-52) (-13 (-1109) (-10 -8 (-15 -4288 ($ (-1113) (-780))) (-15 -3311 ((-1113) $)) (-15 -4300 ((-780) $))))) (T -52))
+((-4288 (*1 *1 *2 *3) (-12 (-5 *2 (-1113)) (-5 *3 (-780)) (-5 *1 (-52)))) (-3311 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-52)))) (-4300 (*1 *2 *1) (-12 (-5 *2 (-780)) (-5 *1 (-52)))))
+(-13 (-1109) (-10 -8 (-15 -4288 ($ (-1113) (-780))) (-15 -3311 ((-1113) $)) (-15 -4300 ((-780) $))))
+((-3492 ((|#2| |#3| (-1 |#2| |#2|) |#2|) 16)))
+(((-53 |#1| |#2| |#3|) (-10 -7 (-15 -3492 (|#2| |#3| (-1 |#2| |#2|) |#2|))) (-1058) (-654 |#1|) (-858 |#1|)) (T -53))
+((-3492 (*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 -3492 (|#2| |#3| (-1 |#2| |#2|) |#2|)))
+((-4123 ((|#3| |#3| (-650 (-1186))) 44)) (-2038 ((|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928)) 32) ((|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|) 31)))
+(((-54 |#1| |#2| |#3|) (-10 -7 (-15 -2038 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|)) (-15 -2038 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928))) (-15 -4123 (|#3| |#3| (-650 (-1186))))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -54))
+((-4123 (*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)))))) (-2038 (*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)))) (-2038 (*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 -2038 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3|)) (-15 -2038 (|#3| (-650 (-1085 |#1| |#2| |#3|)) |#3| (-928))) (-15 -4123 (|#3| |#3| (-650 (-1186)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 14)) (-4383 (((-3 (-777) "failed") $) 34)) (-3220 (((-777) $) NIL)) (-4139 (((-112) $) 16)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) 18)) (-3802 (((-868) $) 23) (($ (-777)) 29)) (-3359 (((-112) $ $) NIL)) (-1465 (($) 11 T CONST)) (-3025 (((-112) $ $) 20)))
+(((-55) (-13 (-1109) (-1047 (-777)) (-10 -8 (-15 -1465 ($) -3728) (-15 -3721 ((-112) $)) (-15 -4139 ((-112) $))))) (T -55))
+((-1465 (*1 *1) (-5 *1 (-55))) (-3721 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))) (-4139 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-55)))))
+(-13 (-1109) (-1047 (-777)) (-10 -8 (-15 -1465 ($) -3728) (-15 -3721 ((-112) $)) (-15 -4139 ((-112) $))))
+((-1932 (((-112) $ (-777)) 27)) (-3605 (($ $ (-570) |#3|) 66)) (-3650 (($ $ (-570) |#4|) 70)) (-1494 ((|#3| $ (-570)) 79)) (-3630 (((-650 |#2|) $) 47)) (-2317 (((-112) $ (-777)) 31)) (-3767 (((-112) |#2| $) 74)) (-1503 (($ (-1 |#2| |#2|) $) 55)) (-1357 (($ (-1 |#2| |#2|) $) 54) (($ (-1 |#2| |#2| |#2|) $ $) 58) (($ (-1 |#2| |#2| |#2|) $ $ |#2|) 62)) (-2193 (((-112) $ (-777)) 29)) (-2061 (($ $ |#2|) 52)) (-1627 (((-112) (-1 (-112) |#2|) $) 21)) (-1942 ((|#2| $ (-570) (-570)) NIL) ((|#2| $ (-570) (-570) |#2|) 35)) (-3587 (((-777) (-1 (-112) |#2|) $) 41) (((-777) |#2| $) 76)) (-3954 (($ $) 51)) (-3057 ((|#4| $ (-570)) 82)) (-3802 (((-868) $) 88)) (-4379 (((-112) (-1 (-112) |#2|) $) 20)) (-3025 (((-112) $ $) 73)) (-2570 (((-777) $) 32)))
+(((-56 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1357 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1503 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3650 (|#1| |#1| (-570) |#4|)) (-15 -3605 (|#1| |#1| (-570) |#3|)) (-15 -3630 ((-650 |#2|) |#1|)) (-15 -3057 (|#4| |#1| (-570))) (-15 -1494 (|#3| |#1| (-570))) (-15 -1942 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570) (-570))) (-15 -2061 (|#1| |#1| |#2|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -3767 ((-112) |#2| |#1|)) (-15 -3587 ((-777) |#2| |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2570 ((-777) |#1|)) (-15 -1932 ((-112) |#1| (-777))) (-15 -2317 ((-112) |#1| (-777))) (-15 -2193 ((-112) |#1| (-777))) (-15 -3954 (|#1| |#1|))) (-57 |#2| |#3| |#4|) (-1227) (-378 |#2|) (-378 |#2|)) (T -56))
+NIL
+(-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1| |#2|)) (-15 -1357 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1503 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3650 (|#1| |#1| (-570) |#4|)) (-15 -3605 (|#1| |#1| (-570) |#3|)) (-15 -3630 ((-650 |#2|) |#1|)) (-15 -3057 (|#4| |#1| (-570))) (-15 -1494 (|#3| |#1| (-570))) (-15 -1942 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570) (-570))) (-15 -2061 (|#1| |#1| |#2|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -3767 ((-112) |#2| |#1|)) (-15 -3587 ((-777) |#2| |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2570 ((-777) |#1|)) (-15 -1932 ((-112) |#1| (-777))) (-15 -2317 ((-112) |#1| (-777))) (-15 -2193 ((-112) |#1| (-777))) (-15 -3954 (|#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#1| $ (-570) (-570) |#1|) 45)) (-3605 (($ $ (-570) |#2|) 43)) (-3650 (($ $ (-570) |#3|) 42)) (-3195 (($) 7 T CONST)) (-1494 ((|#2| $ (-570)) 47)) (-1518 ((|#1| $ (-570) (-570) |#1|) 44)) (-3824 ((|#1| $ (-570) (-570)) 49)) (-3630 (((-650 |#1|) $) 31)) (-3318 (((-777) $) 52)) (-4294 (($ (-777) (-777) |#1|) 58)) (-3330 (((-777) $) 51)) (-2317 (((-112) $ (-777)) 9)) (-2822 (((-570) $) 56)) (-1943 (((-570) $) 54)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2278 (((-570) $) 55)) (-3461 (((-570) $) 53)) (-1503 (($ (-1 |#1| |#1|) $) 35)) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2061 (($ $ |#1|) 57)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) (-570)) 50) ((|#1| $ (-570) (-570) |#1|) 48)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3057 ((|#3| $ (-570)) 46)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-57 |#1| |#2| |#3|) (-141) (-1227) (-378 |t#1|) (-378 |t#1|)) (T -57))
-((-1356 (*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)))) (-4291 (*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)))) (-2147 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1227)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-4133 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-1552 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-2877 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-1732 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-3316 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-777)))) (-3328 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-777)))) (-1941 (*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)))) (-3820 (*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)))) (-1941 (*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)))) (-2219 (*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)))) (-1508 (*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)))) (-3627 (*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)))) (-3932 (*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)))) (-1517 (*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)))) (-4419 (*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)))) (-2361 (*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)))) (-1502 (*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)))) (-1356 (*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)))) (-1356 (*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 -4291 ($ (-777) (-777) |t#1|)) (-15 -2147 ($ $ |t#1|)) (-15 -4133 ((-570) $)) (-15 -1552 ((-570) $)) (-15 -2877 ((-570) $)) (-15 -1732 ((-570) $)) (-15 -3316 ((-777) $)) (-15 -3328 ((-777) $)) (-15 -1941 (|t#1| $ (-570) (-570))) (-15 -3820 (|t#1| $ (-570) (-570))) (-15 -1941 (|t#1| $ (-570) (-570) |t#1|)) (-15 -2219 (|t#2| $ (-570))) (-15 -1508 (|t#3| $ (-570))) (-15 -3627 ((-650 |t#1|) $)) (-15 -3932 (|t#1| $ (-570) (-570) |t#1|)) (-15 -1517 (|t#1| $ (-570) (-570) |t#1|)) (-15 -4419 ($ $ (-570) |t#2|)) (-15 -2361 ($ $ (-570) |t#3|)) (-15 -1356 ($ (-1 |t#1| |t#1|) $)) (-15 -1502 ($ (-1 |t#1| |t#1|) $)) (-15 -1356 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1356 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3482 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-3624 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-1356 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
-(((-58 |#1| |#2|) (-10 -7 (-15 -3482 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3624 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1356 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1227) (-1227)) (T -58))
-((-1356 (*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)))) (-3624 (*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)))) (-3482 (*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 -3482 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3624 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1356 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-4027 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1800 (($ (-650 |#1|)) 11) (($ (-777) |#1|) 14)) (-4291 (($ (-777) |#1|) 13)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) NIL (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 10)) (-2584 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -1800 ($ (-650 |#1|))) (-15 -1800 ($ (-777) |#1|)))) (-1227)) (T -59))
-((-1800 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-59 *3)))) (-1800 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-59 *3)) (-4 *3 (-1227)))))
-(-13 (-19 |#1|) (-10 -8 (-15 -1800 ($ (-650 |#1|))) (-15 -1800 ($ (-777) |#1|))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) (-570) |#1|) NIL)) (-4419 (($ $ (-570) (-59 |#1|)) NIL)) (-2361 (($ $ (-570) (-59 |#1|)) NIL)) (-1705 (($) NIL T CONST)) (-2219 (((-59 |#1|) $ (-570)) NIL)) (-1517 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3820 ((|#1| $ (-570) (-570)) NIL)) (-3627 (((-650 |#1|) $) NIL)) (-3316 (((-777) $) NIL)) (-4291 (($ (-777) (-777) |#1|) NIL)) (-3328 (((-777) $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-4133 (((-570) $) NIL)) (-2877 (((-570) $) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1552 (((-570) $) NIL)) (-1732 (((-570) $) NIL)) (-1502 (($ (-1 |#1| |#1|) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2147 (($ $ |#1|) NIL)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-1508 (((-59 |#1|) $ (-570)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-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)))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 124)) (-3799 (((-868) $) 118) (($ (-650 (-334))) 103) (($ (-334)) 97) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 101) (($ (-1277 (-344 (-3811 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3811) (-705)))) 31)))
-(((-61 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3811) (-705))))))) (-1186)) (T -61))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3811) (-705)))) (-5 *1 (-61 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3811) (-705)))))))
-((-3396 (((-1282) $) 54) (((-1282)) 55)) (-3799 (((-868) $) 51)))
-(((-62 |#1|) (-13 (-401) (-10 -7 (-15 -3396 ((-1282))))) (-1186)) (T -62))
-((-3396 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-62 *3)) (-14 *3 (-1186)))))
-(-13 (-401) (-10 -7 (-15 -3396 ((-1282)))))
-((-4380 (((-3 $ "failed") (-1277 (-320 (-384)))) 150) (((-3 $ "failed") (-1277 (-320 (-570)))) 140) (((-3 $ "failed") (-1277 (-959 (-384)))) 170) (((-3 $ "failed") (-1277 (-959 (-570)))) 160) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 129) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 117)) (-3216 (($ (-1277 (-320 (-384)))) 146) (($ (-1277 (-320 (-570)))) 136) (($ (-1277 (-959 (-384)))) 166) (($ (-1277 (-959 (-570)))) 156) (($ (-1277 (-413 (-959 (-384))))) 125) (($ (-1277 (-413 (-959 (-570))))) 110)) (-3396 (((-1282) $) 103)) (-3799 (((-868) $) 97) (($ (-650 (-334))) 30) (($ (-334)) 35) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 33) (($ (-1277 (-344 (-3811) (-3811 (QUOTE XC)) (-705)))) 95)))
-(((-63 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811) (-3811 (QUOTE XC)) (-705))))))) (-1186)) (T -63))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811) (-3811 (QUOTE XC)) (-705)))) (-5 *1 (-63 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811) (-3811 (QUOTE XC)) (-705)))))))
-((-4380 (((-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)) (-3216 (($ (-320 (-384))) 39) (($ (-320 (-570))) 44) (($ (-959 (-384))) 48) (($ (-959 (-570))) 52) (($ (-413 (-959 (-384)))) 34) (($ (-413 (-959 (-570)))) 26)) (-3396 (((-1282) $) 76)) (-3799 (((-868) $) 69) (($ (-650 (-334))) 61) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 64) (($ (-344 (-3811 (QUOTE X)) (-3811) (-705))) 25)))
-(((-64 |#1|) (-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811 (QUOTE X)) (-3811) (-705)))))) (-1186)) (T -64))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-344 (-3811 (QUOTE X)) (-3811) (-705))) (-5 *1 (-64 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811 (QUOTE X)) (-3811) (-705))))))
-((-4380 (((-3 $ "failed") (-695 (-320 (-384)))) 111) (((-3 $ "failed") (-695 (-320 (-570)))) 99) (((-3 $ "failed") (-695 (-959 (-384)))) 133) (((-3 $ "failed") (-695 (-959 (-570)))) 122) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 87) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 73)) (-3216 (($ (-695 (-320 (-384)))) 107) (($ (-695 (-320 (-570)))) 95) (($ (-695 (-959 (-384)))) 129) (($ (-695 (-959 (-570)))) 118) (($ (-695 (-413 (-959 (-384))))) 83) (($ (-695 (-413 (-959 (-570))))) 66)) (-3396 (((-1282) $) 141)) (-3799 (((-868) $) 135) (($ (-650 (-334))) 29) (($ (-334)) 34) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 32) (($ (-695 (-344 (-3811) (-3811 (QUOTE X) (QUOTE HESS)) (-705)))) 56)))
-(((-65 |#1|) (-13 (-389) (-622 (-695 (-344 (-3811) (-3811 (QUOTE X) (QUOTE HESS)) (-705))))) (-1186)) (T -65))
-NIL
-(-13 (-389) (-622 (-695 (-344 (-3811) (-3811 (QUOTE X) (QUOTE HESS)) (-705)))))
-((-4380 (((-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)) (-3216 (($ (-320 (-384))) 58) (($ (-320 (-570))) 63) (($ (-959 (-384))) 67) (($ (-959 (-570))) 71) (($ (-413 (-959 (-384)))) 53) (($ (-413 (-959 (-570)))) 45)) (-3396 (((-1282) $) 82)) (-3799 (((-868) $) 76) (($ (-650 (-334))) 29) (($ (-334)) 34) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 32) (($ (-344 (-3811) (-3811 (QUOTE XC)) (-705))) 40)))
-(((-66 |#1|) (-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811) (-3811 (QUOTE XC)) (-705)))))) (-1186)) (T -66))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-344 (-3811) (-3811 (QUOTE XC)) (-705))) (-5 *1 (-66 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811) (-3811 (QUOTE XC)) (-705))))))
-((-3396 (((-1282) $) 65)) (-3799 (((-868) $) 59) (($ (-695 (-705))) 51) (($ (-650 (-334))) 50) (($ (-334)) 57) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 55)))
+((-1357 (*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)))) (-4294 (*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)))) (-2061 (*1 *1 *1 *2) (-12 (-4 *1 (-57 *2 *3 *4)) (-4 *2 (-1227)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2822 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-2278 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-1943 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-3461 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-570)))) (-3318 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-777)))) (-3330 (*1 *2 *1) (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-777)))) (-1942 (*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)))) (-3824 (*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)))) (-1942 (*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)))) (-1494 (*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)))) (-3057 (*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)))) (-3630 (*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)))) (-3935 (*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)))) (-1518 (*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)))) (-3605 (*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)))) (-3650 (*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)))) (-1503 (*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)))) (-1357 (*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)))) (-1357 (*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 -4453) (-6 -4452) (-15 -4294 ($ (-777) (-777) |t#1|)) (-15 -2061 ($ $ |t#1|)) (-15 -2822 ((-570) $)) (-15 -2278 ((-570) $)) (-15 -1943 ((-570) $)) (-15 -3461 ((-570) $)) (-15 -3318 ((-777) $)) (-15 -3330 ((-777) $)) (-15 -1942 (|t#1| $ (-570) (-570))) (-15 -3824 (|t#1| $ (-570) (-570))) (-15 -1942 (|t#1| $ (-570) (-570) |t#1|)) (-15 -1494 (|t#2| $ (-570))) (-15 -3057 (|t#3| $ (-570))) (-15 -3630 ((-650 |t#1|) $)) (-15 -3935 (|t#1| $ (-570) (-570) |t#1|)) (-15 -1518 (|t#1| $ (-570) (-570) |t#1|)) (-15 -3605 ($ $ (-570) |t#2|)) (-15 -3650 ($ $ (-570) |t#3|)) (-15 -1357 ($ (-1 |t#1| |t#1|) $)) (-15 -1503 ($ (-1 |t#1| |t#1|) $)) (-15 -1357 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1357 ($ (-1 |t#1| |t#1| |t#1|) $ $ |t#1|))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-2677 (((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 16)) (-3627 ((|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|) 18)) (-1357 (((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)) 13)))
+(((-58 |#1| |#2|) (-10 -7 (-15 -2677 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3627 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1357 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|)))) (-1227) (-1227)) (T -58))
+((-1357 (*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)))) (-3627 (*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)))) (-2677 (*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 -2677 ((-59 |#2|) (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -3627 (|#2| (-1 |#2| |#1| |#2|) (-59 |#1|) |#2|)) (-15 -1357 ((-59 |#2|) (-1 |#2| |#1|) (-59 |#1|))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-4029 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2849 (($ (-650 |#1|)) 11) (($ (-777) |#1|) 14)) (-4294 (($ (-777) |#1|) 13)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) NIL (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 10)) (-2585 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-59 |#1|) (-13 (-19 |#1|) (-10 -8 (-15 -2849 ($ (-650 |#1|))) (-15 -2849 ($ (-777) |#1|)))) (-1227)) (T -59))
+((-2849 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-59 *3)))) (-2849 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-59 *3)) (-4 *3 (-1227)))))
+(-13 (-19 |#1|) (-10 -8 (-15 -2849 ($ (-650 |#1|))) (-15 -2849 ($ (-777) |#1|))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3605 (($ $ (-570) (-59 |#1|)) NIL)) (-3650 (($ $ (-570) (-59 |#1|)) NIL)) (-3195 (($) NIL T CONST)) (-1494 (((-59 |#1|) $ (-570)) NIL)) (-1518 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3824 ((|#1| $ (-570) (-570)) NIL)) (-3630 (((-650 |#1|) $) NIL)) (-3318 (((-777) $) NIL)) (-4294 (($ (-777) (-777) |#1|) NIL)) (-3330 (((-777) $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2822 (((-570) $) NIL)) (-1943 (((-570) $) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2278 (((-570) $) NIL)) (-3461 (((-570) $) NIL)) (-1503 (($ (-1 |#1| |#1|) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2061 (($ $ |#1|) NIL)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3057 (((-59 |#1|) $ (-570)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-60 |#1|) (-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4453))) (-1227)) (T -60))
+NIL
+(-13 (-57 |#1| (-59 |#1|) (-59 |#1|)) (-10 -7 (-6 -4453)))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 124)) (-3802 (((-868) $) 118) (($ (-650 (-334))) 103) (($ (-334)) 97) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 101) (($ (-1277 (-344 (-3814 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3814) (-705)))) 31)))
+(((-61 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3814) (-705))))))) (-1186)) (T -61))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3814) (-705)))) (-5 *1 (-61 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE JINT) (QUOTE X) (QUOTE ELAM)) (-3814) (-705)))))))
+((-3400 (((-1282) $) 54) (((-1282)) 55)) (-3802 (((-868) $) 51)))
+(((-62 |#1|) (-13 (-401) (-10 -7 (-15 -3400 ((-1282))))) (-1186)) (T -62))
+((-3400 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-62 *3)) (-14 *3 (-1186)))))
+(-13 (-401) (-10 -7 (-15 -3400 ((-1282)))))
+((-4383 (((-3 $ "failed") (-1277 (-320 (-384)))) 150) (((-3 $ "failed") (-1277 (-320 (-570)))) 140) (((-3 $ "failed") (-1277 (-959 (-384)))) 170) (((-3 $ "failed") (-1277 (-959 (-570)))) 160) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 129) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 117)) (-3220 (($ (-1277 (-320 (-384)))) 146) (($ (-1277 (-320 (-570)))) 136) (($ (-1277 (-959 (-384)))) 166) (($ (-1277 (-959 (-570)))) 156) (($ (-1277 (-413 (-959 (-384))))) 125) (($ (-1277 (-413 (-959 (-570))))) 110)) (-3400 (((-1282) $) 103)) (-3802 (((-868) $) 97) (($ (-650 (-334))) 30) (($ (-334)) 35) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 33) (($ (-1277 (-344 (-3814) (-3814 (QUOTE XC)) (-705)))) 95)))
+(((-63 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814) (-3814 (QUOTE XC)) (-705))))))) (-1186)) (T -63))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814) (-3814 (QUOTE XC)) (-705)))) (-5 *1 (-63 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814) (-3814 (QUOTE XC)) (-705)))))))
+((-4383 (((-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)) (-3220 (($ (-320 (-384))) 39) (($ (-320 (-570))) 44) (($ (-959 (-384))) 48) (($ (-959 (-570))) 52) (($ (-413 (-959 (-384)))) 34) (($ (-413 (-959 (-570)))) 26)) (-3400 (((-1282) $) 76)) (-3802 (((-868) $) 69) (($ (-650 (-334))) 61) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 64) (($ (-344 (-3814 (QUOTE X)) (-3814) (-705))) 25)))
+(((-64 |#1|) (-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814 (QUOTE X)) (-3814) (-705)))))) (-1186)) (T -64))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-344 (-3814 (QUOTE X)) (-3814) (-705))) (-5 *1 (-64 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814 (QUOTE X)) (-3814) (-705))))))
+((-4383 (((-3 $ "failed") (-695 (-320 (-384)))) 111) (((-3 $ "failed") (-695 (-320 (-570)))) 99) (((-3 $ "failed") (-695 (-959 (-384)))) 133) (((-3 $ "failed") (-695 (-959 (-570)))) 122) (((-3 $ "failed") (-695 (-413 (-959 (-384))))) 87) (((-3 $ "failed") (-695 (-413 (-959 (-570))))) 73)) (-3220 (($ (-695 (-320 (-384)))) 107) (($ (-695 (-320 (-570)))) 95) (($ (-695 (-959 (-384)))) 129) (($ (-695 (-959 (-570)))) 118) (($ (-695 (-413 (-959 (-384))))) 83) (($ (-695 (-413 (-959 (-570))))) 66)) (-3400 (((-1282) $) 141)) (-3802 (((-868) $) 135) (($ (-650 (-334))) 29) (($ (-334)) 34) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 32) (($ (-695 (-344 (-3814) (-3814 (QUOTE X) (QUOTE HESS)) (-705)))) 56)))
+(((-65 |#1|) (-13 (-389) (-622 (-695 (-344 (-3814) (-3814 (QUOTE X) (QUOTE HESS)) (-705))))) (-1186)) (T -65))
+NIL
+(-13 (-389) (-622 (-695 (-344 (-3814) (-3814 (QUOTE X) (QUOTE HESS)) (-705)))))
+((-4383 (((-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)) (-3220 (($ (-320 (-384))) 58) (($ (-320 (-570))) 63) (($ (-959 (-384))) 67) (($ (-959 (-570))) 71) (($ (-413 (-959 (-384)))) 53) (($ (-413 (-959 (-570)))) 45)) (-3400 (((-1282) $) 82)) (-3802 (((-868) $) 76) (($ (-650 (-334))) 29) (($ (-334)) 34) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 32) (($ (-344 (-3814) (-3814 (QUOTE XC)) (-705))) 40)))
+(((-66 |#1|) (-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814) (-3814 (QUOTE XC)) (-705)))))) (-1186)) (T -66))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-344 (-3814) (-3814 (QUOTE XC)) (-705))) (-5 *1 (-66 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814) (-3814 (QUOTE XC)) (-705))))))
+((-3400 (((-1282) $) 65)) (-3802 (((-868) $) 59) (($ (-695 (-705))) 51) (($ (-650 (-334))) 50) (($ (-334)) 57) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 55)))
(((-67 |#1|) (-388) (-1186)) (T -67))
NIL
(-388)
-((-3396 (((-1282) $) 66)) (-3799 (((-868) $) 60) (($ (-695 (-705))) 52) (($ (-650 (-334))) 51) (($ (-334)) 54) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 57)))
+((-3400 (((-1282) $) 66)) (-3802 (((-868) $) 60) (($ (-695 (-705))) 52) (($ (-650 (-334))) 51) (($ (-334)) 54) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 57)))
(((-68 |#1|) (-388) (-1186)) (T -68))
NIL
(-388)
-((-3396 (((-1282) $) NIL) (((-1282)) 33)) (-3799 (((-868) $) NIL)))
-(((-69 |#1|) (-13 (-401) (-10 -7 (-15 -3396 ((-1282))))) (-1186)) (T -69))
-((-3396 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-69 *3)) (-14 *3 (-1186)))))
-(-13 (-401) (-10 -7 (-15 -3396 ((-1282)))))
-((-3396 (((-1282) $) 75)) (-3799 (((-868) $) 69) (($ (-695 (-705))) 61) (($ (-650 (-334))) 63) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 60)))
+((-3400 (((-1282) $) NIL) (((-1282)) 33)) (-3802 (((-868) $) NIL)))
+(((-69 |#1|) (-13 (-401) (-10 -7 (-15 -3400 ((-1282))))) (-1186)) (T -69))
+((-3400 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-69 *3)) (-14 *3 (-1186)))))
+(-13 (-401) (-10 -7 (-15 -3400 ((-1282)))))
+((-3400 (((-1282) $) 75)) (-3802 (((-868) $) 69) (($ (-695 (-705))) 61) (($ (-650 (-334))) 63) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 60)))
(((-70 |#1|) (-388) (-1186)) (T -70))
NIL
(-388)
-((-4380 (((-3 $ "failed") (-1277 (-320 (-384)))) 109) (((-3 $ "failed") (-1277 (-320 (-570)))) 98) (((-3 $ "failed") (-1277 (-959 (-384)))) 129) (((-3 $ "failed") (-1277 (-959 (-570)))) 119) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 87) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 74)) (-3216 (($ (-1277 (-320 (-384)))) 105) (($ (-1277 (-320 (-570)))) 94) (($ (-1277 (-959 (-384)))) 125) (($ (-1277 (-959 (-570)))) 115) (($ (-1277 (-413 (-959 (-384))))) 83) (($ (-1277 (-413 (-959 (-570))))) 67)) (-3396 (((-1282) $) 142)) (-3799 (((-868) $) 136) (($ (-650 (-334))) 131) (($ (-334)) 134) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 59) (($ (-1277 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705)))) 60)))
-(((-71 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705))))))) (-1186)) (T -71))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705)))) (-5 *1 (-71 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705)))))))
-((-3396 (((-1282) $) 33) (((-1282)) 32)) (-3799 (((-868) $) 36)))
-(((-72 |#1|) (-13 (-401) (-10 -7 (-15 -3396 ((-1282))))) (-1186)) (T -72))
-((-3396 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-72 *3)) (-14 *3 (-1186)))))
-(-13 (-401) (-10 -7 (-15 -3396 ((-1282)))))
-((-3396 (((-1282) $) 65)) (-3799 (((-868) $) 59) (($ (-695 (-705))) 51) (($ (-650 (-334))) 53) (($ (-334)) 56) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 50)))
+((-4383 (((-3 $ "failed") (-1277 (-320 (-384)))) 109) (((-3 $ "failed") (-1277 (-320 (-570)))) 98) (((-3 $ "failed") (-1277 (-959 (-384)))) 129) (((-3 $ "failed") (-1277 (-959 (-570)))) 119) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 87) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 74)) (-3220 (($ (-1277 (-320 (-384)))) 105) (($ (-1277 (-320 (-570)))) 94) (($ (-1277 (-959 (-384)))) 125) (($ (-1277 (-959 (-570)))) 115) (($ (-1277 (-413 (-959 (-384))))) 83) (($ (-1277 (-413 (-959 (-570))))) 67)) (-3400 (((-1282) $) 142)) (-3802 (((-868) $) 136) (($ (-650 (-334))) 131) (($ (-334)) 134) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 59) (($ (-1277 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705)))) 60)))
+(((-71 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705))))))) (-1186)) (T -71))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705)))) (-5 *1 (-71 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705)))))))
+((-3400 (((-1282) $) 33) (((-1282)) 32)) (-3802 (((-868) $) 36)))
+(((-72 |#1|) (-13 (-401) (-10 -7 (-15 -3400 ((-1282))))) (-1186)) (T -72))
+((-3400 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-72 *3)) (-14 *3 (-1186)))))
+(-13 (-401) (-10 -7 (-15 -3400 ((-1282)))))
+((-3400 (((-1282) $) 65)) (-3802 (((-868) $) 59) (($ (-695 (-705))) 51) (($ (-650 (-334))) 53) (($ (-334)) 56) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 50)))
(((-73 |#1|) (-388) (-1186)) (T -73))
NIL
(-388)
-((-4380 (((-3 $ "failed") (-1277 (-320 (-384)))) 127) (((-3 $ "failed") (-1277 (-320 (-570)))) 117) (((-3 $ "failed") (-1277 (-959 (-384)))) 147) (((-3 $ "failed") (-1277 (-959 (-570)))) 137) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 107) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 95)) (-3216 (($ (-1277 (-320 (-384)))) 123) (($ (-1277 (-320 (-570)))) 113) (($ (-1277 (-959 (-384)))) 143) (($ (-1277 (-959 (-570)))) 133) (($ (-1277 (-413 (-959 (-384))))) 103) (($ (-1277 (-413 (-959 (-570))))) 88)) (-3396 (((-1282) $) 80)) (-3799 (((-868) $) 28) (($ (-650 (-334))) 70) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 73) (($ (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))) 67)))
-(((-74 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705))))))) (-1186)) (T -74))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))) (-5 *1 (-74 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))))))
-((-4380 (((-3 $ "failed") (-1277 (-320 (-384)))) 132) (((-3 $ "failed") (-1277 (-320 (-570)))) 121) (((-3 $ "failed") (-1277 (-959 (-384)))) 152) (((-3 $ "failed") (-1277 (-959 (-570)))) 142) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 110) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 97)) (-3216 (($ (-1277 (-320 (-384)))) 128) (($ (-1277 (-320 (-570)))) 117) (($ (-1277 (-959 (-384)))) 148) (($ (-1277 (-959 (-570)))) 138) (($ (-1277 (-413 (-959 (-384))))) 106) (($ (-1277 (-413 (-959 (-570))))) 90)) (-3396 (((-1282) $) 82)) (-3799 (((-868) $) 74) (($ (-650 (-334))) NIL) (($ (-334)) NIL) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) NIL) (($ (-1277 (-344 (-3811 (QUOTE X) (QUOTE EPS)) (-3811 (QUOTE -1571)) (-705)))) 69)))
-(((-75 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X) (QUOTE EPS)) (-3811 (QUOTE -1571)) (-705))))))) (-1186) (-1186) (-1186)) (T -75))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811 (QUOTE X) (QUOTE EPS)) (-3811 (QUOTE -1571)) (-705)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186)) (-14 *5 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X) (QUOTE EPS)) (-3811 (QUOTE -1571)) (-705)))))))
-((-4380 (((-3 $ "failed") (-1277 (-320 (-384)))) 138) (((-3 $ "failed") (-1277 (-320 (-570)))) 127) (((-3 $ "failed") (-1277 (-959 (-384)))) 158) (((-3 $ "failed") (-1277 (-959 (-570)))) 148) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 116) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 103)) (-3216 (($ (-1277 (-320 (-384)))) 134) (($ (-1277 (-320 (-570)))) 123) (($ (-1277 (-959 (-384)))) 154) (($ (-1277 (-959 (-570)))) 144) (($ (-1277 (-413 (-959 (-384))))) 112) (($ (-1277 (-413 (-959 (-570))))) 96)) (-3396 (((-1282) $) 88)) (-3799 (((-868) $) 80) (($ (-650 (-334))) NIL) (($ (-334)) NIL) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) NIL) (($ (-1277 (-344 (-3811 (QUOTE EPS)) (-3811 (QUOTE YA) (QUOTE YB)) (-705)))) 75)))
-(((-76 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE EPS)) (-3811 (QUOTE YA) (QUOTE YB)) (-705))))))) (-1186) (-1186) (-1186)) (T -76))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811 (QUOTE EPS)) (-3811 (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 -3799 ($ (-1277 (-344 (-3811 (QUOTE EPS)) (-3811 (QUOTE YA) (QUOTE YB)) (-705)))))))
-((-4380 (((-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)) (-3216 (($ (-320 (-384))) 81) (($ (-320 (-570))) 86) (($ (-959 (-384))) 90) (($ (-959 (-570))) 94) (($ (-413 (-959 (-384)))) 76) (($ (-413 (-959 (-570)))) 68)) (-3396 (((-1282) $) 63)) (-3799 (((-868) $) 51) (($ (-650 (-334))) 47) (($ (-334)) 57) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 55) (($ (-344 (-3811) (-3811 (QUOTE X)) (-705))) 48)))
-(((-77 |#1|) (-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811) (-3811 (QUOTE X)) (-705)))))) (-1186)) (T -77))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-344 (-3811) (-3811 (QUOTE X)) (-705))) (-5 *1 (-77 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811) (-3811 (QUOTE X)) (-705))))))
-((-4380 (((-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)) (-3216 (($ (-320 (-384))) 45) (($ (-320 (-570))) 50) (($ (-959 (-384))) 54) (($ (-959 (-570))) 58) (($ (-413 (-959 (-384)))) 40) (($ (-413 (-959 (-570)))) 32)) (-3396 (((-1282) $) 81)) (-3799 (((-868) $) 75) (($ (-650 (-334))) 67) (($ (-334)) 72) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 70) (($ (-344 (-3811) (-3811 (QUOTE X)) (-705))) 31)))
-(((-78 |#1|) (-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811) (-3811 (QUOTE X)) (-705)))))) (-1186)) (T -78))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-344 (-3811) (-3811 (QUOTE X)) (-705))) (-5 *1 (-78 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811) (-3811 (QUOTE X)) (-705))))))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 126)) (-3799 (((-868) $) 120) (($ (-650 (-334))) 113) (($ (-334)) 38) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 116) (($ (-1277 (-344 (-3811) (-3811 (QUOTE XC)) (-705)))) 39)))
-(((-79 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811) (-3811 (QUOTE XC)) (-705))))))) (-1186)) (T -79))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811) (-3811 (QUOTE XC)) (-705)))) (-5 *1 (-79 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811) (-3811 (QUOTE XC)) (-705)))))))
-((-4380 (((-3 $ "failed") (-1277 (-320 (-384)))) 151) (((-3 $ "failed") (-1277 (-320 (-570)))) 141) (((-3 $ "failed") (-1277 (-959 (-384)))) 171) (((-3 $ "failed") (-1277 (-959 (-570)))) 161) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 131) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 119)) (-3216 (($ (-1277 (-320 (-384)))) 147) (($ (-1277 (-320 (-570)))) 137) (($ (-1277 (-959 (-384)))) 167) (($ (-1277 (-959 (-570)))) 157) (($ (-1277 (-413 (-959 (-384))))) 127) (($ (-1277 (-413 (-959 (-570))))) 112)) (-3396 (((-1282) $) 105)) (-3799 (((-868) $) 99) (($ (-650 (-334))) 90) (($ (-334)) 97) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 95) (($ (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))) 91)))
-(((-80 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705))))))) (-1186)) (T -80))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))) (-5 *1 (-80 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))))))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 125)) (-3799 (((-868) $) 119) (($ (-650 (-334))) 110) (($ (-334)) 116) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 114) (($ (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))) 36)))
-(((-81 |#1|) (-13 (-447) (-622 (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705))))) (-1186)) (T -81))
-NIL
-(-13 (-447) (-622 (-1277 (-344 (-3811) (-3811 (QUOTE X)) (-705)))))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 48)) (-3799 (((-868) $) 42) (($ (-650 (-334))) 32) (($ (-334)) 35) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 38) (($ (-1277 (-344 (-3811 (QUOTE X) (QUOTE -1571)) (-3811) (-705)))) 33)))
-(((-82 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X) (QUOTE -1571)) (-3811) (-705))))))) (-1186)) (T -82))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811 (QUOTE X) (QUOTE -1571)) (-3811) (-705)))) (-5 *1 (-82 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X) (QUOTE -1571)) (-3811) (-705)))))))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 66)) (-3799 (((-868) $) 53) (($ (-650 (-334))) 60) (($ (-334)) 49) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 58) (($ (-695 (-344 (-3811 (QUOTE X) (QUOTE -1571)) (-3811) (-705)))) 50)))
-(((-83 |#1|) (-13 (-389) (-10 -8 (-15 -3799 ($ (-695 (-344 (-3811 (QUOTE X) (QUOTE -1571)) (-3811) (-705))))))) (-1186)) (T -83))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3811 (QUOTE X) (QUOTE -1571)) (-3811) (-705)))) (-5 *1 (-83 *3)) (-14 *3 (-1186)))))
-(-13 (-389) (-10 -8 (-15 -3799 ($ (-695 (-344 (-3811 (QUOTE X) (QUOTE -1571)) (-3811) (-705)))))))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 60)) (-3799 (((-868) $) 54) (($ (-650 (-334))) 48) (($ (-334)) 51) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 45) (($ (-695 (-344 (-3811 (QUOTE X)) (-3811) (-705)))) 46)))
-(((-84 |#1|) (-13 (-389) (-10 -8 (-15 -3799 ($ (-695 (-344 (-3811 (QUOTE X)) (-3811) (-705))))))) (-1186)) (T -84))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3811 (QUOTE X)) (-3811) (-705)))) (-5 *1 (-84 *3)) (-14 *3 (-1186)))))
-(-13 (-389) (-10 -8 (-15 -3799 ($ (-695 (-344 (-3811 (QUOTE X)) (-3811) (-705)))))))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 47)) (-3799 (((-868) $) 41) (($ (-650 (-334))) 50) (($ (-334)) 37) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 53) (($ (-1277 (-344 (-3811 (QUOTE X)) (-3811) (-705)))) 38)))
-(((-85 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X)) (-3811) (-705))))))) (-1186)) (T -85))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811 (QUOTE X)) (-3811) (-705)))) (-5 *1 (-85 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X)) (-3811) (-705)))))))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 126)) (-3799 (((-868) $) 120) (($ (-650 (-334))) 111) (($ (-334)) 117) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 115) (($ (-1277 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705)))) 37)))
-(((-86 |#1|) (-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705))))))) (-1186)) (T -86))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705)))) (-5 *1 (-86 *3)) (-14 *3 (-1186)))))
-(-13 (-447) (-10 -8 (-15 -3799 ($ (-1277 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705)))))))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 63)) (-3799 (((-868) $) 57) (($ (-650 (-334))) 47) (($ (-334)) 54) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 52) (($ (-695 (-344 (-3811 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3811) (-705)))) 48)))
-(((-87 |#1|) (-13 (-389) (-10 -8 (-15 -3799 ($ (-695 (-344 (-3811 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3811) (-705))))))) (-1186)) (T -87))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3811 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3811) (-705)))) (-5 *1 (-87 *3)) (-14 *3 (-1186)))))
-(-13 (-389) (-10 -8 (-15 -3799 ($ (-695 (-344 (-3811 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3811) (-705)))))))
-((-3396 (((-1282) $) 45)) (-3799 (((-868) $) 39) (($ (-1277 (-705))) 100) (($ (-650 (-334))) 31) (($ (-334)) 36) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 34)))
+((-4383 (((-3 $ "failed") (-1277 (-320 (-384)))) 127) (((-3 $ "failed") (-1277 (-320 (-570)))) 117) (((-3 $ "failed") (-1277 (-959 (-384)))) 147) (((-3 $ "failed") (-1277 (-959 (-570)))) 137) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 107) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 95)) (-3220 (($ (-1277 (-320 (-384)))) 123) (($ (-1277 (-320 (-570)))) 113) (($ (-1277 (-959 (-384)))) 143) (($ (-1277 (-959 (-570)))) 133) (($ (-1277 (-413 (-959 (-384))))) 103) (($ (-1277 (-413 (-959 (-570))))) 88)) (-3400 (((-1282) $) 80)) (-3802 (((-868) $) 28) (($ (-650 (-334))) 70) (($ (-334)) 66) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 73) (($ (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))) 67)))
+(((-74 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705))))))) (-1186)) (T -74))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))) (-5 *1 (-74 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))))))
+((-4383 (((-3 $ "failed") (-1277 (-320 (-384)))) 132) (((-3 $ "failed") (-1277 (-320 (-570)))) 121) (((-3 $ "failed") (-1277 (-959 (-384)))) 152) (((-3 $ "failed") (-1277 (-959 (-570)))) 142) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 110) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 97)) (-3220 (($ (-1277 (-320 (-384)))) 128) (($ (-1277 (-320 (-570)))) 117) (($ (-1277 (-959 (-384)))) 148) (($ (-1277 (-959 (-570)))) 138) (($ (-1277 (-413 (-959 (-384))))) 106) (($ (-1277 (-413 (-959 (-570))))) 90)) (-3400 (((-1282) $) 82)) (-3802 (((-868) $) 74) (($ (-650 (-334))) NIL) (($ (-334)) NIL) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) NIL) (($ (-1277 (-344 (-3814 (QUOTE X) (QUOTE EPS)) (-3814 (QUOTE -1572)) (-705)))) 69)))
+(((-75 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X) (QUOTE EPS)) (-3814 (QUOTE -1572)) (-705))))))) (-1186) (-1186) (-1186)) (T -75))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814 (QUOTE X) (QUOTE EPS)) (-3814 (QUOTE -1572)) (-705)))) (-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186)) (-14 *5 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X) (QUOTE EPS)) (-3814 (QUOTE -1572)) (-705)))))))
+((-4383 (((-3 $ "failed") (-1277 (-320 (-384)))) 138) (((-3 $ "failed") (-1277 (-320 (-570)))) 127) (((-3 $ "failed") (-1277 (-959 (-384)))) 158) (((-3 $ "failed") (-1277 (-959 (-570)))) 148) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 116) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 103)) (-3220 (($ (-1277 (-320 (-384)))) 134) (($ (-1277 (-320 (-570)))) 123) (($ (-1277 (-959 (-384)))) 154) (($ (-1277 (-959 (-570)))) 144) (($ (-1277 (-413 (-959 (-384))))) 112) (($ (-1277 (-413 (-959 (-570))))) 96)) (-3400 (((-1282) $) 88)) (-3802 (((-868) $) 80) (($ (-650 (-334))) NIL) (($ (-334)) NIL) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) NIL) (($ (-1277 (-344 (-3814 (QUOTE EPS)) (-3814 (QUOTE YA) (QUOTE YB)) (-705)))) 75)))
+(((-76 |#1| |#2| |#3|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE EPS)) (-3814 (QUOTE YA) (QUOTE YB)) (-705))))))) (-1186) (-1186) (-1186)) (T -76))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814 (QUOTE EPS)) (-3814 (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 -3802 ($ (-1277 (-344 (-3814 (QUOTE EPS)) (-3814 (QUOTE YA) (QUOTE YB)) (-705)))))))
+((-4383 (((-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)) (-3220 (($ (-320 (-384))) 81) (($ (-320 (-570))) 86) (($ (-959 (-384))) 90) (($ (-959 (-570))) 94) (($ (-413 (-959 (-384)))) 76) (($ (-413 (-959 (-570)))) 68)) (-3400 (((-1282) $) 63)) (-3802 (((-868) $) 51) (($ (-650 (-334))) 47) (($ (-334)) 57) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 55) (($ (-344 (-3814) (-3814 (QUOTE X)) (-705))) 48)))
+(((-77 |#1|) (-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814) (-3814 (QUOTE X)) (-705)))))) (-1186)) (T -77))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-344 (-3814) (-3814 (QUOTE X)) (-705))) (-5 *1 (-77 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814) (-3814 (QUOTE X)) (-705))))))
+((-4383 (((-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)) (-3220 (($ (-320 (-384))) 45) (($ (-320 (-570))) 50) (($ (-959 (-384))) 54) (($ (-959 (-570))) 58) (($ (-413 (-959 (-384)))) 40) (($ (-413 (-959 (-570)))) 32)) (-3400 (((-1282) $) 81)) (-3802 (((-868) $) 75) (($ (-650 (-334))) 67) (($ (-334)) 72) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 70) (($ (-344 (-3814) (-3814 (QUOTE X)) (-705))) 31)))
+(((-78 |#1|) (-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814) (-3814 (QUOTE X)) (-705)))))) (-1186)) (T -78))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-344 (-3814) (-3814 (QUOTE X)) (-705))) (-5 *1 (-78 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814) (-3814 (QUOTE X)) (-705))))))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 126)) (-3802 (((-868) $) 120) (($ (-650 (-334))) 113) (($ (-334)) 38) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 116) (($ (-1277 (-344 (-3814) (-3814 (QUOTE XC)) (-705)))) 39)))
+(((-79 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814) (-3814 (QUOTE XC)) (-705))))))) (-1186)) (T -79))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814) (-3814 (QUOTE XC)) (-705)))) (-5 *1 (-79 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814) (-3814 (QUOTE XC)) (-705)))))))
+((-4383 (((-3 $ "failed") (-1277 (-320 (-384)))) 151) (((-3 $ "failed") (-1277 (-320 (-570)))) 141) (((-3 $ "failed") (-1277 (-959 (-384)))) 171) (((-3 $ "failed") (-1277 (-959 (-570)))) 161) (((-3 $ "failed") (-1277 (-413 (-959 (-384))))) 131) (((-3 $ "failed") (-1277 (-413 (-959 (-570))))) 119)) (-3220 (($ (-1277 (-320 (-384)))) 147) (($ (-1277 (-320 (-570)))) 137) (($ (-1277 (-959 (-384)))) 167) (($ (-1277 (-959 (-570)))) 157) (($ (-1277 (-413 (-959 (-384))))) 127) (($ (-1277 (-413 (-959 (-570))))) 112)) (-3400 (((-1282) $) 105)) (-3802 (((-868) $) 99) (($ (-650 (-334))) 90) (($ (-334)) 97) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 95) (($ (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))) 91)))
+(((-80 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705))))))) (-1186)) (T -80))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))) (-5 *1 (-80 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))))))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 125)) (-3802 (((-868) $) 119) (($ (-650 (-334))) 110) (($ (-334)) 116) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 114) (($ (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))) 36)))
+(((-81 |#1|) (-13 (-447) (-622 (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705))))) (-1186)) (T -81))
+NIL
+(-13 (-447) (-622 (-1277 (-344 (-3814) (-3814 (QUOTE X)) (-705)))))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 48)) (-3802 (((-868) $) 42) (($ (-650 (-334))) 32) (($ (-334)) 35) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 38) (($ (-1277 (-344 (-3814 (QUOTE X) (QUOTE -1572)) (-3814) (-705)))) 33)))
+(((-82 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X) (QUOTE -1572)) (-3814) (-705))))))) (-1186)) (T -82))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814 (QUOTE X) (QUOTE -1572)) (-3814) (-705)))) (-5 *1 (-82 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X) (QUOTE -1572)) (-3814) (-705)))))))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 66)) (-3802 (((-868) $) 53) (($ (-650 (-334))) 60) (($ (-334)) 49) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 58) (($ (-695 (-344 (-3814 (QUOTE X) (QUOTE -1572)) (-3814) (-705)))) 50)))
+(((-83 |#1|) (-13 (-389) (-10 -8 (-15 -3802 ($ (-695 (-344 (-3814 (QUOTE X) (QUOTE -1572)) (-3814) (-705))))))) (-1186)) (T -83))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3814 (QUOTE X) (QUOTE -1572)) (-3814) (-705)))) (-5 *1 (-83 *3)) (-14 *3 (-1186)))))
+(-13 (-389) (-10 -8 (-15 -3802 ($ (-695 (-344 (-3814 (QUOTE X) (QUOTE -1572)) (-3814) (-705)))))))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 60)) (-3802 (((-868) $) 54) (($ (-650 (-334))) 48) (($ (-334)) 51) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 45) (($ (-695 (-344 (-3814 (QUOTE X)) (-3814) (-705)))) 46)))
+(((-84 |#1|) (-13 (-389) (-10 -8 (-15 -3802 ($ (-695 (-344 (-3814 (QUOTE X)) (-3814) (-705))))))) (-1186)) (T -84))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3814 (QUOTE X)) (-3814) (-705)))) (-5 *1 (-84 *3)) (-14 *3 (-1186)))))
+(-13 (-389) (-10 -8 (-15 -3802 ($ (-695 (-344 (-3814 (QUOTE X)) (-3814) (-705)))))))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 47)) (-3802 (((-868) $) 41) (($ (-650 (-334))) 50) (($ (-334)) 37) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 53) (($ (-1277 (-344 (-3814 (QUOTE X)) (-3814) (-705)))) 38)))
+(((-85 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X)) (-3814) (-705))))))) (-1186)) (T -85))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814 (QUOTE X)) (-3814) (-705)))) (-5 *1 (-85 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X)) (-3814) (-705)))))))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 126)) (-3802 (((-868) $) 120) (($ (-650 (-334))) 111) (($ (-334)) 117) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 115) (($ (-1277 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705)))) 37)))
+(((-86 |#1|) (-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705))))))) (-1186)) (T -86))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705)))) (-5 *1 (-86 *3)) (-14 *3 (-1186)))))
+(-13 (-447) (-10 -8 (-15 -3802 ($ (-1277 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705)))))))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 63)) (-3802 (((-868) $) 57) (($ (-650 (-334))) 47) (($ (-334)) 54) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 52) (($ (-695 (-344 (-3814 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3814) (-705)))) 48)))
+(((-87 |#1|) (-13 (-389) (-10 -8 (-15 -3802 ($ (-695 (-344 (-3814 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3814) (-705))))))) (-1186)) (T -87))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-695 (-344 (-3814 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3814) (-705)))) (-5 *1 (-87 *3)) (-14 *3 (-1186)))))
+(-13 (-389) (-10 -8 (-15 -3802 ($ (-695 (-344 (-3814 (QUOTE XL) (QUOTE XR) (QUOTE ELAM)) (-3814) (-705)))))))
+((-3400 (((-1282) $) 45)) (-3802 (((-868) $) 39) (($ (-1277 (-705))) 100) (($ (-650 (-334))) 31) (($ (-334)) 36) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 34)))
(((-88 |#1|) (-446) (-1186)) (T -88))
NIL
(-446)
-((-4380 (((-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)) (-3216 (($ (-320 (-384))) 46) (($ (-320 (-570))) 51) (($ (-959 (-384))) 55) (($ (-959 (-570))) 59) (($ (-413 (-959 (-384)))) 41) (($ (-413 (-959 (-570)))) 33)) (-3396 (((-1282) $) 91)) (-3799 (((-868) $) 85) (($ (-650 (-334))) 79) (($ (-334)) 82) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 77) (($ (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705))) 32)))
-(((-89 |#1|) (-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705)))))) (-1186)) (T -89))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705))) (-5 *1 (-89 *3)) (-14 *3 (-1186)))))
-(-13 (-402) (-10 -8 (-15 -3799 ($ (-344 (-3811 (QUOTE X)) (-3811 (QUOTE -1571)) (-705))))))
-((-3294 (((-1277 (-695 |#1|)) (-695 |#1|)) 61)) (-3752 (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928)) 49)) (-3100 (((-2 (|:| |minor| (-650 (-928))) (|:| -4305 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928)) 72 (|has| |#1| (-368)))))
-(((-90 |#1| |#2|) (-10 -7 (-15 -3752 ((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928))) (-15 -3294 ((-1277 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-368)) (-15 -3100 ((-2 (|:| |minor| (-650 (-928))) (|:| -4305 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928))) |%noBranch|)) (-562) (-662 |#1|)) (T -90))
-((-3100 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |minor| (-650 (-928))) (|:| -4305 *3) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))) (-3294 (*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)))) (-3752 (*1 *2 *3 *4) (-12 (-4 *5 (-562)) (-5 *2 (-2 (|:| -2415 (-695 *5)) (|:| |vec| (-1277 (-650 (-928)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
-(-10 -7 (-15 -3752 ((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928))) (-15 -3294 ((-1277 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-368)) (-15 -3100 ((-2 (|:| |minor| (-650 (-928))) (|:| -4305 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928))) |%noBranch|))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3353 ((|#1| $) 40)) (-4302 (((-112) $ (-777)) NIL)) (-1705 (($) NIL T CONST)) (-1740 ((|#1| |#1| $) 35)) (-3636 ((|#1| $) 33)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1490 ((|#1| $) NIL)) (-1385 (($ |#1| $) 36)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3647 ((|#1| $) 34)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 18)) (-2380 (($) 45)) (-2918 (((-777) $) 31)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) 17)) (-3799 (((-868) $) 30 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) NIL)) (-3199 (($ (-650 |#1|)) 42)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 15 (|has| |#1| (-1109)))) (-2569 (((-777) $) 12 (|has| $ (-6 -4449)))))
-(((-91 |#1|) (-13 (-1130 |#1|) (-10 -8 (-15 -3199 ($ (-650 |#1|))))) (-1109)) (T -91))
-((-3199 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-91 *3)))))
-(-13 (-1130 |#1|) (-10 -8 (-15 -3199 ($ (-650 |#1|)))))
-((-3799 (((-868) $) 13) (($ (-1191)) 9) (((-1191) $) 8)))
-(((-92 |#1|) (-10 -8 (-15 -3799 ((-1191) |#1|)) (-15 -3799 (|#1| (-1191))) (-15 -3799 ((-868) |#1|))) (-93)) (T -92))
-NIL
-(-10 -8 (-15 -3799 ((-1191) |#1|)) (-15 -3799 (|#1| (-1191))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-4383 (((-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)) (-3220 (($ (-320 (-384))) 46) (($ (-320 (-570))) 51) (($ (-959 (-384))) 55) (($ (-959 (-570))) 59) (($ (-413 (-959 (-384)))) 41) (($ (-413 (-959 (-570)))) 33)) (-3400 (((-1282) $) 91)) (-3802 (((-868) $) 85) (($ (-650 (-334))) 79) (($ (-334)) 82) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 77) (($ (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705))) 32)))
+(((-89 |#1|) (-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705)))))) (-1186)) (T -89))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705))) (-5 *1 (-89 *3)) (-14 *3 (-1186)))))
+(-13 (-402) (-10 -8 (-15 -3802 ($ (-344 (-3814 (QUOTE X)) (-3814 (QUOTE -1572)) (-705))))))
+((-1531 (((-1277 (-695 |#1|)) (-695 |#1|)) 61)) (-3343 (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928)) 49)) (-3376 (((-2 (|:| |minor| (-650 (-928))) (|:| -4308 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928)) 72 (|has| |#1| (-368)))))
+(((-90 |#1| |#2|) (-10 -7 (-15 -3343 ((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928))) (-15 -1531 ((-1277 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-368)) (-15 -3376 ((-2 (|:| |minor| (-650 (-928))) (|:| -4308 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928))) |%noBranch|)) (-562) (-662 |#1|)) (T -90))
+((-3376 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *5 (-562)) (-5 *2 (-2 (|:| |minor| (-650 (-928))) (|:| -4308 *3) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 *3)))) (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))) (-1531 (*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)))) (-3343 (*1 *2 *3 *4) (-12 (-4 *5 (-562)) (-5 *2 (-2 (|:| -2990 (-695 *5)) (|:| |vec| (-1277 (-650 (-928)))))) (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
+(-10 -7 (-15 -3343 ((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 (-650 (-928))))) |#2| (-928))) (-15 -1531 ((-1277 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-368)) (-15 -3376 ((-2 (|:| |minor| (-650 (-928))) (|:| -4308 |#2|) (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 |#2|))) |#2| (-928))) |%noBranch|))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3356 ((|#1| $) 40)) (-1932 (((-112) $ (-777)) NIL)) (-3195 (($) NIL T CONST)) (-3536 ((|#1| |#1| $) 35)) (-1552 ((|#1| $) 33)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2885 ((|#1| $) NIL)) (-3502 (($ |#1| $) 36)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1684 ((|#1| $) 34)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 18)) (-2656 (($) 45)) (-2921 (((-777) $) 31)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) 17)) (-3802 (((-868) $) 30 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) NIL)) (-3087 (($ (-650 |#1|)) 42)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 15 (|has| |#1| (-1109)))) (-2570 (((-777) $) 12 (|has| $ (-6 -4452)))))
+(((-91 |#1|) (-13 (-1130 |#1|) (-10 -8 (-15 -3087 ($ (-650 |#1|))))) (-1109)) (T -91))
+((-3087 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-91 *3)))))
+(-13 (-1130 |#1|) (-10 -8 (-15 -3087 ($ (-650 |#1|)))))
+((-3802 (((-868) $) 13) (($ (-1191)) 9) (((-1191) $) 8)))
+(((-92 |#1|) (-10 -8 (-15 -3802 ((-1191) |#1|)) (-15 -3802 (|#1| (-1191))) (-15 -3802 ((-868) |#1|))) (-93)) (T -92))
+NIL
+(-10 -8 (-15 -3802 ((-1191) |#1|)) (-15 -3802 (|#1| (-1191))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-93) (-141)) (T -93))
NIL
(-13 (-1109) (-496 (-1191)))
(((-102) . T) ((-622 #0=(-1191)) . T) ((-619 (-868)) . T) ((-619 #0#) . T) ((-496 #0#) . T) ((-1109) . T))
-((-2845 (($ $) 10)) (-2855 (($ $) 12)))
-(((-94 |#1|) (-10 -8 (-15 -2855 (|#1| |#1|)) (-15 -2845 (|#1| |#1|))) (-95)) (T -94))
+((-2848 (($ $) 10)) (-2858 (($ $) 12)))
+(((-94 |#1|) (-10 -8 (-15 -2858 (|#1| |#1|)) (-15 -2848 (|#1| |#1|))) (-95)) (T -94))
NIL
-(-10 -8 (-15 -2855 (|#1| |#1|)) (-15 -2845 (|#1| |#1|)))
-((-2825 (($ $) 11)) (-2801 (($ $) 10)) (-2845 (($ $) 9)) (-2855 (($ $) 8)) (-2835 (($ $) 7)) (-2814 (($ $) 6)))
+(-10 -8 (-15 -2858 (|#1| |#1|)) (-15 -2848 (|#1| |#1|)))
+((-2828 (($ $) 11)) (-2804 (($ $) 10)) (-2848 (($ $) 9)) (-2858 (($ $) 8)) (-2838 (($ $) 7)) (-2817 (($ $) 6)))
(((-95) (-141)) (T -95))
-((-2825 (*1 *1 *1) (-4 *1 (-95))) (-2801 (*1 *1 *1) (-4 *1 (-95))) (-2845 (*1 *1 *1) (-4 *1 (-95))) (-2855 (*1 *1 *1) (-4 *1 (-95))) (-2835 (*1 *1 *1) (-4 *1 (-95))) (-2814 (*1 *1 *1) (-4 *1 (-95))))
-(-13 (-10 -8 (-15 -2814 ($ $)) (-15 -2835 ($ $)) (-15 -2855 ($ $)) (-15 -2845 ($ $)) (-15 -2801 ($ $)) (-15 -2825 ($ $))))
-((-2558 (((-112) $ $) NIL)) (-3600 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-96) (-13 (-1092) (-10 -8 (-15 -3600 ((-1144) $))))) (T -96))
-((-3600 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-96)))))
-(-13 (-1092) (-10 -8 (-15 -3600 ((-1144) $))))
-((-2558 (((-112) $ $) NIL)) (-3339 (((-384) (-1168) (-384)) 46) (((-384) (-1168) (-1168) (-384)) 44)) (-4137 (((-384) (-384)) 35)) (-3512 (((-1282)) 37)) (-1988 (((-1168) $) NIL)) (-3333 (((-384) (-1168) (-1168)) 50) (((-384) (-1168)) 52)) (-3577 (((-1129) $) NIL)) (-3503 (((-384) (-1168) (-1168)) 51)) (-3538 (((-384) (-1168) (-1168)) 53) (((-384) (-1168)) 54)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-97) (-13 (-1109) (-10 -7 (-15 -3333 ((-384) (-1168) (-1168))) (-15 -3333 ((-384) (-1168))) (-15 -3538 ((-384) (-1168) (-1168))) (-15 -3538 ((-384) (-1168))) (-15 -3503 ((-384) (-1168) (-1168))) (-15 -3512 ((-1282))) (-15 -4137 ((-384) (-384))) (-15 -3339 ((-384) (-1168) (-384))) (-15 -3339 ((-384) (-1168) (-1168) (-384))) (-6 -4449)))) (T -97))
-((-3333 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3333 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3538 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3538 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3503 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3512 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-97)))) (-4137 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-97)))) (-3339 (*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))) (-3339 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))))
-(-13 (-1109) (-10 -7 (-15 -3333 ((-384) (-1168) (-1168))) (-15 -3333 ((-384) (-1168))) (-15 -3538 ((-384) (-1168) (-1168))) (-15 -3538 ((-384) (-1168))) (-15 -3503 ((-384) (-1168) (-1168))) (-15 -3512 ((-1282))) (-15 -4137 ((-384) (-384))) (-15 -3339 ((-384) (-1168) (-384))) (-15 -3339 ((-384) (-1168) (-1168) (-384))) (-6 -4449)))
+((-2828 (*1 *1 *1) (-4 *1 (-95))) (-2804 (*1 *1 *1) (-4 *1 (-95))) (-2848 (*1 *1 *1) (-4 *1 (-95))) (-2858 (*1 *1 *1) (-4 *1 (-95))) (-2838 (*1 *1 *1) (-4 *1 (-95))) (-2817 (*1 *1 *1) (-4 *1 (-95))))
+(-13 (-10 -8 (-15 -2817 ($ $)) (-15 -2838 ($ $)) (-15 -2858 ($ $)) (-15 -2848 ($ $)) (-15 -2804 ($ $)) (-15 -2828 ($ $))))
+((-2560 (((-112) $ $) NIL)) (-3602 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-96) (-13 (-1092) (-10 -8 (-15 -3602 ((-1144) $))))) (T -96))
+((-3602 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-96)))))
+(-13 (-1092) (-10 -8 (-15 -3602 ((-1144) $))))
+((-2560 (((-112) $ $) NIL)) (-3842 (((-384) (-1168) (-384)) 46) (((-384) (-1168) (-1168) (-384)) 44)) (-2863 (((-384) (-384)) 35)) (-2964 (((-1282)) 37)) (-3989 (((-1168) $) NIL)) (-3792 (((-384) (-1168) (-1168)) 50) (((-384) (-1168)) 52)) (-3580 (((-1129) $) NIL)) (-2891 (((-384) (-1168) (-1168)) 51)) (-3168 (((-384) (-1168) (-1168)) 53) (((-384) (-1168)) 54)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-97) (-13 (-1109) (-10 -7 (-15 -3792 ((-384) (-1168) (-1168))) (-15 -3792 ((-384) (-1168))) (-15 -3168 ((-384) (-1168) (-1168))) (-15 -3168 ((-384) (-1168))) (-15 -2891 ((-384) (-1168) (-1168))) (-15 -2964 ((-1282))) (-15 -2863 ((-384) (-384))) (-15 -3842 ((-384) (-1168) (-384))) (-15 -3842 ((-384) (-1168) (-1168) (-384))) (-6 -4452)))) (T -97))
+((-3792 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3792 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3168 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-3168 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-2891 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))) (-2964 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-97)))) (-2863 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-97)))) (-3842 (*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))) (-3842 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-1168)) (-5 *1 (-97)))))
+(-13 (-1109) (-10 -7 (-15 -3792 ((-384) (-1168) (-1168))) (-15 -3792 ((-384) (-1168))) (-15 -3168 ((-384) (-1168) (-1168))) (-15 -3168 ((-384) (-1168))) (-15 -2891 ((-384) (-1168) (-1168))) (-15 -2964 ((-1282))) (-15 -2863 ((-384) (-384))) (-15 -3842 ((-384) (-1168) (-384))) (-15 -3842 ((-384) (-1168) (-1168) (-384))) (-6 -4452)))
NIL
(((-98) (-141)) (T -98))
NIL
-(-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)))
-((-2558 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-3305 (($ (-1 |#1| |#1|)) 27) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 26) (($ (-1 |#1| |#1| (-570))) 24)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 16)) (-3577 (((-1129) $) NIL)) (-1941 ((|#1| $ |#1|) 13)) (-2020 (($ $ $) NIL)) (-4391 (($ $ $) NIL)) (-3799 (((-868) $) 22)) (-2335 (((-112) $ $) NIL)) (-1875 (($) 8 T CONST)) (-3022 (((-112) $ $) 10)) (-3122 (($ $ $) NIL)) (** (($ $ (-928)) 32) (($ $ (-777)) NIL) (($ $ (-570)) 18)) (* (($ $ $) 33)))
-(((-99 |#1|) (-13 (-479) (-290 |#1| |#1|) (-10 -8 (-15 -3305 ($ (-1 |#1| |#1|))) (-15 -3305 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -3305 ($ (-1 |#1| |#1| (-570)))))) (-1058)) (T -99))
-((-3305 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))) (-3305 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))) (-3305 (*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 -3305 ($ (-1 |#1| |#1|))) (-15 -3305 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -3305 ($ (-1 |#1| |#1| (-570))))))
-((-4102 (((-424 |#2|) |#2| (-650 |#2|)) 10) (((-424 |#2|) |#2| |#2|) 11)))
-(((-100 |#1| |#2|) (-10 -7 (-15 -4102 ((-424 |#2|) |#2| |#2|)) (-15 -4102 ((-424 |#2|) |#2| (-650 |#2|)))) (-13 (-458) (-148)) (-1253 |#1|)) (T -100))
-((-4102 (*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)))) (-4102 (*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 -4102 ((-424 |#2|) |#2| |#2|)) (-15 -4102 ((-424 |#2|) |#2| (-650 |#2|))))
-((-2558 (((-112) $ $) 10)))
-(((-101 |#1|) (-10 -8 (-15 -2558 ((-112) |#1| |#1|))) (-102)) (T -101))
-NIL
-(-10 -8 (-15 -2558 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3022 (((-112) $ $) 6)))
+(-13 (-10 -7 (-6 -4452) (-6 (-4454 "*")) (-6 -4453) (-6 -4449) (-6 -4447) (-6 -4446) (-6 -4445) (-6 -4450) (-6 -4444) (-6 -4443) (-6 -4442) (-6 -4441) (-6 -4440) (-6 -4448) (-6 -4451) (-6 |NullSquare|) (-6 |JacobiIdentity|) (-6 -4439)))
+((-2560 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-1667 (($ (-1 |#1| |#1|)) 27) (($ (-1 |#1| |#1|) (-1 |#1| |#1|)) 26) (($ (-1 |#1| |#1| (-570))) 24)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 16)) (-3580 (((-1129) $) NIL)) (-1942 ((|#1| $ |#1|) 13)) (-4307 (($ $ $) NIL)) (-3381 (($ $ $) NIL)) (-3802 (((-868) $) 22)) (-3359 (((-112) $ $) NIL)) (-1876 (($) 8 T CONST)) (-3025 (((-112) $ $) 10)) (-3125 (($ $ $) NIL)) (** (($ $ (-928)) 32) (($ $ (-777)) NIL) (($ $ (-570)) 18)) (* (($ $ $) 33)))
+(((-99 |#1|) (-13 (-479) (-290 |#1| |#1|) (-10 -8 (-15 -1667 ($ (-1 |#1| |#1|))) (-15 -1667 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1667 ($ (-1 |#1| |#1| (-570)))))) (-1058)) (T -99))
+((-1667 (*1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))) (-1667 (*1 *1 *2 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-99 *3)))) (-1667 (*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 -1667 ($ (-1 |#1| |#1|))) (-15 -1667 ($ (-1 |#1| |#1|) (-1 |#1| |#1|))) (-15 -1667 ($ (-1 |#1| |#1| (-570))))))
+((-3731 (((-424 |#2|) |#2| (-650 |#2|)) 10) (((-424 |#2|) |#2| |#2|) 11)))
+(((-100 |#1| |#2|) (-10 -7 (-15 -3731 ((-424 |#2|) |#2| |#2|)) (-15 -3731 ((-424 |#2|) |#2| (-650 |#2|)))) (-13 (-458) (-148)) (-1253 |#1|)) (T -100))
+((-3731 (*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)))) (-3731 (*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 -3731 ((-424 |#2|) |#2| |#2|)) (-15 -3731 ((-424 |#2|) |#2| (-650 |#2|))))
+((-2560 (((-112) $ $) 10)))
+(((-101 |#1|) (-10 -8 (-15 -2560 ((-112) |#1| |#1|))) (-102)) (T -101))
+NIL
+(-10 -8 (-15 -2560 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3025 (((-112) $ $) 6)))
(((-102) (-141)) (T -102))
-((-2558 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-3022 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
-(-13 (-10 -8 (-15 -3022 ((-112) $ $)) (-15 -2558 ((-112) $ $))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-2988 ((|#1| $ |#1|) 24 (|has| $ (-6 -4450)))) (-2830 (($ $ $) NIL (|has| $ (-6 -4450)))) (-2184 (($ $ $) NIL (|has| $ (-6 -4450)))) (-4170 (($ $ (-650 |#1|)) 30)) (-3932 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4410 (($ $) 12)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3385 (($ $ |#1| $) 32)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3084 ((|#1| $ (-1 |#1| |#1| |#1|)) 40) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 45)) (-4156 (($ $ |#1| (-1 |#1| |#1| |#1|)) 46) (($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|)) 49)) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-4397 (($ $) 11)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) 13)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 9)) (-2380 (($) 31)) (-1941 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2738 (((-570) $ $) NIL)) (-3817 (((-112) $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2683 (($ (-777) |#1|) 33)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-103 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -2683 ($ (-777) |#1|)) (-15 -4170 ($ $ (-650 |#1|))) (-15 -3084 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -3084 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4156 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4156 ($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|))))) (-1109)) (T -103))
-((-2683 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-103 *3)) (-4 *3 (-1109)))) (-4170 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))) (-3084 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1109)))) (-3084 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))) (-4156 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (-5 *1 (-103 *2)))) (-4156 (*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 -2683 ($ (-777) |#1|)) (-15 -4170 ($ $ (-650 |#1|))) (-15 -3084 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -3084 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -4156 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -4156 ($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|)))))
-((-2028 ((|#3| |#2| |#2|) 34)) (-3550 ((|#1| |#2| |#2|) 51 (|has| |#1| (-6 (-4451 "*"))))) (-3219 ((|#3| |#2| |#2|) 36)) (-1644 ((|#1| |#2|) 54 (|has| |#1| (-6 (-4451 "*"))))))
-(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2028 (|#3| |#2| |#2|)) (-15 -3219 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4451 "*"))) (PROGN (-15 -3550 (|#1| |#2| |#2|)) (-15 -1644 (|#1| |#2|))) |%noBranch|)) (-1058) (-1253 |#1|) (-693 |#1| |#4| |#5|) (-378 |#1|) (-378 |#1|)) (T -104))
-((-1644 (*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)))) (-3550 (*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)))) (-3219 (*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)))) (-2028 (*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 -2028 (|#3| |#2| |#2|)) (-15 -3219 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4451 "*"))) (PROGN (-15 -3550 (|#1| |#2| |#2|)) (-15 -1644 (|#1| |#2|))) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-4002 (((-650 (-1186))) 37)) (-2125 (((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186)) 39)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-105) (-13 (-1109) (-10 -7 (-15 -4002 ((-650 (-1186)))) (-15 -2125 ((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186))) (-6 -4449)))) (T -105))
-((-4002 (*1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-105)))) (-2125 (*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 -4002 ((-650 (-1186)))) (-15 -2125 ((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186))) (-6 -4449)))
-((-2082 (($ (-650 |#2|)) 11)))
-(((-106 |#1| |#2|) (-10 -8 (-15 -2082 (|#1| (-650 |#2|)))) (-107 |#2|) (-1227)) (T -106))
-NIL
-(-10 -8 (-15 -2082 (|#1| (-650 |#2|))))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-1705 (($) 7 T CONST)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))) (-3025 (*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112)))))
+(-13 (-10 -8 (-15 -3025 ((-112) $ $)) (-15 -2560 ((-112) $ $))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1647 ((|#1| $ |#1|) 24 (|has| $ (-6 -4453)))) (-1408 (($ $ $) NIL (|has| $ (-6 -4453)))) (-2436 (($ $ $) NIL (|has| $ (-6 -4453)))) (-3103 (($ $ (-650 |#1|)) 30)) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) (($ $ "left" $) NIL (|has| $ (-6 -4453))) (($ $ "right" $) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4413 (($ $) 12)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3388 (($ $ |#1| $) 32)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3227 ((|#1| $ (-1 |#1| |#1| |#1|)) 40) (($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|)) 45)) (-2984 (($ $ |#1| (-1 |#1| |#1| |#1|)) 46) (($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|)) 49)) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-4400 (($ $) 11)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) 13)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 9)) (-2656 (($) 31)) (-1942 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3108 (((-570) $ $) NIL)) (-2759 (((-112) $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3797 (($ (-777) |#1|) 33)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-103 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4452) (-6 -4453) (-15 -3797 ($ (-777) |#1|)) (-15 -3103 ($ $ (-650 |#1|))) (-15 -3227 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -3227 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -2984 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -2984 ($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|))))) (-1109)) (T -103))
+((-3797 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-103 *3)) (-4 *3 (-1109)))) (-3103 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))) (-3227 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1109)))) (-3227 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3 *3 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))) (-2984 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (-5 *1 (-103 *2)))) (-2984 (*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 -4452) (-6 -4453) (-15 -3797 ($ (-777) |#1|)) (-15 -3103 ($ $ (-650 |#1|))) (-15 -3227 (|#1| $ (-1 |#1| |#1| |#1|))) (-15 -3227 ($ $ $ (-1 |#1| |#1| |#1| |#1| |#1|))) (-15 -2984 ($ $ |#1| (-1 |#1| |#1| |#1|))) (-15 -2984 ($ $ |#1| (-1 (-650 |#1|) |#1| |#1| |#1|)))))
+((-3218 ((|#3| |#2| |#2|) 34)) (-2089 ((|#1| |#2| |#2|) 51 (|has| |#1| (-6 (-4454 "*"))))) (-2083 ((|#3| |#2| |#2|) 36)) (-3791 ((|#1| |#2|) 54 (|has| |#1| (-6 (-4454 "*"))))))
+(((-104 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3218 (|#3| |#2| |#2|)) (-15 -2083 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4454 "*"))) (PROGN (-15 -2089 (|#1| |#2| |#2|)) (-15 -3791 (|#1| |#2|))) |%noBranch|)) (-1058) (-1253 |#1|) (-693 |#1| |#4| |#5|) (-378 |#1|) (-378 |#1|)) (T -104))
+((-3791 (*1 *2 *3) (-12 (|has| *2 (-6 (-4454 "*"))) (-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)))) (-2089 (*1 *2 *3 *3) (-12 (|has| *2 (-6 (-4454 "*"))) (-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)))) (-2083 (*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)))) (-3218 (*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 -3218 (|#3| |#2| |#2|)) (-15 -2083 (|#3| |#2| |#2|)) (IF (|has| |#1| (-6 (-4454 "*"))) (PROGN (-15 -2089 (|#1| |#2| |#2|)) (-15 -3791 (|#1| |#2|))) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3913 (((-650 (-1186))) 37)) (-3037 (((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186)) 39)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-105) (-13 (-1109) (-10 -7 (-15 -3913 ((-650 (-1186)))) (-15 -3037 ((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186))) (-6 -4452)))) (T -105))
+((-3913 (*1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-105)))) (-3037 (*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 -3913 ((-650 (-1186)))) (-15 -3037 ((-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227))) (|:| |singularities| (-1166 (-227)))) (-1186))) (-6 -4452)))
+((-2603 (($ (-650 |#2|)) 11)))
+(((-106 |#1| |#2|) (-10 -8 (-15 -2603 (|#1| (-650 |#2|)))) (-107 |#2|) (-1227)) (T -106))
+NIL
+(-10 -8 (-15 -2603 (|#1| (-650 |#2|))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3195 (($) 7 T CONST)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-107 |#1|) (-141) (-1227)) (T -107))
-((-2082 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-107 *3)))) (-3647 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))) (-1385 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))) (-1490 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
-(-13 (-495 |t#1|) (-10 -8 (-6 -4450) (-15 -2082 ($ (-650 |t#1|))) (-15 -3647 (|t#1| $)) (-15 -1385 ($ |t#1| $)) (-15 -1490 (|t#1| $))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 (((-570) $) NIL (|has| (-570) (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| (-570) (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-570) (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) NIL (|has| (-570) (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL)) (-4399 (((-570) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-1479 (((-112) $) NIL (|has| (-570) (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| (-570) (-856)))) (-1356 (($ (-1 (-570) (-570)) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-570) (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-3665 (((-570) $) NIL (|has| (-570) (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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))))) (-2142 (((-777) $) NIL)) (-1941 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 (((-570) $) NIL)) (-1425 (((-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)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 2) $) 10)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-3499 (((-777)) NIL T CONST)) (-1313 (((-570) $) NIL (|has| (-570) (-551)))) (-2344 (($ (-413 (-570))) 9)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-2622 (($ $) NIL (|has| (-570) (-826)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3122 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2564 ((-413 (-570)) $)) (-15 -2344 ($ (-413 (-570))))))) (T -108))
-((-2564 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108)))) (-2344 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108)))))
-(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 2)) (-10 -8 (-15 -2564 ((-413 (-570)) $)) (-15 -2344 ($ (-413 (-570))))))
-((-3006 (((-650 (-972)) $) 13)) (-3600 (((-512) $) 9)) (-3799 (((-868) $) 20)) (-3580 (($ (-512) (-650 (-972))) 15)))
-(((-109) (-13 (-619 (-868)) (-10 -8 (-15 -3600 ((-512) $)) (-15 -3006 ((-650 (-972)) $)) (-15 -3580 ($ (-512) (-650 (-972))))))) (T -109))
-((-3600 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-109)))) (-3006 (*1 *2 *1) (-12 (-5 *2 (-650 (-972))) (-5 *1 (-109)))) (-3580 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-109)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3600 ((-512) $)) (-15 -3006 ((-650 (-972)) $)) (-15 -3580 ($ (-512) (-650 (-972))))))
-((-2558 (((-112) $ $) NIL)) (-2579 (($ $) NIL)) (-1837 (($ $ $) NIL)) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) $) NIL (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-4004 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-112) (-856)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4450)))) (-3393 (($ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-3932 (((-112) $ (-1244 (-570)) (-112)) NIL (|has| $ (-6 -4450))) (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-1741 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3624 (((-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))))) (-1517 (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4450)))) (-3820 (((-112) $ (-570)) NIL)) (-4027 (((-570) (-112) $ (-570)) NIL (|has| (-112) (-1109))) (((-570) (-112) $) NIL (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) NIL)) (-3627 (((-650 (-112)) $) NIL (|has| $ (-6 -4449)))) (-1823 (($ $ $) NIL)) (-1795 (($ $) NIL)) (-2783 (($ $ $) NIL)) (-4291 (($ (-777) (-112)) 10)) (-1881 (($ $ $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL)) (-2024 (($ $ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2752 (((-650 (-112)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL)) (-1502 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-4290 (($ $ $ (-570)) NIL) (($ (-112) $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-112) $) NIL (|has| (-570) (-856)))) (-1790 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2147 (($ $ (-112)) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3700 (((-650 (-112)) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 (($ $ (-1244 (-570))) NIL) (((-112) $ (-570)) NIL) (((-112) $ (-570) (-112)) NIL)) (-4326 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3584 (((-777) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109)))) (((-777) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-112) (-620 (-542))))) (-3811 (($ (-650 (-112))) NIL)) (-2584 (($ (-650 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3799 (((-868) $) NIL)) (-1660 (($ (-777) (-112)) 11)) (-2335 (((-112) $ $) NIL)) (-4371 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1809 (($ $ $) NIL)) (-4420 (($ $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)) (-4407 (($ $ $) NIL)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-110) (-13 (-124) (-10 -8 (-15 -1660 ($ (-777) (-112)))))) (T -110))
-((-1660 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-112)) (-5 *1 (-110)))))
-(-13 (-124) (-10 -8 (-15 -1660 ($ (-777) (-112)))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#2|) 31)))
+((-2603 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-107 *3)))) (-1684 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))) (-3502 (*1 *1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))) (-2885 (*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
+(-13 (-495 |t#1|) (-10 -8 (-6 -4453) (-15 -2603 ($ (-650 |t#1|))) (-15 -1684 (|t#1| $)) (-15 -3502 ($ |t#1| $)) (-15 -2885 (|t#1| $))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 (((-570) $) NIL (|has| (-570) (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| (-570) (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-570) (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) NIL (|has| (-570) (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL)) (-4402 (((-570) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-2788 (((-112) $) NIL (|has| (-570) (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| (-570) (-856)))) (-1357 (($ (-1 (-570) (-570)) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-570) (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-1920 (((-570) $) NIL (|has| (-570) (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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))))) (-2006 (((-777) $) NIL)) (-1942 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 (((-570) $) NIL)) (-1426 (((-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)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 2) $) 10)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-2851 (((-777)) NIL T CONST)) (-1918 (((-570) $) NIL (|has| (-570) (-551)))) (-3462 (($ (-413 (-570))) 9)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3231 (($ $) NIL (|has| (-570) (-826)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3125 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3889 ((-413 (-570)) $)) (-15 -3462 ($ (-413 (-570))))))) (T -108))
+((-3889 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108)))) (-3462 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108)))))
+(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 2)) (-10 -8 (-15 -3889 ((-413 (-570)) $)) (-15 -3462 ($ (-413 (-570))))))
+((-3009 (((-650 (-972)) $) 13)) (-3602 (((-512) $) 9)) (-3802 (((-868) $) 20)) (-2338 (($ (-512) (-650 (-972))) 15)))
+(((-109) (-13 (-619 (-868)) (-10 -8 (-15 -3602 ((-512) $)) (-15 -3009 ((-650 (-972)) $)) (-15 -2338 ($ (-512) (-650 (-972))))))) (T -109))
+((-3602 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-109)))) (-3009 (*1 *2 *1) (-12 (-5 *2 (-650 (-972))) (-5 *1 (-109)))) (-2338 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-109)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3602 ((-512) $)) (-15 -3009 ((-650 (-972)) $)) (-15 -2338 ($ (-512) (-650 (-972))))))
+((-2560 (((-112) $ $) NIL)) (-2580 (($ $) NIL)) (-1837 (($ $ $) NIL)) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) $) NIL (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3936 (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| (-112) (-856)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4453)))) (-3396 (($ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3935 (((-112) $ (-1244 (-570)) (-112)) NIL (|has| $ (-6 -4453))) (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-1742 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-3627 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-1518 (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4453)))) (-3824 (((-112) $ (-570)) NIL)) (-4029 (((-570) (-112) $ (-570)) NIL (|has| (-112) (-1109))) (((-570) (-112) $) NIL (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) NIL)) (-3630 (((-650 (-112)) $) NIL (|has| $ (-6 -4452)))) (-1824 (($ $ $) NIL)) (-1796 (($ $) NIL)) (-2334 (($ $ $) NIL)) (-4294 (($ (-777) (-112)) 10)) (-2367 (($ $ $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL)) (-3183 (($ $ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2052 (((-650 (-112)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL)) (-1503 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-112) (-112) (-112)) $ $) NIL) (($ (-1 (-112) (-112)) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-4293 (($ $ $ (-570)) NIL) (($ (-112) $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-112) $) NIL (|has| (-570) (-856)))) (-2770 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2061 (($ $ (-112)) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-4049 (((-650 (-112)) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 (($ $ (-1244 (-570))) NIL) (((-112) $ (-570)) NIL) (((-112) $ (-570) (-112)) NIL)) (-4330 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3587 (((-777) (-112) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109)))) (((-777) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452)))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-112) (-620 (-542))))) (-3814 (($ (-650 (-112))) NIL)) (-2585 (($ (-650 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3802 (((-868) $) NIL)) (-3942 (($ (-777) (-112)) 11)) (-3359 (((-112) $ $) NIL)) (-4379 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452)))) (-1810 (($ $ $) NIL)) (-4423 (($ $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)) (-4410 (($ $ $) NIL)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-110) (-13 (-124) (-10 -8 (-15 -3942 ($ (-777) (-112)))))) (T -110))
+((-3942 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-112)) (-5 *1 (-110)))))
+(-13 (-124) (-10 -8 (-15 -3942 ($ (-777) (-112)))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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 -4444) (-6 -4443)))
+(-13 (-654 |t#1|) (-1065 |t#2|) (-10 -7 (-6 -4447) (-6 -4446)))
(((-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))
-((-2558 (((-112) $ $) NIL)) (-2579 (($ $) 10)) (-1837 (($ $ $) 15)) (-3106 (($) 7 T CONST)) (-4258 (($ $) 6)) (-3510 (((-777)) 24)) (-3446 (($) 32)) (-1823 (($ $ $) 13)) (-1795 (($ $) 9)) (-2783 (($ $ $) 16)) (-1881 (($ $ $) 17)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) 30)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) 28)) (-3991 (($ $ $) 20)) (-3577 (((-1129) $) NIL)) (-1954 (($) 8 T CONST)) (-2148 (($ $ $) 21)) (-1425 (((-542) $) 34)) (-3799 (((-868) $) 36)) (-2335 (((-112) $ $) NIL)) (-1809 (($ $ $) 11)) (-4420 (($ $ $) 14)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 19)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 22)) (-4407 (($ $ $) 12)))
-(((-112) (-13 (-850) (-667) (-976) (-620 (-542)) (-10 -8 (-15 -1837 ($ $ $)) (-15 -1881 ($ $ $)) (-15 -2783 ($ $ $)) (-15 -4258 ($ $))))) (T -112))
-((-1837 (*1 *1 *1 *1) (-5 *1 (-112))) (-1881 (*1 *1 *1 *1) (-5 *1 (-112))) (-2783 (*1 *1 *1 *1) (-5 *1 (-112))) (-4258 (*1 *1 *1) (-5 *1 (-112))))
-(-13 (-850) (-667) (-976) (-620 (-542)) (-10 -8 (-15 -1837 ($ $ $)) (-15 -1881 ($ $ $)) (-15 -2783 ($ $ $)) (-15 -4258 ($ $))))
-((-1823 (($ $ $) 6)) (-1795 (($ $) 8)) (-1809 (($ $ $) 7)))
+((-2560 (((-112) $ $) NIL)) (-2580 (($ $) 10)) (-1837 (($ $ $) 15)) (-3109 (($) 7 T CONST)) (-4261 (($ $) 6)) (-3513 (((-777)) 24)) (-3449 (($) 32)) (-1824 (($ $ $) 13)) (-1796 (($ $) 9)) (-2334 (($ $ $) 16)) (-2367 (($ $ $) 17)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) 30)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) 28)) (-1978 (($ $ $) 20)) (-3580 (((-1129) $) NIL)) (-1953 (($) 8 T CONST)) (-2073 (($ $ $) 21)) (-1426 (((-542) $) 34)) (-3802 (((-868) $) 36)) (-3359 (((-112) $ $) NIL)) (-1810 (($ $ $) 11)) (-4423 (($ $ $) 14)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 19)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 22)) (-4410 (($ $ $) 12)))
+(((-112) (-13 (-850) (-667) (-976) (-620 (-542)) (-10 -8 (-15 -1837 ($ $ $)) (-15 -2367 ($ $ $)) (-15 -2334 ($ $ $)) (-15 -4261 ($ $))))) (T -112))
+((-1837 (*1 *1 *1 *1) (-5 *1 (-112))) (-2367 (*1 *1 *1 *1) (-5 *1 (-112))) (-2334 (*1 *1 *1 *1) (-5 *1 (-112))) (-4261 (*1 *1 *1) (-5 *1 (-112))))
+(-13 (-850) (-667) (-976) (-620 (-542)) (-10 -8 (-15 -1837 ($ $ $)) (-15 -2367 ($ $ $)) (-15 -2334 ($ $ $)) (-15 -4261 ($ $))))
+((-1824 (($ $ $) 6)) (-1796 (($ $) 8)) (-1810 (($ $ $) 7)))
(((-113) (-141)) (T -113))
-((-1795 (*1 *1 *1) (-4 *1 (-113))) (-1809 (*1 *1 *1 *1) (-4 *1 (-113))) (-1823 (*1 *1 *1 *1) (-4 *1 (-113))))
-(-13 (-1227) (-10 -8 (-15 -1795 ($ $)) (-15 -1809 ($ $ $)) (-15 -1823 ($ $ $))))
+((-1796 (*1 *1 *1) (-4 *1 (-113))) (-1810 (*1 *1 *1 *1) (-4 *1 (-113))) (-1824 (*1 *1 *1 *1) (-4 *1 (-113))))
+(-13 (-1227) (-10 -8 (-15 -1796 ($ $)) (-15 -1810 ($ $ $)) (-15 -1824 ($ $ $))))
(((-1227) . T))
-((-2448 (((-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)) (-2372 (((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115)) 29) (((-115) (-115) (-1 |#1| |#1|)) 33) (((-115) (-115) (-650 (-1 |#1| (-650 |#1|)))) 30)) (-3350 (((-115) |#1|) 63)) (-3470 (((-3 |#1| "failed") (-115)) 58)))
-(((-114 |#1|) (-10 -7 (-15 -2448 ((-3 |#1| "failed") (-115) (-650 |#1|))) (-15 -2448 ((-115) (-115) (-1 |#1| (-650 |#1|)))) (-15 -2448 ((-115) (-115) (-1 |#1| |#1|))) (-15 -2448 ((-3 (-1 |#1| (-650 |#1|)) "failed") (-115))) (-15 -2372 ((-115) (-115) (-650 (-1 |#1| (-650 |#1|))))) (-15 -2372 ((-115) (-115) (-1 |#1| |#1|))) (-15 -2372 ((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115))) (-15 -3350 ((-115) |#1|)) (-15 -3470 ((-3 |#1| "failed") (-115)))) (-1109)) (T -114))
-((-3470 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))) (-3350 (*1 *2 *3) (-12 (-5 *2 (-115)) (-5 *1 (-114 *3)) (-4 *3 (-1109)))) (-2372 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-1 *4 (-650 *4)))) (-5 *1 (-114 *4)) (-4 *4 (-1109)))) (-2372 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-2372 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 (-1 *4 (-650 *4)))) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-2448 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-1 *4 (-650 *4))) (-5 *1 (-114 *4)) (-4 *4 (-1109)))) (-2448 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-2448 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 (-650 *4))) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-2448 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-115)) (-5 *4 (-650 *2)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))))
-(-10 -7 (-15 -2448 ((-3 |#1| "failed") (-115) (-650 |#1|))) (-15 -2448 ((-115) (-115) (-1 |#1| (-650 |#1|)))) (-15 -2448 ((-115) (-115) (-1 |#1| |#1|))) (-15 -2448 ((-3 (-1 |#1| (-650 |#1|)) "failed") (-115))) (-15 -2372 ((-115) (-115) (-650 (-1 |#1| (-650 |#1|))))) (-15 -2372 ((-115) (-115) (-1 |#1| |#1|))) (-15 -2372 ((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115))) (-15 -3350 ((-115) |#1|)) (-15 -3470 ((-3 |#1| "failed") (-115))))
-((-2558 (((-112) $ $) NIL)) (-3223 (((-777) $) 91) (($ $ (-777)) 37)) (-4009 (((-112) $) 41)) (-4325 (($ $ (-1168) (-780)) 58) (($ $ (-512) (-780)) 33)) (-3526 (($ $ (-45 (-1168) (-780))) 16)) (-3194 (((-3 (-780) "failed") $ (-1168)) 27) (((-697 (-780)) $ (-512)) 32)) (-3006 (((-45 (-1168) (-780)) $) 15)) (-3756 (($ (-1186)) 20) (($ (-1186) (-777)) 23) (($ (-1186) (-55)) 24)) (-2954 (((-112) $) 39)) (-2381 (((-112) $) 43)) (-3600 (((-1186) $) 8)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3190 (((-112) $ (-1186)) 11)) (-4197 (($ $ (-1 (-542) (-650 (-542)))) 64) (((-3 (-1 (-542) (-650 (-542))) "failed") $) 71)) (-3577 (((-1129) $) NIL)) (-2860 (((-112) $ (-512)) 36)) (-4388 (($ $ (-1 (-112) $ $)) 45)) (-4147 (((-3 (-1 (-868) (-650 (-868))) "failed") $) 69) (($ $ (-1 (-868) (-650 (-868)))) 51) (($ $ (-1 (-868) (-868))) 53)) (-1829 (($ $ (-1168)) 55) (($ $ (-512)) 56)) (-3951 (($ $) 77)) (-1326 (($ $ (-1 (-112) $ $)) 46)) (-3799 (((-868) $) 60)) (-2335 (((-112) $ $) NIL)) (-3683 (($ $ (-512)) 34)) (-1835 (((-55) $) 72)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 89)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 103)))
-(((-115) (-13 (-856) (-841 (-1186)) (-10 -8 (-15 -3006 ((-45 (-1168) (-780)) $)) (-15 -3951 ($ $)) (-15 -3756 ($ (-1186))) (-15 -3756 ($ (-1186) (-777))) (-15 -3756 ($ (-1186) (-55))) (-15 -2954 ((-112) $)) (-15 -4009 ((-112) $)) (-15 -2381 ((-112) $)) (-15 -3223 ((-777) $)) (-15 -3223 ($ $ (-777))) (-15 -4388 ($ $ (-1 (-112) $ $))) (-15 -1326 ($ $ (-1 (-112) $ $))) (-15 -4147 ((-3 (-1 (-868) (-650 (-868))) "failed") $)) (-15 -4147 ($ $ (-1 (-868) (-650 (-868))))) (-15 -4147 ($ $ (-1 (-868) (-868)))) (-15 -4197 ($ $ (-1 (-542) (-650 (-542))))) (-15 -4197 ((-3 (-1 (-542) (-650 (-542))) "failed") $)) (-15 -2860 ((-112) $ (-512))) (-15 -3683 ($ $ (-512))) (-15 -1829 ($ $ (-1168))) (-15 -1829 ($ $ (-512))) (-15 -3194 ((-3 (-780) "failed") $ (-1168))) (-15 -3194 ((-697 (-780)) $ (-512))) (-15 -4325 ($ $ (-1168) (-780))) (-15 -4325 ($ $ (-512) (-780))) (-15 -3526 ($ $ (-45 (-1168) (-780))))))) (T -115))
-((-3006 (*1 *2 *1) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))) (-3951 (*1 *1 *1) (-5 *1 (-115))) (-3756 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-115)))) (-3756 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-777)) (-5 *1 (-115)))) (-3756 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-55)) (-5 *1 (-115)))) (-2954 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-4009 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-2381 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-3223 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-115)))) (-3223 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-115)))) (-4388 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))) (-1326 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))) (-4147 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115)))) (-4147 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115)))) (-4147 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-868))) (-5 *1 (-115)))) (-4197 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115)))) (-4197 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115)))) (-2860 (*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-112)) (-5 *1 (-115)))) (-3683 (*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115)))) (-1829 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-115)))) (-1829 (*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115)))) (-3194 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-780)) (-5 *1 (-115)))) (-3194 (*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-780))) (-5 *1 (-115)))) (-4325 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-780)) (-5 *1 (-115)))) (-4325 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-780)) (-5 *1 (-115)))) (-3526 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
-(-13 (-856) (-841 (-1186)) (-10 -8 (-15 -3006 ((-45 (-1168) (-780)) $)) (-15 -3951 ($ $)) (-15 -3756 ($ (-1186))) (-15 -3756 ($ (-1186) (-777))) (-15 -3756 ($ (-1186) (-55))) (-15 -2954 ((-112) $)) (-15 -4009 ((-112) $)) (-15 -2381 ((-112) $)) (-15 -3223 ((-777) $)) (-15 -3223 ($ $ (-777))) (-15 -4388 ($ $ (-1 (-112) $ $))) (-15 -1326 ($ $ (-1 (-112) $ $))) (-15 -4147 ((-3 (-1 (-868) (-650 (-868))) "failed") $)) (-15 -4147 ($ $ (-1 (-868) (-650 (-868))))) (-15 -4147 ($ $ (-1 (-868) (-868)))) (-15 -4197 ($ $ (-1 (-542) (-650 (-542))))) (-15 -4197 ((-3 (-1 (-542) (-650 (-542))) "failed") $)) (-15 -2860 ((-112) $ (-512))) (-15 -3683 ($ $ (-512))) (-15 -1829 ($ $ (-1168))) (-15 -1829 ($ $ (-512))) (-15 -3194 ((-3 (-780) "failed") $ (-1168))) (-15 -3194 ((-697 (-780)) $ (-512))) (-15 -4325 ($ $ (-1168) (-780))) (-15 -4325 ($ $ (-512) (-780))) (-15 -3526 ($ $ (-45 (-1168) (-780))))))
-((-4157 (((-570) |#2|) 41)))
-(((-116 |#1| |#2|) (-10 -7 (-15 -4157 ((-570) |#2|))) (-13 (-368) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -116))
-((-4157 (*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 -4157 ((-570) |#2|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $ (-570)) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-3235 (($ (-1182 (-570)) (-570)) NIL)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2700 (($ $) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-4323 (((-777) $) NIL)) (-4346 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1932 (((-570)) NIL)) (-1442 (((-570) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2431 (($ $ (-570)) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2737 (((-1166 (-570)) $) NIL)) (-2853 (($ $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-3167 (((-570) $ (-570)) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
+((-2146 (((-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)) (-3755 (((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115)) 29) (((-115) (-115) (-1 |#1| |#1|)) 33) (((-115) (-115) (-650 (-1 |#1| (-650 |#1|)))) 30)) (-3932 (((-115) |#1|) 63)) (-3738 (((-3 |#1| "failed") (-115)) 58)))
+(((-114 |#1|) (-10 -7 (-15 -2146 ((-3 |#1| "failed") (-115) (-650 |#1|))) (-15 -2146 ((-115) (-115) (-1 |#1| (-650 |#1|)))) (-15 -2146 ((-115) (-115) (-1 |#1| |#1|))) (-15 -2146 ((-3 (-1 |#1| (-650 |#1|)) "failed") (-115))) (-15 -3755 ((-115) (-115) (-650 (-1 |#1| (-650 |#1|))))) (-15 -3755 ((-115) (-115) (-1 |#1| |#1|))) (-15 -3755 ((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115))) (-15 -3932 ((-115) |#1|)) (-15 -3738 ((-3 |#1| "failed") (-115)))) (-1109)) (T -114))
+((-3738 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))) (-3932 (*1 *2 *3) (-12 (-5 *2 (-115)) (-5 *1 (-114 *3)) (-4 *3 (-1109)))) (-3755 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-1 *4 (-650 *4)))) (-5 *1 (-114 *4)) (-4 *4 (-1109)))) (-3755 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-3755 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 (-1 *4 (-650 *4)))) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-2146 (*1 *2 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-1 *4 (-650 *4))) (-5 *1 (-114 *4)) (-4 *4 (-1109)))) (-2146 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 *4)) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-2146 (*1 *2 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *4 (-650 *4))) (-4 *4 (-1109)) (-5 *1 (-114 *4)))) (-2146 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-115)) (-5 *4 (-650 *2)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))))
+(-10 -7 (-15 -2146 ((-3 |#1| "failed") (-115) (-650 |#1|))) (-15 -2146 ((-115) (-115) (-1 |#1| (-650 |#1|)))) (-15 -2146 ((-115) (-115) (-1 |#1| |#1|))) (-15 -2146 ((-3 (-1 |#1| (-650 |#1|)) "failed") (-115))) (-15 -3755 ((-115) (-115) (-650 (-1 |#1| (-650 |#1|))))) (-15 -3755 ((-115) (-115) (-1 |#1| |#1|))) (-15 -3755 ((-3 (-650 (-1 |#1| (-650 |#1|))) "failed") (-115))) (-15 -3932 ((-115) |#1|)) (-15 -3738 ((-3 |#1| "failed") (-115))))
+((-2560 (((-112) $ $) NIL)) (-2117 (((-777) $) 91) (($ $ (-777)) 37)) (-3976 (((-112) $) 41)) (-3961 (($ $ (-1168) (-780)) 58) (($ $ (-512) (-780)) 33)) (-3083 (($ $ (-45 (-1168) (-780))) 16)) (-3197 (((-3 (-780) "failed") $ (-1168)) 27) (((-697 (-780)) $ (-512)) 32)) (-3009 (((-45 (-1168) (-780)) $) 15)) (-3759 (($ (-1186)) 20) (($ (-1186) (-777)) 23) (($ (-1186) (-55)) 24)) (-4348 (((-112) $) 39)) (-2664 (((-112) $) 43)) (-3602 (((-1186) $) 8)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3006 (((-112) $ (-1186)) 11)) (-4200 (($ $ (-1 (-542) (-650 (-542)))) 64) (((-3 (-1 (-542) (-650 (-542))) "failed") $) 71)) (-3580 (((-1129) $) NIL)) (-1735 (((-112) $ (-512)) 36)) (-3344 (($ $ (-1 (-112) $ $)) 45)) (-4150 (((-3 (-1 (-868) (-650 (-868))) "failed") $) 69) (($ $ (-1 (-868) (-650 (-868)))) 51) (($ $ (-1 (-868) (-868))) 53)) (-3091 (($ $ (-1168)) 55) (($ $ (-512)) 56)) (-3954 (($ $) 77)) (-1780 (($ $ (-1 (-112) $ $)) 46)) (-3802 (((-868) $) 60)) (-3359 (((-112) $ $) NIL)) (-3686 (($ $ (-512)) 34)) (-1968 (((-55) $) 72)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 89)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 103)))
+(((-115) (-13 (-856) (-841 (-1186)) (-10 -8 (-15 -3009 ((-45 (-1168) (-780)) $)) (-15 -3954 ($ $)) (-15 -3759 ($ (-1186))) (-15 -3759 ($ (-1186) (-777))) (-15 -3759 ($ (-1186) (-55))) (-15 -4348 ((-112) $)) (-15 -3976 ((-112) $)) (-15 -2664 ((-112) $)) (-15 -2117 ((-777) $)) (-15 -2117 ($ $ (-777))) (-15 -3344 ($ $ (-1 (-112) $ $))) (-15 -1780 ($ $ (-1 (-112) $ $))) (-15 -4150 ((-3 (-1 (-868) (-650 (-868))) "failed") $)) (-15 -4150 ($ $ (-1 (-868) (-650 (-868))))) (-15 -4150 ($ $ (-1 (-868) (-868)))) (-15 -4200 ($ $ (-1 (-542) (-650 (-542))))) (-15 -4200 ((-3 (-1 (-542) (-650 (-542))) "failed") $)) (-15 -1735 ((-112) $ (-512))) (-15 -3686 ($ $ (-512))) (-15 -3091 ($ $ (-1168))) (-15 -3091 ($ $ (-512))) (-15 -3197 ((-3 (-780) "failed") $ (-1168))) (-15 -3197 ((-697 (-780)) $ (-512))) (-15 -3961 ($ $ (-1168) (-780))) (-15 -3961 ($ $ (-512) (-780))) (-15 -3083 ($ $ (-45 (-1168) (-780))))))) (T -115))
+((-3009 (*1 *2 *1) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))) (-3954 (*1 *1 *1) (-5 *1 (-115))) (-3759 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-115)))) (-3759 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-777)) (-5 *1 (-115)))) (-3759 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-55)) (-5 *1 (-115)))) (-4348 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-2664 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))) (-2117 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-115)))) (-2117 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-115)))) (-3344 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))) (-1780 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))) (-4150 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115)))) (-4150 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-650 (-868)))) (-5 *1 (-115)))) (-4150 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-868) (-868))) (-5 *1 (-115)))) (-4200 (*1 *1 *1 *2) (-12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115)))) (-4200 (*1 *2 *1) (|partial| -12 (-5 *2 (-1 (-542) (-650 (-542)))) (-5 *1 (-115)))) (-1735 (*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-112)) (-5 *1 (-115)))) (-3686 (*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115)))) (-3091 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-115)))) (-3091 (*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115)))) (-3197 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-780)) (-5 *1 (-115)))) (-3197 (*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-780))) (-5 *1 (-115)))) (-3961 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-780)) (-5 *1 (-115)))) (-3961 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-780)) (-5 *1 (-115)))) (-3083 (*1 *1 *1 *2) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
+(-13 (-856) (-841 (-1186)) (-10 -8 (-15 -3009 ((-45 (-1168) (-780)) $)) (-15 -3954 ($ $)) (-15 -3759 ($ (-1186))) (-15 -3759 ($ (-1186) (-777))) (-15 -3759 ($ (-1186) (-55))) (-15 -4348 ((-112) $)) (-15 -3976 ((-112) $)) (-15 -2664 ((-112) $)) (-15 -2117 ((-777) $)) (-15 -2117 ($ $ (-777))) (-15 -3344 ($ $ (-1 (-112) $ $))) (-15 -1780 ($ $ (-1 (-112) $ $))) (-15 -4150 ((-3 (-1 (-868) (-650 (-868))) "failed") $)) (-15 -4150 ($ $ (-1 (-868) (-650 (-868))))) (-15 -4150 ($ $ (-1 (-868) (-868)))) (-15 -4200 ($ $ (-1 (-542) (-650 (-542))))) (-15 -4200 ((-3 (-1 (-542) (-650 (-542))) "failed") $)) (-15 -1735 ((-112) $ (-512))) (-15 -3686 ($ $ (-512))) (-15 -3091 ($ $ (-1168))) (-15 -3091 ($ $ (-512))) (-15 -3197 ((-3 (-780) "failed") $ (-1168))) (-15 -3197 ((-697 (-780)) $ (-512))) (-15 -3961 ($ $ (-1168) (-780))) (-15 -3961 ($ $ (-512) (-780))) (-15 -3083 ($ $ (-45 (-1168) (-780))))))
+((-2994 (((-570) |#2|) 41)))
+(((-116 |#1| |#2|) (-10 -7 (-15 -2994 ((-570) |#2|))) (-13 (-368) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -116))
+((-2994 (*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 -2994 ((-570) |#2|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3817 (($ $ (-570)) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2236 (($ (-1182 (-570)) (-570)) NIL)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2769 (($ $) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3941 (((-777) $) NIL)) (-4139 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1574 (((-570)) NIL)) (-1571 (((-570) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3152 (($ $ (-570)) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3098 (((-1166 (-570)) $) NIL)) (-1682 (($ $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3170 (((-570) $ (-570)) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
(((-117 |#1|) (-875 |#1|) (-570)) (T -117))
NIL
(-875 |#1|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| (-117 |#1|) (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-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))))) (-1964 (($ $) NIL) (($ (-570) $) NIL)) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-117 |#1|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-117 |#1|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-117 |#1|))) (|:| |vec| (-1277 (-117 |#1|)))) (-695 $) (-1277 $)) NIL) (((-695 (-117 |#1|)) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-117 |#1|) (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) NIL (|has| (-117 |#1|) (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-117 |#1|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-117 |#1|) (-893 (-384))))) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL)) (-4399 (((-117 |#1|) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| (-117 |#1|) (-1161)))) (-1479 (((-112) $) NIL (|has| (-117 |#1|) (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| (-117 |#1|) (-856)))) (-2800 (($ $ $) NIL (|has| (-117 |#1|) (-856)))) (-1356 (($ (-1 (-117 |#1|) (-117 |#1|)) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-117 |#1|) (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| (-117 |#1|) (-311)))) (-3665 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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|))))) (-2142 (((-777) $) NIL)) (-1941 (($ $ (-117 |#1|)) NIL (|has| (-117 |#1|) (-290 (-117 |#1|) (-117 |#1|))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 (((-117 |#1|) $) NIL)) (-1425 (((-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)))) (-1587 (((-176 (-413 (-570))) $) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-117 |#1|) (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-117 |#1|)) NIL) (($ (-1186)) NIL (|has| (-117 |#1|) (-1047 (-1186))))) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| (-117 |#1|) (-916))) (|has| (-117 |#1|) (-146))))) (-3499 (((-777)) NIL T CONST)) (-1313 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-551)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-3167 (((-413 (-570)) $ (-570)) NIL)) (-2622 (($ $) NIL (|has| (-117 |#1|) (-826)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-3122 (($ $ $) NIL) (($ (-117 |#1|) (-117 |#1|)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3167 ((-413 (-570)) $ (-570))) (-15 -1587 ((-176 (-413 (-570))) $)) (-15 -1964 ($ $)) (-15 -1964 ($ (-570) $)))) (-570)) (T -118))
-((-3167 (*1 *2 *1 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-118 *4)) (-14 *4 *3) (-5 *3 (-570)))) (-1587 (*1 *2 *1) (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-118 *3)) (-14 *3 (-570)))) (-1964 (*1 *1 *1) (-12 (-5 *1 (-118 *2)) (-14 *2 (-570)))) (-1964 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-118 *3)) (-14 *3 *2))))
-(-13 (-1001 (-117 |#1|)) (-10 -8 (-15 -3167 ((-413 (-570)) $ (-570))) (-15 -1587 ((-176 (-413 (-570))) $)) (-15 -1964 ($ $)) (-15 -1964 ($ (-570) $))))
-((-3932 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 61) (($ $ "right" $) 63)) (-3880 (((-650 $) $) 31)) (-2439 (((-112) $ $) 36)) (-4108 (((-112) |#2| $) 40)) (-2403 (((-650 |#2|) $) 25)) (-2606 (((-112) $) 18)) (-1941 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-3817 (((-112) $) 57)) (-3799 (((-868) $) 47)) (-3397 (((-650 $) $) 32)) (-3022 (((-112) $ $) 38)) (-2569 (((-777) $) 50)))
-(((-119 |#1| |#2|) (-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -3932 (|#1| |#1| "right" |#1|)) (-15 -3932 (|#1| |#1| "left" |#1|)) (-15 -1941 (|#1| |#1| "right")) (-15 -1941 (|#1| |#1| "left")) (-15 -3932 (|#2| |#1| "value" |#2|)) (-15 -2439 ((-112) |#1| |#1|)) (-15 -2403 ((-650 |#2|) |#1|)) (-15 -3817 ((-112) |#1|)) (-15 -1941 (|#2| |#1| "value")) (-15 -2606 ((-112) |#1|)) (-15 -3880 ((-650 |#1|) |#1|)) (-15 -3397 ((-650 |#1|) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -4108 ((-112) |#2| |#1|)) (-15 -2569 ((-777) |#1|))) (-120 |#2|) (-1227)) (T -119))
-NIL
-(-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -3932 (|#1| |#1| "right" |#1|)) (-15 -3932 (|#1| |#1| "left" |#1|)) (-15 -1941 (|#1| |#1| "right")) (-15 -1941 (|#1| |#1| "left")) (-15 -3932 (|#2| |#1| "value" |#2|)) (-15 -2439 ((-112) |#1| |#1|)) (-15 -2403 ((-650 |#2|) |#1|)) (-15 -3817 ((-112) |#1|)) (-15 -1941 (|#2| |#1| "value")) (-15 -2606 ((-112) |#1|)) (-15 -3880 ((-650 |#1|) |#1|)) (-15 -3397 ((-650 |#1|) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -4108 ((-112) |#2| |#1|)) (-15 -2569 ((-777) |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-4302 (((-112) $ (-777)) 8)) (-2988 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-2830 (($ $ $) 53 (|has| $ (-6 -4450)))) (-2184 (($ $ $) 55 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450))) (($ $ "left" $) 56 (|has| $ (-6 -4450))) (($ $ "right" $) 54 (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-1705 (($) 7 T CONST)) (-4410 (($ $) 58)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 51)) (-2439 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-4397 (($ $) 60)) (-2403 (((-650 |#1|) $) 46)) (-2606 (((-112) $) 50)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-2738 (((-570) $ $) 45)) (-3817 (((-112) $) 47)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 52)) (-3746 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| (-117 |#1|) (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-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))))) (-1907 (($ $) NIL) (($ (-570) $) NIL)) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-117 |#1|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-117 |#1|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-117 |#1|))) (|:| |vec| (-1277 (-117 |#1|)))) (-695 $) (-1277 $)) NIL) (((-695 (-117 |#1|)) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-117 |#1|) (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) NIL (|has| (-117 |#1|) (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-117 |#1|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-117 |#1|) (-893 (-384))))) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL)) (-4402 (((-117 |#1|) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| (-117 |#1|) (-1161)))) (-2788 (((-112) $) NIL (|has| (-117 |#1|) (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| (-117 |#1|) (-856)))) (-2472 (($ $ $) NIL (|has| (-117 |#1|) (-856)))) (-1357 (($ (-1 (-117 |#1|) (-117 |#1|)) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-117 |#1|) (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| (-117 |#1|) (-311)))) (-1920 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-117 |#1|) (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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|))))) (-2006 (((-777) $) NIL)) (-1942 (($ $ (-117 |#1|)) NIL (|has| (-117 |#1|) (-290 (-117 |#1|) (-117 |#1|))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 (((-117 |#1|) $) NIL)) (-1426 (((-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)))) (-4428 (((-176 (-413 (-570))) $) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-117 |#1|) (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-117 |#1|)) NIL) (($ (-1186)) NIL (|has| (-117 |#1|) (-1047 (-1186))))) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| (-117 |#1|) (-916))) (|has| (-117 |#1|) (-146))))) (-2851 (((-777)) NIL T CONST)) (-1918 (((-117 |#1|) $) NIL (|has| (-117 |#1|) (-551)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3170 (((-413 (-570)) $ (-570)) NIL)) (-3231 (($ $) NIL (|has| (-117 |#1|) (-826)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-117 |#1|) (-856)))) (-3125 (($ $ $) NIL) (($ (-117 |#1|) (-117 |#1|)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3170 ((-413 (-570)) $ (-570))) (-15 -4428 ((-176 (-413 (-570))) $)) (-15 -1907 ($ $)) (-15 -1907 ($ (-570) $)))) (-570)) (T -118))
+((-3170 (*1 *2 *1 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-118 *4)) (-14 *4 *3) (-5 *3 (-570)))) (-4428 (*1 *2 *1) (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-118 *3)) (-14 *3 (-570)))) (-1907 (*1 *1 *1) (-12 (-5 *1 (-118 *2)) (-14 *2 (-570)))) (-1907 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-118 *3)) (-14 *3 *2))))
+(-13 (-1001 (-117 |#1|)) (-10 -8 (-15 -3170 ((-413 (-570)) $ (-570))) (-15 -4428 ((-176 (-413 (-570))) $)) (-15 -1907 ($ $)) (-15 -1907 ($ (-570) $))))
+((-3935 ((|#2| $ "value" |#2|) NIL) (($ $ "left" $) 61) (($ $ "right" $) 63)) (-2119 (((-650 $) $) 31)) (-2045 (((-112) $ $) 36)) (-3767 (((-112) |#2| $) 40)) (-2404 (((-650 |#2|) $) 25)) (-4244 (((-112) $) 18)) (-1942 ((|#2| $ "value") NIL) (($ $ "left") 10) (($ $ "right") 13)) (-2759 (((-112) $) 57)) (-3802 (((-868) $) 47)) (-4259 (((-650 $) $) 32)) (-3025 (((-112) $ $) 38)) (-2570 (((-777) $) 50)))
+(((-119 |#1| |#2|) (-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -3935 (|#1| |#1| "right" |#1|)) (-15 -3935 (|#1| |#1| "left" |#1|)) (-15 -1942 (|#1| |#1| "right")) (-15 -1942 (|#1| |#1| "left")) (-15 -3935 (|#2| |#1| "value" |#2|)) (-15 -2045 ((-112) |#1| |#1|)) (-15 -2404 ((-650 |#2|) |#1|)) (-15 -2759 ((-112) |#1|)) (-15 -1942 (|#2| |#1| "value")) (-15 -4244 ((-112) |#1|)) (-15 -2119 ((-650 |#1|) |#1|)) (-15 -4259 ((-650 |#1|) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -3767 ((-112) |#2| |#1|)) (-15 -2570 ((-777) |#1|))) (-120 |#2|) (-1227)) (T -119))
+NIL
+(-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -3935 (|#1| |#1| "right" |#1|)) (-15 -3935 (|#1| |#1| "left" |#1|)) (-15 -1942 (|#1| |#1| "right")) (-15 -1942 (|#1| |#1| "left")) (-15 -3935 (|#2| |#1| "value" |#2|)) (-15 -2045 ((-112) |#1| |#1|)) (-15 -2404 ((-650 |#2|) |#1|)) (-15 -2759 ((-112) |#1|)) (-15 -1942 (|#2| |#1| "value")) (-15 -4244 ((-112) |#1|)) (-15 -2119 ((-650 |#1|) |#1|)) (-15 -4259 ((-650 |#1|) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -3767 ((-112) |#2| |#1|)) (-15 -2570 ((-777) |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-1932 (((-112) $ (-777)) 8)) (-1647 ((|#1| $ |#1|) 40 (|has| $ (-6 -4453)))) (-1408 (($ $ $) 53 (|has| $ (-6 -4453)))) (-2436 (($ $ $) 55 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4453))) (($ $ "left" $) 56 (|has| $ (-6 -4453))) (($ $ "right" $) 54 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 42 (|has| $ (-6 -4453)))) (-3195 (($) 7 T CONST)) (-4413 (($ $) 58)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 51)) (-2045 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-4400 (($ $) 60)) (-2404 (((-650 |#1|) $) 46)) (-4244 (((-112) $) 50)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-3108 (((-570) $ $) 45)) (-2759 (((-112) $) 47)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 52)) (-3290 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-120 |#1|) (-141) (-1227)) (T -120))
-((-4397 (*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-1941 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-4410 (*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-1941 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-3932 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4450)) (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-2184 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-3932 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4450)) (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-2830 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
-(-13 (-1019 |t#1|) (-10 -8 (-15 -4397 ($ $)) (-15 -1941 ($ $ "left")) (-15 -4410 ($ $)) (-15 -1941 ($ $ "right")) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3932 ($ $ "left" $)) (-15 -2184 ($ $ $)) (-15 -3932 ($ $ "right" $)) (-15 -2830 ($ $ $))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3340 (((-112) |#1|) 29)) (-2140 (((-777) (-777)) 28) (((-777)) 27)) (-3080 (((-112) |#1| (-112)) 30) (((-112) |#1|) 31)))
-(((-121 |#1|) (-10 -7 (-15 -3080 ((-112) |#1|)) (-15 -3080 ((-112) |#1| (-112))) (-15 -2140 ((-777))) (-15 -2140 ((-777) (-777))) (-15 -3340 ((-112) |#1|))) (-1253 (-570))) (T -121))
-((-3340 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-2140 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-2140 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-3080 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-3080 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
-(-10 -7 (-15 -3080 ((-112) |#1|)) (-15 -3080 ((-112) |#1| (-112))) (-15 -2140 ((-777))) (-15 -2140 ((-777) (-777))) (-15 -3340 ((-112) |#1|)))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 18)) (-3774 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 26)) (-4302 (((-112) $ (-777)) NIL)) (-2988 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-2830 (($ $ $) 21 (|has| $ (-6 -4450)))) (-2184 (($ $ $) 23 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4410 (($ $) 20)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3385 (($ $ |#1| $) 27)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-4397 (($ $) 22)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3479 (($ |#1| $) 28)) (-1385 (($ |#1| $) 15)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 17)) (-2380 (($) 11)) (-1941 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2738 (((-570) $ $) NIL)) (-3817 (((-112) $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2005 (($ (-650 |#1|)) 16)) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-122 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4450) (-6 -4449) (-15 -2005 ($ (-650 |#1|))) (-15 -1385 ($ |#1| $)) (-15 -3479 ($ |#1| $)) (-15 -3774 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-856)) (T -122))
-((-2005 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-122 *3)))) (-1385 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))) (-3479 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))) (-3774 (*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 -2005 ($ (-650 |#1|))) (-15 -1385 ($ |#1| $)) (-15 -3479 ($ |#1| $)) (-15 -3774 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
-((-2579 (($ $) 13)) (-1795 (($ $) 11)) (-2783 (($ $ $) 23)) (-1881 (($ $ $) 21)) (-4420 (($ $ $) 19)) (-4407 (($ $ $) 17)))
-(((-123 |#1|) (-10 -8 (-15 -2783 (|#1| |#1| |#1|)) (-15 -1881 (|#1| |#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -4407 (|#1| |#1| |#1|)) (-15 -4420 (|#1| |#1| |#1|)) (-15 -1795 (|#1| |#1|))) (-124)) (T -123))
-NIL
-(-10 -8 (-15 -2783 (|#1| |#1| |#1|)) (-15 -1881 (|#1| |#1| |#1|)) (-15 -2579 (|#1| |#1|)) (-15 -4407 (|#1| |#1| |#1|)) (-15 -4420 (|#1| |#1| |#1|)) (-15 -1795 (|#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-2579 (($ $) 102)) (-1837 (($ $ $) 27)) (-3851 (((-1282) $ (-570) (-570)) 65 (|has| $ (-6 -4450)))) (-4374 (((-112) $) 97 (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) 91)) (-4004 (($ $) 101 (-12 (|has| (-112) (-856)) (|has| $ (-6 -4450)))) (($ (-1 (-112) (-112) (-112)) $) 100 (|has| $ (-6 -4450)))) (-3393 (($ $) 96 (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) 90)) (-4302 (((-112) $ (-777)) 36)) (-3932 (((-112) $ (-1244 (-570)) (-112)) 87 (|has| $ (-6 -4450))) (((-112) $ (-570) (-112)) 53 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) (-112)) $) 70 (|has| $ (-6 -4449)))) (-1705 (($) 37 T CONST)) (-2844 (($ $) 99 (|has| $ (-6 -4450)))) (-2377 (($ $) 89)) (-3579 (($ $) 67 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4449))) (($ (-112) $) 68 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449))))) (-3624 (((-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))))) (-1517 (((-112) $ (-570) (-112)) 52 (|has| $ (-6 -4450)))) (-3820 (((-112) $ (-570)) 54)) (-4027 (((-570) (-112) $ (-570)) 94 (|has| (-112) (-1109))) (((-570) (-112) $) 93 (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) 92)) (-3627 (((-650 (-112)) $) 44 (|has| $ (-6 -4449)))) (-1823 (($ $ $) 107)) (-1795 (($ $) 105)) (-2783 (($ $ $) 28)) (-4291 (($ (-777) (-112)) 76)) (-1881 (($ $ $) 29)) (-2929 (((-112) $ (-777)) 35)) (-2383 (((-570) $) 62 (|has| (-570) (-856)))) (-3466 (($ $ $) 14)) (-2024 (($ $ $) 95 (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) 88)) (-2752 (((-650 (-112)) $) 45 (|has| $ (-6 -4449)))) (-4108 (((-112) (-112) $) 47 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 61 (|has| (-570) (-856)))) (-2800 (($ $ $) 15)) (-1502 (($ (-1 (-112) (-112)) $) 40 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-112) (-112) (-112)) $ $) 81) (($ (-1 (-112) (-112)) $) 39)) (-3231 (((-112) $ (-777)) 34)) (-1988 (((-1168) $) 10)) (-4290 (($ $ $ (-570)) 86) (($ (-112) $ (-570)) 85)) (-1805 (((-650 (-570)) $) 59)) (-3939 (((-112) (-570) $) 58)) (-3577 (((-1129) $) 11)) (-3543 (((-112) $) 63 (|has| (-570) (-856)))) (-1790 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 74)) (-2147 (($ $ (-112)) 64 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 30)) (-1868 (((-112) (-112) $) 60 (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3700 (((-650 (-112)) $) 57)) (-2017 (((-112) $) 33)) (-2380 (($) 32)) (-1941 (($ $ (-1244 (-570))) 82) (((-112) $ (-570)) 56) (((-112) $ (-570) (-112)) 55)) (-4326 (($ $ (-1244 (-570))) 84) (($ $ (-570)) 83)) (-3584 (((-777) (-112) $) 46 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4449)))) (-2906 (($ $ $ (-570)) 98 (|has| $ (-6 -4450)))) (-3951 (($ $) 31)) (-1425 (((-542) $) 66 (|has| (-112) (-620 (-542))))) (-3811 (($ (-650 (-112))) 75)) (-2584 (($ (-650 $)) 80) (($ $ $) 79) (($ (-112) $) 78) (($ $ (-112)) 77)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-4371 (((-112) (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4449)))) (-1809 (($ $ $) 106)) (-4420 (($ $ $) 104)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (-4407 (($ $ $) 103)) (-2569 (((-777) $) 38 (|has| $ (-6 -4449)))))
+((-4400 (*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-1942 (*1 *1 *1 *2) (-12 (-5 *2 "left") (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-4413 (*1 *1 *1) (-12 (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-1942 (*1 *1 *1 *2) (-12 (-5 *2 "right") (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-3935 (*1 *1 *1 *2 *1) (-12 (-5 *2 "left") (|has| *1 (-6 -4453)) (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-2436 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))) (-3935 (*1 *1 *1 *2 *1) (-12 (-5 *2 "right") (|has| *1 (-6 -4453)) (-4 *1 (-120 *3)) (-4 *3 (-1227)))) (-1408 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
+(-13 (-1019 |t#1|) (-10 -8 (-15 -4400 ($ $)) (-15 -1942 ($ $ "left")) (-15 -4413 ($ $)) (-15 -1942 ($ $ "right")) (IF (|has| $ (-6 -4453)) (PROGN (-15 -3935 ($ $ "left" $)) (-15 -2436 ($ $ $)) (-15 -3935 ($ $ "right" $)) (-15 -1408 ($ $ $))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3852 (((-112) |#1|) 29)) (-1986 (((-777) (-777)) 28) (((-777)) 27)) (-3199 (((-112) |#1| (-112)) 30) (((-112) |#1|) 31)))
+(((-121 |#1|) (-10 -7 (-15 -3199 ((-112) |#1|)) (-15 -3199 ((-112) |#1| (-112))) (-15 -1986 ((-777))) (-15 -1986 ((-777) (-777))) (-15 -3852 ((-112) |#1|))) (-1253 (-570))) (T -121))
+((-3852 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-1986 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-1986 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-3199 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))) (-3199 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
+(-10 -7 (-15 -3199 ((-112) |#1|)) (-15 -3199 ((-112) |#1| (-112))) (-15 -1986 ((-777))) (-15 -1986 ((-777) (-777))) (-15 -3852 ((-112) |#1|)))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 18)) (-3568 (((-2 (|:| |less| $) (|:| |greater| $)) |#1| $) 26)) (-1932 (((-112) $ (-777)) NIL)) (-1647 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1408 (($ $ $) 21 (|has| $ (-6 -4453)))) (-2436 (($ $ $) 23 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) (($ $ "left" $) NIL (|has| $ (-6 -4453))) (($ $ "right" $) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4413 (($ $) 20)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3388 (($ $ |#1| $) 27)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-4400 (($ $) 22)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2644 (($ |#1| $) 28)) (-3502 (($ |#1| $) 15)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 17)) (-2656 (($) 11)) (-1942 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3108 (((-570) $ $) NIL)) (-2759 (((-112) $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4160 (($ (-650 |#1|)) 16)) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-122 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4453) (-6 -4452) (-15 -4160 ($ (-650 |#1|))) (-15 -3502 ($ |#1| $)) (-15 -2644 ($ |#1| $)) (-15 -3568 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $)))) (-856)) (T -122))
+((-4160 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-122 *3)))) (-3502 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))) (-2644 (*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))) (-3568 (*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 -4453) (-6 -4452) (-15 -4160 ($ (-650 |#1|))) (-15 -3502 ($ |#1| $)) (-15 -2644 ($ |#1| $)) (-15 -3568 ((-2 (|:| |less| $) (|:| |greater| $)) |#1| $))))
+((-2580 (($ $) 13)) (-1796 (($ $) 11)) (-2334 (($ $ $) 23)) (-2367 (($ $ $) 21)) (-4423 (($ $ $) 19)) (-4410 (($ $ $) 17)))
+(((-123 |#1|) (-10 -8 (-15 -2334 (|#1| |#1| |#1|)) (-15 -2367 (|#1| |#1| |#1|)) (-15 -2580 (|#1| |#1|)) (-15 -4410 (|#1| |#1| |#1|)) (-15 -4423 (|#1| |#1| |#1|)) (-15 -1796 (|#1| |#1|))) (-124)) (T -123))
+NIL
+(-10 -8 (-15 -2334 (|#1| |#1| |#1|)) (-15 -2367 (|#1| |#1| |#1|)) (-15 -2580 (|#1| |#1|)) (-15 -4410 (|#1| |#1| |#1|)) (-15 -4423 (|#1| |#1| |#1|)) (-15 -1796 (|#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-2580 (($ $) 102)) (-1837 (($ $ $) 27)) (-3040 (((-1282) $ (-570) (-570)) 65 (|has| $ (-6 -4453)))) (-4414 (((-112) $) 97 (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) 91)) (-3936 (($ $) 101 (-12 (|has| (-112) (-856)) (|has| $ (-6 -4453)))) (($ (-1 (-112) (-112) (-112)) $) 100 (|has| $ (-6 -4453)))) (-3396 (($ $) 96 (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) 90)) (-1932 (((-112) $ (-777)) 36)) (-3935 (((-112) $ (-1244 (-570)) (-112)) 87 (|has| $ (-6 -4453))) (((-112) $ (-570) (-112)) 53 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) (-112)) $) 70 (|has| $ (-6 -4452)))) (-3195 (($) 37 T CONST)) (-1582 (($ $) 99 (|has| $ (-6 -4453)))) (-2380 (($ $) 89)) (-3582 (($ $) 67 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ (-1 (-112) (-112)) $) 71 (|has| $ (-6 -4452))) (($ (-112) $) 68 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4452))))) (-3627 (((-112) (-1 (-112) (-112) (-112)) $) 73 (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) 72 (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) 69 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4452))))) (-1518 (((-112) $ (-570) (-112)) 52 (|has| $ (-6 -4453)))) (-3824 (((-112) $ (-570)) 54)) (-4029 (((-570) (-112) $ (-570)) 94 (|has| (-112) (-1109))) (((-570) (-112) $) 93 (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) 92)) (-3630 (((-650 (-112)) $) 44 (|has| $ (-6 -4452)))) (-1824 (($ $ $) 107)) (-1796 (($ $) 105)) (-2334 (($ $ $) 28)) (-4294 (($ (-777) (-112)) 76)) (-2367 (($ $ $) 29)) (-2317 (((-112) $ (-777)) 35)) (-2685 (((-570) $) 62 (|has| (-570) (-856)))) (-3469 (($ $ $) 14)) (-3183 (($ $ $) 95 (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) 88)) (-2052 (((-650 (-112)) $) 45 (|has| $ (-6 -4452)))) (-3767 (((-112) (-112) $) 47 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 61 (|has| (-570) (-856)))) (-2472 (($ $ $) 15)) (-1503 (($ (-1 (-112) (-112)) $) 40 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-112) (-112) (-112)) $ $) 81) (($ (-1 (-112) (-112)) $) 39)) (-2193 (((-112) $ (-777)) 34)) (-3989 (((-1168) $) 10)) (-4293 (($ $ $ (-570)) 86) (($ (-112) $ (-570)) 85)) (-2903 (((-650 (-570)) $) 59)) (-1358 (((-112) (-570) $) 58)) (-3580 (((-1129) $) 11)) (-3546 (((-112) $) 63 (|has| (-570) (-856)))) (-2770 (((-3 (-112) "failed") (-1 (-112) (-112)) $) 74)) (-2061 (($ $ (-112)) 64 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) (-112)) $) 42 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 30)) (-2262 (((-112) (-112) $) 60 (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-4049 (((-650 (-112)) $) 57)) (-4283 (((-112) $) 33)) (-2656 (($) 32)) (-1942 (($ $ (-1244 (-570))) 82) (((-112) $ (-570)) 56) (((-112) $ (-570) (-112)) 55)) (-4330 (($ $ (-1244 (-570))) 84) (($ $ (-570)) 83)) (-3587 (((-777) (-112) $) 46 (-12 (|has| (-112) (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) (-112)) $) 43 (|has| $ (-6 -4452)))) (-2087 (($ $ $ (-570)) 98 (|has| $ (-6 -4453)))) (-3954 (($ $) 31)) (-1426 (((-542) $) 66 (|has| (-112) (-620 (-542))))) (-3814 (($ (-650 (-112))) 75)) (-2585 (($ (-650 $)) 80) (($ $ $) 79) (($ (-112) $) 78) (($ $ (-112)) 77)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-4379 (((-112) (-1 (-112) (-112)) $) 41 (|has| $ (-6 -4452)))) (-1810 (($ $ $) 106)) (-4423 (($ $ $) 104)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)) (-4410 (($ $ $) 103)) (-2570 (((-777) $) 38 (|has| $ (-6 -4452)))))
(((-124) (-141)) (T -124))
-((-1881 (*1 *1 *1 *1) (-4 *1 (-124))) (-2783 (*1 *1 *1 *1) (-4 *1 (-124))) (-1837 (*1 *1 *1 *1) (-4 *1 (-124))))
-(-13 (-856) (-113) (-667) (-19 (-112)) (-10 -8 (-15 -1881 ($ $ $)) (-15 -2783 ($ $ $)) (-15 -1837 ($ $ $))))
+((-2367 (*1 *1 *1 *1) (-4 *1 (-124))) (-2334 (*1 *1 *1 *1) (-4 *1 (-124))) (-1837 (*1 *1 *1 *1) (-4 *1 (-124))))
+(-13 (-856) (-113) (-667) (-19 (-112)) (-10 -8 (-15 -2367 ($ $ $)) (-15 -2334 ($ $ $)) (-15 -1837 ($ $ $))))
(((-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))
-((-1502 (($ (-1 |#2| |#2|) $) 22)) (-3951 (($ $) 16)) (-2569 (((-777) $) 25)))
-(((-125 |#1| |#2|) (-10 -8 (-15 -1502 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2569 ((-777) |#1|)) (-15 -3951 (|#1| |#1|))) (-126 |#2|) (-1109)) (T -125))
+((-1503 (($ (-1 |#2| |#2|) $) 22)) (-3954 (($ $) 16)) (-2570 (((-777) $) 25)))
+(((-125 |#1| |#2|) (-10 -8 (-15 -1503 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2570 ((-777) |#1|)) (-15 -3954 (|#1| |#1|))) (-126 |#2|) (-1109)) (T -125))
NIL
-(-10 -8 (-15 -1502 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2569 ((-777) |#1|)) (-15 -3951 (|#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-4302 (((-112) $ (-777)) 8)) (-2988 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-2830 (($ $ $) 53 (|has| $ (-6 -4450)))) (-2184 (($ $ $) 55 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450))) (($ $ "left" $) 56 (|has| $ (-6 -4450))) (($ $ "right" $) 54 (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-1705 (($) 7 T CONST)) (-4410 (($ $) 58)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 51)) (-2439 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-3385 (($ $ |#1| $) 61)) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-4397 (($ $) 60)) (-2403 (((-650 |#1|) $) 46)) (-2606 (((-112) $) 50)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-2738 (((-570) $ $) 45)) (-3817 (((-112) $) 47)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 52)) (-3746 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(-10 -8 (-15 -1503 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -2570 ((-777) |#1|)) (-15 -3954 (|#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-1932 (((-112) $ (-777)) 8)) (-1647 ((|#1| $ |#1|) 40 (|has| $ (-6 -4453)))) (-1408 (($ $ $) 53 (|has| $ (-6 -4453)))) (-2436 (($ $ $) 55 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4453))) (($ $ "left" $) 56 (|has| $ (-6 -4453))) (($ $ "right" $) 54 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 42 (|has| $ (-6 -4453)))) (-3195 (($) 7 T CONST)) (-4413 (($ $) 58)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 51)) (-2045 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-3388 (($ $ |#1| $) 61)) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-4400 (($ $) 60)) (-2404 (((-650 |#1|) $) 46)) (-4244 (((-112) $) 50)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ "value") 48) (($ $ "left") 59) (($ $ "right") 57)) (-3108 (((-570) $ $) 45)) (-2759 (((-112) $) 47)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 52)) (-3290 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-126 |#1|) (-141) (-1109)) (T -126))
-((-3385 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-126 *2)) (-4 *2 (-1109)))))
-(-13 (-120 |t#1|) (-10 -8 (-6 -4450) (-6 -4449) (-15 -3385 ($ $ |t#1| $))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-120 |#1|) . T) ((-619 (-868)) -2892 (|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))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 18)) (-4302 (((-112) $ (-777)) NIL)) (-2988 ((|#1| $ |#1|) 22 (|has| $ (-6 -4450)))) (-2830 (($ $ $) 23 (|has| $ (-6 -4450)))) (-2184 (($ $ $) 21 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4410 (($ $) 24)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3385 (($ $ |#1| $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-4397 (($ $) NIL)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1385 (($ |#1| $) 15)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 17)) (-2380 (($) 11)) (-1941 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2738 (((-570) $ $) NIL)) (-3817 (((-112) $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) 20)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1929 (($ (-650 |#1|)) 16)) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-127 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4450) (-15 -1929 ($ (-650 |#1|))) (-15 -1385 ($ |#1| $)))) (-856)) (T -127))
-((-1929 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-127 *3)))) (-1385 (*1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-856)))))
-(-13 (-126 |#1|) (-10 -8 (-6 -4450) (-15 -1929 ($ (-650 |#1|))) (-15 -1385 ($ |#1| $))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 30)) (-4302 (((-112) $ (-777)) NIL)) (-2988 ((|#1| $ |#1|) 32 (|has| $ (-6 -4450)))) (-2830 (($ $ $) 36 (|has| $ (-6 -4450)))) (-2184 (($ $ $) 34 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4410 (($ $) 23)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3385 (($ $ |#1| $) 16)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-4397 (($ $) 22)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) 25)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 20)) (-2380 (($) 11)) (-1941 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2738 (((-570) $ $) NIL)) (-3817 (((-112) $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1985 (($ |#1|) 18) (($ $ |#1| $) 17)) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 10 (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-128 |#1|) (-13 (-126 |#1|) (-10 -8 (-15 -1985 ($ |#1|)) (-15 -1985 ($ $ |#1| $)))) (-1109)) (T -128))
-((-1985 (*1 *1 *2) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))) (-1985 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))))
-(-13 (-126 |#1|) (-10 -8 (-15 -1985 ($ |#1|)) (-15 -1985 ($ $ |#1| $))))
-((-2558 (((-112) $ $) NIL (|has| (-130) (-1109)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) (-130) (-130)) $) NIL) (((-112) $) NIL (|has| (-130) (-856)))) (-4004 (($ (-1 (-112) (-130) (-130)) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-130) (-856))))) (-3393 (($ (-1 (-112) (-130) (-130)) $) NIL) (($ $) NIL (|has| (-130) (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 (((-130) $ (-570) (-130)) 26 (|has| $ (-6 -4450))) (((-130) $ (-1244 (-570)) (-130)) NIL (|has| $ (-6 -4450)))) (-3987 (((-777) $ (-777)) 34)) (-1431 (($ (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109))))) (-1741 (($ (-130) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109)))) (($ (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-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)))) (-1517 (((-130) $ (-570) (-130)) 25 (|has| $ (-6 -4450)))) (-3820 (((-130) $ (-570)) 20)) (-4027 (((-570) (-1 (-112) (-130)) $) NIL) (((-570) (-130) $) NIL (|has| (-130) (-1109))) (((-570) (-130) $ (-570)) NIL (|has| (-130) (-1109)))) (-3627 (((-650 (-130)) $) NIL (|has| $ (-6 -4449)))) (-4291 (($ (-777) (-130)) 14)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) 27 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| (-130) (-856)))) (-2024 (($ (-1 (-112) (-130) (-130)) $ $) NIL) (($ $ $) NIL (|has| (-130) (-856)))) (-2752 (((-650 (-130)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-130) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109))))) (-1460 (((-570) $) 30 (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| (-130) (-856)))) (-1502 (($ (-1 (-130) (-130)) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-130) (-130)) $) NIL) (($ (-1 (-130) (-130) (-130)) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| (-130) (-1109)))) (-4290 (($ (-130) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| (-130) (-1109)))) (-3543 (((-130) $) NIL (|has| (-570) (-856)))) (-1790 (((-3 (-130) "failed") (-1 (-112) (-130)) $) NIL)) (-2147 (($ $ (-130)) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) (-130) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109))))) (-3700 (((-650 (-130)) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 12)) (-1941 (((-130) $ (-570) (-130)) NIL) (((-130) $ (-570)) 23) (($ $ (-1244 (-570))) NIL)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3584 (((-777) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449))) (((-777) (-130) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-130) (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-130) (-620 (-542))))) (-3811 (($ (-650 (-130))) 46)) (-2584 (($ $ (-130)) NIL) (($ (-130) $) NIL) (($ $ $) 47) (($ (-650 $)) NIL)) (-3799 (((-965 (-130)) $) 35) (((-1168) $) 43) (((-868) $) NIL (|has| (-130) (-619 (-868))))) (-4061 (((-777) $) 18)) (-2840 (($ (-777)) 8)) (-2335 (((-112) $ $) NIL (|has| (-130) (-1109)))) (-4371 (((-112) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| (-130) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-130) (-856)))) (-3022 (((-112) $ $) 32 (|has| (-130) (-1109)))) (-3062 (((-112) $ $) NIL (|has| (-130) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2569 (((-777) $) 15 (|has| $ (-6 -4449)))))
-(((-129) (-13 (-19 (-130)) (-619 (-965 (-130))) (-619 (-1168)) (-10 -8 (-15 -2840 ($ (-777))) (-15 -4061 ((-777) $)) (-15 -3987 ((-777) $ (-777))) (-6 -4449)))) (T -129))
-((-2840 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))) (-4061 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-129)))) (-3987 (*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
-(-13 (-19 (-130)) (-619 (-965 (-130))) (-619 (-1168)) (-10 -8 (-15 -2840 ($ (-777))) (-15 -4061 ((-777) $)) (-15 -3987 ((-777) $ (-777))) (-6 -4449)))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) 26)) (-1705 (($) NIL T CONST)) (-3446 (($) 35)) (-3466 (($ $ $) NIL) (($) 24 T CONST)) (-2800 (($ $ $) NIL) (($) 25 T CONST)) (-1884 (((-928) $) 33)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) 31)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ (-145)) 15) (((-145) $) 17)) (-3738 (($ (-777)) 8)) (-1379 (($ $ $) 37)) (-1363 (($ $ $) 36)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) 22)) (-3052 (((-112) $ $) 20)) (-3022 (((-112) $ $) 18)) (-3062 (((-112) $ $) 21)) (-3042 (((-112) $ $) 19)))
-(((-130) (-13 (-850) (-496 (-145)) (-10 -8 (-15 -3738 ($ (-777))) (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))) (T -130))
-((-3738 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-130)))) (-1363 (*1 *1 *1 *1) (-5 *1 (-130))) (-1379 (*1 *1 *1 *1) (-5 *1 (-130))) (-1705 (*1 *1) (-5 *1 (-130))))
-(-13 (-850) (-496 (-145)) (-10 -8 (-15 -3738 ($ (-777))) (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))
+((-3388 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-126 *2)) (-4 *2 (-1109)))))
+(-13 (-120 |t#1|) (-10 -8 (-6 -4453) (-6 -4452) (-15 -3388 ($ $ |t#1| $))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-120 |#1|) . T) ((-619 (-868)) -2895 (|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))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 18)) (-1932 (((-112) $ (-777)) NIL)) (-1647 ((|#1| $ |#1|) 22 (|has| $ (-6 -4453)))) (-1408 (($ $ $) 23 (|has| $ (-6 -4453)))) (-2436 (($ $ $) 21 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) (($ $ "left" $) NIL (|has| $ (-6 -4453))) (($ $ "right" $) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4413 (($ $) 24)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3388 (($ $ |#1| $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-4400 (($ $) NIL)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3502 (($ |#1| $) 15)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 17)) (-2656 (($) 11)) (-1942 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3108 (((-570) $ $) NIL)) (-2759 (((-112) $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) 20)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1539 (($ (-650 |#1|)) 16)) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-127 |#1|) (-13 (-126 |#1|) (-10 -8 (-6 -4453) (-15 -1539 ($ (-650 |#1|))) (-15 -3502 ($ |#1| $)))) (-856)) (T -127))
+((-1539 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-127 *3)))) (-3502 (*1 *1 *2 *1) (-12 (-5 *1 (-127 *2)) (-4 *2 (-856)))))
+(-13 (-126 |#1|) (-10 -8 (-6 -4453) (-15 -1539 ($ (-650 |#1|))) (-15 -3502 ($ |#1| $))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 30)) (-1932 (((-112) $ (-777)) NIL)) (-1647 ((|#1| $ |#1|) 32 (|has| $ (-6 -4453)))) (-1408 (($ $ $) 36 (|has| $ (-6 -4453)))) (-2436 (($ $ $) 34 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) (($ $ "left" $) NIL (|has| $ (-6 -4453))) (($ $ "right" $) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4413 (($ $) 23)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3388 (($ $ |#1| $) 16)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-4400 (($ $) 22)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) 25)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 20)) (-2656 (($) 11)) (-1942 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3108 (((-570) $ $) NIL)) (-2759 (((-112) $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3957 (($ |#1|) 18) (($ $ |#1| $) 17)) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 10 (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-128 |#1|) (-13 (-126 |#1|) (-10 -8 (-15 -3957 ($ |#1|)) (-15 -3957 ($ $ |#1| $)))) (-1109)) (T -128))
+((-3957 (*1 *1 *2) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))) (-3957 (*1 *1 *1 *2 *1) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))))
+(-13 (-126 |#1|) (-10 -8 (-15 -3957 ($ |#1|)) (-15 -3957 ($ $ |#1| $))))
+((-2560 (((-112) $ $) NIL (|has| (-130) (-1109)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) (-130) (-130)) $) NIL) (((-112) $) NIL (|has| (-130) (-856)))) (-3936 (($ (-1 (-112) (-130) (-130)) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| (-130) (-856))))) (-3396 (($ (-1 (-112) (-130) (-130)) $) NIL) (($ $) NIL (|has| (-130) (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 (((-130) $ (-570) (-130)) 26 (|has| $ (-6 -4453))) (((-130) $ (-1244 (-570)) (-130)) NIL (|has| $ (-6 -4453)))) (-1924 (((-777) $ (-777)) 34)) (-1434 (($ (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-130) (-1109))))) (-1742 (($ (-130) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-130) (-1109)))) (($ (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-130) (-1 (-130) (-130) (-130)) $ (-130) (-130)) NIL (-12 (|has| $ (-6 -4452)) (|has| (-130) (-1109)))) (((-130) (-1 (-130) (-130) (-130)) $ (-130)) NIL (|has| $ (-6 -4452))) (((-130) (-1 (-130) (-130) (-130)) $) NIL (|has| $ (-6 -4452)))) (-1518 (((-130) $ (-570) (-130)) 25 (|has| $ (-6 -4453)))) (-3824 (((-130) $ (-570)) 20)) (-4029 (((-570) (-1 (-112) (-130)) $) NIL) (((-570) (-130) $) NIL (|has| (-130) (-1109))) (((-570) (-130) $ (-570)) NIL (|has| (-130) (-1109)))) (-3630 (((-650 (-130)) $) NIL (|has| $ (-6 -4452)))) (-4294 (($ (-777) (-130)) 14)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) 27 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| (-130) (-856)))) (-3183 (($ (-1 (-112) (-130) (-130)) $ $) NIL) (($ $ $) NIL (|has| (-130) (-856)))) (-2052 (((-650 (-130)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-130) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-130) (-1109))))) (-2602 (((-570) $) 30 (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| (-130) (-856)))) (-1503 (($ (-1 (-130) (-130)) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-130) (-130)) $) NIL) (($ (-1 (-130) (-130) (-130)) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| (-130) (-1109)))) (-4293 (($ (-130) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| (-130) (-1109)))) (-3546 (((-130) $) NIL (|has| (-570) (-856)))) (-2770 (((-3 (-130) "failed") (-1 (-112) (-130)) $) NIL)) (-2061 (($ $ (-130)) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) (-130) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-130) (-1109))))) (-4049 (((-650 (-130)) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 12)) (-1942 (((-130) $ (-570) (-130)) NIL) (((-130) $ (-570)) 23) (($ $ (-1244 (-570))) NIL)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3587 (((-777) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4452))) (((-777) (-130) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-130) (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-130) (-620 (-542))))) (-3814 (($ (-650 (-130))) 46)) (-2585 (($ $ (-130)) NIL) (($ (-130) $) NIL) (($ $ $) 47) (($ (-650 $)) NIL)) (-3802 (((-965 (-130)) $) 35) (((-1168) $) 43) (((-868) $) NIL (|has| (-130) (-619 (-868))))) (-3295 (((-777) $) 18)) (-1534 (($ (-777)) 8)) (-3359 (((-112) $ $) NIL (|has| (-130) (-1109)))) (-4379 (((-112) (-1 (-112) (-130)) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| (-130) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-130) (-856)))) (-3025 (((-112) $ $) 32 (|has| (-130) (-1109)))) (-3065 (((-112) $ $) NIL (|has| (-130) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-130) (-856)))) (-2570 (((-777) $) 15 (|has| $ (-6 -4452)))))
+(((-129) (-13 (-19 (-130)) (-619 (-965 (-130))) (-619 (-1168)) (-10 -8 (-15 -1534 ($ (-777))) (-15 -3295 ((-777) $)) (-15 -1924 ((-777) $ (-777))) (-6 -4452)))) (T -129))
+((-1534 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))) (-3295 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-129)))) (-1924 (*1 *2 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
+(-13 (-19 (-130)) (-619 (-965 (-130))) (-619 (-1168)) (-10 -8 (-15 -1534 ($ (-777))) (-15 -3295 ((-777) $)) (-15 -1924 ((-777) $ (-777))) (-6 -4452)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) 26)) (-3195 (($) NIL T CONST)) (-3449 (($) 35)) (-3469 (($ $ $) NIL) (($) 24 T CONST)) (-2472 (($ $ $) NIL) (($) 25 T CONST)) (-2400 (((-928) $) 33)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) 31)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ (-145)) 15) (((-145) $) 17)) (-3741 (($ (-777)) 8)) (-1380 (($ $ $) 37)) (-1364 (($ $ $) 36)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) 22)) (-3055 (((-112) $ $) 20)) (-3025 (((-112) $ $) 18)) (-3065 (((-112) $ $) 21)) (-3045 (((-112) $ $) 19)))
+(((-130) (-13 (-850) (-496 (-145)) (-10 -8 (-15 -3741 ($ (-777))) (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))) (T -130))
+((-3741 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-130)))) (-1364 (*1 *1 *1 *1) (-5 *1 (-130))) (-1380 (*1 *1 *1 *1) (-5 *1 (-130))) (-3195 (*1 *1) (-5 *1 (-130))))
+(-13 (-850) (-496 (-145)) (-10 -8 (-15 -3741 ($ (-777))) (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))
((|NonNegativeInteger|) (< |#1| 256))
-((-2558 (((-112) $ $) NIL)) (-3745 (($) 6 T CONST)) (-2331 (($) 7 T CONST)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 14)) (-3965 (($) 8 T CONST)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 10)))
-(((-131) (-13 (-1109) (-10 -8 (-15 -2331 ($) -3725) (-15 -3965 ($) -3725) (-15 -3745 ($) -3725)))) (T -131))
-((-2331 (*1 *1) (-5 *1 (-131))) (-3965 (*1 *1) (-5 *1 (-131))) (-3745 (*1 *1) (-5 *1 (-131))))
-(-13 (-1109) (-10 -8 (-15 -2331 ($) -3725) (-15 -3965 ($) -3725) (-15 -3745 ($) -3725)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
+((-2560 (((-112) $ $) NIL)) (-3280 (($) 6 T CONST)) (-3313 (($) 7 T CONST)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 14)) (-1669 (($) 8 T CONST)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 10)))
+(((-131) (-13 (-1109) (-10 -8 (-15 -3313 ($) -3728) (-15 -1669 ($) -3728) (-15 -3280 ($) -3728)))) (T -131))
+((-3313 (*1 *1) (-5 *1 (-131))) (-1669 (*1 *1) (-5 *1 (-131))) (-3280 (*1 *1) (-5 *1 (-131))))
+(-13 (-1109) (-10 -8 (-15 -3313 ($) -3728) (-15 -1669 ($) -3728) (-15 -3280 ($) -3728)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
(((-132) (-141)) (T -132))
-((-3990 (*1 *1 *1 *1) (|partial| -4 *1 (-132))))
-(-13 (-23) (-10 -8 (-15 -3990 ((-3 $ "failed") $ $))))
+((-1966 (*1 *1 *1 *1) (|partial| -4 *1 (-132))))
+(-13 (-23) (-10 -8 (-15 -1966 ((-3 $ "failed") $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) 7)) (-3940 (((-1282) $ (-777)) 14)) (-4027 (((-777) $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) 7)) (-1365 (((-1282) $ (-777)) 14)) (-4029 (((-777) $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-133) (-141)) (T -133))
-((-4027 (*1 *2 *1) (-12 (-4 *1 (-133)) (-5 *2 (-777)))) (-3940 (*1 *2 *1 *3) (-12 (-4 *1 (-133)) (-5 *3 (-777)) (-5 *2 (-1282)))))
-(-13 (-1109) (-10 -8 (-15 -4027 ((-777) $)) (-15 -3940 ((-1282) $ (-777)))))
+((-4029 (*1 *2 *1) (-12 (-4 *1 (-133)) (-5 *2 (-777)))) (-1365 (*1 *2 *1 *3) (-12 (-4 *1 (-133)) (-5 *3 (-777)) (-5 *2 (-1282)))))
+(-13 (-1109) (-10 -8 (-15 -4029 ((-777) $)) (-15 -1365 ((-1282) $ (-777)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-650 (-1144)) $) 10)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-134) (-13 (-1092) (-10 -8 (-15 -3613 ((-650 (-1144)) $))))) (T -134))
-((-3613 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-134)))))
-(-13 (-1092) (-10 -8 (-15 -3613 ((-650 (-1144)) $))))
-((-2558 (((-112) $ $) 49)) (-3467 (((-112) $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-777) "failed") $) 58)) (-3216 (((-777) $) 56)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) 37)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3882 (((-112)) 59)) (-3719 (((-112) (-112)) 61)) (-2501 (((-112) $) 30)) (-2037 (((-112) $) 55)) (-3799 (((-868) $) 28) (($ (-777)) 20)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 18 T CONST)) (-1875 (($) 19 T CONST)) (-3954 (($ (-777)) 21)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) 40)) (-3022 (((-112) $ $) 32)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 35)) (-3111 (((-3 $ "failed") $ $) 42)) (-3101 (($ $ $) 38)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL) (($ $ $) 54)) (* (($ (-777) $) 48) (($ (-928) $) NIL) (($ $ $) 45)))
-(((-135) (-13 (-856) (-23) (-732) (-1047 (-777)) (-10 -8 (-6 (-4451 "*")) (-15 -3111 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3954 ($ (-777))) (-15 -2501 ((-112) $)) (-15 -2037 ((-112) $)) (-15 -3882 ((-112))) (-15 -3719 ((-112) (-112)))))) (T -135))
-((-3111 (*1 *1 *1 *1) (|partial| -5 *1 (-135))) (** (*1 *1 *1 *1) (-5 *1 (-135))) (-3954 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-135)))) (-2501 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-2037 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-3882 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-3719 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
-(-13 (-856) (-23) (-732) (-1047 (-777)) (-10 -8 (-6 (-4451 "*")) (-15 -3111 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -3954 ($ (-777))) (-15 -2501 ((-112) $)) (-15 -2037 ((-112) $)) (-15 -3882 ((-112))) (-15 -3719 ((-112) (-112)))))
-((-3923 (((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|)) 14)) (-1356 (((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|)) 18)))
-(((-136 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3923 ((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|))) (-15 -1356 ((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|)))) (-570) (-777) (-174) (-174)) (T -136))
-((-1356 (*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)))) (-3923 (*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 -3923 ((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|))) (-15 -1356 ((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|))))
-((-2558 (((-112) $ $) NIL)) (-3412 (($ (-650 |#3|)) 61)) (-3244 (($ $) 123) (($ $ (-570) (-570)) 122)) (-1705 (($) 20)) (-4380 (((-3 |#3| "failed") $) 83)) (-3216 ((|#3| $) NIL)) (-3527 (($ $ (-650 (-570))) 124)) (-3911 (((-650 |#3|) $) 56)) (-4006 (((-777) $) 66)) (-4057 (($ $ $) 117)) (-3732 (($) 65)) (-1988 (((-1168) $) NIL)) (-2937 (($) 19)) (-3577 (((-1129) $) NIL)) (-1941 ((|#3| $) 68) ((|#3| $ (-570)) 69) ((|#3| $ (-570) (-570)) 70) ((|#3| $ (-570) (-570) (-570)) 71) ((|#3| $ (-570) (-570) (-570) (-570)) 72) ((|#3| $ (-650 (-570))) 73)) (-2130 (((-777) $) 67)) (-1345 (($ $ (-570) $ (-570)) 118) (($ $ (-570) (-570)) 120)) (-3799 (((-868) $) 91) (($ |#3|) 92) (($ (-242 |#2| |#3|)) 99) (($ (-1151 |#2| |#3|)) 102) (($ (-650 |#3|)) 74) (($ (-650 $)) 80)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 93 T CONST)) (-1875 (($) 94 T CONST)) (-3022 (((-112) $ $) 104)) (-3111 (($ $) 110) (($ $ $) 108)) (-3101 (($ $ $) 106)) (* (($ |#3| $) 115) (($ $ |#3|) 116) (($ $ (-570)) 113) (($ (-570) $) 112) (($ $ $) 119)))
-(((-137 |#1| |#2| |#3|) (-13 (-471 |#3| (-777)) (-476 (-570) (-777)) (-10 -8 (-15 -3799 ($ (-242 |#2| |#3|))) (-15 -3799 ($ (-1151 |#2| |#3|))) (-15 -3799 ($ (-650 |#3|))) (-15 -3799 ($ (-650 $))) (-15 -4006 ((-777) $)) (-15 -1941 (|#3| $)) (-15 -1941 (|#3| $ (-570))) (-15 -1941 (|#3| $ (-570) (-570))) (-15 -1941 (|#3| $ (-570) (-570) (-570))) (-15 -1941 (|#3| $ (-570) (-570) (-570) (-570))) (-15 -1941 (|#3| $ (-650 (-570)))) (-15 -4057 ($ $ $)) (-15 * ($ $ $)) (-15 -1345 ($ $ (-570) $ (-570))) (-15 -1345 ($ $ (-570) (-570))) (-15 -3244 ($ $)) (-15 -3244 ($ $ (-570) (-570))) (-15 -3527 ($ $ (-650 (-570)))) (-15 -2937 ($)) (-15 -3732 ($)) (-15 -3911 ((-650 |#3|) $)) (-15 -3412 ($ (-650 |#3|))) (-15 -1705 ($)))) (-570) (-777) (-174)) (T -137))
-((-4057 (*1 *1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-242 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-1151 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)))) (-3799 (*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)))) (-4006 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 *2) (-4 *5 (-174)))) (-1941 (*1 *2 *1) (-12 (-4 *2 (-174)) (-5 *1 (-137 *3 *4 *2)) (-14 *3 (-570)) (-14 *4 (-777)))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1941 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1941 (*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)))) (-1941 (*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)))) (-1941 (*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)))) (-1345 (*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)))) (-1345 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-3244 (*1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3244 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-3527 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2937 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3732 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3911 (*1 *2 *1) (-12 (-5 *2 (-650 *5)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-3412 (*1 *1 *2) (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)))) (-1705 (*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 -3799 ($ (-242 |#2| |#3|))) (-15 -3799 ($ (-1151 |#2| |#3|))) (-15 -3799 ($ (-650 |#3|))) (-15 -3799 ($ (-650 $))) (-15 -4006 ((-777) $)) (-15 -1941 (|#3| $)) (-15 -1941 (|#3| $ (-570))) (-15 -1941 (|#3| $ (-570) (-570))) (-15 -1941 (|#3| $ (-570) (-570) (-570))) (-15 -1941 (|#3| $ (-570) (-570) (-570) (-570))) (-15 -1941 (|#3| $ (-650 (-570)))) (-15 -4057 ($ $ $)) (-15 * ($ $ $)) (-15 -1345 ($ $ (-570) $ (-570))) (-15 -1345 ($ $ (-570) (-570))) (-15 -3244 ($ $)) (-15 -3244 ($ $ (-570) (-570))) (-15 -3527 ($ $ (-650 (-570)))) (-15 -2937 ($)) (-15 -3732 ($)) (-15 -3911 ((-650 |#3|) $)) (-15 -3412 ($ (-650 |#3|))) (-15 -1705 ($))))
-((-2558 (((-112) $ $) NIL)) (-2225 (((-1144) $) 11)) (-2213 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-138) (-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1144) $))))) (T -138))
-((-2213 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138)))) (-2225 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138)))))
-(-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1144) $))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3887 (((-188) $) 10)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-650 (-1144)) $) 13)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-139) (-13 (-1092) (-10 -8 (-15 -3887 ((-188) $)) (-15 -3613 ((-650 (-1144)) $))))) (T -139))
-((-3887 (*1 *2 *1) (-12 (-5 *2 (-188)) (-5 *1 (-139)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-139)))))
-(-13 (-1092) (-10 -8 (-15 -3887 ((-188) $)) (-15 -3613 ((-650 (-1144)) $))))
-((-2558 (((-112) $ $) NIL)) (-1817 (((-650 (-871)) $) NIL)) (-3600 (((-512) $) NIL)) (-1988 (((-1168) $) NIL)) (-3887 (((-188) $) NIL)) (-3190 (((-112) $ (-512)) NIL)) (-3577 (((-1129) $) NIL)) (-1530 (((-650 (-112)) $) NIL)) (-3799 (((-868) $) NIL) (((-189) $) 6)) (-2335 (((-112) $ $) NIL)) (-1835 (((-55) $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-650 (-1144)) $) 10)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-134) (-13 (-1092) (-10 -8 (-15 -3616 ((-650 (-1144)) $))))) (T -134))
+((-3616 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-134)))))
+(-13 (-1092) (-10 -8 (-15 -3616 ((-650 (-1144)) $))))
+((-2560 (((-112) $ $) 49)) (-3721 (((-112) $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-777) "failed") $) 58)) (-3220 (((-777) $) 56)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) 37)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2142 (((-112)) 59)) (-4233 (((-112) (-112)) 61)) (-1378 (((-112) $) 30)) (-3297 (((-112) $) 55)) (-3802 (((-868) $) 28) (($ (-777)) 20)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 18 T CONST)) (-1876 (($) 19 T CONST)) (-1544 (($ (-777)) 21)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) 40)) (-3025 (((-112) $ $) 32)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 35)) (-3114 (((-3 $ "failed") $ $) 42)) (-3104 (($ $ $) 38)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL) (($ $ $) 54)) (* (($ (-777) $) 48) (($ (-928) $) NIL) (($ $ $) 45)))
+(((-135) (-13 (-856) (-23) (-732) (-1047 (-777)) (-10 -8 (-6 (-4454 "*")) (-15 -3114 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1544 ($ (-777))) (-15 -1378 ((-112) $)) (-15 -3297 ((-112) $)) (-15 -2142 ((-112))) (-15 -4233 ((-112) (-112)))))) (T -135))
+((-3114 (*1 *1 *1 *1) (|partial| -5 *1 (-135))) (** (*1 *1 *1 *1) (-5 *1 (-135))) (-1544 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-135)))) (-1378 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-3297 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-2142 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))) (-4233 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
+(-13 (-856) (-23) (-732) (-1047 (-777)) (-10 -8 (-6 (-4454 "*")) (-15 -3114 ((-3 $ "failed") $ $)) (-15 ** ($ $ $)) (-15 -1544 ($ (-777))) (-15 -1378 ((-112) $)) (-15 -3297 ((-112) $)) (-15 -2142 ((-112))) (-15 -4233 ((-112) (-112)))))
+((-3928 (((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|)) 14)) (-1357 (((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|)) 18)))
+(((-136 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3928 ((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|))) (-15 -1357 ((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|)))) (-570) (-777) (-174) (-174)) (T -136))
+((-1357 (*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)))) (-3928 (*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 -3928 ((-137 |#1| |#2| |#4|) (-650 |#4|) (-137 |#1| |#2| |#3|))) (-15 -1357 ((-137 |#1| |#2| |#4|) (-1 |#4| |#3|) (-137 |#1| |#2| |#3|))))
+((-2560 (((-112) $ $) NIL)) (-3222 (($ (-650 |#3|)) 61)) (-2333 (($ $) 123) (($ $ (-570) (-570)) 122)) (-3195 (($) 20)) (-4383 (((-3 |#3| "failed") $) 83)) (-3220 ((|#3| $) NIL)) (-3092 (($ $ (-650 (-570))) 124)) (-3914 (((-650 |#3|) $) 56)) (-4009 (((-777) $) 66)) (-3258 (($ $ $) 117)) (-4350 (($) 65)) (-3989 (((-1168) $) NIL)) (-2377 (($) 19)) (-3580 (((-1129) $) NIL)) (-1942 ((|#3| $) 68) ((|#3| $ (-570)) 69) ((|#3| $ (-570) (-570)) 70) ((|#3| $ (-570) (-570) (-570)) 71) ((|#3| $ (-570) (-570) (-570) (-570)) 72) ((|#3| $ (-650 (-570))) 73)) (-3079 (((-777) $) 67)) (-2005 (($ $ (-570) $ (-570)) 118) (($ $ (-570) (-570)) 120)) (-3802 (((-868) $) 91) (($ |#3|) 92) (($ (-242 |#2| |#3|)) 99) (($ (-1151 |#2| |#3|)) 102) (($ (-650 |#3|)) 74) (($ (-650 $)) 80)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 93 T CONST)) (-1876 (($) 94 T CONST)) (-3025 (((-112) $ $) 104)) (-3114 (($ $) 110) (($ $ $) 108)) (-3104 (($ $ $) 106)) (* (($ |#3| $) 115) (($ $ |#3|) 116) (($ $ (-570)) 113) (($ (-570) $) 112) (($ $ $) 119)))
+(((-137 |#1| |#2| |#3|) (-13 (-471 |#3| (-777)) (-476 (-570) (-777)) (-10 -8 (-15 -3802 ($ (-242 |#2| |#3|))) (-15 -3802 ($ (-1151 |#2| |#3|))) (-15 -3802 ($ (-650 |#3|))) (-15 -3802 ($ (-650 $))) (-15 -4009 ((-777) $)) (-15 -1942 (|#3| $)) (-15 -1942 (|#3| $ (-570))) (-15 -1942 (|#3| $ (-570) (-570))) (-15 -1942 (|#3| $ (-570) (-570) (-570))) (-15 -1942 (|#3| $ (-570) (-570) (-570) (-570))) (-15 -1942 (|#3| $ (-650 (-570)))) (-15 -3258 ($ $ $)) (-15 * ($ $ $)) (-15 -2005 ($ $ (-570) $ (-570))) (-15 -2005 ($ $ (-570) (-570))) (-15 -2333 ($ $)) (-15 -2333 ($ $ (-570) (-570))) (-15 -3092 ($ $ (-650 (-570)))) (-15 -2377 ($)) (-15 -4350 ($)) (-15 -3914 ((-650 |#3|) $)) (-15 -3222 ($ (-650 |#3|))) (-15 -3195 ($)))) (-570) (-777) (-174)) (T -137))
+((-3258 (*1 *1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-242 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-1151 *4 *5)) (-14 *4 (-777)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)))) (-3802 (*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)))) (-4009 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 *2) (-4 *5 (-174)))) (-1942 (*1 *2 *1) (-12 (-4 *2 (-174)) (-5 *1 (-137 *3 *4 *2)) (-14 *3 (-570)) (-14 *4 (-777)))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1942 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *2 (-174)) (-5 *1 (-137 *4 *5 *2)) (-14 *4 *3) (-14 *5 (-777)))) (-1942 (*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)))) (-1942 (*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)))) (-1942 (*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)))) (-2005 (*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)))) (-2005 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-2333 (*1 *1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-2333 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 *2) (-14 *4 (-777)) (-4 *5 (-174)))) (-3092 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2377 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-4350 (*1 *1) (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777)) (-4 *4 (-174)))) (-3914 (*1 *2 *1) (-12 (-5 *2 (-650 *5)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)) (-4 *5 (-174)))) (-3222 (*1 *1 *2) (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570)) (-14 *4 (-777)))) (-3195 (*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 -3802 ($ (-242 |#2| |#3|))) (-15 -3802 ($ (-1151 |#2| |#3|))) (-15 -3802 ($ (-650 |#3|))) (-15 -3802 ($ (-650 $))) (-15 -4009 ((-777) $)) (-15 -1942 (|#3| $)) (-15 -1942 (|#3| $ (-570))) (-15 -1942 (|#3| $ (-570) (-570))) (-15 -1942 (|#3| $ (-570) (-570) (-570))) (-15 -1942 (|#3| $ (-570) (-570) (-570) (-570))) (-15 -1942 (|#3| $ (-650 (-570)))) (-15 -3258 ($ $ $)) (-15 * ($ $ $)) (-15 -2005 ($ $ (-570) $ (-570))) (-15 -2005 ($ $ (-570) (-570))) (-15 -2333 ($ $)) (-15 -2333 ($ $ (-570) (-570))) (-15 -3092 ($ $ (-650 (-570)))) (-15 -2377 ($)) (-15 -4350 ($)) (-15 -3914 ((-650 |#3|) $)) (-15 -3222 ($ (-650 |#3|))) (-15 -3195 ($))))
+((-2560 (((-112) $ $) NIL)) (-2226 (((-1144) $) 11)) (-2215 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-138) (-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1144) $))))) (T -138))
+((-2215 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138)))) (-2226 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138)))))
+(-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1144) $))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3890 (((-188) $) 10)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-650 (-1144)) $) 13)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-139) (-13 (-1092) (-10 -8 (-15 -3890 ((-188) $)) (-15 -3616 ((-650 (-1144)) $))))) (T -139))
+((-3890 (*1 *2 *1) (-12 (-5 *2 (-188)) (-5 *1 (-139)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-139)))))
+(-13 (-1092) (-10 -8 (-15 -3890 ((-188) $)) (-15 -3616 ((-650 (-1144)) $))))
+((-2560 (((-112) $ $) NIL)) (-1818 (((-650 (-871)) $) NIL)) (-3602 (((-512) $) NIL)) (-3989 (((-1168) $) NIL)) (-3890 (((-188) $) NIL)) (-3006 (((-112) $ (-512)) NIL)) (-3580 (((-1129) $) NIL)) (-2058 (((-650 (-112)) $) NIL)) (-3802 (((-868) $) NIL) (((-189) $) 6)) (-3359 (((-112) $ $) NIL)) (-1968 (((-55) $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-140) (-13 (-187) (-619 (-189)))) (T -140))
NIL
(-13 (-187) (-619 (-189)))
-((-2837 (((-650 (-185 (-140))) $) 13)) (-3559 (((-650 (-185 (-140))) $) 14)) (-2729 (((-650 (-844)) $) 10)) (-1609 (((-140) $) 7)) (-3799 (((-868) $) 16)))
-(((-141) (-13 (-619 (-868)) (-10 -8 (-15 -1609 ((-140) $)) (-15 -2729 ((-650 (-844)) $)) (-15 -2837 ((-650 (-185 (-140))) $)) (-15 -3559 ((-650 (-185 (-140))) $))))) (T -141))
-((-1609 (*1 *2 *1) (-12 (-5 *2 (-140)) (-5 *1 (-141)))) (-2729 (*1 *2 *1) (-12 (-5 *2 (-650 (-844))) (-5 *1 (-141)))) (-2837 (*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))) (-3559 (*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -1609 ((-140) $)) (-15 -2729 ((-650 (-844)) $)) (-15 -2837 ((-650 (-185 (-140))) $)) (-15 -3559 ((-650 (-185 (-140))) $))))
-((-2558 (((-112) $ $) NIL)) (-2160 (($) 17 T CONST)) (-4427 (($) NIL (|has| (-145) (-373)))) (-3959 (($ $ $) 19) (($ $ (-145)) NIL) (($ (-145) $) NIL)) (-3886 (($ $ $) NIL)) (-4165 (((-112) $ $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-3510 (((-777)) NIL (|has| (-145) (-373)))) (-4249 (($) NIL) (($ (-650 (-145))) NIL)) (-3753 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3249 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449))) (($ (-145) $) 60 (|has| $ (-6 -4449)))) (-1741 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449))) (($ (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3624 (((-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))))) (-3446 (($) NIL (|has| (-145) (-373)))) (-3627 (((-650 (-145)) $) 69 (|has| $ (-6 -4449)))) (-2192 (((-112) $ $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-3466 (((-145) $) NIL (|has| (-145) (-856)))) (-2752 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-145) $) 27 (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-2800 (((-145) $) NIL (|has| (-145) (-856)))) (-1502 (($ (-1 (-145) (-145)) $) 68 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-145) (-145)) $) 64)) (-1971 (($) 18 T CONST)) (-1884 (((-928) $) NIL (|has| (-145) (-373)))) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-2730 (($ $ $) 30)) (-1490 (((-145) $) 61)) (-1385 (($ (-145) $) 59)) (-2268 (($ (-928)) NIL (|has| (-145) (-373)))) (-3277 (($) 16 T CONST)) (-3577 (((-1129) $) NIL)) (-1790 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-3647 (((-145) $) 62)) (-3642 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 57)) (-2371 (($) 15 T CONST)) (-4031 (($ $ $) 32) (($ $ (-145)) NIL)) (-2178 (($ (-650 (-145))) NIL) (($) NIL)) (-3584 (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109)))) (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-1168) $) 37) (((-542) $) NIL (|has| (-145) (-620 (-542)))) (((-650 (-145)) $) 35)) (-3811 (($ (-650 (-145))) NIL)) (-1486 (($ $) 33 (|has| (-145) (-373)))) (-3799 (((-868) $) 53)) (-1736 (($ (-1168)) 14) (($ (-650 (-145))) 50)) (-3143 (((-777) $) NIL)) (-3861 (($) 58) (($ (-650 (-145))) NIL)) (-2335 (((-112) $ $) NIL)) (-2082 (($ (-650 (-145))) NIL)) (-4371 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-4219 (($) 21 T CONST)) (-3943 (($) 20 T CONST)) (-3022 (((-112) $ $) 24)) (-2569 (((-777) $) 56 (|has| $ (-6 -4449)))))
-(((-142) (-13 (-1109) (-620 (-1168)) (-431 (-145)) (-620 (-650 (-145))) (-10 -8 (-15 -1736 ($ (-1168))) (-15 -1736 ($ (-650 (-145)))) (-15 -2371 ($) -3725) (-15 -3277 ($) -3725) (-15 -2160 ($) -3725) (-15 -1971 ($) -3725) (-15 -3943 ($) -3725) (-15 -4219 ($) -3725)))) (T -142))
-((-1736 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-142)))) (-1736 (*1 *1 *2) (-12 (-5 *2 (-650 (-145))) (-5 *1 (-142)))) (-2371 (*1 *1) (-5 *1 (-142))) (-3277 (*1 *1) (-5 *1 (-142))) (-2160 (*1 *1) (-5 *1 (-142))) (-1971 (*1 *1) (-5 *1 (-142))) (-3943 (*1 *1) (-5 *1 (-142))) (-4219 (*1 *1) (-5 *1 (-142))))
-(-13 (-1109) (-620 (-1168)) (-431 (-145)) (-620 (-650 (-145))) (-10 -8 (-15 -1736 ($ (-1168))) (-15 -1736 ($ (-650 (-145)))) (-15 -2371 ($) -3725) (-15 -3277 ($) -3725) (-15 -2160 ($) -3725) (-15 -1971 ($) -3725) (-15 -3943 ($) -3725) (-15 -4219 ($) -3725)))
-((-3644 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-2171 ((|#1| |#3|) 9)) (-1916 ((|#3| |#3|) 15)))
-(((-143 |#1| |#2| |#3|) (-10 -7 (-15 -2171 (|#1| |#3|)) (-15 -1916 (|#3| |#3|)) (-15 -3644 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-562) (-1001 |#1|) (-378 |#2|)) (T -143))
-((-3644 (*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)))) (-1916 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-143 *3 *4 *2)) (-4 *2 (-378 *4)))) (-2171 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-143 *2 *4 *3)) (-4 *3 (-378 *4)))))
-(-10 -7 (-15 -2171 (|#1| |#3|)) (-15 -1916 (|#3| |#3|)) (-15 -3644 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-4071 (($ $ $) 8)) (-4365 (($ $) 7)) (-2858 (($ $ $) 6)))
+((-1491 (((-650 (-185 (-140))) $) 13)) (-3562 (((-650 (-185 (-140))) $) 14)) (-3039 (((-650 (-844)) $) 10)) (-1610 (((-140) $) 7)) (-3802 (((-868) $) 16)))
+(((-141) (-13 (-619 (-868)) (-10 -8 (-15 -1610 ((-140) $)) (-15 -3039 ((-650 (-844)) $)) (-15 -1491 ((-650 (-185 (-140))) $)) (-15 -3562 ((-650 (-185 (-140))) $))))) (T -141))
+((-1610 (*1 *2 *1) (-12 (-5 *2 (-140)) (-5 *1 (-141)))) (-3039 (*1 *2 *1) (-12 (-5 *2 (-650 (-844))) (-5 *1 (-141)))) (-1491 (*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))) (-3562 (*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -1610 ((-140) $)) (-15 -3039 ((-650 (-844)) $)) (-15 -1491 ((-650 (-185 (-140))) $)) (-15 -3562 ((-650 (-185 (-140))) $))))
+((-2560 (((-112) $ $) NIL)) (-2182 (($) 17 T CONST)) (-3681 (($) NIL (|has| (-145) (-373)))) (-3962 (($ $ $) 19) (($ $ (-145)) NIL) (($ (-145) $) NIL)) (-2184 (($ $ $) NIL)) (-3056 (((-112) $ $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3513 (((-777)) NIL (|has| (-145) (-373)))) (-4253 (($) NIL) (($ (-650 (-145))) NIL)) (-3353 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-2385 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452))) (($ (-145) $) 60 (|has| $ (-6 -4452)))) (-1742 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452))) (($ (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-3627 (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4452))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4452))) (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-3449 (($) NIL (|has| (-145) (-373)))) (-3630 (((-650 (-145)) $) 69 (|has| $ (-6 -4452)))) (-2511 (((-112) $ $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-3469 (((-145) $) NIL (|has| (-145) (-856)))) (-2052 (((-650 (-145)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-145) $) 27 (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-2472 (((-145) $) NIL (|has| (-145) (-856)))) (-1503 (($ (-1 (-145) (-145)) $) 68 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-145) (-145)) $) 64)) (-3819 (($) 18 T CONST)) (-2400 (((-928) $) NIL (|has| (-145) (-373)))) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-3051 (($ $ $) 30)) (-2885 (((-145) $) 61)) (-3502 (($ (-145) $) 59)) (-2267 (($ (-928)) NIL (|has| (-145) (-373)))) (-1327 (($) 16 T CONST)) (-3580 (((-1129) $) NIL)) (-2770 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-1684 (((-145) $) 62)) (-1627 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 57)) (-3748 (($) 15 T CONST)) (-4180 (($ $ $) 32) (($ $ (-145)) NIL)) (-2374 (($ (-650 (-145))) NIL) (($) NIL)) (-3587 (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109)))) (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-1168) $) 37) (((-542) $) NIL (|has| (-145) (-620 (-542)))) (((-650 (-145)) $) 35)) (-3814 (($ (-650 (-145))) NIL)) (-2854 (($ $) 33 (|has| (-145) (-373)))) (-3802 (((-868) $) 53)) (-3503 (($ (-1168)) 14) (($ (-650 (-145))) 50)) (-2593 (((-777) $) NIL)) (-3864 (($) 58) (($ (-650 (-145))) NIL)) (-3359 (((-112) $ $) NIL)) (-2603 (($ (-650 (-145))) NIL)) (-4379 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-2382 (($) 21 T CONST)) (-1412 (($) 20 T CONST)) (-3025 (((-112) $ $) 24)) (-2570 (((-777) $) 56 (|has| $ (-6 -4452)))))
+(((-142) (-13 (-1109) (-620 (-1168)) (-431 (-145)) (-620 (-650 (-145))) (-10 -8 (-15 -3503 ($ (-1168))) (-15 -3503 ($ (-650 (-145)))) (-15 -3748 ($) -3728) (-15 -1327 ($) -3728) (-15 -2182 ($) -3728) (-15 -3819 ($) -3728) (-15 -1412 ($) -3728) (-15 -2382 ($) -3728)))) (T -142))
+((-3503 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-142)))) (-3503 (*1 *1 *2) (-12 (-5 *2 (-650 (-145))) (-5 *1 (-142)))) (-3748 (*1 *1) (-5 *1 (-142))) (-1327 (*1 *1) (-5 *1 (-142))) (-2182 (*1 *1) (-5 *1 (-142))) (-3819 (*1 *1) (-5 *1 (-142))) (-1412 (*1 *1) (-5 *1 (-142))) (-2382 (*1 *1) (-5 *1 (-142))))
+(-13 (-1109) (-620 (-1168)) (-431 (-145)) (-620 (-650 (-145))) (-10 -8 (-15 -3503 ($ (-1168))) (-15 -3503 ($ (-650 (-145)))) (-15 -3748 ($) -3728) (-15 -1327 ($) -3728) (-15 -2182 ($) -3728) (-15 -3819 ($) -3728) (-15 -1412 ($) -3728) (-15 -2382 ($) -3728)))
+((-1650 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 17)) (-2302 ((|#1| |#3|) 9)) (-1391 ((|#3| |#3|) 15)))
+(((-143 |#1| |#2| |#3|) (-10 -7 (-15 -2302 (|#1| |#3|)) (-15 -1391 (|#3| |#3|)) (-15 -1650 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-562) (-1001 |#1|) (-378 |#2|)) (T -143))
+((-1650 (*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)))) (-1391 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-143 *3 *4 *2)) (-4 *2 (-378 *4)))) (-2302 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-143 *2 *4 *3)) (-4 *3 (-378 *4)))))
+(-10 -7 (-15 -2302 (|#1| |#3|)) (-15 -1391 (|#3| |#3|)) (-15 -1650 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-3401 (($ $ $) 8)) (-4322 (($ $) 7)) (-1730 (($ $ $) 6)))
(((-144) (-141)) (T -144))
-((-4071 (*1 *1 *1 *1) (-4 *1 (-144))) (-4365 (*1 *1 *1) (-4 *1 (-144))) (-2858 (*1 *1 *1 *1) (-4 *1 (-144))))
-(-13 (-10 -8 (-15 -2858 ($ $ $)) (-15 -4365 ($ $)) (-15 -4071 ($ $ $))))
-((-2558 (((-112) $ $) NIL)) (-3001 (((-112) $) 39)) (-2160 (($ $) 55)) (-3735 (($) 26 T CONST)) (-3510 (((-777)) 13)) (-3446 (($) 25)) (-2270 (($) 27 T CONST)) (-4150 (((-777) $) 21)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-4029 (((-112) $) 41)) (-1971 (($ $) 56)) (-1884 (((-928) $) 23)) (-1988 (((-1168) $) 49)) (-2268 (($ (-928)) 20)) (-4000 (((-112) $) 37)) (-3577 (((-1129) $) NIL)) (-2111 (($) 28 T CONST)) (-4021 (((-112) $) 35)) (-3799 (((-868) $) 30)) (-2632 (($ (-777)) 19) (($ (-1168)) 54)) (-2335 (((-112) $ $) NIL)) (-2939 (((-112) $) 45)) (-3994 (((-112) $) 43)) (-3072 (((-112) $ $) 11)) (-3052 (((-112) $ $) 9)) (-3022 (((-112) $ $) 7)) (-3062 (((-112) $ $) 10)) (-3042 (((-112) $ $) 8)))
-(((-145) (-13 (-850) (-10 -8 (-15 -4150 ((-777) $)) (-15 -2632 ($ (-777))) (-15 -2632 ($ (-1168))) (-15 -3735 ($) -3725) (-15 -2270 ($) -3725) (-15 -2111 ($) -3725) (-15 -2160 ($ $)) (-15 -1971 ($ $)) (-15 -4021 ((-112) $)) (-15 -4000 ((-112) $)) (-15 -3994 ((-112) $)) (-15 -3001 ((-112) $)) (-15 -4029 ((-112) $)) (-15 -2939 ((-112) $))))) (T -145))
-((-4150 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-145)))) (-2632 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-145)))) (-2632 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-145)))) (-3735 (*1 *1) (-5 *1 (-145))) (-2270 (*1 *1) (-5 *1 (-145))) (-2111 (*1 *1) (-5 *1 (-145))) (-2160 (*1 *1 *1) (-5 *1 (-145))) (-1971 (*1 *1 *1) (-5 *1 (-145))) (-4021 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-4000 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-3994 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-3001 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-4029 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-2939 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(-13 (-850) (-10 -8 (-15 -4150 ((-777) $)) (-15 -2632 ($ (-777))) (-15 -2632 ($ (-1168))) (-15 -3735 ($) -3725) (-15 -2270 ($) -3725) (-15 -2111 ($) -3725) (-15 -2160 ($ $)) (-15 -1971 ($ $)) (-15 -4021 ((-112) $)) (-15 -4000 ((-112) $)) (-15 -3994 ((-112) $)) (-15 -3001 ((-112) $)) (-15 -4029 ((-112) $)) (-15 -2939 ((-112) $))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3532 (((-3 $ "failed") $) 39)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-3401 (*1 *1 *1 *1) (-4 *1 (-144))) (-4322 (*1 *1 *1) (-4 *1 (-144))) (-1730 (*1 *1 *1 *1) (-4 *1 (-144))))
+(-13 (-10 -8 (-15 -1730 ($ $ $)) (-15 -4322 ($ $)) (-15 -3401 ($ $ $))))
+((-2560 (((-112) $ $) NIL)) (-1801 (((-112) $) 39)) (-2182 (($ $) 55)) (-4377 (($) 26 T CONST)) (-3513 (((-777)) 13)) (-3449 (($) 25)) (-3903 (($) 27 T CONST)) (-2948 (((-777) $) 21)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-4159 (((-112) $) 41)) (-3819 (($ $) 56)) (-2400 (((-928) $) 23)) (-3989 (((-1168) $) 49)) (-2267 (($ (-928)) 20)) (-3894 (((-112) $) 37)) (-3580 (((-1129) $) NIL)) (-2897 (($) 28 T CONST)) (-4024 (((-112) $) 35)) (-3802 (((-868) $) 30)) (-2633 (($ (-777)) 19) (($ (-1168)) 54)) (-3359 (((-112) $ $) NIL)) (-2399 (((-112) $) 45)) (-2008 (((-112) $) 43)) (-3075 (((-112) $ $) 11)) (-3055 (((-112) $ $) 9)) (-3025 (((-112) $ $) 7)) (-3065 (((-112) $ $) 10)) (-3045 (((-112) $ $) 8)))
+(((-145) (-13 (-850) (-10 -8 (-15 -2948 ((-777) $)) (-15 -2633 ($ (-777))) (-15 -2633 ($ (-1168))) (-15 -4377 ($) -3728) (-15 -3903 ($) -3728) (-15 -2897 ($) -3728) (-15 -2182 ($ $)) (-15 -3819 ($ $)) (-15 -4024 ((-112) $)) (-15 -3894 ((-112) $)) (-15 -2008 ((-112) $)) (-15 -1801 ((-112) $)) (-15 -4159 ((-112) $)) (-15 -2399 ((-112) $))))) (T -145))
+((-2948 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-145)))) (-2633 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-145)))) (-2633 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-145)))) (-4377 (*1 *1) (-5 *1 (-145))) (-3903 (*1 *1) (-5 *1 (-145))) (-2897 (*1 *1) (-5 *1 (-145))) (-2182 (*1 *1 *1) (-5 *1 (-145))) (-3819 (*1 *1 *1) (-5 *1 (-145))) (-4024 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-3894 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-2008 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-1801 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-4159 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))) (-2399 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(-13 (-850) (-10 -8 (-15 -2948 ((-777) $)) (-15 -2633 ($ (-777))) (-15 -2633 ($ (-1168))) (-15 -4377 ($) -3728) (-15 -3903 ($) -3728) (-15 -2897 ($) -3728) (-15 -2182 ($ $)) (-15 -3819 ($ $)) (-15 -4024 ((-112) $)) (-15 -3894 ((-112) $)) (-15 -2008 ((-112) $)) (-15 -1801 ((-112) $)) (-15 -4159 ((-112) $)) (-15 -2399 ((-112) $))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-3132 (((-3 $ "failed") $) 39)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-146) (-141)) (T -146))
-((-3532 (*1 *1 *1) (|partial| -4 *1 (-146))))
-(-13 (-1058) (-10 -8 (-15 -3532 ((-3 $ "failed") $))))
+((-3132 (*1 *1 *1) (|partial| -4 *1 (-146))))
+(-13 (-1058) (-10 -8 (-15 -3132 ((-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))
-((-3553 ((|#1| (-695 |#1|) |#1|) 19)))
-(((-147 |#1|) (-10 -7 (-15 -3553 (|#1| (-695 |#1|) |#1|))) (-174)) (T -147))
-((-3553 (*1 *2 *3 *2) (-12 (-5 *3 (-695 *2)) (-4 *2 (-174)) (-5 *1 (-147 *2)))))
-(-10 -7 (-15 -3553 (|#1| (-695 |#1|) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2124 ((|#1| (-695 |#1|) |#1|) 19)))
+(((-147 |#1|) (-10 -7 (-15 -2124 (|#1| (-695 |#1|) |#1|))) (-174)) (T -147))
+((-2124 (*1 *2 *3 *2) (-12 (-5 *3 (-695 *2)) (-4 *2 (-174)) (-5 *1 (-147 *2)))))
+(-10 -7 (-15 -2124 (|#1| (-695 |#1|) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-4189 (((-2 (|:| -3357 (-777)) (|:| -1452 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777)) 76)) (-1484 (((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|) 56)) (-3789 (((-2 (|:| -1452 (-413 |#2|)) (|:| |poly| |#3|)) |#3|) 41)) (-3036 ((|#1| |#3| |#3|) 44)) (-1770 ((|#3| |#3| (-413 |#2|) (-413 |#2|)) 20)) (-3299 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|) 53)))
-(((-149 |#1| |#2| |#3|) (-10 -7 (-15 -3789 ((-2 (|:| -1452 (-413 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1484 ((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|)) (-15 -4189 ((-2 (|:| -3357 (-777)) (|:| -1452 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777))) (-15 -3036 (|#1| |#3| |#3|)) (-15 -1770 (|#3| |#3| (-413 |#2|) (-413 |#2|))) (-15 -3299 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|))) (-1231) (-1253 |#1|) (-1253 (-413 |#2|))) (T -149))
-((-3299 (*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))))) (-1770 (*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)))) (-3036 (*1 *2 *3 *3) (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1231)) (-5 *1 (-149 *2 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-4189 (*1 *2 *3 *4) (-12 (-5 *3 (-413 *6)) (-4 *5 (-1231)) (-4 *6 (-1253 *5)) (-5 *2 (-2 (|:| -3357 (-777)) (|:| -1452 *3) (|:| |radicand| *6))) (-5 *1 (-149 *5 *6 *7)) (-5 *4 (-777)) (-4 *7 (-1253 *3)))) (-1484 (*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))))) (-3789 (*1 *2 *3) (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -1452 (-413 *5)) (|:| |poly| *3))) (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))))
-(-10 -7 (-15 -3789 ((-2 (|:| -1452 (-413 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -1484 ((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|)) (-15 -4189 ((-2 (|:| -3357 (-777)) (|:| -1452 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777))) (-15 -3036 (|#1| |#3| |#3|)) (-15 -1770 (|#3| |#3| (-413 |#2|) (-413 |#2|))) (-15 -3299 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|)))
-((-2355 (((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)) 35)))
-(((-150 |#1| |#2|) (-10 -7 (-15 -2355 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)))) (-551) (-167 |#1|)) (T -150))
-((-2355 (*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 -2355 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))))
-((-1431 (($ (-1 (-112) |#2|) $) 35)) (-3579 (($ $) 42)) (-1741 (($ (-1 (-112) |#2|) $) 33) (($ |#2| $) 38)) (-3624 ((|#2| (-1 |#2| |#2| |#2|) $) 28) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 30) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40)) (-1790 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 25)) (-3642 (((-112) (-1 (-112) |#2|) $) 22)) (-3584 (((-777) (-1 (-112) |#2|) $) 18) (((-777) |#2| $) NIL)) (-4371 (((-112) (-1 (-112) |#2|) $) 21)) (-2569 (((-777) $) 12)))
-(((-151 |#1| |#2|) (-10 -8 (-15 -3579 (|#1| |#1|)) (-15 -1741 (|#1| |#2| |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1431 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1741 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1790 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3584 ((-777) |#2| |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2569 ((-777) |#1|))) (-152 |#2|) (-1227)) (T -151))
-NIL
-(-10 -8 (-15 -3579 (|#1| |#1|)) (-15 -1741 (|#1| |#2| |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1431 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1741 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1790 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3584 ((-777) |#2| |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2569 ((-777) |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-1431 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3579 (($ $) 42 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449))) (($ |#1| $) 43 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3624 ((|#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))))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 49)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 41 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 50)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2114 (((-2 (|:| -3994 (-777)) (|:| -1453 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777)) 76)) (-2833 (((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|) 56)) (-3709 (((-2 (|:| -1453 (-413 |#2|)) (|:| |poly| |#3|)) |#3|) 41)) (-3968 ((|#1| |#3| |#3|) 44)) (-1771 ((|#3| |#3| (-413 |#2|) (-413 |#2|)) 20)) (-1594 (((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|) 53)))
+(((-149 |#1| |#2| |#3|) (-10 -7 (-15 -3709 ((-2 (|:| -1453 (-413 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2833 ((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|)) (-15 -2114 ((-2 (|:| -3994 (-777)) (|:| -1453 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777))) (-15 -3968 (|#1| |#3| |#3|)) (-15 -1771 (|#3| |#3| (-413 |#2|) (-413 |#2|))) (-15 -1594 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|))) (-1231) (-1253 |#1|) (-1253 (-413 |#2|))) (T -149))
+((-1594 (*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))))) (-1771 (*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)))) (-3968 (*1 *2 *3 *3) (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1231)) (-5 *1 (-149 *2 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-2114 (*1 *2 *3 *4) (-12 (-5 *3 (-413 *6)) (-4 *5 (-1231)) (-4 *6 (-1253 *5)) (-5 *2 (-2 (|:| -3994 (-777)) (|:| -1453 *3) (|:| |radicand| *6))) (-5 *1 (-149 *5 *6 *7)) (-5 *4 (-777)) (-4 *7 (-1253 *3)))) (-2833 (*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))))) (-3709 (*1 *2 *3) (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -1453 (-413 *5)) (|:| |poly| *3))) (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))))
+(-10 -7 (-15 -3709 ((-2 (|:| -1453 (-413 |#2|)) (|:| |poly| |#3|)) |#3|)) (-15 -2833 ((-3 (-2 (|:| |radicand| (-413 |#2|)) (|:| |deg| (-777))) "failed") |#3|)) (-15 -2114 ((-2 (|:| -3994 (-777)) (|:| -1453 (-413 |#2|)) (|:| |radicand| |#2|)) (-413 |#2|) (-777))) (-15 -3968 (|#1| |#3| |#3|)) (-15 -1771 (|#3| |#3| (-413 |#2|) (-413 |#2|))) (-15 -1594 ((-2 (|:| |func| |#3|) (|:| |poly| |#3|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| |deg| (-777))) |#3| |#3|)))
+((-3585 (((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)) 35)))
+(((-150 |#1| |#2|) (-10 -7 (-15 -3585 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)))) (-551) (-167 |#1|)) (T -150))
+((-3585 (*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 -3585 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))))
+((-1434 (($ (-1 (-112) |#2|) $) 35)) (-3582 (($ $) 42)) (-1742 (($ (-1 (-112) |#2|) $) 33) (($ |#2| $) 38)) (-3627 ((|#2| (-1 |#2| |#2| |#2|) $) 28) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 30) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 40)) (-2770 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 25)) (-1627 (((-112) (-1 (-112) |#2|) $) 22)) (-3587 (((-777) (-1 (-112) |#2|) $) 18) (((-777) |#2| $) NIL)) (-4379 (((-112) (-1 (-112) |#2|) $) 21)) (-2570 (((-777) $) 12)))
+(((-151 |#1| |#2|) (-10 -8 (-15 -3582 (|#1| |#1|)) (-15 -1742 (|#1| |#2| |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1434 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1742 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2770 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3587 ((-777) |#2| |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2570 ((-777) |#1|))) (-152 |#2|) (-1227)) (T -151))
+NIL
+(-10 -8 (-15 -3582 (|#1| |#1|)) (-15 -1742 (|#1| |#2| |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -1434 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1742 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2770 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -3587 ((-777) |#2| |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2570 ((-777) |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-1434 (($ (-1 (-112) |#1|) $) 45 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3582 (($ $) 42 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4452))) (($ |#1| $) 43 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $) 48 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 47 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 44 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 49)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 41 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 50)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-152 |#1|) (-141) (-1227)) (T -152))
-((-3811 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-152 *3)))) (-1790 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-3624 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-3624 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-1741 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *3)) (-4 *3 (-1227)))) (-1431 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *3)) (-4 *3 (-1227)))) (-3624 (*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)))) (-1741 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-3579 (*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 -3811 ($ (-650 |t#1|))) (-15 -1790 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4449)) (PROGN (-15 -3624 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -3624 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1741 ($ (-1 (-112) |t#1|) $)) (-15 -1431 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3624 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1741 ($ |t#1| $)) (-15 -3579 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) 111)) (-4346 (((-112) $) NIL)) (-3912 (($ |#2| (-650 (-928))) 71)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3406 (($ (-928)) 57)) (-2951 (((-135)) 23)) (-3799 (((-868) $) 86) (($ (-570)) 53) (($ |#2|) 54)) (-2249 ((|#2| $ (-650 (-928))) 74)) (-3499 (((-777)) 20 T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 47 T CONST)) (-1875 (($) 51 T CONST)) (-3022 (((-112) $ $) 33)) (-3122 (($ $ |#2|) NIL)) (-3111 (($ $) 42) (($ $ $) 40)) (-3101 (($ $ $) 38)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 44) (($ $ $) 63) (($ |#2| $) 46) (($ $ |#2|) NIL)))
-(((-153 |#1| |#2| |#3|) (-13 (-1058) (-38 |#2|) (-1284 |#2|) (-10 -8 (-15 -3406 ($ (-928))) (-15 -3912 ($ |#2| (-650 (-928)))) (-15 -2249 (|#2| $ (-650 (-928)))) (-15 -2875 ((-3 $ "failed") $)))) (-928) (-368) (-1002 |#1| |#2|)) (T -153))
-((-2875 (*1 *1 *1) (|partial| -12 (-5 *1 (-153 *2 *3 *4)) (-14 *2 (-928)) (-4 *3 (-368)) (-14 *4 (-1002 *2 *3)))) (-3406 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-153 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-368)) (-14 *5 (-1002 *3 *4)))) (-3912 (*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)))) (-2249 (*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 -3406 ($ (-928))) (-15 -3912 ($ |#2| (-650 (-928)))) (-15 -2249 (|#2| $ (-650 (-928)))) (-15 -2875 ((-3 $ "failed") $))))
-((-3373 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227)) 59)) (-2497 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570))) 95) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934)) 96)) (-4286 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227))))) 99) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227)))) 98) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570))) 90) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934)) 91)))
-(((-154) (-10 -7 (-15 -4286 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -4286 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -2497 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -2497 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -3373 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227))) (-15 -4286 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227))))) (-15 -4286 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))))))) (T -154))
-((-4286 (*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))))))) (-4286 (*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)))))) (-3373 (*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)))))) (-2497 (*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)))) (-2497 (*1 *2 *3) (-12 (-5 *3 (-934)) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))) (-4286 (*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)))) (-4286 (*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 -4286 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -4286 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -2497 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -2497 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -3373 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227))) (-15 -4286 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227))))) (-15 -4286 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-2811 (((-650 (-1144)) $) 20)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 27) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-1144) $) 9)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-155) (-13 (-1092) (-10 -8 (-15 -2811 ((-650 (-1144)) $)) (-15 -3613 ((-1144) $))))) (T -155))
-((-2811 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-155)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-155)))))
-(-13 (-1092) (-10 -8 (-15 -2811 ((-650 (-1144)) $)) (-15 -3613 ((-1144) $))))
-((-3360 (((-650 (-171 |#2|)) |#1| |#2|) 50)))
-(((-156 |#1| |#2|) (-10 -7 (-15 -3360 ((-650 (-171 |#2|)) |#1| |#2|))) (-1253 (-171 (-570))) (-13 (-368) (-854))) (T -156))
-((-3360 (*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 -3360 ((-650 (-171 |#2|)) |#1| |#2|)))
-((-2558 (((-112) $ $) NIL)) (-2225 (((-1226) $) 12)) (-2213 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-157) (-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1226) $))))) (T -157))
-((-2213 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-157)))) (-2225 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-157)))))
-(-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1226) $))))
-((-2558 (((-112) $ $) NIL)) (-3699 (($) 41)) (-2785 (($) 40)) (-4056 (((-928)) 46)) (-1988 (((-1168) $) NIL)) (-1820 (((-570) $) 44)) (-3577 (((-1129) $) NIL)) (-3661 (($) 42)) (-3181 (($ (-570)) 47)) (-3799 (((-868) $) 53)) (-4110 (($) 43)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 38)) (-3101 (($ $ $) 35)) (* (($ (-928) $) 45) (($ (-227) $) 11)))
-(((-158) (-13 (-25) (-10 -8 (-15 * ($ (-928) $)) (-15 * ($ (-227) $)) (-15 -3101 ($ $ $)) (-15 -2785 ($)) (-15 -3699 ($)) (-15 -3661 ($)) (-15 -4110 ($)) (-15 -1820 ((-570) $)) (-15 -4056 ((-928))) (-15 -3181 ($ (-570)))))) (T -158))
-((-3101 (*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)))) (-2785 (*1 *1) (-5 *1 (-158))) (-3699 (*1 *1) (-5 *1 (-158))) (-3661 (*1 *1) (-5 *1 (-158))) (-4110 (*1 *1) (-5 *1 (-158))) (-1820 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-158)))) (-4056 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-158)))) (-3181 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-158)))))
-(-13 (-25) (-10 -8 (-15 * ($ (-928) $)) (-15 * ($ (-227) $)) (-15 -3101 ($ $ $)) (-15 -2785 ($)) (-15 -3699 ($)) (-15 -3661 ($)) (-15 -4110 ($)) (-15 -1820 ((-570) $)) (-15 -4056 ((-928))) (-15 -3181 ($ (-570)))))
-((-3364 ((|#2| |#2| (-1101 |#2|)) 98) ((|#2| |#2| (-1186)) 75)) (-4057 ((|#2| |#2| (-1101 |#2|)) 97) ((|#2| |#2| (-1186)) 74)) (-4071 ((|#2| |#2| |#2|) 25)) (-3756 (((-115) (-115)) 111)) (-2274 ((|#2| (-650 |#2|)) 130)) (-4314 ((|#2| (-650 |#2|)) 151)) (-2868 ((|#2| (-650 |#2|)) 138)) (-3794 ((|#2| |#2|) 136)) (-1976 ((|#2| (-650 |#2|)) 124)) (-3621 ((|#2| (-650 |#2|)) 125)) (-1697 ((|#2| (-650 |#2|)) 149)) (-1560 ((|#2| |#2| (-1186)) 63) ((|#2| |#2|) 62)) (-4365 ((|#2| |#2|) 21)) (-2858 ((|#2| |#2| |#2|) 24)) (-1388 (((-112) (-115)) 55)) (** ((|#2| |#2| |#2|) 46)))
-(((-159 |#1| |#2|) (-10 -7 (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 ** (|#2| |#2| |#2|)) (-15 -2858 (|#2| |#2| |#2|)) (-15 -4071 (|#2| |#2| |#2|)) (-15 -4365 (|#2| |#2|)) (-15 -1560 (|#2| |#2|)) (-15 -1560 (|#2| |#2| (-1186))) (-15 -3364 (|#2| |#2| (-1186))) (-15 -3364 (|#2| |#2| (-1101 |#2|))) (-15 -4057 (|#2| |#2| (-1186))) (-15 -4057 (|#2| |#2| (-1101 |#2|))) (-15 -3794 (|#2| |#2|)) (-15 -1697 (|#2| (-650 |#2|))) (-15 -2868 (|#2| (-650 |#2|))) (-15 -4314 (|#2| (-650 |#2|))) (-15 -1976 (|#2| (-650 |#2|))) (-15 -3621 (|#2| (-650 |#2|))) (-15 -2274 (|#2| (-650 |#2|)))) (-562) (-436 |#1|)) (T -159))
-((-2274 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-3621 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-1976 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-4314 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-2868 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-1697 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-3794 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-4057 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)))) (-4057 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-3364 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)))) (-3364 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-1560 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-1560 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-4365 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-4071 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-2858 (*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)))) (-3756 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-159 *3 *4)) (-4 *4 (-436 *3)))) (-1388 (*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 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 ** (|#2| |#2| |#2|)) (-15 -2858 (|#2| |#2| |#2|)) (-15 -4071 (|#2| |#2| |#2|)) (-15 -4365 (|#2| |#2|)) (-15 -1560 (|#2| |#2|)) (-15 -1560 (|#2| |#2| (-1186))) (-15 -3364 (|#2| |#2| (-1186))) (-15 -3364 (|#2| |#2| (-1101 |#2|))) (-15 -4057 (|#2| |#2| (-1186))) (-15 -4057 (|#2| |#2| (-1101 |#2|))) (-15 -3794 (|#2| |#2|)) (-15 -1697 (|#2| (-650 |#2|))) (-15 -2868 (|#2| (-650 |#2|))) (-15 -4314 (|#2| (-650 |#2|))) (-15 -1976 (|#2| (-650 |#2|))) (-15 -3621 (|#2| (-650 |#2|))) (-15 -2274 (|#2| (-650 |#2|))))
-((-2412 ((|#1| |#1| |#1|) 64)) (-1844 ((|#1| |#1| |#1|) 61)) (-4071 ((|#1| |#1| |#1|) 55)) (-2267 ((|#1| |#1|) 42)) (-2179 ((|#1| |#1| (-650 |#1|)) 53)) (-4365 ((|#1| |#1|) 46)) (-2858 ((|#1| |#1| |#1|) 49)))
-(((-160 |#1|) (-10 -7 (-15 -2858 (|#1| |#1| |#1|)) (-15 -4365 (|#1| |#1|)) (-15 -2179 (|#1| |#1| (-650 |#1|))) (-15 -2267 (|#1| |#1|)) (-15 -4071 (|#1| |#1| |#1|)) (-15 -1844 (|#1| |#1| |#1|)) (-15 -2412 (|#1| |#1| |#1|))) (-551)) (T -160))
-((-2412 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-1844 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-4071 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-2267 (*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-2179 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-551)) (-5 *1 (-160 *2)))) (-4365 (*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-2858 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
-(-10 -7 (-15 -2858 (|#1| |#1| |#1|)) (-15 -4365 (|#1| |#1|)) (-15 -2179 (|#1| |#1| (-650 |#1|))) (-15 -2267 (|#1| |#1|)) (-15 -4071 (|#1| |#1| |#1|)) (-15 -1844 (|#1| |#1| |#1|)) (-15 -2412 (|#1| |#1| |#1|)))
-((-3364 (($ $ (-1186)) 12) (($ $ (-1101 $)) 11)) (-4057 (($ $ (-1186)) 10) (($ $ (-1101 $)) 9)) (-4071 (($ $ $) 8)) (-1560 (($ $) 14) (($ $ (-1186)) 13)) (-4365 (($ $) 7)) (-2858 (($ $ $) 6)))
+((-3814 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-152 *3)))) (-2770 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-3627 (*1 *2 *3 *1) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-3627 (*1 *2 *3 *1 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-1742 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *3)) (-4 *3 (-1227)))) (-1434 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *3)) (-4 *3 (-1227)))) (-3627 (*1 *2 *3 *1 *2 *2) (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *2)) (-4 *2 (-1227)))) (-1742 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4452)) (-4 *1 (-152 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-3582 (*1 *1 *1) (-12 (|has| *1 (-6 -4452)) (-4 *1 (-152 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))))
+(-13 (-495 |t#1|) (-10 -8 (-15 -3814 ($ (-650 |t#1|))) (-15 -2770 ((-3 |t#1| "failed") (-1 (-112) |t#1|) $)) (IF (|has| $ (-6 -4452)) (PROGN (-15 -3627 (|t#1| (-1 |t#1| |t#1| |t#1|) $)) (-15 -3627 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1|)) (-15 -1742 ($ (-1 (-112) |t#1|) $)) (-15 -1434 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3627 (|t#1| (-1 |t#1| |t#1| |t#1|) $ |t#1| |t#1|)) (-15 -1742 ($ |t#1| $)) (-15 -3582 ($ $))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) 111)) (-4139 (((-112) $) NIL)) (-3915 (($ |#2| (-650 (-928))) 71)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3409 (($ (-928)) 57)) (-2517 (((-135)) 23)) (-3802 (((-868) $) 86) (($ (-570)) 53) (($ |#2|) 54)) (-1864 ((|#2| $ (-650 (-928))) 74)) (-2851 (((-777)) 20 T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 47 T CONST)) (-1876 (($) 51 T CONST)) (-3025 (((-112) $ $) 33)) (-3125 (($ $ |#2|) NIL)) (-3114 (($ $) 42) (($ $ $) 40)) (-3104 (($ $ $) 38)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 44) (($ $ $) 63) (($ |#2| $) 46) (($ $ |#2|) NIL)))
+(((-153 |#1| |#2| |#3|) (-13 (-1058) (-38 |#2|) (-1284 |#2|) (-10 -8 (-15 -3409 ($ (-928))) (-15 -3915 ($ |#2| (-650 (-928)))) (-15 -1864 (|#2| $ (-650 (-928)))) (-15 -1929 ((-3 $ "failed") $)))) (-928) (-368) (-1002 |#1| |#2|)) (T -153))
+((-1929 (*1 *1 *1) (|partial| -12 (-5 *1 (-153 *2 *3 *4)) (-14 *2 (-928)) (-4 *3 (-368)) (-14 *4 (-1002 *2 *3)))) (-3409 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-153 *3 *4 *5)) (-14 *3 *2) (-4 *4 (-368)) (-14 *5 (-1002 *3 *4)))) (-3915 (*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)))) (-1864 (*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 -3409 ($ (-928))) (-15 -3915 ($ |#2| (-650 (-928)))) (-15 -1864 (|#2| $ (-650 (-928)))) (-15 -1929 ((-3 $ "failed") $))))
+((-4089 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227)) 59)) (-1323 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570))) 95) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934)) 96)) (-1764 (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227))))) 99) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227)))) 98) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570))) 90) (((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934)) 91)))
+(((-154) (-10 -7 (-15 -1764 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -1764 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -1323 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -1323 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -4089 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227))) (-15 -1764 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227))))) (-15 -1764 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))))))) (T -154))
+((-1764 (*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))))))) (-1764 (*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)))))) (-4089 (*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)))))) (-1323 (*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)))) (-1323 (*1 *2 *3) (-12 (-5 *3 (-934)) (-5 *2 (-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227))))) (-5 *1 (-154)))) (-1764 (*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)))) (-1764 (*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 -1764 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -1764 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -1323 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934))) (-15 -1323 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-934) (-413 (-570)) (-413 (-570)))) (-15 -4089 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))) (-227) (-227) (-227) (-227))) (-15 -1764 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-950 (-227))))) (-15 -1764 ((-2 (|:| |brans| (-650 (-650 (-950 (-227))))) (|:| |xValues| (-1103 (-227))) (|:| |yValues| (-1103 (-227)))) (-650 (-650 (-950 (-227)))))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-2814 (((-650 (-1144)) $) 20)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 27) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-1144) $) 9)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-155) (-13 (-1092) (-10 -8 (-15 -2814 ((-650 (-1144)) $)) (-15 -3616 ((-1144) $))))) (T -155))
+((-2814 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-155)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-155)))))
+(-13 (-1092) (-10 -8 (-15 -2814 ((-650 (-1144)) $)) (-15 -3616 ((-1144) $))))
+((-4003 (((-650 (-171 |#2|)) |#1| |#2|) 50)))
+(((-156 |#1| |#2|) (-10 -7 (-15 -4003 ((-650 (-171 |#2|)) |#1| |#2|))) (-1253 (-171 (-570))) (-13 (-368) (-854))) (T -156))
+((-4003 (*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 -4003 ((-650 (-171 |#2|)) |#1| |#2|)))
+((-2560 (((-112) $ $) NIL)) (-2226 (((-1226) $) 12)) (-2215 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-157) (-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1226) $))))) (T -157))
+((-2215 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-157)))) (-2226 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-157)))))
+(-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1226) $))))
+((-2560 (((-112) $ $) NIL)) (-4039 (($) 41)) (-2356 (($) 40)) (-4432 (((-928)) 46)) (-3989 (((-1168) $) NIL)) (-3021 (((-570) $) 44)) (-3580 (((-1129) $) NIL)) (-1869 (($) 42)) (-2929 (($ (-570)) 47)) (-3802 (((-868) $) 53)) (-3786 (($) 43)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 38)) (-3104 (($ $ $) 35)) (* (($ (-928) $) 45) (($ (-227) $) 11)))
+(((-158) (-13 (-25) (-10 -8 (-15 * ($ (-928) $)) (-15 * ($ (-227) $)) (-15 -3104 ($ $ $)) (-15 -2356 ($)) (-15 -4039 ($)) (-15 -1869 ($)) (-15 -3786 ($)) (-15 -3021 ((-570) $)) (-15 -4432 ((-928))) (-15 -2929 ($ (-570)))))) (T -158))
+((-3104 (*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)))) (-2356 (*1 *1) (-5 *1 (-158))) (-4039 (*1 *1) (-5 *1 (-158))) (-1869 (*1 *1) (-5 *1 (-158))) (-3786 (*1 *1) (-5 *1 (-158))) (-3021 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-158)))) (-4432 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-158)))) (-2929 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-158)))))
+(-13 (-25) (-10 -8 (-15 * ($ (-928) $)) (-15 * ($ (-227) $)) (-15 -3104 ($ $ $)) (-15 -2356 ($)) (-15 -4039 ($)) (-15 -1869 ($)) (-15 -3786 ($)) (-15 -3021 ((-570) $)) (-15 -4432 ((-928))) (-15 -2929 ($ (-570)))))
+((-4043 ((|#2| |#2| (-1101 |#2|)) 98) ((|#2| |#2| (-1186)) 75)) (-3258 ((|#2| |#2| (-1101 |#2|)) 97) ((|#2| |#2| (-1186)) 74)) (-3401 ((|#2| |#2| |#2|) 25)) (-3759 (((-115) (-115)) 111)) (-3943 ((|#2| (-650 |#2|)) 130)) (-2037 ((|#2| (-650 |#2|)) 151)) (-1833 ((|#2| (-650 |#2|)) 138)) (-3752 ((|#2| |#2|) 136)) (-3863 ((|#2| (-650 |#2|)) 124)) (-1374 ((|#2| (-650 |#2|)) 125)) (-4278 ((|#2| (-650 |#2|)) 149)) (-2362 ((|#2| |#2| (-1186)) 63) ((|#2| |#2|) 62)) (-4322 ((|#2| |#2|) 21)) (-1730 ((|#2| |#2| |#2|) 24)) (-3200 (((-112) (-115)) 55)) (** ((|#2| |#2| |#2|) 46)))
+(((-159 |#1| |#2|) (-10 -7 (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 ** (|#2| |#2| |#2|)) (-15 -1730 (|#2| |#2| |#2|)) (-15 -3401 (|#2| |#2| |#2|)) (-15 -4322 (|#2| |#2|)) (-15 -2362 (|#2| |#2|)) (-15 -2362 (|#2| |#2| (-1186))) (-15 -4043 (|#2| |#2| (-1186))) (-15 -4043 (|#2| |#2| (-1101 |#2|))) (-15 -3258 (|#2| |#2| (-1186))) (-15 -3258 (|#2| |#2| (-1101 |#2|))) (-15 -3752 (|#2| |#2|)) (-15 -4278 (|#2| (-650 |#2|))) (-15 -1833 (|#2| (-650 |#2|))) (-15 -2037 (|#2| (-650 |#2|))) (-15 -3863 (|#2| (-650 |#2|))) (-15 -1374 (|#2| (-650 |#2|))) (-15 -3943 (|#2| (-650 |#2|)))) (-562) (-436 |#1|)) (T -159))
+((-3943 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-1374 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-3863 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-2037 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-1833 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-4278 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2)) (-4 *4 (-562)))) (-3752 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-3258 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)))) (-3258 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-4043 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)))) (-4043 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-2362 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-159 *4 *2)) (-4 *2 (-436 *4)))) (-2362 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-4322 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-3401 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))) (-1730 (*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)))) (-3759 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-159 *3 *4)) (-4 *4 (-436 *3)))) (-3200 (*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 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 ** (|#2| |#2| |#2|)) (-15 -1730 (|#2| |#2| |#2|)) (-15 -3401 (|#2| |#2| |#2|)) (-15 -4322 (|#2| |#2|)) (-15 -2362 (|#2| |#2|)) (-15 -2362 (|#2| |#2| (-1186))) (-15 -4043 (|#2| |#2| (-1186))) (-15 -4043 (|#2| |#2| (-1101 |#2|))) (-15 -3258 (|#2| |#2| (-1186))) (-15 -3258 (|#2| |#2| (-1101 |#2|))) (-15 -3752 (|#2| |#2|)) (-15 -4278 (|#2| (-650 |#2|))) (-15 -1833 (|#2| (-650 |#2|))) (-15 -2037 (|#2| (-650 |#2|))) (-15 -3863 (|#2| (-650 |#2|))) (-15 -1374 (|#2| (-650 |#2|))) (-15 -3943 (|#2| (-650 |#2|))))
+((-2965 ((|#1| |#1| |#1|) 64)) (-2042 ((|#1| |#1| |#1|) 61)) (-3401 ((|#1| |#1| |#1|) 55)) (-3883 ((|#1| |#1|) 42)) (-2384 ((|#1| |#1| (-650 |#1|)) 53)) (-4322 ((|#1| |#1|) 46)) (-1730 ((|#1| |#1| |#1|) 49)))
+(((-160 |#1|) (-10 -7 (-15 -1730 (|#1| |#1| |#1|)) (-15 -4322 (|#1| |#1|)) (-15 -2384 (|#1| |#1| (-650 |#1|))) (-15 -3883 (|#1| |#1|)) (-15 -3401 (|#1| |#1| |#1|)) (-15 -2042 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|))) (-551)) (T -160))
+((-2965 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-2042 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-3401 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-3883 (*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-2384 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-551)) (-5 *1 (-160 *2)))) (-4322 (*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))) (-1730 (*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
+(-10 -7 (-15 -1730 (|#1| |#1| |#1|)) (-15 -4322 (|#1| |#1|)) (-15 -2384 (|#1| |#1| (-650 |#1|))) (-15 -3883 (|#1| |#1|)) (-15 -3401 (|#1| |#1| |#1|)) (-15 -2042 (|#1| |#1| |#1|)) (-15 -2965 (|#1| |#1| |#1|)))
+((-4043 (($ $ (-1186)) 12) (($ $ (-1101 $)) 11)) (-3258 (($ $ (-1186)) 10) (($ $ (-1101 $)) 9)) (-3401 (($ $ $) 8)) (-2362 (($ $) 14) (($ $ (-1186)) 13)) (-4322 (($ $) 7)) (-1730 (($ $ $) 6)))
(((-161) (-141)) (T -161))
-((-1560 (*1 *1 *1) (-4 *1 (-161))) (-1560 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-3364 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-3364 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161)))) (-4057 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-4057 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161)))))
-(-13 (-144) (-10 -8 (-15 -1560 ($ $)) (-15 -1560 ($ $ (-1186))) (-15 -3364 ($ $ (-1186))) (-15 -3364 ($ $ (-1101 $))) (-15 -4057 ($ $ (-1186))) (-15 -4057 ($ $ (-1101 $)))))
+((-2362 (*1 *1 *1) (-4 *1 (-161))) (-2362 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-4043 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-4043 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161)))) (-3258 (*1 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))) (-3258 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-161)))))
+(-13 (-144) (-10 -8 (-15 -2362 ($ $)) (-15 -2362 ($ $ (-1186))) (-15 -4043 ($ $ (-1186))) (-15 -4043 ($ $ (-1101 $))) (-15 -3258 ($ $ (-1186))) (-15 -3258 ($ $ (-1101 $)))))
(((-144) . T))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-650 (-1144)) $) 10)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-162) (-13 (-1092) (-10 -8 (-15 -3613 ((-650 (-1144)) $))))) (T -162))
-((-3613 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-162)))))
-(-13 (-1092) (-10 -8 (-15 -3613 ((-650 (-1144)) $))))
-((-2558 (((-112) $ $) NIL)) (-3818 (($ (-570)) 14) (($ $ $) 15)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 18)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 9)))
-(((-163) (-13 (-1109) (-10 -8 (-15 -3818 ($ (-570))) (-15 -3818 ($ $ $))))) (T -163))
-((-3818 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-163)))) (-3818 (*1 *1 *1 *1) (-5 *1 (-163))))
-(-13 (-1109) (-10 -8 (-15 -3818 ($ (-570))) (-15 -3818 ($ $ $))))
-((-3756 (((-115) (-1186)) 102)))
-(((-164) (-10 -7 (-15 -3756 ((-115) (-1186))))) (T -164))
-((-3756 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-115)) (-5 *1 (-164)))))
-(-10 -7 (-15 -3756 ((-115) (-1186))))
-((-3755 ((|#3| |#3|) 19)))
-(((-165 |#1| |#2| |#3|) (-10 -7 (-15 -3755 (|#3| |#3|))) (-1058) (-1253 |#1|) (-1253 |#2|)) (T -165))
-((-3755 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-4 *4 (-1253 *3)) (-5 *1 (-165 *3 *4 *2)) (-4 *2 (-1253 *4)))))
-(-10 -7 (-15 -3755 (|#3| |#3|)))
-((-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 223)) (-3207 ((|#2| $) 102)) (-2887 (($ $) 256)) (-2751 (($ $) 250)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 47)) (-2866 (($ $) 254)) (-2733 (($ $) 248)) (-4380 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 146)) (-3216 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 144)) (-2506 (($ $ $) 229)) (-4196 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 160) (((-695 |#2|) (-695 $)) 154)) (-3624 (($ (-1182 |#2|)) 125) (((-3 $ "failed") (-413 (-1182 |#2|))) NIL)) (-2875 (((-3 $ "failed") $) 214)) (-2805 (((-3 (-413 (-570)) "failed") $) 204)) (-3242 (((-112) $) 199)) (-2068 (((-413 (-570)) $) 202)) (-4006 (((-928)) 96)) (-2518 (($ $ $) 231)) (-4094 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 269)) (-1315 (($) 245)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 193) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 198)) (-2959 ((|#2| $) 100)) (-3521 (((-1182 |#2|) $) 127)) (-1356 (($ (-1 |#2| |#2|) $) 108)) (-2789 (($ $) 247)) (-3612 (((-1182 |#2|) $) 126)) (-1877 (($ $) 207)) (-1501 (($) 103)) (-1659 (((-424 (-1182 $)) (-1182 $)) 95)) (-2224 (((-424 (-1182 $)) (-1182 $)) 64)) (-2547 (((-3 $ "failed") $ |#2|) 209) (((-3 $ "failed") $ $) 212)) (-4387 (($ $) 246)) (-2142 (((-777) $) 226)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 236)) (-3570 ((|#2| (-1277 $)) NIL) ((|#2|) 98)) (-3547 (($ $ (-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)) (-2755 (((-1182 |#2|)) 120)) (-2876 (($ $) 255)) (-2740 (($ $) 249)) (-3424 (((-1277 |#2|) $ (-1277 $)) 136) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 116) (((-695 |#2|) (-1277 $)) NIL)) (-1425 (((-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)) (-2020 (($ $) 104)) (-3799 (((-868) $) 143) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-413 (-570))) NIL) (($ $) NIL)) (-3553 (((-1182 |#2|) $) 32)) (-3499 (((-777)) 106)) (-2335 (((-112) $ $) 13)) (-4154 (($ $) 259)) (-2825 (($ $) 253)) (-4129 (($ $) 257)) (-2801 (($ $) 251)) (-1905 ((|#2| $) 242)) (-4140 (($ $) 258)) (-2814 (($ $) 252)) (-2622 (($ $) 162)) (-3022 (((-112) $ $) 110)) (-3111 (($ $) 112) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3799 (|#1| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2034 ((-2 (|:| -3128 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2142 ((-777) |#1|)) (-15 -2384 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2518 (|#1| |#1| |#1|)) (-15 -2506 (|#1| |#1| |#1|)) (-15 -1877 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -1425 ((-542) |#1|)) (-15 -1425 ((-171 (-227)) |#1|)) (-15 -1425 ((-171 (-384)) |#1|)) (-15 -2751 (|#1| |#1|)) (-15 -2733 (|#1| |#1|)) (-15 -2740 (|#1| |#1|)) (-15 -2814 (|#1| |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)) (-15 -2876 (|#1| |#1|)) (-15 -2866 (|#1| |#1|)) (-15 -2887 (|#1| |#1|)) (-15 -4140 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4154 (|#1| |#1|)) (-15 -2789 (|#1| |#1|)) (-15 -4387 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1315 (|#1|)) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2224 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2355 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -4094 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -1905 (|#2| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2020 (|#1| |#1|)) (-15 -1501 (|#1|)) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -2842 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3624 ((-3 |#1| "failed") (-413 (-1182 |#2|)))) (-15 -3612 ((-1182 |#2|) |#1|)) (-15 -1425 (|#1| (-1182 |#2|))) (-15 -3624 (|#1| (-1182 |#2|))) (-15 -2755 ((-1182 |#2|))) (-15 -4196 ((-695 |#2|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -1425 ((-1182 |#2|) |#1|)) (-15 -3570 (|#2|)) (-15 -1425 (|#1| (-1277 |#2|))) (-15 -1425 ((-1277 |#2|) |#1|)) (-15 -3424 ((-695 |#2|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1|)) (-15 -3521 ((-1182 |#2|) |#1|)) (-15 -3553 ((-1182 |#2|) |#1|)) (-15 -3570 (|#2| (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2959 (|#2| |#1|)) (-15 -3207 (|#2| |#1|)) (-15 -4006 ((-928))) (-15 -3799 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 -2875 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3101 (|#1| |#1| |#1|)) (-15 -2335 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|))) (-167 |#2|) (-174)) (T -166))
-((-3499 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))) (-4006 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-928)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))) (-3570 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-166 *3 *2)) (-4 *3 (-167 *2)))) (-2755 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 *4)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))))
-(-10 -8 (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3799 (|#1| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2034 ((-2 (|:| -3128 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2142 ((-777) |#1|)) (-15 -2384 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2518 (|#1| |#1| |#1|)) (-15 -2506 (|#1| |#1| |#1|)) (-15 -1877 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -1425 ((-542) |#1|)) (-15 -1425 ((-171 (-227)) |#1|)) (-15 -1425 ((-171 (-384)) |#1|)) (-15 -2751 (|#1| |#1|)) (-15 -2733 (|#1| |#1|)) (-15 -2740 (|#1| |#1|)) (-15 -2814 (|#1| |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)) (-15 -2876 (|#1| |#1|)) (-15 -2866 (|#1| |#1|)) (-15 -2887 (|#1| |#1|)) (-15 -4140 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4154 (|#1| |#1|)) (-15 -2789 (|#1| |#1|)) (-15 -4387 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1315 (|#1|)) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2224 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2355 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -4094 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -1905 (|#2| |#1|)) (-15 -2622 (|#1| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2020 (|#1| |#1|)) (-15 -1501 (|#1|)) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -2842 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3624 ((-3 |#1| "failed") (-413 (-1182 |#2|)))) (-15 -3612 ((-1182 |#2|) |#1|)) (-15 -1425 (|#1| (-1182 |#2|))) (-15 -3624 (|#1| (-1182 |#2|))) (-15 -2755 ((-1182 |#2|))) (-15 -4196 ((-695 |#2|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -1425 ((-1182 |#2|) |#1|)) (-15 -3570 (|#2|)) (-15 -1425 (|#1| (-1277 |#2|))) (-15 -1425 ((-1277 |#2|) |#1|)) (-15 -3424 ((-695 |#2|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1|)) (-15 -3521 ((-1182 |#2|) |#1|)) (-15 -3553 ((-1182 |#2|) |#1|)) (-15 -3570 (|#2| (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2959 (|#2| |#1|)) (-15 -3207 (|#2| |#1|)) (-15 -4006 ((-928))) (-15 -3799 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 -2875 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3101 (|#1| |#1| |#1|)) (-15 -2335 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 102 (-2892 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3074 (($ $) 103 (-2892 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3475 (((-112) $) 105 (-2892 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1806 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3207 ((|#1| $) 59)) (-2887 (($ $) 229 (|has| |#1| (-1212)))) (-2751 (($ $) 212 (|has| |#1| (-1212)))) (-2640 (((-1199 (-928) (-777)) (-570)) 155 (|has| |#1| (-354)))) (-3990 (((-3 $ "failed") $ $) 20)) (-3924 (((-424 (-1182 $)) (-1182 $)) 243 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-4364 (($ $) 122 (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1652 (((-424 $) $) 123 (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3814 (($ $) 242 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 246 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3473 (((-112) $ $) 113 (|has| |#1| (-311)))) (-3510 (((-777)) 96 (|has| |#1| (-373)))) (-2866 (($ $) 228 (|has| |#1| (-1212)))) (-2733 (($ $) 213 (|has| |#1| (-1212)))) (-4107 (($ $) 227 (|has| |#1| (-1212)))) (-2774 (($ $) 214 (|has| |#1| (-1212)))) (-1705 (($) 18 T CONST)) (-4380 (((-3 (-570) "failed") $) 178 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 173)) (-3216 (((-570) $) 177 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 174)) (-3243 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-354)))) (-2506 (($ $ $) 117 (|has| |#1| (-311)))) (-2818 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-4196 (((-695 (-570)) (-695 $)) 172 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 170) (((-695 |#1|) (-695 $)) 169)) (-3624 (($ (-1182 |#1|)) 166) (((-3 $ "failed") (-413 (-1182 |#1|))) 163 (|has| |#1| (-368)))) (-2875 (((-3 $ "failed") $) 37)) (-3823 ((|#1| $) 254)) (-2805 (((-3 (-413 (-570)) "failed") $) 247 (|has| |#1| (-551)))) (-3242 (((-112) $) 249 (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) 248 (|has| |#1| (-551)))) (-4006 (((-928)) 61)) (-3446 (($) 99 (|has| |#1| (-373)))) (-2518 (($ $ $) 116 (|has| |#1| (-311)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 111 (|has| |#1| (-311)))) (-2652 (($) 157 (|has| |#1| (-354)))) (-2542 (((-112) $) 158 (|has| |#1| (-354)))) (-2063 (($ $ (-777)) 149 (|has| |#1| (-354))) (($ $) 148 (|has| |#1| (-354)))) (-3618 (((-112) $) 124 (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-4094 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 250 (-12 (|has| |#1| (-1069)) (|has| |#1| (-1212))))) (-1315 (($) 239 (|has| |#1| (-1212)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 262 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 261 (|has| |#1| (-893 (-384))))) (-4323 (((-928) $) 160 (|has| |#1| (-354))) (((-839 (-928)) $) 146 (|has| |#1| (-354)))) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 241 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-2959 ((|#1| $) 58)) (-2619 (((-3 $ "failed") $) 150 (|has| |#1| (-354)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| |#1| (-311)))) (-3521 (((-1182 |#1|) $) 51 (|has| |#1| (-368)))) (-1356 (($ (-1 |#1| |#1|) $) 263)) (-1884 (((-928) $) 98 (|has| |#1| (-373)))) (-2789 (($ $) 236 (|has| |#1| (-1212)))) (-3612 (((-1182 |#1|) $) 164)) (-1899 (($ (-650 $)) 109 (-2892 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (($ $ $) 108 (-2892 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1988 (((-1168) $) 10)) (-1877 (($ $) 125 (|has| |#1| (-368)))) (-2438 (($) 151 (|has| |#1| (-354)) CONST)) (-2268 (($ (-928)) 97 (|has| |#1| (-373)))) (-1501 (($) 258)) (-3833 ((|#1| $) 255)) (-3577 (((-1129) $) 11)) (-2466 (($) 168)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 110 (-2892 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1942 (($ (-650 $)) 107 (-2892 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (($ $ $) 106 (-2892 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 154 (|has| |#1| (-354)))) (-1659 (((-424 (-1182 $)) (-1182 $)) 245 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-2224 (((-424 (-1182 $)) (-1182 $)) 244 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3801 (((-424 $) $) 121 (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 118 (|has| |#1| (-311)))) (-2547 (((-3 $ "failed") $ |#1|) 253 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 101 (-2892 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| |#1| (-311)))) (-4387 (($ $) 237 (|has| |#1| (-1212)))) (-1770 (($ $ (-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|)))) (-2142 (((-777) $) 114 (|has| |#1| (-311)))) (-1941 (($ $ |#1|) 270 (|has| |#1| (-290 |#1| |#1|)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 115 (|has| |#1| (-311)))) (-3570 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-2289 (((-777) $) 159 (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) 147 (|has| |#1| (-354)))) (-3547 (($ $ (-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 (-2892 (-1809 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1809 (|has| |#1| (-235)) (|has| |#1| (-368))))) (($ $) 145 (-2892 (-1809 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1809 (|has| |#1| (-235)) (|has| |#1| (-368)))))) (-1998 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-368)))) (-2755 (((-1182 |#1|)) 167)) (-4117 (($ $) 226 (|has| |#1| (-1212)))) (-2788 (($ $) 215 (|has| |#1| (-1212)))) (-4003 (($) 156 (|has| |#1| (-354)))) (-2899 (($ $) 225 (|has| |#1| (-1212)))) (-2766 (($ $) 216 (|has| |#1| (-1212)))) (-2876 (($ $) 224 (|has| |#1| (-1212)))) (-2740 (($ $) 217 (|has| |#1| (-1212)))) (-3424 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1425 (((-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))))) (-2020 (($ $) 257)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 153 (-2892 (-1809 (|has| $ (-146)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (|has| |#1| (-354))))) (-3175 (($ |#1| |#1|) 256)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 95 (-2892 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) 100 (-2892 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3532 (($ $) 152 (|has| |#1| (-354))) (((-3 $ "failed") $) 50 (-2892 (-1809 (|has| $ (-146)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (|has| |#1| (-146))))) (-3553 (((-1182 |#1|) $) 52)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1972 (((-1277 $)) 74)) (-4154 (($ $) 235 (|has| |#1| (-1212)))) (-2825 (($ $) 223 (|has| |#1| (-1212)))) (-2029 (((-112) $ $) 104 (-2892 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-4129 (($ $) 234 (|has| |#1| (-1212)))) (-2801 (($ $) 222 (|has| |#1| (-1212)))) (-4176 (($ $) 233 (|has| |#1| (-1212)))) (-2845 (($ $) 221 (|has| |#1| (-1212)))) (-1905 ((|#1| $) 251 (|has| |#1| (-1212)))) (-1578 (($ $) 232 (|has| |#1| (-1212)))) (-2855 (($ $) 220 (|has| |#1| (-1212)))) (-4163 (($ $) 231 (|has| |#1| (-1212)))) (-2835 (($ $) 219 (|has| |#1| (-1212)))) (-4140 (($ $) 230 (|has| |#1| (-1212)))) (-2814 (($ $) 218 (|has| |#1| (-1212)))) (-2622 (($ $) 252 (|has| |#1| (-1069)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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 (-2892 (-1809 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1809 (|has| |#1| (-235)) (|has| |#1| (-368))))) (($ $) 144 (-2892 (-1809 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1809 (|has| |#1| (-235)) (|has| |#1| (-368)))))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 129 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-650 (-1144)) $) 10)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-162) (-13 (-1092) (-10 -8 (-15 -3616 ((-650 (-1144)) $))))) (T -162))
+((-3616 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-162)))))
+(-13 (-1092) (-10 -8 (-15 -3616 ((-650 (-1144)) $))))
+((-2560 (((-112) $ $) NIL)) (-2764 (($ (-570)) 14) (($ $ $) 15)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 18)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 9)))
+(((-163) (-13 (-1109) (-10 -8 (-15 -2764 ($ (-570))) (-15 -2764 ($ $ $))))) (T -163))
+((-2764 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-163)))) (-2764 (*1 *1 *1 *1) (-5 *1 (-163))))
+(-13 (-1109) (-10 -8 (-15 -2764 ($ (-570))) (-15 -2764 ($ $ $))))
+((-3759 (((-115) (-1186)) 102)))
+(((-164) (-10 -7 (-15 -3759 ((-115) (-1186))))) (T -164))
+((-3759 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-115)) (-5 *1 (-164)))))
+(-10 -7 (-15 -3759 ((-115) (-1186))))
+((-3377 ((|#3| |#3|) 19)))
+(((-165 |#1| |#2| |#3|) (-10 -7 (-15 -3377 (|#3| |#3|))) (-1058) (-1253 |#1|) (-1253 |#2|)) (T -165))
+((-3377 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-4 *4 (-1253 *3)) (-5 *1 (-165 *3 *4 *2)) (-4 *2 (-1253 *4)))))
+(-10 -7 (-15 -3377 (|#3| |#3|)))
+((-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 223)) (-3211 ((|#2| $) 102)) (-2890 (($ $) 256)) (-2755 (($ $) 250)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 47)) (-2869 (($ $) 254)) (-2736 (($ $) 248)) (-4383 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 146)) (-3220 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 144)) (-2504 (($ $ $) 229)) (-2179 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 160) (((-695 |#2|) (-695 $)) 154)) (-3627 (($ (-1182 |#2|)) 125) (((-3 $ "failed") (-413 (-1182 |#2|))) NIL)) (-1929 (((-3 $ "failed") $) 214)) (-2502 (((-3 (-413 (-570)) "failed") $) 204)) (-2313 (((-112) $) 199)) (-3645 (((-413 (-570)) $) 202)) (-4009 (((-928)) 96)) (-2519 (($ $ $) 231)) (-3661 (((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) $) 269)) (-1315 (($) 245)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 193) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 198)) (-4399 ((|#2| $) 100)) (-3043 (((-1182 |#2|) $) 127)) (-1357 (($ (-1 |#2| |#2|) $) 108)) (-2792 (($ $) 247)) (-3615 (((-1182 |#2|) $) 126)) (-1878 (($ $) 207)) (-2995 (($) 103)) (-3933 (((-424 (-1182 $)) (-1182 $)) 95)) (-1558 (((-424 (-1182 $)) (-1182 $)) 64)) (-2548 (((-3 $ "failed") $ |#2|) 209) (((-3 $ "failed") $ $) 212)) (-4389 (($ $) 246)) (-2006 (((-777) $) 226)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 236)) (-2265 ((|#2| (-1277 $)) NIL) ((|#2|) 98)) (-3550 (($ $ (-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)) (-2075 (((-1182 |#2|)) 120)) (-2879 (($ $) 255)) (-2743 (($ $) 249)) (-3314 (((-1277 |#2|) $ (-1277 $)) 136) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 116) (((-695 |#2|) (-1277 $)) NIL)) (-1426 (((-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)) (-4307 (($ $) 104)) (-3802 (((-868) $) 143) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-413 (-570))) NIL) (($ $) NIL)) (-2124 (((-1182 |#2|) $) 32)) (-2851 (((-777)) 106)) (-3359 (((-112) $ $) 13)) (-4157 (($ $) 259)) (-2828 (($ $) 253)) (-4129 (($ $) 257)) (-2804 (($ $) 251)) (-4385 ((|#2| $) 242)) (-4144 (($ $) 258)) (-2817 (($ $) 252)) (-3231 (($ $) 162)) (-3025 (((-112) $ $) 110)) (-3114 (($ $) 112) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3802 (|#1| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3270 ((-2 (|:| -3635 |#1|) (|:| -4439 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2006 ((-777) |#1|)) (-15 -2696 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2519 (|#1| |#1| |#1|)) (-15 -2504 (|#1| |#1| |#1|)) (-15 -1878 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -1426 ((-542) |#1|)) (-15 -1426 ((-171 (-227)) |#1|)) (-15 -1426 ((-171 (-384)) |#1|)) (-15 -2755 (|#1| |#1|)) (-15 -2736 (|#1| |#1|)) (-15 -2743 (|#1| |#1|)) (-15 -2817 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2828 (|#1| |#1|)) (-15 -2879 (|#1| |#1|)) (-15 -2869 (|#1| |#1|)) (-15 -2890 (|#1| |#1|)) (-15 -4144 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4157 (|#1| |#1|)) (-15 -2792 (|#1| |#1|)) (-15 -4389 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1315 (|#1|)) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -1558 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3933 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3585 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -3661 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -4385 (|#2| |#1|)) (-15 -3231 (|#1| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4307 (|#1| |#1|)) (-15 -2995 (|#1|)) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -1557 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3627 ((-3 |#1| "failed") (-413 (-1182 |#2|)))) (-15 -3615 ((-1182 |#2|) |#1|)) (-15 -1426 (|#1| (-1182 |#2|))) (-15 -3627 (|#1| (-1182 |#2|))) (-15 -2075 ((-1182 |#2|))) (-15 -2179 ((-695 |#2|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -1426 ((-1182 |#2|) |#1|)) (-15 -2265 (|#2|)) (-15 -1426 (|#1| (-1277 |#2|))) (-15 -1426 ((-1277 |#2|) |#1|)) (-15 -3314 ((-695 |#2|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1|)) (-15 -3043 ((-1182 |#2|) |#1|)) (-15 -2124 ((-1182 |#2|) |#1|)) (-15 -2265 (|#2| (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -4399 (|#2| |#1|)) (-15 -3211 (|#2| |#1|)) (-15 -4009 ((-928))) (-15 -3802 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 -1929 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3104 (|#1| |#1| |#1|)) (-15 -3359 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|))) (-167 |#2|) (-174)) (T -166))
+((-2851 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))) (-4009 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-928)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))) (-2265 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-166 *3 *2)) (-4 *3 (-167 *2)))) (-2075 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 *4)) (-5 *1 (-166 *3 *4)) (-4 *3 (-167 *4)))))
+(-10 -8 (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3802 (|#1| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3270 ((-2 (|:| -3635 |#1|) (|:| -4439 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2006 ((-777) |#1|)) (-15 -2696 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2519 (|#1| |#1| |#1|)) (-15 -2504 (|#1| |#1| |#1|)) (-15 -1878 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -1426 ((-542) |#1|)) (-15 -1426 ((-171 (-227)) |#1|)) (-15 -1426 ((-171 (-384)) |#1|)) (-15 -2755 (|#1| |#1|)) (-15 -2736 (|#1| |#1|)) (-15 -2743 (|#1| |#1|)) (-15 -2817 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2828 (|#1| |#1|)) (-15 -2879 (|#1| |#1|)) (-15 -2869 (|#1| |#1|)) (-15 -2890 (|#1| |#1|)) (-15 -4144 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4157 (|#1| |#1|)) (-15 -2792 (|#1| |#1|)) (-15 -4389 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 -1315 (|#1|)) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -1558 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3933 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3585 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -3661 ((-2 (|:| |r| |#2|) (|:| |phi| |#2|)) |#1|)) (-15 -4385 (|#2| |#1|)) (-15 -3231 (|#1| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4307 (|#1| |#1|)) (-15 -2995 (|#1|)) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -1557 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3627 ((-3 |#1| "failed") (-413 (-1182 |#2|)))) (-15 -3615 ((-1182 |#2|) |#1|)) (-15 -1426 (|#1| (-1182 |#2|))) (-15 -3627 (|#1| (-1182 |#2|))) (-15 -2075 ((-1182 |#2|))) (-15 -2179 ((-695 |#2|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -1426 ((-1182 |#2|) |#1|)) (-15 -2265 (|#2|)) (-15 -1426 (|#1| (-1277 |#2|))) (-15 -1426 ((-1277 |#2|) |#1|)) (-15 -3314 ((-695 |#2|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1|)) (-15 -3043 ((-1182 |#2|) |#1|)) (-15 -2124 ((-1182 |#2|) |#1|)) (-15 -2265 (|#2| (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -4399 (|#2| |#1|)) (-15 -3211 (|#2| |#1|)) (-15 -4009 ((-928))) (-15 -3802 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 -1929 ((-3 |#1| "failed") |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3104 (|#1| |#1| |#1|)) (-15 -3359 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 102 (-2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-4306 (($ $) 103 (-2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-2617 (((-112) $) 105 (-2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-2913 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3211 ((|#1| $) 59)) (-2890 (($ $) 229 (|has| |#1| (-1212)))) (-2755 (($ $) 212 (|has| |#1| (-1212)))) (-3379 (((-1199 (-928) (-777)) (-570)) 155 (|has| |#1| (-354)))) (-1966 (((-3 $ "failed") $ $) 20)) (-2536 (((-424 (-1182 $)) (-1182 $)) 243 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-4310 (($ $) 122 (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3871 (((-424 $) $) 123 (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3817 (($ $) 242 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 246 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3765 (((-112) $ $) 113 (|has| |#1| (-311)))) (-3513 (((-777)) 96 (|has| |#1| (-373)))) (-2869 (($ $) 228 (|has| |#1| (-1212)))) (-2736 (($ $) 213 (|has| |#1| (-1212)))) (-4109 (($ $) 227 (|has| |#1| (-1212)))) (-2777 (($ $) 214 (|has| |#1| (-1212)))) (-3195 (($) 18 T CONST)) (-4383 (((-3 (-570) "failed") $) 178 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 173)) (-3220 (((-570) $) 177 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 174)) (-2322 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-354)))) (-2504 (($ $ $) 117 (|has| |#1| (-311)))) (-2595 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-2179 (((-695 (-570)) (-695 $)) 172 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 170) (((-695 |#1|) (-695 $)) 169)) (-3627 (($ (-1182 |#1|)) 166) (((-3 $ "failed") (-413 (-1182 |#1|))) 163 (|has| |#1| (-368)))) (-1929 (((-3 $ "failed") $) 37)) (-3826 ((|#1| $) 254)) (-2502 (((-3 (-413 (-570)) "failed") $) 247 (|has| |#1| (-551)))) (-2313 (((-112) $) 249 (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) 248 (|has| |#1| (-551)))) (-4009 (((-928)) 61)) (-3449 (($) 99 (|has| |#1| (-373)))) (-2519 (($ $ $) 116 (|has| |#1| (-311)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 111 (|has| |#1| (-311)))) (-3511 (($) 157 (|has| |#1| (-354)))) (-1843 (((-112) $) 158 (|has| |#1| (-354)))) (-3599 (($ $ (-777)) 149 (|has| |#1| (-354))) (($ $) 148 (|has| |#1| (-354)))) (-1336 (((-112) $) 124 (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3661 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) 250 (-12 (|has| |#1| (-1069)) (|has| |#1| (-1212))))) (-1315 (($) 239 (|has| |#1| (-1212)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 262 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 261 (|has| |#1| (-893 (-384))))) (-3941 (((-928) $) 160 (|has| |#1| (-354))) (((-839 (-928)) $) 146 (|has| |#1| (-354)))) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 241 (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-4399 ((|#1| $) 58)) (-4369 (((-3 $ "failed") $) 150 (|has| |#1| (-354)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| |#1| (-311)))) (-3043 (((-1182 |#1|) $) 51 (|has| |#1| (-368)))) (-1357 (($ (-1 |#1| |#1|) $) 263)) (-2400 (((-928) $) 98 (|has| |#1| (-373)))) (-2792 (($ $) 236 (|has| |#1| (-1212)))) (-3615 (((-1182 |#1|) $) 164)) (-1901 (($ (-650 $)) 109 (-2895 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (($ $ $) 108 (-2895 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3989 (((-1168) $) 10)) (-1878 (($ $) 125 (|has| |#1| (-368)))) (-2439 (($) 151 (|has| |#1| (-354)) CONST)) (-2267 (($ (-928)) 97 (|has| |#1| (-373)))) (-2995 (($) 258)) (-3836 ((|#1| $) 255)) (-3580 (((-1129) $) 11)) (-2467 (($) 168)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 110 (-2895 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-1939 (($ (-650 $)) 107 (-2895 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (($ $ $) 106 (-2895 (|has| |#1| (-311)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 154 (|has| |#1| (-354)))) (-3933 (((-424 (-1182 $)) (-1182 $)) 245 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-1558 (((-424 (-1182 $)) (-1182 $)) 244 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3804 (((-424 $) $) 121 (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 118 (|has| |#1| (-311)))) (-2548 (((-3 $ "failed") $ |#1|) 253 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 101 (-2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| |#1| (-311)))) (-4389 (($ $) 237 (|has| |#1| (-1212)))) (-1771 (($ $ (-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|)))) (-2006 (((-777) $) 114 (|has| |#1| (-311)))) (-1942 (($ $ |#1|) 270 (|has| |#1| (-290 |#1| |#1|)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 115 (|has| |#1| (-311)))) (-2265 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-4080 (((-777) $) 159 (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) 147 (|has| |#1| (-354)))) (-3550 (($ $ (-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 (-2895 (-1810 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1810 (|has| |#1| (-235)) (|has| |#1| (-368))))) (($ $) 145 (-2895 (-1810 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1810 (|has| |#1| (-235)) (|has| |#1| (-368)))))) (-4083 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-368)))) (-2075 (((-1182 |#1|)) 167)) (-4120 (($ $) 226 (|has| |#1| (-1212)))) (-2791 (($ $) 215 (|has| |#1| (-1212)))) (-3924 (($) 156 (|has| |#1| (-354)))) (-2902 (($ $) 225 (|has| |#1| (-1212)))) (-2768 (($ $) 216 (|has| |#1| (-1212)))) (-2879 (($ $) 224 (|has| |#1| (-1212)))) (-2743 (($ $) 217 (|has| |#1| (-1212)))) (-3314 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1426 (((-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))))) (-4307 (($ $) 257)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 153 (-2895 (-1810 (|has| $ (-146)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (|has| |#1| (-354))))) (-3178 (($ |#1| |#1|) 256)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 95 (-2895 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) 100 (-2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-3132 (($ $) 152 (|has| |#1| (-354))) (((-3 $ "failed") $) 50 (-2895 (-1810 (|has| $ (-146)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))) (|has| |#1| (-146))))) (-2124 (((-1182 |#1|) $) 52)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3827 (((-1277 $)) 74)) (-4157 (($ $) 235 (|has| |#1| (-1212)))) (-2828 (($ $) 223 (|has| |#1| (-1212)))) (-3228 (((-112) $ $) 104 (-2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))) (-4129 (($ $) 234 (|has| |#1| (-1212)))) (-2804 (($ $) 222 (|has| |#1| (-1212)))) (-4179 (($ $) 233 (|has| |#1| (-1212)))) (-2848 (($ $) 221 (|has| |#1| (-1212)))) (-4385 ((|#1| $) 251 (|has| |#1| (-1212)))) (-1579 (($ $) 232 (|has| |#1| (-1212)))) (-2858 (($ $) 220 (|has| |#1| (-1212)))) (-4166 (($ $) 231 (|has| |#1| (-1212)))) (-2838 (($ $) 219 (|has| |#1| (-1212)))) (-4144 (($ $) 230 (|has| |#1| (-1212)))) (-2817 (($ $) 218 (|has| |#1| (-1212)))) (-3231 (($ $) 252 (|has| |#1| (-1069)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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 (-2895 (-1810 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1810 (|has| |#1| (-235)) (|has| |#1| (-368))))) (($ $) 144 (-2895 (-1810 (|has| |#1| (-368)) (|has| |#1| (-235))) (|has| |#1| (-235)) (-1810 (|has| |#1| (-235)) (|has| |#1| (-368)))))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 129 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2959 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-1501 (*1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-2020 (*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3175 (*1 *1 *2 *2) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3833 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3823 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-2547 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-2622 (*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-1905 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1212)))) (-4094 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-1069)) (-4 *3 (-1212)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-3242 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-2068 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2805 (*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 -3175) (-15 -1501 ($)) (-15 -2020 ($ $)) (-15 -3175 ($ |t#1| |t#1|)) (-15 -3833 (|t#1| $)) (-15 -3823 (|t#1| $)) (-15 -2959 (|t#1| $)) (IF (|has| |t#1| (-562)) (PROGN (-6 (-562)) (-15 -2547 ((-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 -2622 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1212)) (PROGN (-6 (-1212)) (-15 -1905 (|t#1| $)) (IF (|has| |t#1| (-1011)) (-6 (-1011)) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -4094 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-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))) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-38 |#1|) . T) ((-38 $) -2892 (|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#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2892 (|has| |#1| (-354)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) -2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-354)) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) -2892 (|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) -2892 (|has| |#1| (-354)) (|has| |#1| (-235))) ((-245) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-288) |has| |#1| (-1212)) ((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-294) -2892 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-311) -2892 (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-368) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-408) |has| |#1| (-354)) ((-373) -2892 (|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) -2892 (|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) -2892 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-652 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-646 |#1|) . T) ((-646 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-723 |#1|) . T) ((-723 $) -2892 (|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) -2892 (|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#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) -2892 (|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) -2892 (|has| |#1| (-354)) (|has| |#1| (-368)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))
-((-3801 (((-424 |#2|) |#2|) 67)))
-(((-168 |#1| |#2|) (-10 -7 (-15 -3801 ((-424 |#2|) |#2|))) (-311) (-1253 (-171 |#1|))) (T -168))
-((-3801 (*1 *2 *3) (-12 (-4 *4 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-168 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
-(-10 -7 (-15 -3801 ((-424 |#2|) |#2|)))
-((-1671 (((-1144) (-1144) (-295)) 8)) (-2195 (((-650 (-697 (-284))) (-1168)) 81)) (-1322 (((-697 (-284)) (-1144)) 76)))
-(((-169) (-13 (-1227) (-10 -7 (-15 -1671 ((-1144) (-1144) (-295))) (-15 -1322 ((-697 (-284)) (-1144))) (-15 -2195 ((-650 (-697 (-284))) (-1168)))))) (T -169))
-((-1671 (*1 *2 *2 *3) (-12 (-5 *2 (-1144)) (-5 *3 (-295)) (-5 *1 (-169)))) (-1322 (*1 *2 *3) (-12 (-5 *3 (-1144)) (-5 *2 (-697 (-284))) (-5 *1 (-169)))) (-2195 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-697 (-284)))) (-5 *1 (-169)))))
-(-13 (-1227) (-10 -7 (-15 -1671 ((-1144) (-1144) (-295))) (-15 -1322 ((-697 (-284)) (-1144))) (-15 -2195 ((-650 (-697 (-284))) (-1168)))))
-((-1356 (((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|)) 14)))
-(((-170 |#1| |#2|) (-10 -7 (-15 -1356 ((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|)))) (-174) (-174)) (T -170))
-((-1356 (*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 -1356 ((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 34)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3074 (($ $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3475 (((-112) $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-1806 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-3207 ((|#1| $) NIL)) (-2887 (($ $) NIL (|has| |#1| (-1212)))) (-2751 (($ $) NIL (|has| |#1| (-1212)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-354)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-4364 (($ $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1652 (((-424 $) $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3814 (($ $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-311)))) (-3510 (((-777)) NIL (|has| |#1| (-373)))) (-2866 (($ $) NIL (|has| |#1| (-1212)))) (-2733 (($ $) NIL (|has| |#1| (-1212)))) (-4107 (($ $) NIL (|has| |#1| (-1212)))) (-2774 (($ $) NIL (|has| |#1| (-1212)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-3243 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-354)))) (-2506 (($ $ $) NIL (|has| |#1| (-311)))) (-2818 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3624 (($ (-1182 |#1|)) NIL) (((-3 $ "failed") (-413 (-1182 |#1|))) NIL (|has| |#1| (-368)))) (-2875 (((-3 $ "failed") $) NIL)) (-3823 ((|#1| $) 13)) (-2805 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-3242 (((-112) $) NIL (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-4006 (((-928)) NIL)) (-3446 (($) NIL (|has| |#1| (-373)))) (-2518 (($ $ $) NIL (|has| |#1| (-311)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-311)))) (-2652 (($) NIL (|has| |#1| (-354)))) (-2542 (((-112) $) NIL (|has| |#1| (-354)))) (-2063 (($ $ (-777)) NIL (|has| |#1| (-354))) (($ $) NIL (|has| |#1| (-354)))) (-3618 (((-112) $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-4094 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1069)) (|has| |#1| (-1212))))) (-1315 (($) NIL (|has| |#1| (-1212)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#1| (-893 (-384))))) (-4323 (((-928) $) NIL (|has| |#1| (-354))) (((-839 (-928)) $) NIL (|has| |#1| (-354)))) (-4346 (((-112) $) 36)) (-2923 (($ $ (-570)) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-2959 ((|#1| $) 47)) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-354)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-311)))) (-3521 (((-1182 |#1|) $) NIL (|has| |#1| (-368)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1884 (((-928) $) NIL (|has| |#1| (-373)))) (-2789 (($ $) NIL (|has| |#1| (-1212)))) (-3612 (((-1182 |#1|) $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-311))) (($ $ $) NIL (|has| |#1| (-311)))) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2438 (($) NIL (|has| |#1| (-354)) CONST)) (-2268 (($ (-928)) NIL (|has| |#1| (-373)))) (-1501 (($) NIL)) (-3833 ((|#1| $) 15)) (-3577 (((-1129) $) NIL)) (-2466 (($) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-311)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-311))) (($ $ $) NIL (|has| |#1| (-311)))) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| |#1| (-354)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3801 (((-424 $) $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-311)))) (-2547 (((-3 $ "failed") $ |#1|) 45 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 48 (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-311)))) (-4387 (($ $) NIL (|has| |#1| (-1212)))) (-1770 (($ $ (-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|)))) (-2142 (((-777) $) NIL (|has| |#1| (-311)))) (-1941 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-311)))) (-3570 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-2289 (((-777) $) NIL (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) NIL (|has| |#1| (-354)))) (-3547 (($ $ (-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)))) (-1998 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2755 (((-1182 |#1|)) NIL)) (-4117 (($ $) NIL (|has| |#1| (-1212)))) (-2788 (($ $) NIL (|has| |#1| (-1212)))) (-4003 (($) NIL (|has| |#1| (-354)))) (-2899 (($ $) NIL (|has| |#1| (-1212)))) (-2766 (($ $) NIL (|has| |#1| (-1212)))) (-2876 (($ $) NIL (|has| |#1| (-1212)))) (-2740 (($ $) NIL (|has| |#1| (-1212)))) (-3424 (((-1277 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-1425 (((-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))))) (-2020 (($ $) 46)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-354))))) (-3175 (($ |#1| |#1|) 38)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) 37) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3532 (($ $) NIL (|has| |#1| (-354))) (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3553 (((-1182 |#1|) $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL)) (-4154 (($ $) NIL (|has| |#1| (-1212)))) (-2825 (($ $) NIL (|has| |#1| (-1212)))) (-2029 (((-112) $ $) NIL (-2892 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-4129 (($ $) NIL (|has| |#1| (-1212)))) (-2801 (($ $) NIL (|has| |#1| (-1212)))) (-4176 (($ $) NIL (|has| |#1| (-1212)))) (-2845 (($ $) NIL (|has| |#1| (-1212)))) (-1905 ((|#1| $) NIL (|has| |#1| (-1212)))) (-1578 (($ $) NIL (|has| |#1| (-1212)))) (-2855 (($ $) NIL (|has| |#1| (-1212)))) (-4163 (($ $) NIL (|has| |#1| (-1212)))) (-2835 (($ $) NIL (|has| |#1| (-1212)))) (-4140 (($ $) NIL (|has| |#1| (-1212)))) (-2814 (($ $) NIL (|has| |#1| (-1212)))) (-2622 (($ $) NIL (|has| |#1| (-1069)))) (-1861 (($) 28 T CONST)) (-1875 (($) 30 T CONST)) (-2831 (((-1168) $) 23 (|has| |#1| (-834))) (((-1168) $ (-112)) 25 (|has| |#1| (-834))) (((-1282) (-828) $) 26 (|has| |#1| (-834))) (((-1282) (-828) $ (-112)) 27 (|has| |#1| (-834)))) (-2942 (($ $ (-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)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))))
+((-4399 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-2995 (*1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-4307 (*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3178 (*1 *1 *2 *2) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3836 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-3826 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))) (-2548 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-3231 (*1 *1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-4385 (*1 *2 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-1212)))) (-3661 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-1069)) (-4 *3 (-1212)) (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))) (-2313 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-3645 (*1 *2 *1) (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2502 (*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 -3178) (-15 -2995 ($)) (-15 -4307 ($ $)) (-15 -3178 ($ |t#1| |t#1|)) (-15 -3836 (|t#1| $)) (-15 -3826 (|t#1| $)) (-15 -4399 (|t#1| $)) (IF (|has| |t#1| (-562)) (PROGN (-6 (-562)) (-15 -2548 ((-3 $ "failed") $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-311)) (-6 (-311)) |%noBranch|) (IF (|has| |t#1| (-6 -4451)) (-6 -4451) |%noBranch|) (IF (|has| |t#1| (-6 -4448)) (-6 -4448) |%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 -3231 ($ $)) |%noBranch|) (IF (|has| |t#1| (-1212)) (PROGN (-6 (-1212)) (-15 -4385 (|t#1| $)) (IF (|has| |t#1| (-1011)) (-6 (-1011)) |%noBranch|) (IF (|has| |t#1| (-1069)) (-15 -3661 ((-2 (|:| |r| |t#1|) (|:| |phi| |t#1|)) $)) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-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))) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-38 |#1|) . T) ((-38 $) -2895 (|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#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2895 (|has| |#1| (-354)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) -2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-354)) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) -2895 (|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) -2895 (|has| |#1| (-354)) (|has| |#1| (-235))) ((-245) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-288) |has| |#1| (-1212)) ((-290 |#1| $) |has| |#1| (-290 |#1| |#1|)) ((-294) -2895 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-311) -2895 (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-313 |#1|) |has| |#1| (-313 |#1|)) ((-368) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-408) |has| |#1| (-354)) ((-373) -2895 (|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) -2895 (|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) -2895 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-652 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-646 |#1|) . T) ((-646 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-354)) (|has| |#1| (-368)) (|has| |#1| (-311))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-723 |#1|) . T) ((-723 $) -2895 (|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) -2895 (|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#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) -2895 (|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) -2895 (|has| |#1| (-354)) (|has| |#1| (-368)) (-12 (|has| |#1| (-311)) (|has| |#1| (-916)))))
+((-3804 (((-424 |#2|) |#2|) 67)))
+(((-168 |#1| |#2|) (-10 -7 (-15 -3804 ((-424 |#2|) |#2|))) (-311) (-1253 (-171 |#1|))) (T -168))
+((-3804 (*1 *2 *3) (-12 (-4 *4 (-311)) (-5 *2 (-424 *3)) (-5 *1 (-168 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
+(-10 -7 (-15 -3804 ((-424 |#2|) |#2|)))
+((-1671 (((-1144) (-1144) (-295)) 8)) (-2542 (((-650 (-697 (-284))) (-1168)) 81)) (-1737 (((-697 (-284)) (-1144)) 76)))
+(((-169) (-13 (-1227) (-10 -7 (-15 -1671 ((-1144) (-1144) (-295))) (-15 -1737 ((-697 (-284)) (-1144))) (-15 -2542 ((-650 (-697 (-284))) (-1168)))))) (T -169))
+((-1671 (*1 *2 *2 *3) (-12 (-5 *2 (-1144)) (-5 *3 (-295)) (-5 *1 (-169)))) (-1737 (*1 *2 *3) (-12 (-5 *3 (-1144)) (-5 *2 (-697 (-284))) (-5 *1 (-169)))) (-2542 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-697 (-284)))) (-5 *1 (-169)))))
+(-13 (-1227) (-10 -7 (-15 -1671 ((-1144) (-1144) (-295))) (-15 -1737 ((-697 (-284)) (-1144))) (-15 -2542 ((-650 (-697 (-284))) (-1168)))))
+((-1357 (((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|)) 14)))
+(((-170 |#1| |#2|) (-10 -7 (-15 -1357 ((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|)))) (-174) (-174)) (T -170))
+((-1357 (*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 -1357 ((-171 |#2|) (-1 |#2| |#1|) (-171 |#1|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 34)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-4306 (($ $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-2617 (((-112) $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-2913 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) NIL)) (-3211 ((|#1| $) NIL)) (-2890 (($ $) NIL (|has| |#1| (-1212)))) (-2755 (($ $) NIL (|has| |#1| (-1212)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-354)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-4310 (($ $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3871 (((-424 $) $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3817 (($ $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-311)))) (-3513 (((-777)) NIL (|has| |#1| (-373)))) (-2869 (($ $) NIL (|has| |#1| (-1212)))) (-2736 (($ $) NIL (|has| |#1| (-1212)))) (-4109 (($ $) NIL (|has| |#1| (-1212)))) (-2777 (($ $) NIL (|has| |#1| (-1212)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-2322 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-354)))) (-2504 (($ $ $) NIL (|has| |#1| (-311)))) (-2595 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3627 (($ (-1182 |#1|)) NIL) (((-3 $ "failed") (-413 (-1182 |#1|))) NIL (|has| |#1| (-368)))) (-1929 (((-3 $ "failed") $) NIL)) (-3826 ((|#1| $) 13)) (-2502 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-2313 (((-112) $) NIL (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-4009 (((-928)) NIL)) (-3449 (($) NIL (|has| |#1| (-373)))) (-2519 (($ $ $) NIL (|has| |#1| (-311)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-311)))) (-3511 (($) NIL (|has| |#1| (-354)))) (-1843 (((-112) $) NIL (|has| |#1| (-354)))) (-3599 (($ $ (-777)) NIL (|has| |#1| (-354))) (($ $) NIL (|has| |#1| (-354)))) (-1336 (((-112) $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-3661 (((-2 (|:| |r| |#1|) (|:| |phi| |#1|)) $) NIL (-12 (|has| |#1| (-1069)) (|has| |#1| (-1212))))) (-1315 (($) NIL (|has| |#1| (-1212)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#1| (-893 (-384))))) (-3941 (((-928) $) NIL (|has| |#1| (-354))) (((-839 (-928)) $) NIL (|has| |#1| (-354)))) (-4139 (((-112) $) 36)) (-2252 (($ $ (-570)) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1212))))) (-4399 ((|#1| $) 47)) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-354)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-311)))) (-3043 (((-1182 |#1|) $) NIL (|has| |#1| (-368)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2400 (((-928) $) NIL (|has| |#1| (-373)))) (-2792 (($ $) NIL (|has| |#1| (-1212)))) (-3615 (((-1182 |#1|) $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-311))) (($ $ $) NIL (|has| |#1| (-311)))) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2439 (($) NIL (|has| |#1| (-354)) CONST)) (-2267 (($ (-928)) NIL (|has| |#1| (-373)))) (-2995 (($) NIL)) (-3836 ((|#1| $) 15)) (-3580 (((-1129) $) NIL)) (-2467 (($) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-311)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-311))) (($ $ $) NIL (|has| |#1| (-311)))) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| |#1| (-354)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#1| (-311)) (|has| |#1| (-916))))) (-3804 (((-424 $) $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-368))))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-311)))) (-2548 (((-3 $ "failed") $ |#1|) 45 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 48 (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-311)))) (-4389 (($ $) NIL (|has| |#1| (-1212)))) (-1771 (($ $ (-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|)))) (-2006 (((-777) $) NIL (|has| |#1| (-311)))) (-1942 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-311)))) (-2265 ((|#1| (-1277 $)) NIL) ((|#1|) NIL)) (-4080 (((-777) $) NIL (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) NIL (|has| |#1| (-354)))) (-3550 (($ $ (-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)))) (-4083 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2075 (((-1182 |#1|)) NIL)) (-4120 (($ $) NIL (|has| |#1| (-1212)))) (-2791 (($ $) NIL (|has| |#1| (-1212)))) (-3924 (($) NIL (|has| |#1| (-354)))) (-2902 (($ $) NIL (|has| |#1| (-1212)))) (-2768 (($ $) NIL (|has| |#1| (-1212)))) (-2879 (($ $) NIL (|has| |#1| (-1212)))) (-2743 (($ $) NIL (|has| |#1| (-1212)))) (-3314 (((-1277 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-1426 (((-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))))) (-4307 (($ $) 46)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-354))))) (-3178 (($ |#1| |#1|) 38)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) 37) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-3132 (($ $) NIL (|has| |#1| (-354))) (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2124 (((-1182 |#1|) $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL)) (-4157 (($ $) NIL (|has| |#1| (-1212)))) (-2828 (($ $) NIL (|has| |#1| (-1212)))) (-3228 (((-112) $ $) NIL (-2895 (-12 (|has| |#1| (-311)) (|has| |#1| (-916))) (|has| |#1| (-562))))) (-4129 (($ $) NIL (|has| |#1| (-1212)))) (-2804 (($ $) NIL (|has| |#1| (-1212)))) (-4179 (($ $) NIL (|has| |#1| (-1212)))) (-2848 (($ $) NIL (|has| |#1| (-1212)))) (-4385 ((|#1| $) NIL (|has| |#1| (-1212)))) (-1579 (($ $) NIL (|has| |#1| (-1212)))) (-2858 (($ $) NIL (|has| |#1| (-1212)))) (-4166 (($ $) NIL (|has| |#1| (-1212)))) (-2838 (($ $) NIL (|has| |#1| (-1212)))) (-4144 (($ $) NIL (|has| |#1| (-1212)))) (-2817 (($ $) NIL (|has| |#1| (-1212)))) (-3231 (($ $) NIL (|has| |#1| (-1069)))) (-1862 (($) 28 T CONST)) (-1876 (($) 30 T CONST)) (-1423 (((-1168) $) 23 (|has| |#1| (-834))) (((-1168) $ (-112)) 25 (|has| |#1| (-834))) (((-1282) (-828) $) 26 (|has| |#1| (-834))) (((-1282) (-828) $ (-112)) 27 (|has| |#1| (-834)))) (-2945 (($ $ (-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)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)))
-((-1425 (((-899 |#1|) |#3|) 22)))
-(((-172 |#1| |#2| |#3|) (-10 -7 (-15 -1425 ((-899 |#1|) |#3|))) (-1109) (-13 (-620 (-899 |#1|)) (-174)) (-167 |#2|)) (T -172))
-((-1425 (*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 -1425 ((-899 |#1|) |#3|)))
-((-2558 (((-112) $ $) NIL)) (-2807 (((-112) $) 9)) (-1704 (((-112) $ (-112)) 11)) (-4291 (($) 13)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3951 (($ $) 14)) (-3799 (((-868) $) 18)) (-1982 (((-112) $) 8)) (-4122 (((-112) $ (-112)) 10)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-173) (-13 (-1109) (-10 -8 (-15 -4291 ($)) (-15 -1982 ((-112) $)) (-15 -2807 ((-112) $)) (-15 -4122 ((-112) $ (-112))) (-15 -1704 ((-112) $ (-112))) (-15 -3951 ($ $))))) (T -173))
-((-4291 (*1 *1) (-5 *1 (-173))) (-1982 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-2807 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-4122 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-1704 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-3951 (*1 *1 *1) (-5 *1 (-173))))
-(-13 (-1109) (-10 -8 (-15 -4291 ($)) (-15 -1982 ((-112) $)) (-15 -2807 ((-112) $)) (-15 -4122 ((-112) $ (-112))) (-15 -1704 ((-112) $ (-112))) (-15 -3951 ($ $))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-1426 (((-899 |#1|) |#3|) 22)))
+(((-172 |#1| |#2| |#3|) (-10 -7 (-15 -1426 ((-899 |#1|) |#3|))) (-1109) (-13 (-620 (-899 |#1|)) (-174)) (-167 |#2|)) (T -172))
+((-1426 (*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 -1426 ((-899 |#1|) |#3|)))
+((-2560 (((-112) $ $) NIL)) (-2524 (((-112) $) 9)) (-3187 (((-112) $ (-112)) 11)) (-4294 (($) 13)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3954 (($ $) 14)) (-3802 (((-868) $) 18)) (-3926 (((-112) $) 8)) (-4125 (((-112) $ (-112)) 10)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-173) (-13 (-1109) (-10 -8 (-15 -4294 ($)) (-15 -3926 ((-112) $)) (-15 -2524 ((-112) $)) (-15 -4125 ((-112) $ (-112))) (-15 -3187 ((-112) $ (-112))) (-15 -3954 ($ $))))) (T -173))
+((-4294 (*1 *1) (-5 *1 (-173))) (-3926 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-2524 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-4125 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-3187 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))) (-3954 (*1 *1 *1) (-5 *1 (-173))))
+(-13 (-1109) (-10 -8 (-15 -4294 ($)) (-15 -3926 ((-112) $)) (-15 -2524 ((-112) $)) (-15 -4125 ((-112) $ (-112))) (-15 -3187 ((-112) $ (-112))) (-15 -3954 ($ $))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-174) (-141)) (T -174))
NIL
-(-13 (-1058) (-111 $ $) (-10 -7 (-6 (-4451 "*"))))
+(-13 (-1058) (-111 $ $) (-10 -7 (-6 (-4454 "*"))))
(((-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))
-((-3107 (($ $) 6)))
+((-3443 (($ $) 6)))
(((-175) (-141)) (T -175))
-((-3107 (*1 *1 *1) (-4 *1 (-175))))
-(-13 (-10 -8 (-15 -3107 ($ $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 ((|#1| $) 81)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-2506 (($ $ $) NIL)) (-3658 (($ $) 21)) (-2141 (($ |#1| (-1166 |#1|)) 50)) (-2875 (((-3 $ "failed") $) 123)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-2658 (((-1166 |#1|) $) 88)) (-3573 (((-1166 |#1|) $) 85)) (-2771 (((-1166 |#1|) $) 86)) (-4346 (((-112) $) NIL)) (-3973 (((-1166 |#1|) $) 94)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1899 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL)) (-2431 (($ $ (-570)) 97)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2298 (((-1166 |#1|) $) 95)) (-3437 (((-1166 (-413 |#1|)) $) 14)) (-1587 (($ (-413 |#1|)) 17) (($ |#1| (-1166 |#1|) (-1166 |#1|)) 40)) (-2853 (($ $) 99)) (-3799 (((-868) $) 139) (($ (-570)) 53) (($ |#1|) 54) (($ (-413 |#1|)) 38) (($ (-413 (-570))) NIL) (($ $) NIL)) (-3499 (((-777)) 69 T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-3113 (((-1166 (-413 |#1|)) $) 20)) (-1861 (($) 27 T CONST)) (-1875 (($) 30 T CONST)) (-3022 (((-112) $ $) 37)) (-3122 (($ $ $) 121)) (-3111 (($ $) 112) (($ $ $) 109)) (-3101 (($ $ $) 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 -1587 ($ (-413 |#1|))) (-15 -1587 ($ |#1| (-1166 |#1|) (-1166 |#1|))) (-15 -2141 ($ |#1| (-1166 |#1|))) (-15 -3573 ((-1166 |#1|) $)) (-15 -2771 ((-1166 |#1|) $)) (-15 -2658 ((-1166 |#1|) $)) (-15 -1733 (|#1| $)) (-15 -3658 ($ $)) (-15 -3113 ((-1166 (-413 |#1|)) $)) (-15 -3437 ((-1166 (-413 |#1|)) $)) (-15 -3973 ((-1166 |#1|) $)) (-15 -2298 ((-1166 |#1|) $)) (-15 -2431 ($ $ (-570))) (-15 -2853 ($ $)))) (-311)) (T -176))
-((-1587 (*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-311)) (-5 *1 (-176 *3)))) (-1587 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))) (-2141 (*1 *1 *2 *3) (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))) (-3573 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2771 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2658 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1733 (*1 *2 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))) (-3658 (*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))) (-3113 (*1 *2 *1) (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3437 (*1 *2 *1) (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3973 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2298 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2431 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2853 (*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))))
-(-13 (-38 |#1|) (-38 (-413 |#1|)) (-368) (-10 -8 (-15 -1587 ($ (-413 |#1|))) (-15 -1587 ($ |#1| (-1166 |#1|) (-1166 |#1|))) (-15 -2141 ($ |#1| (-1166 |#1|))) (-15 -3573 ((-1166 |#1|) $)) (-15 -2771 ((-1166 |#1|) $)) (-15 -2658 ((-1166 |#1|) $)) (-15 -1733 (|#1| $)) (-15 -3658 ($ $)) (-15 -3113 ((-1166 (-413 |#1|)) $)) (-15 -3437 ((-1166 (-413 |#1|)) $)) (-15 -3973 ((-1166 |#1|) $)) (-15 -2298 ((-1166 |#1|) $)) (-15 -2431 ($ $ (-570))) (-15 -2853 ($ $))))
-((-3065 (($ (-109) $) 15)) (-3625 (((-697 (-109)) (-512) $) 14)) (-3799 (((-868) $) 18)) (-3034 (((-650 (-109)) $) 8)))
-(((-177) (-13 (-619 (-868)) (-10 -8 (-15 -3034 ((-650 (-109)) $)) (-15 -3065 ($ (-109) $)) (-15 -3625 ((-697 (-109)) (-512) $))))) (T -177))
-((-3034 (*1 *2 *1) (-12 (-5 *2 (-650 (-109))) (-5 *1 (-177)))) (-3065 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-177)))) (-3625 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-177)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3034 ((-650 (-109)) $)) (-15 -3065 ($ (-109) $)) (-15 -3625 ((-697 (-109)) (-512) $))))
-((-1854 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 38)) (-3182 (((-950 |#1|) (-950 |#1|)) 22)) (-1683 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 34)) (-4054 (((-950 |#1|) (-950 |#1|)) 20)) (-3292 (((-950 |#1|) (-950 |#1|)) 28)) (-3483 (((-950 |#1|) (-950 |#1|)) 27)) (-2007 (((-950 |#1|) (-950 |#1|)) 26)) (-3910 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 35)) (-3209 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 33)) (-2915 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 32)) (-1860 (((-950 |#1|) (-950 |#1|)) 21)) (-3669 (((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|) 41)) (-2088 (((-950 |#1|) (-950 |#1|)) 8)) (-3491 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 37)) (-3603 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 36)))
-(((-178 |#1|) (-10 -7 (-15 -2088 ((-950 |#1|) (-950 |#1|))) (-15 -4054 ((-950 |#1|) (-950 |#1|))) (-15 -1860 ((-950 |#1|) (-950 |#1|))) (-15 -3182 ((-950 |#1|) (-950 |#1|))) (-15 -2007 ((-950 |#1|) (-950 |#1|))) (-15 -3483 ((-950 |#1|) (-950 |#1|))) (-15 -3292 ((-950 |#1|) (-950 |#1|))) (-15 -2915 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3209 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1683 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3910 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3603 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3491 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1854 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3669 ((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|))) (-13 (-368) (-1212) (-1011))) (T -178))
-((-3669 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-1854 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3491 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3603 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3910 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-1683 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3209 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2915 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-3292 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-3483 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-2007 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-3182 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-1860 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-4054 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-2088 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))))
-(-10 -7 (-15 -2088 ((-950 |#1|) (-950 |#1|))) (-15 -4054 ((-950 |#1|) (-950 |#1|))) (-15 -1860 ((-950 |#1|) (-950 |#1|))) (-15 -3182 ((-950 |#1|) (-950 |#1|))) (-15 -2007 ((-950 |#1|) (-950 |#1|))) (-15 -3483 ((-950 |#1|) (-950 |#1|))) (-15 -3292 ((-950 |#1|) (-950 |#1|))) (-15 -2915 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3209 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1683 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3910 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3603 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3491 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1854 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -3669 ((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|)))
-((-3553 ((|#2| |#3|) 28)))
-(((-179 |#1| |#2| |#3|) (-10 -7 (-15 -3553 (|#2| |#3|))) (-174) (-1253 |#1|) (-730 |#1| |#2|)) (T -179))
-((-3553 (*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 -3553 (|#2| |#3|)))
-((-2842 (((-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 -2842 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) |%noBranch|)) (-1109) (-13 (-893 |#1|) (-174)) (-167 |#2|)) (T -180))
-((-2842 (*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 -2842 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) |%noBranch|))
-((-3996 (((-650 |#1|) (-650 |#1|) |#1|) 41)) (-3220 (((-650 |#1|) |#1| (-650 |#1|)) 20)) (-3548 (((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|)) 36) ((|#1| (-650 |#1|) (-650 |#1|)) 32)))
-(((-181 |#1|) (-10 -7 (-15 -3220 ((-650 |#1|) |#1| (-650 |#1|))) (-15 -3548 (|#1| (-650 |#1|) (-650 |#1|))) (-15 -3548 ((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|))) (-15 -3996 ((-650 |#1|) (-650 |#1|) |#1|))) (-311)) (T -181))
-((-3996 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))) (-3548 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-650 *4))) (-5 *2 (-650 *4)) (-4 *4 (-311)) (-5 *1 (-181 *4)))) (-3548 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-181 *2)) (-4 *2 (-311)))) (-3220 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
-(-10 -7 (-15 -3220 ((-650 |#1|) |#1| (-650 |#1|))) (-15 -3548 (|#1| (-650 |#1|) (-650 |#1|))) (-15 -3548 ((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|))) (-15 -3996 ((-650 |#1|) (-650 |#1|) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3863 (((-1226) $) 13)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1434 (((-1144) $) 10)) (-3799 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-182) (-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $)) (-15 -3863 ((-1226) $))))) (T -182))
-((-1434 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-182)))) (-3863 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-182)))))
-(-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $)) (-15 -3863 ((-1226) $))))
-((-4018 (((-2 (|:| |start| |#2|) (|:| -3477 (-424 |#2|))) |#2|) 66)) (-2806 ((|#1| |#1|) 58)) (-1524 (((-171 |#1|) |#2|) 93)) (-1737 ((|#1| |#2|) 136) ((|#1| |#2| |#1|) 90)) (-3958 ((|#2| |#2|) 91)) (-1394 (((-424 |#2|) |#2| |#1|) 118) (((-424 |#2|) |#2| |#1| (-112)) 88)) (-2959 ((|#1| |#2|) 117)) (-1373 ((|#2| |#2|) 130)) (-3801 (((-424 |#2|) |#2|) 153) (((-424 |#2|) |#2| |#1|) 33) (((-424 |#2|) |#2| |#1| (-112)) 152)) (-3500 (((-650 (-2 (|:| -3477 (-650 |#2|)) (|:| -3670 |#1|))) |#2| |#2|) 151) (((-650 (-2 (|:| -3477 (-650 |#2|)) (|:| -3670 |#1|))) |#2| |#2| (-112)) 81)) (-3360 (((-650 (-171 |#1|)) |#2| |#1|) 42) (((-650 (-171 |#1|)) |#2|) 43)))
-(((-183 |#1| |#2|) (-10 -7 (-15 -3360 ((-650 (-171 |#1|)) |#2|)) (-15 -3360 ((-650 (-171 |#1|)) |#2| |#1|)) (-15 -3500 ((-650 (-2 (|:| -3477 (-650 |#2|)) (|:| -3670 |#1|))) |#2| |#2| (-112))) (-15 -3500 ((-650 (-2 (|:| -3477 (-650 |#2|)) (|:| -3670 |#1|))) |#2| |#2|)) (-15 -3801 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3801 ((-424 |#2|) |#2| |#1|)) (-15 -3801 ((-424 |#2|) |#2|)) (-15 -1373 (|#2| |#2|)) (-15 -2959 (|#1| |#2|)) (-15 -1394 ((-424 |#2|) |#2| |#1| (-112))) (-15 -1394 ((-424 |#2|) |#2| |#1|)) (-15 -3958 (|#2| |#2|)) (-15 -1737 (|#1| |#2| |#1|)) (-15 -1737 (|#1| |#2|)) (-15 -1524 ((-171 |#1|) |#2|)) (-15 -2806 (|#1| |#1|)) (-15 -4018 ((-2 (|:| |start| |#2|) (|:| -3477 (-424 |#2|))) |#2|))) (-13 (-368) (-854)) (-1253 (-171 |#1|))) (T -183))
-((-4018 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-2 (|:| |start| *3) (|:| -3477 (-424 *3)))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-2806 (*1 *2 *2) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-1524 (*1 *2 *3) (-12 (-5 *2 (-171 *4)) (-5 *1 (-183 *4 *3)) (-4 *4 (-13 (-368) (-854))) (-4 *3 (-1253 *2)))) (-1737 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-1737 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-3958 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2)) (-4 *2 (-1253 (-171 *3))))) (-1394 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-1394 (*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))))) (-2959 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-1373 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2)) (-4 *2 (-1253 (-171 *3))))) (-3801 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3801 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3801 (*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))))) (-3500 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-2 (|:| -3477 (-650 *3)) (|:| -3670 *4)))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3500 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-368) (-854))) (-5 *2 (-650 (-2 (|:| -3477 (-650 *3)) (|:| -3670 *5)))) (-5 *1 (-183 *5 *3)) (-4 *3 (-1253 (-171 *5))))) (-3360 (*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))))) (-3360 (*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 -3360 ((-650 (-171 |#1|)) |#2|)) (-15 -3360 ((-650 (-171 |#1|)) |#2| |#1|)) (-15 -3500 ((-650 (-2 (|:| -3477 (-650 |#2|)) (|:| -3670 |#1|))) |#2| |#2| (-112))) (-15 -3500 ((-650 (-2 (|:| -3477 (-650 |#2|)) (|:| -3670 |#1|))) |#2| |#2|)) (-15 -3801 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3801 ((-424 |#2|) |#2| |#1|)) (-15 -3801 ((-424 |#2|) |#2|)) (-15 -1373 (|#2| |#2|)) (-15 -2959 (|#1| |#2|)) (-15 -1394 ((-424 |#2|) |#2| |#1| (-112))) (-15 -1394 ((-424 |#2|) |#2| |#1|)) (-15 -3958 (|#2| |#2|)) (-15 -1737 (|#1| |#2| |#1|)) (-15 -1737 (|#1| |#2|)) (-15 -1524 ((-171 |#1|) |#2|)) (-15 -2806 (|#1| |#1|)) (-15 -4018 ((-2 (|:| |start| |#2|) (|:| -3477 (-424 |#2|))) |#2|)))
-((-2376 (((-3 |#2| "failed") |#2|) 16)) (-2817 (((-777) |#2|) 18)) (-1965 ((|#2| |#2| |#2|) 20)))
-(((-184 |#1| |#2|) (-10 -7 (-15 -2376 ((-3 |#2| "failed") |#2|)) (-15 -2817 ((-777) |#2|)) (-15 -1965 (|#2| |#2| |#2|))) (-1227) (-680 |#1|)) (T -184))
-((-1965 (*1 *2 *2 *2) (-12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))) (-2817 (*1 *2 *3) (-12 (-4 *4 (-1227)) (-5 *2 (-777)) (-5 *1 (-184 *4 *3)) (-4 *3 (-680 *4)))) (-2376 (*1 *2 *2) (|partial| -12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))))
-(-10 -7 (-15 -2376 ((-3 |#2| "failed") |#2|)) (-15 -2817 ((-777) |#2|)) (-15 -1965 (|#2| |#2| |#2|)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1609 ((|#1| $) 7)) (-3799 (((-868) $) 14)) (-2335 (((-112) $ $) NIL)) (-3928 (((-650 (-1191)) $) 10)) (-3022 (((-112) $ $) 12)))
-(((-185 |#1|) (-13 (-1109) (-10 -8 (-15 -1609 (|#1| $)) (-15 -3928 ((-650 (-1191)) $)))) (-187)) (T -185))
-((-1609 (*1 *2 *1) (-12 (-5 *1 (-185 *2)) (-4 *2 (-187)))) (-3928 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-185 *3)) (-4 *3 (-187)))))
-(-13 (-1109) (-10 -8 (-15 -1609 (|#1| $)) (-15 -3928 ((-650 (-1191)) $))))
-((-1817 (((-650 (-871)) $) 16)) (-3887 (((-188) $) 8)) (-1530 (((-650 (-112)) $) 13)) (-1835 (((-55) $) 10)))
-(((-186 |#1|) (-10 -8 (-15 -1817 ((-650 (-871)) |#1|)) (-15 -1530 ((-650 (-112)) |#1|)) (-15 -3887 ((-188) |#1|)) (-15 -1835 ((-55) |#1|))) (-187)) (T -186))
-NIL
-(-10 -8 (-15 -1817 ((-650 (-871)) |#1|)) (-15 -1530 ((-650 (-112)) |#1|)) (-15 -3887 ((-188) |#1|)) (-15 -1835 ((-55) |#1|)))
-((-2558 (((-112) $ $) 7)) (-1817 (((-650 (-871)) $) 19)) (-3600 (((-512) $) 16)) (-1988 (((-1168) $) 10)) (-3887 (((-188) $) 21)) (-3190 (((-112) $ (-512)) 14)) (-3577 (((-1129) $) 11)) (-1530 (((-650 (-112)) $) 20)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1835 (((-55) $) 15)) (-3022 (((-112) $ $) 6)))
+((-3443 (*1 *1 *1) (-4 *1 (-175))))
+(-13 (-10 -8 (-15 -3443 ($ $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 ((|#1| $) 81)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2504 (($ $ $) NIL)) (-1830 (($ $) 21)) (-1997 (($ |#1| (-1166 |#1|)) 50)) (-1929 (((-3 $ "failed") $) 123)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-3576 (((-1166 |#1|) $) 88)) (-2285 (((-1166 |#1|) $) 85)) (-2238 (((-1166 |#1|) $) 86)) (-4139 (((-112) $) NIL)) (-1763 (((-1166 |#1|) $) 94)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1901 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL)) (-3152 (($ $ (-570)) 97)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4176 (((-1166 |#1|) $) 95)) (-3440 (((-1166 (-413 |#1|)) $) 14)) (-4428 (($ (-413 |#1|)) 17) (($ |#1| (-1166 |#1|) (-1166 |#1|)) 40)) (-1682 (($ $) 99)) (-3802 (((-868) $) 139) (($ (-570)) 53) (($ |#1|) 54) (($ (-413 |#1|)) 38) (($ (-413 (-570))) NIL) (($ $) NIL)) (-2851 (((-777)) 69 T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3486 (((-1166 (-413 |#1|)) $) 20)) (-1862 (($) 27 T CONST)) (-1876 (($) 30 T CONST)) (-3025 (((-112) $ $) 37)) (-3125 (($ $ $) 121)) (-3114 (($ $) 112) (($ $ $) 109)) (-3104 (($ $ $) 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 -4428 ($ (-413 |#1|))) (-15 -4428 ($ |#1| (-1166 |#1|) (-1166 |#1|))) (-15 -1997 ($ |#1| (-1166 |#1|))) (-15 -2285 ((-1166 |#1|) $)) (-15 -2238 ((-1166 |#1|) $)) (-15 -3576 ((-1166 |#1|) $)) (-15 -3472 (|#1| $)) (-15 -1830 ($ $)) (-15 -3486 ((-1166 (-413 |#1|)) $)) (-15 -3440 ((-1166 (-413 |#1|)) $)) (-15 -1763 ((-1166 |#1|) $)) (-15 -4176 ((-1166 |#1|) $)) (-15 -3152 ($ $ (-570))) (-15 -1682 ($ $)))) (-311)) (T -176))
+((-4428 (*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-311)) (-5 *1 (-176 *3)))) (-4428 (*1 *1 *2 *3 *3) (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))) (-1997 (*1 *1 *2 *3) (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))) (-2285 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-2238 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3576 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3472 (*1 *2 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))) (-1830 (*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))) (-3486 (*1 *2 *1) (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3440 (*1 *2 *1) (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1763 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-4176 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-3152 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-176 *3)) (-4 *3 (-311)))) (-1682 (*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))))
+(-13 (-38 |#1|) (-38 (-413 |#1|)) (-368) (-10 -8 (-15 -4428 ($ (-413 |#1|))) (-15 -4428 ($ |#1| (-1166 |#1|) (-1166 |#1|))) (-15 -1997 ($ |#1| (-1166 |#1|))) (-15 -2285 ((-1166 |#1|) $)) (-15 -2238 ((-1166 |#1|) $)) (-15 -3576 ((-1166 |#1|) $)) (-15 -3472 (|#1| $)) (-15 -1830 ($ $)) (-15 -3486 ((-1166 (-413 |#1|)) $)) (-15 -3440 ((-1166 (-413 |#1|)) $)) (-15 -1763 ((-1166 |#1|) $)) (-15 -4176 ((-1166 |#1|) $)) (-15 -3152 ($ $ (-570))) (-15 -1682 ($ $))))
+((-4222 (($ (-109) $) 15)) (-1417 (((-697 (-109)) (-512) $) 14)) (-3802 (((-868) $) 18)) (-3946 (((-650 (-109)) $) 8)))
+(((-177) (-13 (-619 (-868)) (-10 -8 (-15 -3946 ((-650 (-109)) $)) (-15 -4222 ($ (-109) $)) (-15 -1417 ((-697 (-109)) (-512) $))))) (T -177))
+((-3946 (*1 *2 *1) (-12 (-5 *2 (-650 (-109))) (-5 *1 (-177)))) (-4222 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-177)))) (-1417 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-177)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3946 ((-650 (-109)) $)) (-15 -4222 ($ (-109) $)) (-15 -1417 ((-697 (-109)) (-512) $))))
+((-2121 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 38)) (-2940 (((-950 |#1|) (-950 |#1|)) 22)) (-4140 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 34)) (-4406 (((-950 |#1|) (-950 |#1|)) 20)) (-1519 (((-950 |#1|) (-950 |#1|)) 28)) (-2683 (((-950 |#1|) (-950 |#1|)) 27)) (-4181 (((-950 |#1|) (-950 |#1|)) 26)) (-2419 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 35)) (-1998 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 33)) (-2175 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 32)) (-2185 (((-950 |#1|) (-950 |#1|)) 21)) (-1961 (((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|) 41)) (-2659 (((-950 |#1|) (-950 |#1|)) 8)) (-2761 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 37)) (-2529 (((-1 (-950 |#1|) (-950 |#1|)) |#1|) 36)))
+(((-178 |#1|) (-10 -7 (-15 -2659 ((-950 |#1|) (-950 |#1|))) (-15 -4406 ((-950 |#1|) (-950 |#1|))) (-15 -2185 ((-950 |#1|) (-950 |#1|))) (-15 -2940 ((-950 |#1|) (-950 |#1|))) (-15 -4181 ((-950 |#1|) (-950 |#1|))) (-15 -2683 ((-950 |#1|) (-950 |#1|))) (-15 -1519 ((-950 |#1|) (-950 |#1|))) (-15 -2175 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1998 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -4140 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2419 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2529 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2761 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2121 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1961 ((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|))) (-13 (-368) (-1212) (-1011))) (T -178))
+((-1961 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2121 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2761 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2529 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2419 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-4140 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-1998 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-2175 (*1 *2 *3) (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))))) (-1519 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-2683 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-4181 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-2940 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-2185 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-4406 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))) (-2659 (*1 *2 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011))) (-5 *1 (-178 *3)))))
+(-10 -7 (-15 -2659 ((-950 |#1|) (-950 |#1|))) (-15 -4406 ((-950 |#1|) (-950 |#1|))) (-15 -2185 ((-950 |#1|) (-950 |#1|))) (-15 -2940 ((-950 |#1|) (-950 |#1|))) (-15 -4181 ((-950 |#1|) (-950 |#1|))) (-15 -2683 ((-950 |#1|) (-950 |#1|))) (-15 -1519 ((-950 |#1|) (-950 |#1|))) (-15 -2175 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1998 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -4140 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2419 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2529 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2761 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -2121 ((-1 (-950 |#1|) (-950 |#1|)) |#1|)) (-15 -1961 ((-1 (-950 |#1|) (-950 |#1|)) |#1| |#1|)))
+((-2124 ((|#2| |#3|) 28)))
+(((-179 |#1| |#2| |#3|) (-10 -7 (-15 -2124 (|#2| |#3|))) (-174) (-1253 |#1|) (-730 |#1| |#2|)) (T -179))
+((-2124 (*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 -2124 (|#2| |#3|)))
+((-1557 (((-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 -1557 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) |%noBranch|)) (-1109) (-13 (-893 |#1|) (-174)) (-167 |#2|)) (T -180))
+((-1557 (*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 -1557 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) |%noBranch|))
+((-2031 (((-650 |#1|) (-650 |#1|) |#1|) 41)) (-2094 (((-650 |#1|) |#1| (-650 |#1|)) 20)) (-2078 (((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|)) 36) ((|#1| (-650 |#1|) (-650 |#1|)) 32)))
+(((-181 |#1|) (-10 -7 (-15 -2094 ((-650 |#1|) |#1| (-650 |#1|))) (-15 -2078 (|#1| (-650 |#1|) (-650 |#1|))) (-15 -2078 ((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|))) (-15 -2031 ((-650 |#1|) (-650 |#1|) |#1|))) (-311)) (T -181))
+((-2031 (*1 *2 *2 *3) (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))) (-2078 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-650 *4))) (-5 *2 (-650 *4)) (-4 *4 (-311)) (-5 *1 (-181 *4)))) (-2078 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-181 *2)) (-4 *2 (-311)))) (-2094 (*1 *2 *3 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
+(-10 -7 (-15 -2094 ((-650 |#1|) |#1| (-650 |#1|))) (-15 -2078 (|#1| (-650 |#1|) (-650 |#1|))) (-15 -2078 ((-650 |#1|) (-650 (-650 |#1|)) (-650 |#1|))) (-15 -2031 ((-650 |#1|) (-650 |#1|) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3866 (((-1226) $) 13)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1435 (((-1144) $) 10)) (-3802 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-182) (-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $)) (-15 -3866 ((-1226) $))))) (T -182))
+((-1435 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-182)))) (-3866 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-182)))))
+(-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $)) (-15 -3866 ((-1226) $))))
+((-4063 (((-2 (|:| |start| |#2|) (|:| -2638 (-424 |#2|))) |#2|) 66)) (-2513 ((|#1| |#1|) 58)) (-2004 (((-171 |#1|) |#2|) 93)) (-3514 ((|#1| |#2|) 136) ((|#1| |#2| |#1|) 90)) (-1596 ((|#2| |#2|) 91)) (-3674 (((-424 |#2|) |#2| |#1|) 118) (((-424 |#2|) |#2| |#1| (-112)) 88)) (-4399 ((|#1| |#2|) 117)) (-3447 ((|#2| |#2|) 130)) (-3804 (((-424 |#2|) |#2|) 153) (((-424 |#2|) |#2| |#1|) 33) (((-424 |#2|) |#2| |#1| (-112)) 152)) (-2859 (((-650 (-2 (|:| -2638 (-650 |#2|)) (|:| -3673 |#1|))) |#2| |#2|) 151) (((-650 (-2 (|:| -2638 (-650 |#2|)) (|:| -3673 |#1|))) |#2| |#2| (-112)) 81)) (-4003 (((-650 (-171 |#1|)) |#2| |#1|) 42) (((-650 (-171 |#1|)) |#2|) 43)))
+(((-183 |#1| |#2|) (-10 -7 (-15 -4003 ((-650 (-171 |#1|)) |#2|)) (-15 -4003 ((-650 (-171 |#1|)) |#2| |#1|)) (-15 -2859 ((-650 (-2 (|:| -2638 (-650 |#2|)) (|:| -3673 |#1|))) |#2| |#2| (-112))) (-15 -2859 ((-650 (-2 (|:| -2638 (-650 |#2|)) (|:| -3673 |#1|))) |#2| |#2|)) (-15 -3804 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3804 ((-424 |#2|) |#2| |#1|)) (-15 -3804 ((-424 |#2|) |#2|)) (-15 -3447 (|#2| |#2|)) (-15 -4399 (|#1| |#2|)) (-15 -3674 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3674 ((-424 |#2|) |#2| |#1|)) (-15 -1596 (|#2| |#2|)) (-15 -3514 (|#1| |#2| |#1|)) (-15 -3514 (|#1| |#2|)) (-15 -2004 ((-171 |#1|) |#2|)) (-15 -2513 (|#1| |#1|)) (-15 -4063 ((-2 (|:| |start| |#2|) (|:| -2638 (-424 |#2|))) |#2|))) (-13 (-368) (-854)) (-1253 (-171 |#1|))) (T -183))
+((-4063 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-2 (|:| |start| *3) (|:| -2638 (-424 *3)))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-2513 (*1 *2 *2) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-2004 (*1 *2 *3) (-12 (-5 *2 (-171 *4)) (-5 *1 (-183 *4 *3)) (-4 *4 (-13 (-368) (-854))) (-4 *3 (-1253 *2)))) (-3514 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-3514 (*1 *2 *3 *2) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-1596 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2)) (-4 *2 (-1253 (-171 *3))))) (-3674 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3674 (*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))))) (-4399 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3)) (-4 *3 (-1253 (-171 *2))))) (-3447 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2)) (-4 *2 (-1253 (-171 *3))))) (-3804 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3804 (*1 *2 *3 *4) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3)) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-3804 (*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))))) (-2859 (*1 *2 *3 *3) (-12 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-650 (-2 (|:| -2638 (-650 *3)) (|:| -3673 *4)))) (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))) (-2859 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-368) (-854))) (-5 *2 (-650 (-2 (|:| -2638 (-650 *3)) (|:| -3673 *5)))) (-5 *1 (-183 *5 *3)) (-4 *3 (-1253 (-171 *5))))) (-4003 (*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))))) (-4003 (*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 -4003 ((-650 (-171 |#1|)) |#2|)) (-15 -4003 ((-650 (-171 |#1|)) |#2| |#1|)) (-15 -2859 ((-650 (-2 (|:| -2638 (-650 |#2|)) (|:| -3673 |#1|))) |#2| |#2| (-112))) (-15 -2859 ((-650 (-2 (|:| -2638 (-650 |#2|)) (|:| -3673 |#1|))) |#2| |#2|)) (-15 -3804 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3804 ((-424 |#2|) |#2| |#1|)) (-15 -3804 ((-424 |#2|) |#2|)) (-15 -3447 (|#2| |#2|)) (-15 -4399 (|#1| |#2|)) (-15 -3674 ((-424 |#2|) |#2| |#1| (-112))) (-15 -3674 ((-424 |#2|) |#2| |#1|)) (-15 -1596 (|#2| |#2|)) (-15 -3514 (|#1| |#2| |#1|)) (-15 -3514 (|#1| |#2|)) (-15 -2004 ((-171 |#1|) |#2|)) (-15 -2513 (|#1| |#1|)) (-15 -4063 ((-2 (|:| |start| |#2|) (|:| -2638 (-424 |#2|))) |#2|)))
+((-2625 (((-3 |#2| "failed") |#2|) 16)) (-2586 (((-777) |#2|) 18)) (-3758 ((|#2| |#2| |#2|) 20)))
+(((-184 |#1| |#2|) (-10 -7 (-15 -2625 ((-3 |#2| "failed") |#2|)) (-15 -2586 ((-777) |#2|)) (-15 -3758 (|#2| |#2| |#2|))) (-1227) (-680 |#1|)) (T -184))
+((-3758 (*1 *2 *2 *2) (-12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))) (-2586 (*1 *2 *3) (-12 (-4 *4 (-1227)) (-5 *2 (-777)) (-5 *1 (-184 *4 *3)) (-4 *3 (-680 *4)))) (-2625 (*1 *2 *2) (|partial| -12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))))
+(-10 -7 (-15 -2625 ((-3 |#2| "failed") |#2|)) (-15 -2586 ((-777) |#2|)) (-15 -3758 (|#2| |#2| |#2|)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1610 ((|#1| $) 7)) (-3802 (((-868) $) 14)) (-3359 (((-112) $ $) NIL)) (-3931 (((-650 (-1191)) $) 10)) (-3025 (((-112) $ $) 12)))
+(((-185 |#1|) (-13 (-1109) (-10 -8 (-15 -1610 (|#1| $)) (-15 -3931 ((-650 (-1191)) $)))) (-187)) (T -185))
+((-1610 (*1 *2 *1) (-12 (-5 *1 (-185 *2)) (-4 *2 (-187)))) (-3931 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-185 *3)) (-4 *3 (-187)))))
+(-13 (-1109) (-10 -8 (-15 -1610 (|#1| $)) (-15 -3931 ((-650 (-1191)) $))))
+((-1818 (((-650 (-871)) $) 16)) (-3890 (((-188) $) 8)) (-2058 (((-650 (-112)) $) 13)) (-1968 (((-55) $) 10)))
+(((-186 |#1|) (-10 -8 (-15 -1818 ((-650 (-871)) |#1|)) (-15 -2058 ((-650 (-112)) |#1|)) (-15 -3890 ((-188) |#1|)) (-15 -1968 ((-55) |#1|))) (-187)) (T -186))
+NIL
+(-10 -8 (-15 -1818 ((-650 (-871)) |#1|)) (-15 -2058 ((-650 (-112)) |#1|)) (-15 -3890 ((-188) |#1|)) (-15 -1968 ((-55) |#1|)))
+((-2560 (((-112) $ $) 7)) (-1818 (((-650 (-871)) $) 19)) (-3602 (((-512) $) 16)) (-3989 (((-1168) $) 10)) (-3890 (((-188) $) 21)) (-3006 (((-112) $ (-512)) 14)) (-3580 (((-1129) $) 11)) (-2058 (((-650 (-112)) $) 20)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1968 (((-55) $) 15)) (-3025 (((-112) $ $) 6)))
(((-187) (-141)) (T -187))
-((-3887 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-188)))) (-1530 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-112))))) (-1817 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-871))))))
-(-13 (-841 (-512)) (-10 -8 (-15 -3887 ((-188) $)) (-15 -1530 ((-650 (-112)) $)) (-15 -1817 ((-650 (-871)) $))))
+((-3890 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-188)))) (-2058 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-112))))) (-1818 (*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-871))))))
+(-13 (-841 (-512)) (-10 -8 (-15 -3890 ((-188) $)) (-15 -2058 ((-650 (-112)) $)) (-15 -1818 ((-650 (-871)) $))))
(((-102) . T) ((-619 (-868)) . T) ((-841 (-512)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-8 (($) 7 T CONST)) (-3799 (((-868) $) 12)) (-9 (($) 6 T CONST)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 10)))
-(((-188) (-13 (-1109) (-10 -8 (-15 -9 ($) -3725) (-15 -8 ($) -3725) (-15 -7 ($) -3725)))) (T -188))
+((-2560 (((-112) $ $) NIL)) (-7 (($) 8 T CONST)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-8 (($) 7 T CONST)) (-3802 (((-868) $) 12)) (-9 (($) 6 T CONST)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 10)))
+(((-188) (-13 (-1109) (-10 -8 (-15 -9 ($) -3728) (-15 -8 ($) -3728) (-15 -7 ($) -3728)))) (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 ($) -3725) (-15 -8 ($) -3725) (-15 -7 ($) -3725)))
-((-2558 (((-112) $ $) NIL)) (-1817 (((-650 (-871)) $) NIL)) (-3600 (((-512) $) 8)) (-1988 (((-1168) $) NIL)) (-3887 (((-188) $) 10)) (-3190 (((-112) $ (-512)) NIL)) (-3577 (((-1129) $) NIL)) (-1579 (((-697 $) (-512)) 17)) (-1530 (((-650 (-112)) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1835 (((-55) $) 12)) (-3022 (((-112) $ $) NIL)))
-(((-189) (-13 (-187) (-10 -8 (-15 -1579 ((-697 $) (-512)))))) (T -189))
-((-1579 (*1 *2 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-189))) (-5 *1 (-189)))))
-(-13 (-187) (-10 -8 (-15 -1579 ((-697 $) (-512)))))
-((-1653 ((|#2| |#2|) 28)) (-2754 (((-112) |#2|) 19)) (-3823 (((-320 |#1|) |#2|) 12)) (-3833 (((-320 |#1|) |#2|) 14)) (-3780 ((|#2| |#2| (-1186)) 69) ((|#2| |#2|) 70)) (-3356 (((-171 (-320 |#1|)) |#2|) 10)) (-1412 ((|#2| |#2| (-1186)) 66) ((|#2| |#2|) 60)))
-(((-190 |#1| |#2|) (-10 -7 (-15 -3780 (|#2| |#2|)) (-15 -3780 (|#2| |#2| (-1186))) (-15 -1412 (|#2| |#2|)) (-15 -1412 (|#2| |#2| (-1186))) (-15 -3823 ((-320 |#1|) |#2|)) (-15 -3833 ((-320 |#1|) |#2|)) (-15 -2754 ((-112) |#2|)) (-15 -1653 (|#2| |#2|)) (-15 -3356 ((-171 (-320 |#1|)) |#2|))) (-13 (-562) (-1047 (-570))) (-13 (-27) (-1212) (-436 (-171 |#1|)))) (T -190))
-((-3356 (*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)))))) (-1653 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3)))))) (-2754 (*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)))))) (-3833 (*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)))))) (-3823 (*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)))))) (-1412 (*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)))))) (-1412 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3)))))) (-3780 (*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)))))) (-3780 (*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 -3780 (|#2| |#2|)) (-15 -3780 (|#2| |#2| (-1186))) (-15 -1412 (|#2| |#2|)) (-15 -1412 (|#2| |#2| (-1186))) (-15 -3823 ((-320 |#1|) |#2|)) (-15 -3833 ((-320 |#1|) |#2|)) (-15 -2754 ((-112) |#2|)) (-15 -1653 (|#2| |#2|)) (-15 -3356 ((-171 (-320 |#1|)) |#2|)))
-((-1518 (((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|))) 26)) (-3799 (((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|))) 37)))
-(((-191 |#1|) (-10 -7 (-15 -1518 ((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|)))) (-15 -3799 ((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|))))) (-174)) (T -191))
-((-3799 (*1 *2 *3) (-12 (-5 *3 (-1277 (-695 *4))) (-4 *4 (-174)) (-5 *2 (-1277 (-695 (-413 (-959 *4))))) (-5 *1 (-191 *4)))) (-1518 (*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 -1518 ((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|)))) (-15 -3799 ((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|)))))
-((-3256 (((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 91)) (-4218 (((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570))) 105)) (-2174 (((-1188 (-413 (-570))) (-928)) 52)) (-3404 (((-1188 (-413 (-570))) (-928)) 77)) (-1770 (((-413 (-570)) (-1188 (-413 (-570)))) 87)) (-2185 (((-1188 (-413 (-570))) (-928)) 36)) (-3970 (((-1188 (-413 (-570))) (-928)) 64)) (-1595 (((-1188 (-413 (-570))) (-928)) 59)) (-2663 (((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 85)) (-2853 (((-1188 (-413 (-570))) (-928)) 30)) (-3045 (((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 89)) (-2445 (((-1188 (-413 (-570))) (-928)) 34)) (-1593 (((-1188 (-413 (-570))) (-650 (-928))) 98)))
-(((-192) (-10 -7 (-15 -2853 ((-1188 (-413 (-570))) (-928))) (-15 -2174 ((-1188 (-413 (-570))) (-928))) (-15 -2185 ((-1188 (-413 (-570))) (-928))) (-15 -2445 ((-1188 (-413 (-570))) (-928))) (-15 -1595 ((-1188 (-413 (-570))) (-928))) (-15 -3970 ((-1188 (-413 (-570))) (-928))) (-15 -3404 ((-1188 (-413 (-570))) (-928))) (-15 -3045 ((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -2663 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1770 ((-413 (-570)) (-1188 (-413 (-570))))) (-15 -3256 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1593 ((-1188 (-413 (-570))) (-650 (-928)))) (-15 -4218 ((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570)))))) (T -192))
-((-4218 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1593 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-3256 (*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1770 (*1 *2 *3) (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-192)))) (-2663 (*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-3045 (*1 *2 *3 *3) (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-192)))) (-3404 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-3970 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1595 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2445 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2185 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2174 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2853 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(-10 -7 (-15 -2853 ((-1188 (-413 (-570))) (-928))) (-15 -2174 ((-1188 (-413 (-570))) (-928))) (-15 -2185 ((-1188 (-413 (-570))) (-928))) (-15 -2445 ((-1188 (-413 (-570))) (-928))) (-15 -1595 ((-1188 (-413 (-570))) (-928))) (-15 -3970 ((-1188 (-413 (-570))) (-928))) (-15 -3404 ((-1188 (-413 (-570))) (-928))) (-15 -3045 ((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -2663 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1770 ((-413 (-570)) (-1188 (-413 (-570))))) (-15 -3256 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1593 ((-1188 (-413 (-570))) (-650 (-928)))) (-15 -4218 ((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570)))))
-((-2112 (((-424 (-1182 (-570))) (-570)) 38)) (-2239 (((-650 (-1182 (-570))) (-570)) 33)) (-2810 (((-1182 (-570)) (-570)) 28)))
-(((-193) (-10 -7 (-15 -2239 ((-650 (-1182 (-570))) (-570))) (-15 -2810 ((-1182 (-570)) (-570))) (-15 -2112 ((-424 (-1182 (-570))) (-570))))) (T -193))
-((-2112 (*1 *2 *3) (-12 (-5 *2 (-424 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))) (-2810 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-193)) (-5 *3 (-570)))) (-2239 (*1 *2 *3) (-12 (-5 *2 (-650 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
-(-10 -7 (-15 -2239 ((-650 (-1182 (-570))) (-570))) (-15 -2810 ((-1182 (-570)) (-570))) (-15 -2112 ((-424 (-1182 (-570))) (-570))))
-((-2193 (((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 132)) (-2773 (((-650 (-1168)) (-1166 (-227))) NIL)) (-2211 (((-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 109)) (-3694 (((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227)))) NIL)) (-2337 (((-650 (-1168)) (-650 (-227))) NIL)) (-2961 (((-227) (-1103 (-849 (-227)))) 31)) (-3602 (((-227) (-1103 (-849 (-227)))) 32)) (-2512 (((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 126)) (-1960 (((-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 67)) (-1509 (((-1168) (-227)) NIL)) (-2241 (((-1168) (-650 (-1168))) 27)) (-2758 (((-1044) (-1186) (-1186) (-1044)) 13)))
-(((-194) (-10 -7 (-15 -2211 ((-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1960 ((-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2961 ((-227) (-1103 (-849 (-227))))) (-15 -3602 ((-227) (-1103 (-849 (-227))))) (-15 -2512 ((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3694 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -2193 ((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1509 ((-1168) (-227))) (-15 -2337 ((-650 (-1168)) (-650 (-227)))) (-15 -2773 ((-650 (-1168)) (-1166 (-227)))) (-15 -2241 ((-1168) (-650 (-1168)))) (-15 -2758 ((-1044) (-1186) (-1186) (-1044))))) (T -194))
-((-2758 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-194)))) (-2241 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-194)))) (-2773 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194)))) (-2337 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194)))) (-1509 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-194)))) (-2193 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-194)))) (-3694 (*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)))) (-2512 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-194)))) (-3602 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194)))) (-2961 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194)))) (-1960 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-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)))) (-2211 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-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 -2211 ((-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1960 ((-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2961 ((-227) (-1103 (-849 (-227))))) (-15 -3602 ((-227) (-1103 (-849 (-227))))) (-15 -2512 ((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3694 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -2193 ((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1509 ((-1168) (-227))) (-15 -2337 ((-650 (-1168)) (-650 (-227)))) (-15 -2773 ((-650 (-1168)) (-1166 (-227)))) (-15 -2241 ((-1168) (-650 (-1168)))) (-15 -2758 ((-1044) (-1186) (-1186) (-1044))))
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 61) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 33) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+(-13 (-1109) (-10 -8 (-15 -9 ($) -3728) (-15 -8 ($) -3728) (-15 -7 ($) -3728)))
+((-2560 (((-112) $ $) NIL)) (-1818 (((-650 (-871)) $) NIL)) (-3602 (((-512) $) 8)) (-3989 (((-1168) $) NIL)) (-3890 (((-188) $) 10)) (-3006 (((-112) $ (-512)) NIL)) (-3580 (((-1129) $) NIL)) (-4344 (((-697 $) (-512)) 17)) (-2058 (((-650 (-112)) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1968 (((-55) $) 12)) (-3025 (((-112) $ $) NIL)))
+(((-189) (-13 (-187) (-10 -8 (-15 -4344 ((-697 $) (-512)))))) (T -189))
+((-4344 (*1 *2 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-189))) (-5 *1 (-189)))))
+(-13 (-187) (-10 -8 (-15 -4344 ((-697 $) (-512)))))
+((-3881 ((|#2| |#2|) 28)) (-2063 (((-112) |#2|) 19)) (-3826 (((-320 |#1|) |#2|) 12)) (-3836 (((-320 |#1|) |#2|) 14)) (-3628 ((|#2| |#2| (-1186)) 69) ((|#2| |#2|) 70)) (-3986 (((-171 (-320 |#1|)) |#2|) 10)) (-1455 ((|#2| |#2| (-1186)) 66) ((|#2| |#2|) 60)))
+(((-190 |#1| |#2|) (-10 -7 (-15 -3628 (|#2| |#2|)) (-15 -3628 (|#2| |#2| (-1186))) (-15 -1455 (|#2| |#2|)) (-15 -1455 (|#2| |#2| (-1186))) (-15 -3826 ((-320 |#1|) |#2|)) (-15 -3836 ((-320 |#1|) |#2|)) (-15 -2063 ((-112) |#2|)) (-15 -3881 (|#2| |#2|)) (-15 -3986 ((-171 (-320 |#1|)) |#2|))) (-13 (-562) (-1047 (-570))) (-13 (-27) (-1212) (-436 (-171 |#1|)))) (T -190))
+((-3986 (*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)))))) (-3881 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3)))))) (-2063 (*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)))))) (-3836 (*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)))))) (-3826 (*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)))))) (-1455 (*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)))))) (-1455 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *1 (-190 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 (-171 *3)))))) (-3628 (*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)))))) (-3628 (*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 -3628 (|#2| |#2|)) (-15 -3628 (|#2| |#2| (-1186))) (-15 -1455 (|#2| |#2|)) (-15 -1455 (|#2| |#2| (-1186))) (-15 -3826 ((-320 |#1|) |#2|)) (-15 -3836 ((-320 |#1|) |#2|)) (-15 -2063 ((-112) |#2|)) (-15 -3881 (|#2| |#2|)) (-15 -3986 ((-171 (-320 |#1|)) |#2|)))
+((-1935 (((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|))) 26)) (-3802 (((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|))) 37)))
+(((-191 |#1|) (-10 -7 (-15 -1935 ((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|)))) (-15 -3802 ((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|))))) (-174)) (T -191))
+((-3802 (*1 *2 *3) (-12 (-5 *3 (-1277 (-695 *4))) (-4 *4 (-174)) (-5 *2 (-1277 (-695 (-413 (-959 *4))))) (-5 *1 (-191 *4)))) (-1935 (*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 -1935 ((-1277 (-695 (-959 |#1|))) (-1277 (-695 |#1|)))) (-15 -3802 ((-1277 (-695 (-413 (-959 |#1|)))) (-1277 (-695 |#1|)))))
+((-2458 (((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 91)) (-2371 (((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570))) 105)) (-2332 (((-1188 (-413 (-570))) (-928)) 52)) (-4325 (((-1188 (-413 (-570))) (-928)) 77)) (-1771 (((-413 (-570)) (-1188 (-413 (-570)))) 87)) (-2448 (((-1188 (-413 (-570))) (-928)) 36)) (-1729 (((-1188 (-413 (-570))) (-928)) 64)) (-1409 (((-1188 (-413 (-570))) (-928)) 59)) (-3624 (((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 85)) (-1682 (((-1188 (-413 (-570))) (-928)) 30)) (-4036 (((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570)))) 89)) (-2112 (((-1188 (-413 (-570))) (-928)) 34)) (-1383 (((-1188 (-413 (-570))) (-650 (-928))) 98)))
+(((-192) (-10 -7 (-15 -1682 ((-1188 (-413 (-570))) (-928))) (-15 -2332 ((-1188 (-413 (-570))) (-928))) (-15 -2448 ((-1188 (-413 (-570))) (-928))) (-15 -2112 ((-1188 (-413 (-570))) (-928))) (-15 -1409 ((-1188 (-413 (-570))) (-928))) (-15 -1729 ((-1188 (-413 (-570))) (-928))) (-15 -4325 ((-1188 (-413 (-570))) (-928))) (-15 -4036 ((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -3624 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1771 ((-413 (-570)) (-1188 (-413 (-570))))) (-15 -2458 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1383 ((-1188 (-413 (-570))) (-650 (-928)))) (-15 -2371 ((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570)))))) (T -192))
+((-2371 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1383 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2458 (*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1771 (*1 *2 *3) (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-192)))) (-3624 (*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-4036 (*1 *2 *3 *3) (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570))) (-5 *1 (-192)))) (-4325 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1729 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1409 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2112 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2448 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-2332 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))) (-1682 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
+(-10 -7 (-15 -1682 ((-1188 (-413 (-570))) (-928))) (-15 -2332 ((-1188 (-413 (-570))) (-928))) (-15 -2448 ((-1188 (-413 (-570))) (-928))) (-15 -2112 ((-1188 (-413 (-570))) (-928))) (-15 -1409 ((-1188 (-413 (-570))) (-928))) (-15 -1729 ((-1188 (-413 (-570))) (-928))) (-15 -4325 ((-1188 (-413 (-570))) (-928))) (-15 -4036 ((-413 (-570)) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -3624 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1771 ((-413 (-570)) (-1188 (-413 (-570))))) (-15 -2458 ((-1188 (-413 (-570))) (-1188 (-413 (-570))) (-1188 (-413 (-570))))) (-15 -1383 ((-1188 (-413 (-570))) (-650 (-928)))) (-15 -2371 ((-1188 (-413 (-570))) (-650 (-570)) (-650 (-570)))))
+((-2909 (((-424 (-1182 (-570))) (-570)) 38)) (-1727 (((-650 (-1182 (-570))) (-570)) 33)) (-2555 (((-1182 (-570)) (-570)) 28)))
+(((-193) (-10 -7 (-15 -1727 ((-650 (-1182 (-570))) (-570))) (-15 -2555 ((-1182 (-570)) (-570))) (-15 -2909 ((-424 (-1182 (-570))) (-570))))) (T -193))
+((-2909 (*1 *2 *3) (-12 (-5 *2 (-424 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))) (-2555 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-193)) (-5 *3 (-570)))) (-1727 (*1 *2 *3) (-12 (-5 *2 (-650 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
+(-10 -7 (-15 -1727 ((-650 (-1182 (-570))) (-570))) (-15 -2555 ((-1182 (-570)) (-570))) (-15 -2909 ((-424 (-1182 (-570))) (-570))))
+((-2522 (((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 132)) (-2261 (((-650 (-1168)) (-1166 (-227))) NIL)) (-1395 (((-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 109)) (-4000 (((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227)))) NIL)) (-3382 (((-650 (-1168)) (-650 (-227))) NIL)) (-4422 (((-227) (-1103 (-849 (-227)))) 31)) (-2515 (((-227) (-1103 (-849 (-227)))) 32)) (-1500 (((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 126)) (-1855 (((-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 67)) (-3067 (((-1168) (-227)) NIL)) (-1756 (((-1168) (-650 (-1168))) 27)) (-2108 (((-1044) (-1186) (-1186) (-1044)) 13)))
+(((-194) (-10 -7 (-15 -1395 ((-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1855 ((-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4422 ((-227) (-1103 (-849 (-227))))) (-15 -2515 ((-227) (-1103 (-849 (-227))))) (-15 -1500 ((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4000 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -2522 ((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3067 ((-1168) (-227))) (-15 -3382 ((-650 (-1168)) (-650 (-227)))) (-15 -2261 ((-650 (-1168)) (-1166 (-227)))) (-15 -1756 ((-1168) (-650 (-1168)))) (-15 -2108 ((-1044) (-1186) (-1186) (-1044))))) (T -194))
+((-2108 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-194)))) (-1756 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-194)))) (-2261 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194)))) (-3382 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-194)))) (-3067 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-194)))) (-2522 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-1166 (-227))) (-5 *1 (-194)))) (-4000 (*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)))) (-1500 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-384)) (-5 *1 (-194)))) (-2515 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194)))) (-4422 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-194)))) (-1855 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-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)))) (-1395 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-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 -1395 ((-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1855 ((-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4422 ((-227) (-1103 (-849 (-227))))) (-15 -2515 ((-227) (-1103 (-849 (-227))))) (-15 -1500 ((-384) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4000 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -2522 ((-1166 (-227)) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3067 ((-1168) (-227))) (-15 -3382 ((-650 (-1168)) (-650 (-227)))) (-15 -2261 ((-650 (-1168)) (-1166 (-227)))) (-15 -1756 ((-1168) (-650 (-1168)))) (-15 -2108 ((-1044) (-1186) (-1186) (-1044))))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 61) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 33) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-195) (-793)) (T -195))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 66) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 44) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 66) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 44) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-196) (-793)) (T -196))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 81) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 46) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 81) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 46) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-197) (-793)) (T -197))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 63) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 36) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 63) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 36) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-198) (-793)) (T -198))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 75) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 40) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 75) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 40) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-199) (-793)) (T -199))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 49) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 49) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-200) (-793)) (T -200))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 51) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 51) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-201) (-793)) (T -201))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 77) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 42) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 77) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 42) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-202) (-793)) (T -202))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 76)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 35)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 76)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 35)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-203) (-793)) (T -203))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 77)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 42)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 77)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 42)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-204) (-793)) (T -204))
NIL
(-793)
-((-2558 (((-112) $ $) NIL)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 105) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 86) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 105) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) NIL)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 86) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-205) (-793)) (T -205))
NIL
(-793)
-((-2820 (((-3 (-2 (|:| -3897 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 109)) (-4347 (((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 59)) (-2664 (((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 90)))
-(((-206) (-10 -7 (-15 -2820 ((-3 (-2 (|:| -3897 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2664 ((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4347 ((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -206))
-((-4347 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-570)) (-5 *1 (-206)))) (-2664 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-206)))) (-2820 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -3897 (-115)) (|:| |w| (-227)))) (-5 *1 (-206)))))
-(-10 -7 (-15 -2820 ((-3 (-2 (|:| -3897 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2664 ((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4347 ((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
-((-2291 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 49)) (-3296 (((-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)))) 157)) (-3374 (((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227)))) 112)) (-4319 (((-384) (-695 (-320 (-227)))) 140)) (-2189 (((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186))) 136)) (-3713 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 37)) (-2768 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 53)) (-1770 (((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227)))) 125)) (-2585 (((-384) (-384) (-650 (-384))) 133) (((-384) (-384) (-384)) 128)) (-1351 (((-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 -2585 ((-384) (-384) (-384))) (-15 -2585 ((-384) (-384) (-650 (-384)))) (-15 -4319 ((-384) (-695 (-320 (-227))))) (-15 -2189 ((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186)))) (-15 -1770 ((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227))))) (-15 -3374 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227))))) (-15 -3296 ((-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 -2291 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2768 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1351 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3713 ((-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))
-((-3713 (*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)))) (-1351 (*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)))) (-2768 (*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)))) (-2291 (*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)))) (-3296 (*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)))) (-3374 (*1 *2 *3) (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384)))) (-5 *1 (-207)))) (-1770 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-695 (-320 (-227)))) (-5 *3 (-650 (-1186))) (-5 *4 (-1277 (-320 (-227)))) (-5 *1 (-207)))) (-2189 (*1 *2 *3 *4) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *4 (-650 (-1186))) (-5 *2 (-695 (-320 (-227)))) (-5 *1 (-207)))) (-4319 (*1 *2 *3) (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2585 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-384))) (-5 *2 (-384)) (-5 *1 (-207)))) (-2585 (*1 *2 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-207)))))
-(-10 -7 (-15 -2585 ((-384) (-384) (-384))) (-15 -2585 ((-384) (-384) (-650 (-384)))) (-15 -4319 ((-384) (-695 (-320 (-227))))) (-15 -2189 ((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186)))) (-15 -1770 ((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227))))) (-15 -3374 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227))))) (-15 -3296 ((-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 -2291 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2768 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1351 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3713 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
-((-2558 (((-112) $ $) NIL)) (-3039 (((-2 (|:| -3039 (-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)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-2078 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 75)) (-3022 (((-112) $ $) NIL)))
+((-2614 (((-3 (-2 (|:| -3900 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 109)) (-4153 (((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 59)) (-3637 (((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 90)))
+(((-206) (-10 -7 (-15 -2614 ((-3 (-2 (|:| -3900 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3637 ((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4153 ((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -206))
+((-4153 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-570)) (-5 *1 (-206)))) (-3637 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-206)))) (-2614 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -3900 (-115)) (|:| |w| (-227)))) (-5 *1 (-206)))))
+(-10 -7 (-15 -2614 ((-3 (-2 (|:| -3900 (-115)) (|:| |w| (-227))) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3637 ((-3 (-650 (-227)) "failed") (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4153 ((-570) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
+((-4100 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 49)) (-1555 (((-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)))) 157)) (-4099 (((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227)))) 112)) (-3899 (((-384) (-695 (-320 (-227)))) 140)) (-2479 (((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186))) 136)) (-4173 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 37)) (-2205 (((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 53)) (-1771 (((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227)))) 125)) (-4048 (((-384) (-384) (-650 (-384))) 133) (((-384) (-384) (-384)) 128)) (-2047 (((-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 -4048 ((-384) (-384) (-384))) (-15 -4048 ((-384) (-384) (-650 (-384)))) (-15 -3899 ((-384) (-695 (-320 (-227))))) (-15 -2479 ((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186)))) (-15 -1771 ((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227))))) (-15 -4099 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227))))) (-15 -1555 ((-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 -4100 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2205 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2047 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4173 ((-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))
+((-4173 (*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)))) (-2047 (*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)))) (-2205 (*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)))) (-4100 (*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)))) (-1555 (*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)))) (-4099 (*1 *2 *3) (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384)))) (-5 *1 (-207)))) (-1771 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-695 (-320 (-227)))) (-5 *3 (-650 (-1186))) (-5 *4 (-1277 (-320 (-227)))) (-5 *1 (-207)))) (-2479 (*1 *2 *3 *4) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *4 (-650 (-1186))) (-5 *2 (-695 (-320 (-227)))) (-5 *1 (-207)))) (-3899 (*1 *2 *3) (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))) (-4048 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-384))) (-5 *2 (-384)) (-5 *1 (-207)))) (-4048 (*1 *2 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-207)))))
+(-10 -7 (-15 -4048 ((-384) (-384) (-384))) (-15 -4048 ((-384) (-384) (-650 (-384)))) (-15 -3899 ((-384) (-695 (-320 (-227))))) (-15 -2479 ((-695 (-320 (-227))) (-1277 (-320 (-227))) (-650 (-1186)))) (-15 -1771 ((-695 (-320 (-227))) (-695 (-320 (-227))) (-650 (-1186)) (-1277 (-320 (-227))))) (-15 -4099 ((-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))) (-695 (-320 (-227))))) (-15 -1555 ((-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 -4100 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2205 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -2047 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4173 ((-384) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
+((-2560 (((-112) $ $) NIL)) (-3988 (((-2 (|:| -3988 (-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)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3743 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 75)) (-3025 (((-112) $ $) NIL)))
(((-208) (-806)) (T -208))
NIL
(-806)
-((-2558 (((-112) $ $) NIL)) (-3039 (((-2 (|:| -3039 (-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)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-2078 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 73)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3988 (((-2 (|:| -3988 (-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)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3743 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 73)) (-3025 (((-112) $ $) NIL)))
(((-209) (-806)) (T -209))
NIL
(-806)
-((-2558 (((-112) $ $) NIL)) (-3039 (((-2 (|:| -3039 (-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)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-2078 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 76)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3988 (((-2 (|:| -3988 (-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)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3743 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 76)) (-3025 (((-112) $ $) NIL)))
(((-210) (-806)) (T -210))
NIL
(-806)
-((-2558 (((-112) $ $) NIL)) (-3039 (((-2 (|:| -3039 (-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)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-2078 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 88)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3988 (((-2 (|:| -3988 (-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)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3743 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 88)) (-3025 (((-112) $ $) NIL)))
(((-211) (-806)) (T -211))
NIL
(-806)
-((-3179 (((-650 (-1186)) (-1186) (-777)) 26)) (-4225 (((-320 (-227)) (-320 (-227))) 35)) (-4257 (((-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)) (-4372 (((-112) (-227) (-227) (-650 (-320 (-227)))) 47)))
-(((-212) (-10 -7 (-15 -3179 ((-650 (-1186)) (-1186) (-777))) (-15 -4225 ((-320 (-227)) (-320 (-227)))) (-15 -4372 ((-112) (-227) (-227) (-650 (-320 (-227))))) (-15 -4257 ((-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))
-((-4257 (*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)))) (-4372 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-650 (-320 (-227)))) (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-212)))) (-4225 (*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-212)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-212)) (-5 *3 (-1186)))))
-(-10 -7 (-15 -3179 ((-650 (-1186)) (-1186) (-777))) (-15 -4225 ((-320 (-227)) (-320 (-227)))) (-15 -4372 ((-112) (-227) (-227) (-650 (-320 (-227))))) (-15 -4257 ((-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))))))
-((-2558 (((-112) $ $) NIL)) (-3039 (((-2 (|:| -3039 (-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)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1375 (((-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)) (-3022 (((-112) $ $) NIL)))
+((-3182 (((-650 (-1186)) (-1186) (-777)) 26)) (-2446 (((-320 (-227)) (-320 (-227))) 35)) (-1464 (((-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)) (-4391 (((-112) (-227) (-227) (-650 (-320 (-227)))) 47)))
+(((-212) (-10 -7 (-15 -3182 ((-650 (-1186)) (-1186) (-777))) (-15 -2446 ((-320 (-227)) (-320 (-227)))) (-15 -4391 ((-112) (-227) (-227) (-650 (-320 (-227))))) (-15 -1464 ((-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))
+((-1464 (*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)))) (-4391 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-650 (-320 (-227)))) (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-212)))) (-2446 (*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-212)))) (-3182 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-212)) (-5 *3 (-1186)))))
+(-10 -7 (-15 -3182 ((-650 (-1186)) (-1186) (-777))) (-15 -2446 ((-320 (-227)) (-320 (-227)))) (-15 -4391 ((-112) (-227) (-227) (-650 (-320 (-227))))) (-15 -1464 ((-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))))))
+((-2560 (((-112) $ $) NIL)) (-3988 (((-2 (|:| -3988 (-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)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3406 (((-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)) (-3025 (((-112) $ $) NIL)))
(((-213) (-902)) (T -213))
NIL
(-902)
-((-2558 (((-112) $ $) NIL)) (-3039 (((-2 (|:| -3039 (-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)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1375 (((-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)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3988 (((-2 (|:| -3988 (-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)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3406 (((-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)) (-3025 (((-112) $ $) NIL)))
(((-214) (-902)) (T -214))
NIL
(-902)
-((-2558 (((-112) $ $) NIL)) (-3831 ((|#2| $ (-777) |#2|) 11)) (-3820 ((|#2| $ (-777)) 10)) (-4291 (($) 8)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 23)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 13)))
-(((-215 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -4291 ($)) (-15 -3820 (|#2| $ (-777))) (-15 -3831 (|#2| $ (-777) |#2|)))) (-928) (-1109)) (T -215))
-((-4291 (*1 *1) (-12 (-5 *1 (-215 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1109)))) (-3820 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *2 (-1109)) (-5 *1 (-215 *4 *2)) (-14 *4 (-928)))) (-3831 (*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 -4291 ($)) (-15 -3820 (|#2| $ (-777))) (-15 -3831 (|#2| $ (-777) |#2|))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2176 (((-1282) $) 37) (((-1282) $ (-928) (-928)) 41)) (-1941 (($ $ (-998)) 19) (((-247 (-1168)) $ (-1186)) 15)) (-4147 (((-1282) $) 35)) (-3799 (((-868) $) 32) (($ (-650 |#1|)) 8)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $ $) 27)) (-3101 (($ $ $) 22)))
-(((-216 |#1|) (-13 (-1109) (-622 (-650 |#1|)) (-10 -8 (-15 -1941 ($ $ (-998))) (-15 -1941 ((-247 (-1168)) $ (-1186))) (-15 -3101 ($ $ $)) (-15 -3111 ($ $ $)) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $)) (-15 -2176 ((-1282) $ (-928) (-928))))) (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $))))) (T -216))
-((-1941 (*1 *1 *1 *2) (-12 (-5 *2 (-998)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $))))))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-247 (-1168))) (-5 *1 (-216 *4)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ *3)) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $))))))) (-3101 (*1 *1 *1 *1) (-12 (-5 *1 (-216 *2)) (-4 *2 (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $))))))) (-3111 (*1 *1 *1 *1) (-12 (-5 *1 (-216 *2)) (-4 *2 (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $))))))) (-4147 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 (*2 $)) (-15 -2176 (*2 $))))))) (-2176 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 (*2 $)) (-15 -2176 (*2 $))))))) (-2176 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-216 *4)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 (*2 $)) (-15 -2176 (*2 $))))))))
-(-13 (-1109) (-622 (-650 |#1|)) (-10 -8 (-15 -1941 ($ $ (-998))) (-15 -1941 ((-247 (-1168)) $ (-1186))) (-15 -3101 ($ $ $)) (-15 -3111 ($ $ $)) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $)) (-15 -2176 ((-1282) $ (-928) (-928)))))
-((-2252 ((|#2| |#4| (-1 |#2| |#2|)) 49)))
-(((-217 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2252 (|#2| |#4| (-1 |#2| |#2|)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -217))
-((-2252 (*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 -2252 (|#2| |#4| (-1 |#2| |#2|))))
-((-4033 ((|#2| |#2| (-777) |#2|) 55)) (-3511 ((|#2| |#2| (-777) |#2|) 51)) (-3346 (((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -2066 |#2|)))) 79)) (-4214 (((-650 (-2 (|:| |deg| (-777)) (|:| -2066 |#2|))) |#2|) 73)) (-1597 (((-112) |#2|) 71)) (-3361 (((-424 |#2|) |#2|) 91)) (-3801 (((-424 |#2|) |#2|) 90)) (-2958 ((|#2| |#2| (-777) |#2|) 49)) (-1561 (((-2 (|:| |cont| |#1|) (|:| -3477 (-650 (-2 (|:| |irr| |#2|) (|:| -3563 (-570)))))) |#2| (-112)) 85)))
-(((-218 |#1| |#2|) (-10 -7 (-15 -3801 ((-424 |#2|) |#2|)) (-15 -3361 ((-424 |#2|) |#2|)) (-15 -1561 ((-2 (|:| |cont| |#1|) (|:| -3477 (-650 (-2 (|:| |irr| |#2|) (|:| -3563 (-570)))))) |#2| (-112))) (-15 -4214 ((-650 (-2 (|:| |deg| (-777)) (|:| -2066 |#2|))) |#2|)) (-15 -3346 ((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -2066 |#2|))))) (-15 -2958 (|#2| |#2| (-777) |#2|)) (-15 -3511 (|#2| |#2| (-777) |#2|)) (-15 -4033 (|#2| |#2| (-777) |#2|)) (-15 -1597 ((-112) |#2|))) (-354) (-1253 |#1|)) (T -218))
-((-1597 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-4033 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-3511 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-2958 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-3346 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |deg| (-777)) (|:| -2066 *5)))) (-4 *5 (-1253 *4)) (-4 *4 (-354)) (-5 *2 (-650 *5)) (-5 *1 (-218 *4 *5)))) (-4214 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -2066 *3)))) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-1561 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-354)) (-5 *2 (-2 (|:| |cont| *5) (|:| -3477 (-650 (-2 (|:| |irr| *3) (|:| -3563 (-570))))))) (-5 *1 (-218 *5 *3)) (-4 *3 (-1253 *5)))) (-3361 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-3801 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))))
-(-10 -7 (-15 -3801 ((-424 |#2|) |#2|)) (-15 -3361 ((-424 |#2|) |#2|)) (-15 -1561 ((-2 (|:| |cont| |#1|) (|:| -3477 (-650 (-2 (|:| |irr| |#2|) (|:| -3563 (-570)))))) |#2| (-112))) (-15 -4214 ((-650 (-2 (|:| |deg| (-777)) (|:| -2066 |#2|))) |#2|)) (-15 -3346 ((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -2066 |#2|))))) (-15 -2958 (|#2| |#2| (-777) |#2|)) (-15 -3511 (|#2| |#2| (-777) |#2|)) (-15 -4033 (|#2| |#2| (-777) |#2|)) (-15 -1597 ((-112) |#2|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 (((-570) $) NIL (|has| (-570) (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| (-570) (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-570) (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) NIL (|has| (-570) (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL)) (-4399 (((-570) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-1479 (((-112) $) NIL (|has| (-570) (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| (-570) (-856)))) (-1356 (($ (-1 (-570) (-570)) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-570) (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-3665 (((-570) $) NIL (|has| (-570) (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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))))) (-2142 (((-777) $) NIL)) (-1941 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 (((-570) $) NIL)) (-3248 (($ (-413 (-570))) 9)) (-1425 (((-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)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 10) $) 10)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-3499 (((-777)) NIL T CONST)) (-1313 (((-570) $) NIL (|has| (-570) (-551)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-2622 (($ $) NIL (|has| (-570) (-826)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3122 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2564 ((-413 (-570)) $)) (-15 -3248 ($ (-413 (-570))))))) (T -219))
-((-2564 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))) (-3248 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))))
-(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 10)) (-10 -8 (-15 -2564 ((-413 (-570)) $)) (-15 -3248 ($ (-413 (-570))))))
-((-2558 (((-112) $ $) NIL)) (-4328 (((-1127) $) 13)) (-1988 (((-1168) $) NIL)) (-1311 (((-489) $) 10)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 23) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-1144) $) 15)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-220) (-13 (-1092) (-10 -8 (-15 -1311 ((-489) $)) (-15 -4328 ((-1127) $)) (-15 -3613 ((-1144) $))))) (T -220))
-((-1311 (*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-220)))) (-4328 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-220)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-220)))))
-(-13 (-1092) (-10 -8 (-15 -1311 ((-489) $)) (-15 -4328 ((-1127) $)) (-15 -3613 ((-1144) $))))
-((-2898 (((-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)) (-2987 (((-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 -2898 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)))) (-15 -2898 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168))) (-15 -2987 ((-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))
-((-2987 (*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)))) (-2898 (*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)))) (-2898 (*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 -2898 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)))) (-15 -2898 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168))) (-15 -2987 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1186) (-849 |#2|) (-849 |#2|) (-112))))
-((-2898 (((-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 -2898 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))))) (-15 -2898 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168))) (-15 -2898 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))))) (-15 -2898 ((-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))
-((-2898 (*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)))) (-2898 (*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)))) (-2898 (*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)))) (-2898 (*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 -2898 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))))) (-15 -2898 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168))) (-15 -2898 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))))) (-15 -2898 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))) (-1168))))
-((-3624 (((-2 (|:| -3423 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|)) 26)) (-1392 (((-650 (-320 |#2|)) (-320 |#2|) (-928)) 51)))
-(((-223 |#1| |#2|) (-10 -7 (-15 -3624 ((-2 (|:| -3423 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|))) (-15 -1392 ((-650 (-320 |#2|)) (-320 |#2|) (-928)))) (-1058) (-562)) (T -223))
-((-1392 (*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)))) (-3624 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-2 (|:| -3423 (-1182 *4)) (|:| |deg| (-928)))) (-5 *1 (-223 *4 *5)) (-5 *3 (-1182 *4)) (-4 *5 (-562)))))
-(-10 -7 (-15 -3624 ((-2 (|:| -3423 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|))) (-15 -1392 ((-650 (-320 |#2|)) (-320 |#2|) (-928))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3590 ((|#1| $) NIL)) (-3353 ((|#1| $) 30)) (-4302 (((-112) $ (-777)) NIL)) (-1705 (($) NIL T CONST)) (-2084 (($ $) NIL)) (-2844 (($ $) 39)) (-1740 ((|#1| |#1| $) NIL)) (-3636 ((|#1| $) NIL)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1355 (((-777) $) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1490 ((|#1| $) NIL)) (-4262 ((|#1| |#1| $) 35)) (-2217 ((|#1| |#1| $) 37)) (-1385 (($ |#1| $) NIL)) (-1444 (((-777) $) 33)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1612 ((|#1| $) NIL)) (-2530 ((|#1| $) 31)) (-4178 ((|#1| $) 29)) (-3647 ((|#1| $) NIL)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-3528 ((|#1| |#1| $) NIL)) (-2017 (((-112) $) 9)) (-2380 (($) NIL)) (-2524 ((|#1| $) NIL)) (-3057 (($) NIL) (($ (-650 |#1|)) 16)) (-2918 (((-777) $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-1791 ((|#1| $) 13)) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) NIL)) (-3073 ((|#1| $) NIL)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-224 |#1|) (-13 (-257 |#1|) (-10 -8 (-15 -3057 ($ (-650 |#1|))))) (-1109)) (T -224))
-((-3057 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-224 *3)))))
-(-13 (-257 |#1|) (-10 -8 (-15 -3057 ($ (-650 |#1|)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1543 (($ (-320 |#1|)) 24)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-3936 (((-112) $) NIL)) (-4380 (((-3 (-320 |#1|) "failed") $) NIL)) (-3216 (((-320 |#1|) $) NIL)) (-1956 (($ $) 32)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-1356 (($ (-1 (-320 |#1|) (-320 |#1|)) $) NIL)) (-1927 (((-320 |#1|) $) NIL)) (-4403 (($ $) 31)) (-1988 (((-1168) $) NIL)) (-2675 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-2466 (($ (-777)) NIL)) (-3848 (($ $) 33)) (-2130 (((-570) $) NIL)) (-3799 (((-868) $) 65) (($ (-570)) NIL) (($ (-320 |#1|)) NIL)) (-2249 (((-320 |#1|) $ $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 26 T CONST)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) 29)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 20)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 25) (($ (-320 |#1|) $) 19)))
-(((-225 |#1| |#2|) (-13 (-626 (-320 |#1|)) (-1047 (-320 |#1|)) (-10 -8 (-15 -1927 ((-320 |#1|) $)) (-15 -4403 ($ $)) (-15 -1956 ($ $)) (-15 -2249 ((-320 |#1|) $ $)) (-15 -2466 ($ (-777))) (-15 -2675 ((-112) $)) (-15 -3936 ((-112) $)) (-15 -2130 ((-570) $)) (-15 -1356 ($ (-1 (-320 |#1|) (-320 |#1|)) $)) (-15 -1543 ($ (-320 |#1|))) (-15 -3848 ($ $)))) (-13 (-1058) (-856)) (-650 (-1186))) (T -225))
-((-1927 (*1 *2 *1) (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-4403 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))) (-1956 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))) (-2249 (*1 *2 *1 *1) (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-2466 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-2675 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3936 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-2130 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-1356 (*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))))) (-1543 (*1 *1 *2) (-12 (-5 *2 (-320 *3)) (-4 *3 (-13 (-1058) (-856))) (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))) (-3848 (*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 -1927 ((-320 |#1|) $)) (-15 -4403 ($ $)) (-15 -1956 ($ $)) (-15 -2249 ((-320 |#1|) $ $)) (-15 -2466 ($ (-777))) (-15 -2675 ((-112) $)) (-15 -3936 ((-112) $)) (-15 -2130 ((-570) $)) (-15 -1356 ($ (-1 (-320 |#1|) (-320 |#1|)) $)) (-15 -1543 ($ (-320 |#1|))) (-15 -3848 ($ $))))
-((-4115 (((-112) (-1168)) 26)) (-2451 (((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112)) 35)) (-1596 (((-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 -4115 ((-112) (-1168))) (-15 -2451 ((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112))) (-15 -1596 ((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112))) (-15 -1596 ((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-29 |#1|))) (T -226))
-((-1596 (*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)))) (-1596 (*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)))) (-2451 (*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)))) (-4115 (*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 -4115 ((-112) (-1168))) (-15 -2451 ((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112))) (-15 -1596 ((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112))) (-15 -1596 ((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 99)) (-1733 (((-570) $) 35)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1447 (($ $) NIL)) (-2887 (($ $) 88)) (-2751 (($ $) 76)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3814 (($ $) 67)) (-3473 (((-112) $ $) NIL)) (-2866 (($ $) 86)) (-2733 (($ $) 74)) (-4395 (((-570) $) 129)) (-4107 (($ $) 91)) (-2774 (($ $) 78)) (-1705 (($) NIL T CONST)) (-1529 (($ $) NIL)) (-4380 (((-3 (-570) "failed") $) 128) (((-3 (-413 (-570)) "failed") $) 125)) (-3216 (((-570) $) 126) (((-413 (-570)) $) 123)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) 104)) (-4151 (((-413 (-570)) $ (-777)) 118) (((-413 (-570)) $ (-777) (-777)) 117)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4152 (((-928)) 29) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-3903 (((-112) $) NIL)) (-1315 (($) 46)) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-4323 (((-570) $) 42)) (-4346 (((-112) $) 100)) (-2923 (($ $ (-570)) NIL)) (-2959 (($ $) NIL)) (-1479 (((-112) $) 98)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) 64) (($) 38 (-12 (-1795 (|has| $ (-6 -4432))) (-1795 (|has| $ (-6 -4440)))))) (-2800 (($ $ $) 63) (($) 37 (-12 (-1795 (|has| $ (-6 -4432))) (-1795 (|has| $ (-6 -4440)))))) (-3120 (((-570) $) 27)) (-1834 (($ $) 33)) (-1350 (($ $) 68)) (-2789 (($ $) 73)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2280 (((-928) (-570)) NIL (|has| $ (-6 -4440)))) (-3577 (((-1129) $) 102)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL)) (-3665 (($ $) NIL)) (-2693 (($ (-570) (-570)) NIL) (($ (-570) (-570) (-928)) 111)) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3357 (((-570) $) 28)) (-4338 (($) 45)) (-4387 (($ $) 72)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2737 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-3547 (($ $ (-777)) NIL) (($ $) 105)) (-2904 (((-928) (-570)) NIL (|has| $ (-6 -4440)))) (-4117 (($ $) 89)) (-2788 (($ $) 79)) (-2899 (($ $) 90)) (-2766 (($ $) 77)) (-2876 (($ $) 87)) (-2740 (($ $) 75)) (-1425 (((-384) $) 114) (((-227) $) 14) (((-899 (-384)) $) NIL) (((-542) $) 52)) (-3799 (((-868) $) 49) (($ (-570)) 71) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-570)) 71) (($ (-413 (-570))) NIL)) (-3499 (((-777)) NIL T CONST)) (-1313 (($ $) NIL)) (-1660 (((-928)) 36) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-2335 (((-112) $ $) NIL)) (-4406 (((-928)) 25)) (-4154 (($ $) 94)) (-2825 (($ $) 82) (($ $ $) 121)) (-2029 (((-112) $ $) NIL)) (-4129 (($ $) 92)) (-2801 (($ $) 80)) (-4176 (($ $) 97)) (-2845 (($ $) 85)) (-1578 (($ $) 95)) (-2855 (($ $) 83)) (-4163 (($ $) 96)) (-2835 (($ $) 84)) (-4140 (($ $) 93)) (-2814 (($ $) 81)) (-2622 (($ $) 120)) (-1861 (($) 23 T CONST)) (-1875 (($) 43 T CONST)) (-2831 (((-1168) $) 18) (((-1168) $ (-112)) 20) (((-1282) (-828) $) 21) (((-1282) (-828) $ (-112)) 22)) (-2256 (($ $) 108)) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-4250 (($ $ $) 110)) (-3072 (((-112) $ $) 57)) (-3052 (((-112) $ $) 54)) (-3022 (((-112) $ $) 65)) (-3062 (((-112) $ $) 56)) (-3042 (((-112) $ $) 53)) (-3122 (($ $ $) 44) (($ $ (-570)) 66)) (-3111 (($ $) 58) (($ $ $) 60)) (-3101 (($ $ $) 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 -3122 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -4338 ($)) (-15 -1834 ($ $)) (-15 -1350 ($ $)) (-15 -2825 ($ $ $)) (-15 -2256 ($ $)) (-15 -4250 ($ $ $)) (-15 -4151 ((-413 (-570)) $ (-777))) (-15 -4151 ((-413 (-570)) $ (-777) (-777)))))) (T -227))
-((** (*1 *1 *1 *1) (-5 *1 (-227))) (-3122 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-227)))) (-4338 (*1 *1) (-5 *1 (-227))) (-1834 (*1 *1 *1) (-5 *1 (-227))) (-1350 (*1 *1 *1) (-5 *1 (-227))) (-2825 (*1 *1 *1 *1) (-5 *1 (-227))) (-2256 (*1 *1 *1) (-5 *1 (-227))) (-4250 (*1 *1 *1 *1) (-5 *1 (-227))) (-4151 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227)))) (-4151 (*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 -3122 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -4338 ($)) (-15 -1834 ($ $)) (-15 -1350 ($ $)) (-15 -2825 ($ $ $)) (-15 -2256 ($ $)) (-15 -4250 ($ $ $)) (-15 -4151 ((-413 (-570)) $ (-777))) (-15 -4151 ((-413 (-570)) $ (-777) (-777)))))
-((-4083 (((-171 (-227)) (-777) (-171 (-227))) 11) (((-227) (-777) (-227)) 12)) (-1969 (((-171 (-227)) (-171 (-227))) 13) (((-227) (-227)) 14)) (-3839 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 19) (((-227) (-227) (-227)) 22)) (-2326 (((-171 (-227)) (-171 (-227))) 27) (((-227) (-227)) 26)) (-4231 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 57) (((-227) (-227) (-227)) 49)) (-3890 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 62) (((-227) (-227) (-227)) 60)) (-3564 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 15) (((-227) (-227) (-227)) 16)) (-3773 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 17) (((-227) (-227) (-227)) 18)) (-3635 (((-171 (-227)) (-171 (-227))) 74) (((-227) (-227)) 73)) (-4116 (((-227) (-227)) 68) (((-171 (-227)) (-171 (-227))) 72)) (-2256 (((-171 (-227)) (-171 (-227))) 8) (((-227) (-227)) 9)) (-4250 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 35) (((-227) (-227) (-227)) 31)))
-(((-228) (-10 -7 (-15 -2256 ((-227) (-227))) (-15 -2256 ((-171 (-227)) (-171 (-227)))) (-15 -4250 ((-227) (-227) (-227))) (-15 -4250 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1969 ((-227) (-227))) (-15 -1969 ((-171 (-227)) (-171 (-227)))) (-15 -2326 ((-227) (-227))) (-15 -2326 ((-171 (-227)) (-171 (-227)))) (-15 -4083 ((-227) (-777) (-227))) (-15 -4083 ((-171 (-227)) (-777) (-171 (-227)))) (-15 -3564 ((-227) (-227) (-227))) (-15 -3564 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -4231 ((-227) (-227) (-227))) (-15 -4231 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3773 ((-227) (-227) (-227))) (-15 -3773 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3890 ((-227) (-227) (-227))) (-15 -3890 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -4116 ((-171 (-227)) (-171 (-227)))) (-15 -4116 ((-227) (-227))) (-15 -3635 ((-227) (-227))) (-15 -3635 ((-171 (-227)) (-171 (-227)))) (-15 -3839 ((-227) (-227) (-227))) (-15 -3839 ((-171 (-227)) (-171 (-227)) (-171 (-227)))))) (T -228))
-((-3839 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3839 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3635 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3635 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-4116 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-4116 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3890 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3890 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3773 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3773 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-4231 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-4231 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3564 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3564 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-4083 (*1 *2 *3 *2) (-12 (-5 *2 (-171 (-227))) (-5 *3 (-777)) (-5 *1 (-228)))) (-4083 (*1 *2 *3 *2) (-12 (-5 *2 (-227)) (-5 *3 (-777)) (-5 *1 (-228)))) (-2326 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2326 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1969 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1969 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-4250 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-4250 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2256 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2256 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))))
-(-10 -7 (-15 -2256 ((-227) (-227))) (-15 -2256 ((-171 (-227)) (-171 (-227)))) (-15 -4250 ((-227) (-227) (-227))) (-15 -4250 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -1969 ((-227) (-227))) (-15 -1969 ((-171 (-227)) (-171 (-227)))) (-15 -2326 ((-227) (-227))) (-15 -2326 ((-171 (-227)) (-171 (-227)))) (-15 -4083 ((-227) (-777) (-227))) (-15 -4083 ((-171 (-227)) (-777) (-171 (-227)))) (-15 -3564 ((-227) (-227) (-227))) (-15 -3564 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -4231 ((-227) (-227) (-227))) (-15 -4231 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3773 ((-227) (-227) (-227))) (-15 -3773 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3890 ((-227) (-227) (-227))) (-15 -3890 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -4116 ((-171 (-227)) (-171 (-227)))) (-15 -4116 ((-227) (-227))) (-15 -3635 ((-227) (-227))) (-15 -3635 ((-171 (-227)) (-171 (-227)))) (-15 -3839 ((-227) (-227) (-227))) (-15 -3839 ((-171 (-227)) (-171 (-227)) (-171 (-227)))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3504 (($ (-777) (-777)) NIL)) (-2133 (($ $ $) NIL)) (-3244 (($ (-1277 |#1|)) NIL) (($ $) NIL)) (-3017 (($ |#1| |#1| |#1|) 33)) (-1735 (((-112) $) NIL)) (-4088 (($ $ (-570) (-570)) NIL)) (-1773 (($ $ (-570) (-570)) NIL)) (-4317 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-1885 (($ $) NIL)) (-4253 (((-112) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-2265 (($ $ (-570) (-570) $) NIL)) (-3932 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-4419 (($ $ (-570) (-1277 |#1|)) NIL)) (-2361 (($ $ (-570) (-1277 |#1|)) NIL)) (-2548 (($ |#1| |#1| |#1|) 32)) (-2741 (($ (-777) |#1|) NIL)) (-1705 (($) NIL T CONST)) (-4089 (($ $) NIL (|has| |#1| (-311)))) (-2219 (((-1277 |#1|) $ (-570)) NIL)) (-2847 (($ |#1|) 31)) (-3334 (($ |#1|) 30)) (-1832 (($ |#1|) 29)) (-4006 (((-777) $) NIL (|has| |#1| (-562)))) (-1517 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3820 ((|#1| $ (-570) (-570)) NIL)) (-3627 (((-650 |#1|) $) NIL)) (-2206 (((-777) $) NIL (|has| |#1| (-562)))) (-2123 (((-650 (-1277 |#1|)) $) NIL (|has| |#1| (-562)))) (-3316 (((-777) $) NIL)) (-4291 (($ (-777) (-777) |#1|) NIL)) (-3328 (((-777) $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-3689 ((|#1| $) NIL (|has| |#1| (-6 (-4451 "*"))))) (-4133 (((-570) $) NIL)) (-2877 (((-570) $) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1552 (((-570) $) NIL)) (-1732 (((-570) $) NIL)) (-2571 (($ (-650 (-650 |#1|))) 11)) (-1502 (($ (-1 |#1| |#1|) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3575 (((-650 (-650 |#1|)) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3490 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3015 (($) 12)) (-2721 (($ $ $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2147 (($ $ |#1|) NIL)) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2173 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL)) (-3285 (((-112) $) NIL)) (-2137 ((|#1| $) NIL (|has| |#1| (-6 (-4451 "*"))))) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-1508 (((-1277 |#1|) $ (-570)) NIL)) (-3799 (($ (-1277 |#1|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2841 (((-112) $) NIL)) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $ $) NIL) (($ $) NIL)) (-3101 (($ $ $) 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)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-229 |#1|) (-13 (-693 |#1| (-1277 |#1|) (-1277 |#1|)) (-10 -8 (-15 * ((-950 |#1|) $ (-950 |#1|))) (-15 -3015 ($)) (-15 -1832 ($ |#1|)) (-15 -3334 ($ |#1|)) (-15 -2847 ($ |#1|)) (-15 -2548 ($ |#1| |#1| |#1|)) (-15 -3017 ($ |#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)))) (-3015 (*1 *1) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-1832 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-3334 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-2847 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-2548 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-3017 (*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 -3015 ($)) (-15 -1832 ($ |#1|)) (-15 -3334 ($ |#1|)) (-15 -2847 ($ |#1|)) (-15 -2548 ($ |#1| |#1| |#1|)) (-15 -3017 ($ |#1| |#1| |#1|))))
-((-3753 (($ (-1 (-112) |#2|) $) 16)) (-3249 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 27)) (-2178 (($) NIL) (($ (-650 |#2|)) 11)) (-3022 (((-112) $ $) 25)))
-(((-230 |#1| |#2|) (-10 -8 (-15 -3753 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3249 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3249 (|#1| |#2| |#1|)) (-15 -2178 (|#1| (-650 |#2|))) (-15 -2178 (|#1|)) (-15 -3022 ((-112) |#1| |#1|))) (-231 |#2|) (-1109)) (T -230))
-NIL
-(-10 -8 (-15 -3753 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3249 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3249 (|#1| |#2| |#1|)) (-15 -2178 (|#1| (-650 |#2|))) (-15 -2178 (|#1|)) (-15 -3022 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-3753 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3579 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1741 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2178 (($) 50) (($ (-650 |#1|)) 49)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 51)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3834 ((|#2| $ (-777) |#2|) 11)) (-3824 ((|#2| $ (-777)) 10)) (-4294 (($) 8)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 23)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 13)))
+(((-215 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -4294 ($)) (-15 -3824 (|#2| $ (-777))) (-15 -3834 (|#2| $ (-777) |#2|)))) (-928) (-1109)) (T -215))
+((-4294 (*1 *1) (-12 (-5 *1 (-215 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1109)))) (-3824 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *2 (-1109)) (-5 *1 (-215 *4 *2)) (-14 *4 (-928)))) (-3834 (*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 -4294 ($)) (-15 -3824 (|#2| $ (-777))) (-15 -3834 (|#2| $ (-777) |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2353 (((-1282) $) 37) (((-1282) $ (-928) (-928)) 41)) (-1942 (($ $ (-998)) 19) (((-247 (-1168)) $ (-1186)) 15)) (-4150 (((-1282) $) 35)) (-3802 (((-868) $) 32) (($ (-650 |#1|)) 8)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $ $) 27)) (-3104 (($ $ $) 22)))
+(((-216 |#1|) (-13 (-1109) (-622 (-650 |#1|)) (-10 -8 (-15 -1942 ($ $ (-998))) (-15 -1942 ((-247 (-1168)) $ (-1186))) (-15 -3104 ($ $ $)) (-15 -3114 ($ $ $)) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $)) (-15 -2353 ((-1282) $ (-928) (-928))))) (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $))))) (T -216))
+((-1942 (*1 *1 *1 *2) (-12 (-5 *2 (-998)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $))))))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-247 (-1168))) (-5 *1 (-216 *4)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ *3)) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $))))))) (-3104 (*1 *1 *1 *1) (-12 (-5 *1 (-216 *2)) (-4 *2 (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $))))))) (-3114 (*1 *1 *1 *1) (-12 (-5 *1 (-216 *2)) (-4 *2 (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $))))))) (-4150 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 (*2 $)) (-15 -2353 (*2 $))))))) (-2353 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 (*2 $)) (-15 -2353 (*2 $))))))) (-2353 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-216 *4)) (-4 *4 (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 (*2 $)) (-15 -2353 (*2 $))))))))
+(-13 (-1109) (-622 (-650 |#1|)) (-10 -8 (-15 -1942 ($ $ (-998))) (-15 -1942 ((-247 (-1168)) $ (-1186))) (-15 -3104 ($ $ $)) (-15 -3114 ($ $ $)) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $)) (-15 -2353 ((-1282) $ (-928) (-928)))))
+((-1899 ((|#2| |#4| (-1 |#2| |#2|)) 49)))
+(((-217 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1899 (|#2| |#4| (-1 |#2| |#2|)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -217))
+((-1899 (*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 -1899 (|#2| |#4| (-1 |#2| |#2|))))
+((-4199 ((|#2| |#2| (-777) |#2|) 55)) (-2955 ((|#2| |#2| (-777) |#2|) 51)) (-3902 (((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -3636 |#2|)))) 79)) (-2330 (((-650 (-2 (|:| |deg| (-777)) (|:| -3636 |#2|))) |#2|) 73)) (-1437 (((-112) |#2|) 71)) (-4014 (((-424 |#2|) |#2|) 91)) (-3804 (((-424 |#2|) |#2|) 90)) (-4386 ((|#2| |#2| (-777) |#2|) 49)) (-2372 (((-2 (|:| |cont| |#1|) (|:| -2638 (-650 (-2 (|:| |irr| |#2|) (|:| -2199 (-570)))))) |#2| (-112)) 85)))
+(((-218 |#1| |#2|) (-10 -7 (-15 -3804 ((-424 |#2|) |#2|)) (-15 -4014 ((-424 |#2|) |#2|)) (-15 -2372 ((-2 (|:| |cont| |#1|) (|:| -2638 (-650 (-2 (|:| |irr| |#2|) (|:| -2199 (-570)))))) |#2| (-112))) (-15 -2330 ((-650 (-2 (|:| |deg| (-777)) (|:| -3636 |#2|))) |#2|)) (-15 -3902 ((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -3636 |#2|))))) (-15 -4386 (|#2| |#2| (-777) |#2|)) (-15 -2955 (|#2| |#2| (-777) |#2|)) (-15 -4199 (|#2| |#2| (-777) |#2|)) (-15 -1437 ((-112) |#2|))) (-354) (-1253 |#1|)) (T -218))
+((-1437 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-4199 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-2955 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-4386 (*1 *2 *2 *3 *2) (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2)) (-4 *2 (-1253 *4)))) (-3902 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |deg| (-777)) (|:| -3636 *5)))) (-4 *5 (-1253 *4)) (-4 *4 (-354)) (-5 *2 (-650 *5)) (-5 *1 (-218 *4 *5)))) (-2330 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -3636 *3)))) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-2372 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-354)) (-5 *2 (-2 (|:| |cont| *5) (|:| -2638 (-650 (-2 (|:| |irr| *3) (|:| -2199 (-570))))))) (-5 *1 (-218 *5 *3)) (-4 *3 (-1253 *5)))) (-4014 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))) (-3804 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -3804 ((-424 |#2|) |#2|)) (-15 -4014 ((-424 |#2|) |#2|)) (-15 -2372 ((-2 (|:| |cont| |#1|) (|:| -2638 (-650 (-2 (|:| |irr| |#2|) (|:| -2199 (-570)))))) |#2| (-112))) (-15 -2330 ((-650 (-2 (|:| |deg| (-777)) (|:| -3636 |#2|))) |#2|)) (-15 -3902 ((-650 |#2|) (-650 (-2 (|:| |deg| (-777)) (|:| -3636 |#2|))))) (-15 -4386 (|#2| |#2| (-777) |#2|)) (-15 -2955 (|#2| |#2| (-777) |#2|)) (-15 -4199 (|#2| |#2| (-777) |#2|)) (-15 -1437 ((-112) |#2|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 (((-570) $) NIL (|has| (-570) (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| (-570) (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-570) (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) NIL (|has| (-570) (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL)) (-4402 (((-570) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-2788 (((-112) $) NIL (|has| (-570) (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| (-570) (-856)))) (-1357 (($ (-1 (-570) (-570)) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-570) (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-1920 (((-570) $) NIL (|has| (-570) (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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))))) (-2006 (((-777) $) NIL)) (-1942 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 (((-570) $) NIL)) (-2373 (($ (-413 (-570))) 9)) (-1426 (((-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)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 10) $) 10)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-2851 (((-777)) NIL T CONST)) (-1918 (((-570) $) NIL (|has| (-570) (-551)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3231 (($ $) NIL (|has| (-570) (-826)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3125 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3889 ((-413 (-570)) $)) (-15 -2373 ($ (-413 (-570))))))) (T -219))
+((-3889 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))) (-2373 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))))
+(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 10)) (-10 -8 (-15 -3889 ((-413 (-570)) $)) (-15 -2373 ($ (-413 (-570))))))
+((-2560 (((-112) $ $) NIL)) (-4331 (((-1127) $) 13)) (-3989 (((-1168) $) NIL)) (-1586 (((-489) $) 10)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 23) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-1144) $) 15)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-220) (-13 (-1092) (-10 -8 (-15 -1586 ((-489) $)) (-15 -4331 ((-1127) $)) (-15 -3616 ((-1144) $))))) (T -220))
+((-1586 (*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-220)))) (-4331 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-220)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-220)))))
+(-13 (-1092) (-10 -8 (-15 -1586 ((-489) $)) (-15 -4331 ((-1127) $)) (-15 -3616 ((-1144) $))))
+((-2023 (((-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)) (-1637 (((-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 -2023 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)))) (-15 -2023 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168))) (-15 -1637 ((-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))
+((-1637 (*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)))) (-2023 (*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)))) (-2023 (*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 -2023 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)))) (-15 -2023 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1101 (-849 |#2|)) (-1168))) (-15 -1637 ((-3 (|:| |f1| (-849 |#2|)) (|:| |f2| (-650 (-849 |#2|))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) |#2| (-1186) (-849 |#2|) (-849 |#2|) (-112))))
+((-2023 (((-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 -2023 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))))) (-15 -2023 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168))) (-15 -2023 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))))) (-15 -2023 ((-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))
+((-2023 (*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)))) (-2023 (*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)))) (-2023 (*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)))) (-2023 (*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 -2023 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))))) (-15 -2023 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-320 |#1|))) (-1168))) (-15 -2023 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))))) (-15 -2023 ((-3 (|:| |f1| (-849 (-320 |#1|))) (|:| |f2| (-650 (-849 (-320 |#1|)))) (|:| |fail| "failed") (|:| |pole| "potentialPole")) (-413 (-959 |#1|)) (-1101 (-849 (-413 (-959 |#1|)))) (-1168))))
+((-3627 (((-2 (|:| -3303 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|)) 26)) (-1393 (((-650 (-320 |#2|)) (-320 |#2|) (-928)) 51)))
+(((-223 |#1| |#2|) (-10 -7 (-15 -3627 ((-2 (|:| -3303 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|))) (-15 -1393 ((-650 (-320 |#2|)) (-320 |#2|) (-928)))) (-1058) (-562)) (T -223))
+((-1393 (*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)))) (-3627 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-2 (|:| -3303 (-1182 *4)) (|:| |deg| (-928)))) (-5 *1 (-223 *4 *5)) (-5 *3 (-1182 *4)) (-4 *5 (-562)))))
+(-10 -7 (-15 -3627 ((-2 (|:| -3303 (-1182 |#1|)) (|:| |deg| (-928))) (-1182 |#1|))) (-15 -1393 ((-650 (-320 |#2|)) (-320 |#2|) (-928))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2433 ((|#1| $) NIL)) (-3356 ((|#1| $) 30)) (-1932 (((-112) $ (-777)) NIL)) (-3195 (($) NIL T CONST)) (-2622 (($ $) NIL)) (-1582 (($ $) 39)) (-3536 ((|#1| |#1| $) NIL)) (-1552 ((|#1| $) NIL)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-1356 (((-777) $) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2885 ((|#1| $) NIL)) (-1502 ((|#1| |#1| $) 35)) (-1466 ((|#1| |#1| $) 37)) (-3502 (($ |#1| $) NIL)) (-1445 (((-777) $) 33)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1593 ((|#1| $) NIL)) (-1698 ((|#1| $) 31)) (-3171 ((|#1| $) 29)) (-1684 ((|#1| $) NIL)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-3102 ((|#1| |#1| $) NIL)) (-4283 (((-112) $) 9)) (-2656 (($) NIL)) (-1640 ((|#1| $) NIL)) (-4146 (($) NIL) (($ (-650 |#1|)) 16)) (-2921 (((-777) $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2781 ((|#1| $) 13)) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) NIL)) (-4295 ((|#1| $) NIL)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-224 |#1|) (-13 (-257 |#1|) (-10 -8 (-15 -4146 ($ (-650 |#1|))))) (-1109)) (T -224))
+((-4146 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-224 *3)))))
+(-13 (-257 |#1|) (-10 -8 (-15 -4146 ($ (-650 |#1|)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-2180 (($ (-320 |#1|)) 24)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-2635 (((-112) $) NIL)) (-4383 (((-3 (-320 |#1|) "failed") $) NIL)) (-3220 (((-320 |#1|) $) NIL)) (-1954 (($ $) 32)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-1357 (($ (-1 (-320 |#1|) (-320 |#1|)) $) NIL)) (-1928 (((-320 |#1|) $) NIL)) (-3480 (($ $) 31)) (-3989 (((-1168) $) NIL)) (-3725 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-2467 (($ (-777)) NIL)) (-3007 (($ $) 33)) (-3079 (((-570) $) NIL)) (-3802 (((-868) $) 65) (($ (-570)) NIL) (($ (-320 |#1|)) NIL)) (-1864 (((-320 |#1|) $ $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 26 T CONST)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) 29)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 20)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 25) (($ (-320 |#1|) $) 19)))
+(((-225 |#1| |#2|) (-13 (-626 (-320 |#1|)) (-1047 (-320 |#1|)) (-10 -8 (-15 -1928 ((-320 |#1|) $)) (-15 -3480 ($ $)) (-15 -1954 ($ $)) (-15 -1864 ((-320 |#1|) $ $)) (-15 -2467 ($ (-777))) (-15 -3725 ((-112) $)) (-15 -2635 ((-112) $)) (-15 -3079 ((-570) $)) (-15 -1357 ($ (-1 (-320 |#1|) (-320 |#1|)) $)) (-15 -2180 ($ (-320 |#1|))) (-15 -3007 ($ $)))) (-13 (-1058) (-856)) (-650 (-1186))) (T -225))
+((-1928 (*1 *2 *1) (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3480 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))) (-1954 (*1 *1 *1) (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856))) (-14 *3 (-650 (-1186))))) (-1864 (*1 *2 *1 *1) (-12 (-5 *2 (-320 *3)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-2467 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3725 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-2635 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-3079 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-225 *3 *4)) (-4 *3 (-13 (-1058) (-856))) (-14 *4 (-650 (-1186))))) (-1357 (*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))))) (-2180 (*1 *1 *2) (-12 (-5 *2 (-320 *3)) (-4 *3 (-13 (-1058) (-856))) (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))) (-3007 (*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 -1928 ((-320 |#1|) $)) (-15 -3480 ($ $)) (-15 -1954 ($ $)) (-15 -1864 ((-320 |#1|) $ $)) (-15 -2467 ($ (-777))) (-15 -3725 ((-112) $)) (-15 -2635 ((-112) $)) (-15 -3079 ((-570) $)) (-15 -1357 ($ (-1 (-320 |#1|) (-320 |#1|)) $)) (-15 -2180 ($ (-320 |#1|))) (-15 -3007 ($ $))))
+((-3835 (((-112) (-1168)) 26)) (-2177 (((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112)) 35)) (-1421 (((-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 -3835 ((-112) (-1168))) (-15 -2177 ((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112))) (-15 -1421 ((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112))) (-15 -1421 ((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-29 |#1|))) (T -226))
+((-1421 (*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)))) (-1421 (*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)))) (-2177 (*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)))) (-3835 (*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 -3835 ((-112) (-1168))) (-15 -2177 ((-3 (-849 |#2|) "failed") (-618 |#2|) |#2| (-849 |#2|) (-849 |#2|) (-112))) (-15 -1421 ((-3 (-112) "failed") (-959 |#1|) (-1186) (-849 |#2|) (-849 |#2|) (-112))) (-15 -1421 ((-3 (-112) "failed") (-1182 |#2|) (-849 |#2|) (-849 |#2|) (-112))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 99)) (-3472 (((-570) $) 35)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1622 (($ $) NIL)) (-2890 (($ $) 88)) (-2755 (($ $) 76)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3817 (($ $) 67)) (-3765 (((-112) $ $) NIL)) (-2869 (($ $) 86)) (-2736 (($ $) 74)) (-3408 (((-570) $) 129)) (-4109 (($ $) 91)) (-2777 (($ $) 78)) (-3195 (($) NIL T CONST)) (-2048 (($ $) NIL)) (-4383 (((-3 (-570) "failed") $) 128) (((-3 (-413 (-570)) "failed") $) 125)) (-3220 (((-570) $) 126) (((-413 (-570)) $) 123)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) 104)) (-2957 (((-413 (-570)) $ (-777)) 118) (((-413 (-570)) $ (-777) (-777)) 117)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-4156 (((-928)) 29) (((-928) (-928)) NIL (|has| $ (-6 -4443)))) (-2346 (((-112) $) NIL)) (-1315 (($) 46)) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-3941 (((-570) $) 42)) (-4139 (((-112) $) 100)) (-2252 (($ $ (-570)) NIL)) (-4399 (($ $) NIL)) (-2788 (((-112) $) 98)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) 64) (($) 38 (-12 (-1796 (|has| $ (-6 -4435))) (-1796 (|has| $ (-6 -4443)))))) (-2472 (($ $ $) 63) (($) 37 (-12 (-1796 (|has| $ (-6 -4435))) (-1796 (|has| $ (-6 -4443)))))) (-3123 (((-570) $) 27)) (-1959 (($ $) 33)) (-1351 (($ $) 68)) (-2792 (($ $) 73)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-4004 (((-928) (-570)) NIL (|has| $ (-6 -4443)))) (-3580 (((-1129) $) 102)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL)) (-1920 (($ $) NIL)) (-2695 (($ (-570) (-570)) NIL) (($ (-570) (-570) (-928)) 111)) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3994 (((-570) $) 28)) (-4059 (($) 45)) (-4389 (($ $) 72)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3098 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4443)))) (-3550 (($ $ (-777)) NIL) (($ $) 105)) (-2064 (((-928) (-570)) NIL (|has| $ (-6 -4443)))) (-4120 (($ $) 89)) (-2791 (($ $) 79)) (-2902 (($ $) 90)) (-2768 (($ $) 77)) (-2879 (($ $) 87)) (-2743 (($ $) 75)) (-1426 (((-384) $) 114) (((-227) $) 14) (((-899 (-384)) $) NIL) (((-542) $) 52)) (-3802 (((-868) $) 49) (($ (-570)) 71) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-570)) 71) (($ (-413 (-570))) NIL)) (-2851 (((-777)) NIL T CONST)) (-1918 (($ $) NIL)) (-3942 (((-928)) 36) (((-928) (-928)) NIL (|has| $ (-6 -4443)))) (-3359 (((-112) $ $) NIL)) (-4409 (((-928)) 25)) (-4157 (($ $) 94)) (-2828 (($ $) 82) (($ $ $) 121)) (-3228 (((-112) $ $) NIL)) (-4129 (($ $) 92)) (-2804 (($ $) 80)) (-4179 (($ $) 97)) (-2848 (($ $) 85)) (-1579 (($ $) 95)) (-2858 (($ $) 83)) (-4166 (($ $) 96)) (-2838 (($ $) 84)) (-4144 (($ $) 93)) (-2817 (($ $) 81)) (-3231 (($ $) 120)) (-1862 (($) 23 T CONST)) (-1876 (($) 43 T CONST)) (-1423 (((-1168) $) 18) (((-1168) $ (-112)) 20) (((-1282) (-828) $) 21) (((-1282) (-828) $ (-112)) 22)) (-1941 (($ $) 108)) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-2669 (($ $ $) 110)) (-3075 (((-112) $ $) 57)) (-3055 (((-112) $ $) 54)) (-3025 (((-112) $ $) 65)) (-3065 (((-112) $ $) 56)) (-3045 (((-112) $ $) 53)) (-3125 (($ $ $) 44) (($ $ (-570)) 66)) (-3114 (($ $) 58) (($ $ $) 60)) (-3104 (($ $ $) 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 -3125 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -4059 ($)) (-15 -1959 ($ $)) (-15 -1351 ($ $)) (-15 -2828 ($ $ $)) (-15 -1941 ($ $)) (-15 -2669 ($ $ $)) (-15 -2957 ((-413 (-570)) $ (-777))) (-15 -2957 ((-413 (-570)) $ (-777) (-777)))))) (T -227))
+((** (*1 *1 *1 *1) (-5 *1 (-227))) (-3125 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-227)))) (-4059 (*1 *1) (-5 *1 (-227))) (-1959 (*1 *1 *1) (-5 *1 (-227))) (-1351 (*1 *1 *1) (-5 *1 (-227))) (-2828 (*1 *1 *1 *1) (-5 *1 (-227))) (-1941 (*1 *1 *1) (-5 *1 (-227))) (-2669 (*1 *1 *1 *1) (-5 *1 (-227))) (-2957 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-227)))) (-2957 (*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 -3125 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -4059 ($)) (-15 -1959 ($ $)) (-15 -1351 ($ $)) (-15 -2828 ($ $ $)) (-15 -1941 ($ $)) (-15 -2669 ($ $ $)) (-15 -2957 ((-413 (-570)) $ (-777))) (-15 -2957 ((-413 (-570)) $ (-777) (-777)))))
+((-3539 (((-171 (-227)) (-777) (-171 (-227))) 11) (((-227) (-777) (-227)) 12)) (-3795 (((-171 (-227)) (-171 (-227))) 13) (((-227) (-227)) 14)) (-2942 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 19) (((-227) (-227) (-227)) 22)) (-3266 (((-171 (-227)) (-171 (-227))) 27) (((-227) (-227)) 26)) (-2509 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 57) (((-227) (-227) (-227)) 49)) (-2217 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 62) (((-227) (-227) (-227)) 60)) (-2210 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 15) (((-227) (-227) (-227)) 16)) (-3556 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 17) (((-227) (-227) (-227)) 18)) (-1542 (((-171 (-227)) (-171 (-227))) 74) (((-227) (-227)) 73)) (-3845 (((-227) (-227)) 68) (((-171 (-227)) (-171 (-227))) 72)) (-1941 (((-171 (-227)) (-171 (-227))) 8) (((-227) (-227)) 9)) (-2669 (((-171 (-227)) (-171 (-227)) (-171 (-227))) 35) (((-227) (-227) (-227)) 31)))
+(((-228) (-10 -7 (-15 -1941 ((-227) (-227))) (-15 -1941 ((-171 (-227)) (-171 (-227)))) (-15 -2669 ((-227) (-227) (-227))) (-15 -2669 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3795 ((-227) (-227))) (-15 -3795 ((-171 (-227)) (-171 (-227)))) (-15 -3266 ((-227) (-227))) (-15 -3266 ((-171 (-227)) (-171 (-227)))) (-15 -3539 ((-227) (-777) (-227))) (-15 -3539 ((-171 (-227)) (-777) (-171 (-227)))) (-15 -2210 ((-227) (-227) (-227))) (-15 -2210 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -2509 ((-227) (-227) (-227))) (-15 -2509 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3556 ((-227) (-227) (-227))) (-15 -3556 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -2217 ((-227) (-227) (-227))) (-15 -2217 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3845 ((-171 (-227)) (-171 (-227)))) (-15 -3845 ((-227) (-227))) (-15 -1542 ((-227) (-227))) (-15 -1542 ((-171 (-227)) (-171 (-227)))) (-15 -2942 ((-227) (-227) (-227))) (-15 -2942 ((-171 (-227)) (-171 (-227)) (-171 (-227)))))) (T -228))
+((-2942 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2942 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1542 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1542 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3845 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3845 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2217 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2217 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3556 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3556 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2509 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2509 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2210 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2210 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3539 (*1 *2 *3 *2) (-12 (-5 *2 (-171 (-227))) (-5 *3 (-777)) (-5 *1 (-228)))) (-3539 (*1 *2 *3 *2) (-12 (-5 *2 (-227)) (-5 *3 (-777)) (-5 *1 (-228)))) (-3266 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3266 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-3795 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-3795 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-2669 (*1 *2 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-2669 (*1 *2 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))) (-1941 (*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))) (-1941 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-228)))))
+(-10 -7 (-15 -1941 ((-227) (-227))) (-15 -1941 ((-171 (-227)) (-171 (-227)))) (-15 -2669 ((-227) (-227) (-227))) (-15 -2669 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3795 ((-227) (-227))) (-15 -3795 ((-171 (-227)) (-171 (-227)))) (-15 -3266 ((-227) (-227))) (-15 -3266 ((-171 (-227)) (-171 (-227)))) (-15 -3539 ((-227) (-777) (-227))) (-15 -3539 ((-171 (-227)) (-777) (-171 (-227)))) (-15 -2210 ((-227) (-227) (-227))) (-15 -2210 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -2509 ((-227) (-227) (-227))) (-15 -2509 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3556 ((-227) (-227) (-227))) (-15 -3556 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -2217 ((-227) (-227) (-227))) (-15 -2217 ((-171 (-227)) (-171 (-227)) (-171 (-227)))) (-15 -3845 ((-171 (-227)) (-171 (-227)))) (-15 -3845 ((-227) (-227))) (-15 -1542 ((-227) (-227))) (-15 -1542 ((-171 (-227)) (-171 (-227)))) (-15 -2942 ((-227) (-227) (-227))) (-15 -2942 ((-171 (-227)) (-171 (-227)) (-171 (-227)))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3507 (($ (-777) (-777)) NIL)) (-3105 (($ $ $) NIL)) (-2333 (($ (-1277 |#1|)) NIL) (($ $) NIL)) (-3020 (($ |#1| |#1| |#1|) 33)) (-3493 (((-112) $) NIL)) (-3597 (($ $ (-570) (-570)) NIL)) (-2616 (($ $ (-570) (-570)) NIL)) (-2057 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-2411 (($ $) NIL)) (-1407 (((-112) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3861 (($ $ (-570) (-570) $) NIL)) (-3935 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-3605 (($ $ (-570) (-1277 |#1|)) NIL)) (-3650 (($ $ (-570) (-1277 |#1|)) NIL)) (-1909 (($ |#1| |#1| |#1|) 32)) (-3130 (($ (-777) |#1|) NIL)) (-3195 (($) NIL T CONST)) (-3610 (($ $) NIL (|has| |#1| (-311)))) (-1494 (((-1277 |#1|) $ (-570)) NIL)) (-1604 (($ |#1|) 31)) (-3799 (($ |#1|) 30)) (-1930 (($ |#1|) 29)) (-4009 (((-777) $) NIL (|has| |#1| (-562)))) (-1518 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3824 ((|#1| $ (-570) (-570)) NIL)) (-3630 (((-650 |#1|) $) NIL)) (-1330 (((-777) $) NIL (|has| |#1| (-562)))) (-3017 (((-650 (-1277 |#1|)) $) NIL (|has| |#1| (-562)))) (-3318 (((-777) $) NIL)) (-4294 (($ (-777) (-777) |#1|) NIL)) (-3330 (((-777) $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-3949 ((|#1| $) NIL (|has| |#1| (-6 (-4454 "*"))))) (-2822 (((-570) $) NIL)) (-1943 (((-570) $) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2278 (((-570) $) NIL)) (-3461 (((-570) $) NIL)) (-2572 (($ (-650 (-650 |#1|))) 11)) (-1503 (($ (-1 |#1| |#1|) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2309 (((-650 (-650 |#1|)) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2751 (((-3 $ "failed") $) NIL (|has| |#1| (-368)))) (-3787 (($) 12)) (-2979 (($ $ $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2061 (($ $ |#1|) NIL)) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2323 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL)) (-1424 (((-112) $) NIL)) (-3136 ((|#1| $) NIL (|has| |#1| (-6 (-4454 "*"))))) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3057 (((-1277 |#1|) $ (-570)) NIL)) (-3802 (($ (-1277 |#1|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1548 (((-112) $) NIL)) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $ $) NIL) (($ $) NIL)) (-3104 (($ $ $) 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)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-229 |#1|) (-13 (-693 |#1| (-1277 |#1|) (-1277 |#1|)) (-10 -8 (-15 * ((-950 |#1|) $ (-950 |#1|))) (-15 -3787 ($)) (-15 -1930 ($ |#1|)) (-15 -3799 ($ |#1|)) (-15 -1604 ($ |#1|)) (-15 -1909 ($ |#1| |#1| |#1|)) (-15 -3020 ($ |#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)))) (-3787 (*1 *1) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-1930 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-3799 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-1604 (*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-1909 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))) (-3020 (*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 -3787 ($)) (-15 -1930 ($ |#1|)) (-15 -3799 ($ |#1|)) (-15 -1604 ($ |#1|)) (-15 -1909 ($ |#1| |#1| |#1|)) (-15 -3020 ($ |#1| |#1| |#1|))))
+((-3353 (($ (-1 (-112) |#2|) $) 16)) (-2385 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 27)) (-2374 (($) NIL) (($ (-650 |#2|)) 11)) (-3025 (((-112) $ $) 25)))
+(((-230 |#1| |#2|) (-10 -8 (-15 -3353 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2385 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2385 (|#1| |#2| |#1|)) (-15 -2374 (|#1| (-650 |#2|))) (-15 -2374 (|#1|)) (-15 -3025 ((-112) |#1| |#1|))) (-231 |#2|) (-1109)) (T -230))
+NIL
+(-10 -8 (-15 -3353 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2385 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2385 (|#1| |#2| |#1|)) (-15 -2374 (|#1| (-650 |#2|))) (-15 -2374 (|#1|)) (-15 -3025 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3353 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3582 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ |#1| $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4452)))) (-1742 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4452)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-2374 (($) 50) (($ (-650 |#1|)) 49)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 51)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-231 |#1|) (-141) (-1109)) (T -231))
NIL
(-13 (-237 |t#1|))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3547 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) 11) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) 19) (($ $ (-777)) NIL) (($ $) 16)) (-2942 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-777)) 14) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)))
-(((-232 |#1| |#2|) (-10 -8 (-15 -3547 (|#1| |#1|)) (-15 -2942 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -2942 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2942 (|#1| |#1| (-1186))) (-15 -2942 (|#1| |#1| (-650 (-1186)))) (-15 -2942 (|#1| |#1| (-1186) (-777))) (-15 -2942 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2942 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -2942 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|)))) (-233 |#2|) (-1058)) (T -232))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3550 (($ $ (-1 |#2| |#2|)) NIL) (($ $ (-1 |#2| |#2|) (-777)) 11) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) 19) (($ $ (-777)) NIL) (($ $) 16)) (-2945 (($ $ (-1 |#2| |#2|)) 12) (($ $ (-1 |#2| |#2|) (-777)) 14) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)))
+(((-232 |#1| |#2|) (-10 -8 (-15 -3550 (|#1| |#1|)) (-15 -2945 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -2945 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2945 (|#1| |#1| (-1186))) (-15 -2945 (|#1| |#1| (-650 (-1186)))) (-15 -2945 (|#1| |#1| (-1186) (-777))) (-15 -2945 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2945 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -2945 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|)))) (-233 |#2|) (-1058)) (T -232))
NIL
-(-10 -8 (-15 -3547 (|#1| |#1|)) (-15 -2942 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -2942 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2942 (|#1| |#1| (-1186))) (-15 -2942 (|#1| |#1| (-650 (-1186)))) (-15 -2942 (|#1| |#1| (-1186) (-777))) (-15 -2942 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2942 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -2942 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3547 (($ $ (-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)))) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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)))) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+(-10 -8 (-15 -3550 (|#1| |#1|)) (-15 -2945 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -2945 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2945 (|#1| |#1| (-1186))) (-15 -2945 (|#1| |#1| (-650 (-1186)))) (-15 -2945 (|#1| |#1| (-1186) (-777))) (-15 -2945 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2945 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -2945 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3550 (($ $ (-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)))) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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)))) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-233 |#1|) (-141) (-1058)) (T -233))
-((-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-233 *3)) (-4 *3 (-1058)))) (-3547 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *1 (-233 *4)) (-4 *4 (-1058)))) (-2942 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-233 *3)) (-4 *3 (-1058)))) (-2942 (*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 -3547 ($ $ (-1 |t#1| |t#1|))) (-15 -3547 ($ $ (-1 |t#1| |t#1|) (-777))) (-15 -2942 ($ $ (-1 |t#1| |t#1|))) (-15 -2942 ($ $ (-1 |t#1| |t#1|) (-777))) (IF (|has| |t#1| (-235)) (-6 (-235)) |%noBranch|) (IF (|has| |t#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|)))
+((-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-233 *3)) (-4 *3 (-1058)))) (-3550 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *1 (-233 *4)) (-4 *4 (-1058)))) (-2945 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-233 *3)) (-4 *3 (-1058)))) (-2945 (*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 -3550 ($ $ (-1 |t#1| |t#1|))) (-15 -3550 ($ $ (-1 |t#1| |t#1|) (-777))) (-15 -2945 ($ $ (-1 |t#1| |t#1|))) (-15 -2945 ($ $ (-1 |t#1| |t#1|) (-777))) (IF (|has| |t#1| (-235)) (-6 (-235)) |%noBranch|) (IF (|has| |t#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|)))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 (-570)) . T) ((-619 (-868)) . T) ((-235) |has| |#1| (-235)) ((-652 (-570)) . T) ((-652 $) . T) ((-654 $) . T) ((-732) . T) ((-907 (-1186)) |has| |#1| (-907 (-1186))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-3547 (($ $) NIL) (($ $ (-777)) 10)) (-2942 (($ $) 8) (($ $ (-777)) 12)))
-(((-234 |#1|) (-10 -8 (-15 -2942 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-777))) (-15 -2942 (|#1| |#1|)) (-15 -3547 (|#1| |#1|))) (-235)) (T -234))
+((-3550 (($ $) NIL) (($ $ (-777)) 10)) (-2945 (($ $) 8) (($ $ (-777)) 12)))
+(((-234 |#1|) (-10 -8 (-15 -2945 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-777))) (-15 -2945 (|#1| |#1|)) (-15 -3550 (|#1| |#1|))) (-235)) (T -234))
NIL
-(-10 -8 (-15 -2942 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-777))) (-15 -2942 (|#1| |#1|)) (-15 -3547 (|#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3547 (($ $) 42) (($ $ (-777)) 40)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $) 41) (($ $ (-777)) 39)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+(-10 -8 (-15 -2945 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-777))) (-15 -2945 (|#1| |#1|)) (-15 -3550 (|#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3550 (($ $) 42) (($ $ (-777)) 40)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $) 41) (($ $ (-777)) 39)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-235) (-141)) (T -235))
-((-3547 (*1 *1 *1) (-4 *1 (-235))) (-2942 (*1 *1 *1) (-4 *1 (-235))) (-3547 (*1 *1 *1 *2) (-12 (-4 *1 (-235)) (-5 *2 (-777)))) (-2942 (*1 *1 *1 *2) (-12 (-4 *1 (-235)) (-5 *2 (-777)))))
-(-13 (-1058) (-10 -8 (-15 -3547 ($ $)) (-15 -2942 ($ $)) (-15 -3547 ($ $ (-777))) (-15 -2942 ($ $ (-777)))))
+((-3550 (*1 *1 *1) (-4 *1 (-235))) (-2945 (*1 *1 *1) (-4 *1 (-235))) (-3550 (*1 *1 *1 *2) (-12 (-4 *1 (-235)) (-5 *2 (-777)))) (-2945 (*1 *1 *1 *2) (-12 (-4 *1 (-235)) (-5 *2 (-777)))))
+(-13 (-1058) (-10 -8 (-15 -3550 ($ $)) (-15 -2945 ($ $)) (-15 -3550 ($ $ (-777))) (-15 -2945 ($ $ (-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))
-((-2178 (($) 12) (($ (-650 |#2|)) NIL)) (-3951 (($ $) 14)) (-3811 (($ (-650 |#2|)) 10)) (-3799 (((-868) $) 21)))
-(((-236 |#1| |#2|) (-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -2178 (|#1| (-650 |#2|))) (-15 -2178 (|#1|)) (-15 -3811 (|#1| (-650 |#2|))) (-15 -3951 (|#1| |#1|))) (-237 |#2|) (-1109)) (T -236))
+((-2374 (($) 12) (($ (-650 |#2|)) NIL)) (-3954 (($ $) 14)) (-3814 (($ (-650 |#2|)) 10)) (-3802 (((-868) $) 21)))
+(((-236 |#1| |#2|) (-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -2374 (|#1| (-650 |#2|))) (-15 -2374 (|#1|)) (-15 -3814 (|#1| (-650 |#2|))) (-15 -3954 (|#1| |#1|))) (-237 |#2|) (-1109)) (T -236))
NIL
-(-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -2178 (|#1| (-650 |#2|))) (-15 -2178 (|#1|)) (-15 -3811 (|#1| (-650 |#2|))) (-15 -3951 (|#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-3753 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3579 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1741 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2178 (($) 50) (($ (-650 |#1|)) 49)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 51)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -2374 (|#1| (-650 |#2|))) (-15 -2374 (|#1|)) (-15 -3814 (|#1| (-650 |#2|))) (-15 -3954 (|#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3353 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3582 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ |#1| $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4452)))) (-1742 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4452)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-2374 (($) 50) (($ (-650 |#1|)) 49)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 51)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-237 |#1|) (-141) (-1109)) (T -237))
-((-2178 (*1 *1) (-12 (-4 *1 (-237 *2)) (-4 *2 (-1109)))) (-2178 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-237 *3)))) (-3249 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-237 *2)) (-4 *2 (-1109)))) (-3249 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-237 *3)) (-4 *3 (-1109)))) (-3753 (*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 -2178 ($)) (-15 -2178 ($ (-650 |t#1|))) (IF (|has| $ (-6 -4449)) (PROGN (-15 -3249 ($ |t#1| $)) (-15 -3249 ($ (-1 (-112) |t#1|) $)) (-15 -3753 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3894 (((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570)))) 42)))
-(((-238) (-10 -7 (-15 -3894 ((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570))))))) (T -238))
-((-3894 (*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 -3894 ((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570))))))
-((-3510 (((-777)) 56)) (-4196 (((-2 (|:| -2415 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) 53) (((-695 |#3|) (-695 $)) 44) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2951 (((-135)) 62)) (-3547 (($ $ (-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)) (-3799 (((-1277 |#3|) $) NIL) (($ |#3|) NIL) (((-868) $) NIL) (($ (-570)) 12) (($ (-413 (-570))) NIL)) (-3499 (((-777)) 15)) (-3122 (($ $ |#3|) 59)))
-(((-239 |#1| |#2| |#3|) (-10 -8 (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)) (-15 -3499 ((-777))) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -3799 (|#1| |#3|)) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -4196 ((-695 |#3|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -3510 ((-777))) (-15 -3122 (|#1| |#1| |#3|)) (-15 -2951 ((-135))) (-15 -3799 ((-1277 |#3|) |#1|))) (-240 |#2| |#3|) (-777) (-1227)) (T -239))
-((-2951 (*1 *2) (-12 (-14 *4 (-777)) (-4 *5 (-1227)) (-5 *2 (-135)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))) (-3510 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1227)) (-5 *2 (-777)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))) (-3499 (*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 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)) (-15 -3499 ((-777))) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -3799 (|#1| |#3|)) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -4196 ((-695 |#3|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -3510 ((-777))) (-15 -3122 (|#1| |#1| |#3|)) (-15 -2951 ((-135))) (-15 -3799 ((-1277 |#3|) |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#2| (-1109)))) (-3467 (((-112) $) 73 (|has| |#2| (-132)))) (-2797 (($ (-928)) 126 (|has| |#2| (-1058)))) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-3744 (($ $ $) 122 (|has| |#2| (-799)))) (-3990 (((-3 $ "failed") $ $) 75 (|has| |#2| (-132)))) (-4302 (((-112) $ (-777)) 8)) (-3510 (((-777)) 108 (|has| |#2| (-373)))) (-4395 (((-570) $) 120 (|has| |#2| (-854)))) (-3932 ((|#2| $ (-570) |#2|) 53 (|has| $ (-6 -4450)))) (-1705 (($) 7 T CONST)) (-4380 (((-3 (-570) "failed") $) 68 (-1809 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) 65 (-1809 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) 62 (|has| |#2| (-1109)))) (-3216 (((-570) $) 67 (-1809 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) 64 (-1809 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) 63 (|has| |#2| (-1109)))) (-4196 (((-695 (-570)) (-695 $)) 107 (-1809 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 106 (-1809 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 105 (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) 104 (|has| |#2| (-1058)))) (-2875 (((-3 $ "failed") $) 80 (|has| |#2| (-732)))) (-3446 (($) 111 (|has| |#2| (-373)))) (-1517 ((|#2| $ (-570) |#2|) 54 (|has| $ (-6 -4450)))) (-3820 ((|#2| $ (-570)) 52)) (-3903 (((-112) $) 118 (|has| |#2| (-854)))) (-3627 (((-650 |#2|) $) 31 (|has| $ (-6 -4449)))) (-4346 (((-112) $) 82 (|has| |#2| (-732)))) (-1479 (((-112) $) 119 (|has| |#2| (-854)))) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-3466 (($ $ $) 117 (-2892 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2752 (((-650 |#2|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-2800 (($ $ $) 116 (-2892 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-1502 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#2| |#2|) $) 36)) (-1884 (((-928) $) 110 (|has| |#2| (-373)))) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#2| (-1109)))) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-2268 (($ (-928)) 109 (|has| |#2| (-373)))) (-3577 (((-1129) $) 21 (|has| |#2| (-1109)))) (-3543 ((|#2| $) 43 (|has| (-570) (-856)))) (-2147 (($ $ |#2|) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#2| $ (-570) |#2|) 51) ((|#2| $ (-570)) 50)) (-2609 ((|#2| $ $) 125 (|has| |#2| (-1058)))) (-3843 (($ (-1277 |#2|)) 127)) (-2951 (((-135)) 124 (|has| |#2| (-368)))) (-3547 (($ $) 99 (-1809 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) 97 (-1809 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) 95 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) 94 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) 93 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) 92 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) 85 (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) 84 (|has| |#2| (-1058)))) (-3584 (((-777) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4449))) (((-777) |#2| $) 29 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-1277 |#2|) $) 128) (($ (-570)) 69 (-2892 (-1809 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) 66 (-1809 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) 61 (|has| |#2| (-1109))) (((-868) $) 18 (|has| |#2| (-619 (-868))))) (-3499 (((-777)) 103 (|has| |#2| (-1058)) CONST)) (-2335 (((-112) $ $) 23 (|has| |#2| (-1109)))) (-4371 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4449)))) (-2622 (($ $) 121 (|has| |#2| (-854)))) (-1861 (($) 72 (|has| |#2| (-132)) CONST)) (-1875 (($) 83 (|has| |#2| (-732)) CONST)) (-2942 (($ $) 98 (-1809 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) 96 (-1809 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) 91 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) 90 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) 89 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) 88 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) 87 (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) 86 (|has| |#2| (-1058)))) (-3072 (((-112) $ $) 114 (-2892 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3052 (((-112) $ $) 113 (-2892 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3022 (((-112) $ $) 20 (|has| |#2| (-1109)))) (-3062 (((-112) $ $) 115 (-2892 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3042 (((-112) $ $) 112 (-2892 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3122 (($ $ |#2|) 123 (|has| |#2| (-368)))) (-3111 (($ $ $) 102 (|has| |#2| (-1058))) (($ $) 101 (|has| |#2| (-1058)))) (-3101 (($ $ $) 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)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2374 (*1 *1) (-12 (-4 *1 (-237 *2)) (-4 *2 (-1109)))) (-2374 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-237 *3)))) (-2385 (*1 *1 *2 *1) (-12 (|has| *1 (-6 -4452)) (-4 *1 (-237 *2)) (-4 *2 (-1109)))) (-2385 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4452)) (-4 *1 (-237 *3)) (-4 *3 (-1109)))) (-3353 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4452)) (-4 *1 (-237 *3)) (-4 *3 (-1109)))))
+(-13 (-107 |t#1|) (-152 |t#1|) (-10 -8 (-15 -2374 ($)) (-15 -2374 ($ (-650 |t#1|))) (IF (|has| $ (-6 -4452)) (PROGN (-15 -2385 ($ |t#1| $)) (-15 -2385 ($ (-1 (-112) |t#1|) $)) (-15 -3353 ($ (-1 (-112) |t#1|) $))) |%noBranch|)))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-2260 (((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570)))) 42)))
+(((-238) (-10 -7 (-15 -2260 ((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570))))))) (T -238))
+((-2260 (*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 -2260 ((-2 (|:| |varOrder| (-650 (-1186))) (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed")) (|:| |hom| (-650 (-1277 (-777))))) (-298 (-959 (-570))))))
+((-3513 (((-777)) 56)) (-2179 (((-2 (|:| -2990 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) 53) (((-695 |#3|) (-695 $)) 44) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2517 (((-135)) 62)) (-3550 (($ $ (-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)) (-3802 (((-1277 |#3|) $) NIL) (($ |#3|) NIL) (((-868) $) NIL) (($ (-570)) 12) (($ (-413 (-570))) NIL)) (-2851 (((-777)) 15)) (-3125 (($ $ |#3|) 59)))
+(((-239 |#1| |#2| |#3|) (-10 -8 (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)) (-15 -2851 ((-777))) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -3802 (|#1| |#3|)) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -2179 ((-695 |#3|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -3513 ((-777))) (-15 -3125 (|#1| |#1| |#3|)) (-15 -2517 ((-135))) (-15 -3802 ((-1277 |#3|) |#1|))) (-240 |#2| |#3|) (-777) (-1227)) (T -239))
+((-2517 (*1 *2) (-12 (-14 *4 (-777)) (-4 *5 (-1227)) (-5 *2 (-135)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))) (-3513 (*1 *2) (-12 (-14 *4 *2) (-4 *5 (-1227)) (-5 *2 (-777)) (-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5)))) (-2851 (*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 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)) (-15 -2851 ((-777))) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -3802 (|#1| |#3|)) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -2179 ((-695 |#3|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -3513 ((-777))) (-15 -3125 (|#1| |#1| |#3|)) (-15 -2517 ((-135))) (-15 -3802 ((-1277 |#3|) |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#2| (-1109)))) (-3721 (((-112) $) 73 (|has| |#2| (-132)))) (-2451 (($ (-928)) 126 (|has| |#2| (-1058)))) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-3271 (($ $ $) 122 (|has| |#2| (-799)))) (-1966 (((-3 $ "failed") $ $) 75 (|has| |#2| (-132)))) (-1932 (((-112) $ (-777)) 8)) (-3513 (((-777)) 108 (|has| |#2| (-373)))) (-3408 (((-570) $) 120 (|has| |#2| (-854)))) (-3935 ((|#2| $ (-570) |#2|) 53 (|has| $ (-6 -4453)))) (-3195 (($) 7 T CONST)) (-4383 (((-3 (-570) "failed") $) 68 (-1810 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-3 (-413 (-570)) "failed") $) 65 (-1810 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (((-3 |#2| "failed") $) 62 (|has| |#2| (-1109)))) (-3220 (((-570) $) 67 (-1810 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) 64 (-1810 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) 63 (|has| |#2| (-1109)))) (-2179 (((-695 (-570)) (-695 $)) 107 (-1810 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 106 (-1810 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 105 (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) 104 (|has| |#2| (-1058)))) (-1929 (((-3 $ "failed") $) 80 (|has| |#2| (-732)))) (-3449 (($) 111 (|has| |#2| (-373)))) (-1518 ((|#2| $ (-570) |#2|) 54 (|has| $ (-6 -4453)))) (-3824 ((|#2| $ (-570)) 52)) (-2346 (((-112) $) 118 (|has| |#2| (-854)))) (-3630 (((-650 |#2|) $) 31 (|has| $ (-6 -4452)))) (-4139 (((-112) $) 82 (|has| |#2| (-732)))) (-2788 (((-112) $) 119 (|has| |#2| (-854)))) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-3469 (($ $ $) 117 (-2895 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-2052 (((-650 |#2|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-2472 (($ $ $) 116 (-2895 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-1503 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#2| |#2|) $) 36)) (-2400 (((-928) $) 110 (|has| |#2| (-373)))) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#2| (-1109)))) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-2267 (($ (-928)) 109 (|has| |#2| (-373)))) (-3580 (((-1129) $) 21 (|has| |#2| (-1109)))) (-3546 ((|#2| $) 43 (|has| (-570) (-856)))) (-2061 (($ $ |#2|) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#2| $ (-570) |#2|) 51) ((|#2| $ (-570)) 50)) (-4266 ((|#2| $ $) 125 (|has| |#2| (-1058)))) (-3846 (($ (-1277 |#2|)) 127)) (-2517 (((-135)) 124 (|has| |#2| (-368)))) (-3550 (($ $) 99 (-1810 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) 97 (-1810 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) 95 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) 94 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) 93 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) 92 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) 85 (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) 84 (|has| |#2| (-1058)))) (-3587 (((-777) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4452))) (((-777) |#2| $) 29 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-1277 |#2|) $) 128) (($ (-570)) 69 (-2895 (-1810 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-1058)))) (($ (-413 (-570))) 66 (-1810 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) (($ |#2|) 61 (|has| |#2| (-1109))) (((-868) $) 18 (|has| |#2| (-619 (-868))))) (-2851 (((-777)) 103 (|has| |#2| (-1058)) CONST)) (-3359 (((-112) $ $) 23 (|has| |#2| (-1109)))) (-4379 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4452)))) (-3231 (($ $) 121 (|has| |#2| (-854)))) (-1862 (($) 72 (|has| |#2| (-132)) CONST)) (-1876 (($) 83 (|has| |#2| (-732)) CONST)) (-2945 (($ $) 98 (-1810 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-777)) 96 (-1810 (|has| |#2| (-235)) (|has| |#2| (-1058)))) (($ $ (-1186)) 91 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186))) 90 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1186) (-777)) 89 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-650 (-1186)) (-650 (-777))) 88 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#2| (-1058)))) (($ $ (-1 |#2| |#2|) (-777)) 87 (|has| |#2| (-1058))) (($ $ (-1 |#2| |#2|)) 86 (|has| |#2| (-1058)))) (-3075 (((-112) $ $) 114 (-2895 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3055 (((-112) $ $) 113 (-2895 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3025 (((-112) $ $) 20 (|has| |#2| (-1109)))) (-3065 (((-112) $ $) 115 (-2895 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3045 (((-112) $ $) 112 (-2895 (|has| |#2| (-854)) (|has| |#2| (-799))))) (-3125 (($ $ |#2|) 123 (|has| |#2| (-368)))) (-3114 (($ $ $) 102 (|has| |#2| (-1058))) (($ $) 101 (|has| |#2| (-1058)))) (-3104 (($ $ $) 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)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-240 |#1| |#2|) (-141) (-777) (-1227)) (T -240))
-((-3843 (*1 *1 *2) (-12 (-5 *2 (-1277 *4)) (-4 *4 (-1227)) (-4 *1 (-240 *3 *4)))) (-2797 (*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-240 *3 *4)) (-4 *4 (-1058)) (-4 *4 (-1227)))) (-2609 (*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 -3843 ($ (-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 -2797 ($ (-928))) (-15 -2609 (|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) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-23) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132))) ((-25) -2892 (|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) -2892 (|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|) -2892 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-111 $ $) |has| |#2| (-174)) ((-132) -2892 (|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)) -2892 (|has| |#2| (-1058)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-622 |#2|) -2892 (|has| |#2| (-1109)) (|has| |#2| (-174))) ((-619 (-868)) -2892 (|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)) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-652 |#2|) -2892 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-652 $) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-654 |#2|) -2892 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-654 $) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-646 |#2|) -2892 (|has| |#2| (-368)) (|has| |#2| (-174))) ((-645 (-570)) -12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058))) ((-645 |#2|) |has| |#2| (-1058)) ((-723 |#2|) -2892 (|has| |#2| (-368)) (|has| |#2| (-174))) ((-732) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-732)) (|has| |#2| (-174))) ((-797) |has| |#2| (-854)) ((-798) -2892 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-799) |has| |#2| (-799)) ((-800) -2892 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-801) -2892 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-854) |has| |#2| (-854)) ((-856) -2892 (|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|) -2892 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-1060 $) |has| |#2| (-174)) ((-1065 |#2|) -2892 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-1065 $) |has| |#2| (-174)) ((-1058) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-1067) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-1121) -2892 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-732)) (|has| |#2| (-174))) ((-1109) -2892 (|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)))
-((-3482 (((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|) 21)) (-3624 ((|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|) 23)) (-1356 (((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|)) 18)))
-(((-241 |#1| |#2| |#3|) (-10 -7 (-15 -3482 ((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -3624 (|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -1356 ((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|)))) (-777) (-1227) (-1227)) (T -241))
-((-1356 (*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)))) (-3624 (*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)))) (-3482 (*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 -3482 ((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -3624 (|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -1356 ((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|))))
-((-2558 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3467 (((-112) $) NIL (|has| |#2| (-132)))) (-2797 (($ (-928)) 63 (|has| |#2| (-1058)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3744 (($ $ $) 68 (|has| |#2| (-799)))) (-3990 (((-3 $ "failed") $ $) 55 (|has| |#2| (-132)))) (-4302 (((-112) $ (-777)) 17)) (-3510 (((-777)) NIL (|has| |#2| (-373)))) (-4395 (((-570) $) NIL (|has| |#2| (-854)))) (-3932 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4380 (((-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") $) 31 (|has| |#2| (-1109)))) (-3216 (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) 29 (|has| |#2| (-1109)))) (-4196 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-2875 (((-3 $ "failed") $) 59 (|has| |#2| (-732)))) (-3446 (($) NIL (|has| |#2| (-373)))) (-1517 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ (-570)) 57)) (-3903 (((-112) $) NIL (|has| |#2| (-854)))) (-3627 (((-650 |#2|) $) 15 (|has| $ (-6 -4449)))) (-4346 (((-112) $) NIL (|has| |#2| (-732)))) (-1479 (((-112) $) NIL (|has| |#2| (-854)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) 20 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2752 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 (((-570) $) 56 (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-1502 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#2| |#2|) $) 45)) (-1884 (((-928) $) NIL (|has| |#2| (-373)))) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#2| (-1109)))) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-2268 (($ (-928)) NIL (|has| |#2| (-373)))) (-3577 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3543 ((|#2| $) NIL (|has| (-570) (-856)))) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) 21)) (-2609 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3843 (($ (-1277 |#2|)) 18)) (-2951 (((-135)) NIL (|has| |#2| (-368)))) (-3547 (($ $) 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)))) (-3584 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-1277 |#2|) $) 10) (($ (-570)) NIL (-2892 (-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))))) (-3499 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-2335 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4371 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2622 (($ $) NIL (|has| |#2| (-854)))) (-1861 (($) 37 (|has| |#2| (-132)) CONST)) (-1875 (($) 42 (|has| |#2| (-732)) CONST)) (-2942 (($ $) 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)))) (-3072 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3052 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3022 (((-112) $ $) 28 (|has| |#2| (-1109)))) (-3062 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3042 (((-112) $ $) 66 (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-3101 (($ $ $) 35 (|has| |#2| (-25)))) (** (($ $ (-777)) NIL (|has| |#2| (-732))) (($ $ (-928)) NIL (|has| |#2| (-732)))) (* (($ (-570) $) NIL (|has| |#2| (-1058))) (($ $ $) 48 (|has| |#2| (-732))) (($ $ |#2|) 46 (|has| |#2| (-732))) (($ |#2| $) 47 (|has| |#2| (-732))) (($ (-777) $) NIL (|has| |#2| (-132))) (($ (-928) $) NIL (|has| |#2| (-25)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-3846 (*1 *1 *2) (-12 (-5 *2 (-1277 *4)) (-4 *4 (-1227)) (-4 *1 (-240 *3 *4)))) (-2451 (*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-240 *3 *4)) (-4 *4 (-1058)) (-4 *4 (-1227)))) (-4266 (*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 -4452) (-15 -3846 ($ (-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 -2451 ($ (-928))) (-15 -4266 (|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 -4449)) (-6 -4449) |%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) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-23) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-799)) (|has| |#2| (-368)) (|has| |#2| (-174)) (|has| |#2| (-132))) ((-25) -2895 (|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) -2895 (|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|) -2895 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-111 $ $) |has| |#2| (-174)) ((-132) -2895 (|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)) -2895 (|has| |#2| (-1058)) (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109))) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-622 |#2|) -2895 (|has| |#2| (-1109)) (|has| |#2| (-174))) ((-619 (-868)) -2895 (|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)) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-652 |#2|) -2895 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-652 $) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-654 |#2|) -2895 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-654 $) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-646 |#2|) -2895 (|has| |#2| (-368)) (|has| |#2| (-174))) ((-645 (-570)) -12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058))) ((-645 |#2|) |has| |#2| (-1058)) ((-723 |#2|) -2895 (|has| |#2| (-368)) (|has| |#2| (-174))) ((-732) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-732)) (|has| |#2| (-174))) ((-797) |has| |#2| (-854)) ((-798) -2895 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-799) |has| |#2| (-799)) ((-800) -2895 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-801) -2895 (|has| |#2| (-854)) (|has| |#2| (-799))) ((-854) |has| |#2| (-854)) ((-856) -2895 (|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|) -2895 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-1060 $) |has| |#2| (-174)) ((-1065 |#2|) -2895 (|has| |#2| (-1058)) (|has| |#2| (-368)) (|has| |#2| (-174))) ((-1065 $) |has| |#2| (-174)) ((-1058) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-1067) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-174))) ((-1121) -2895 (|has| |#2| (-1058)) (|has| |#2| (-854)) (|has| |#2| (-732)) (|has| |#2| (-174))) ((-1109) -2895 (|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)))
+((-2677 (((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|) 21)) (-3627 ((|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|) 23)) (-1357 (((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|)) 18)))
+(((-241 |#1| |#2| |#3|) (-10 -7 (-15 -2677 ((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -3627 (|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -1357 ((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|)))) (-777) (-1227) (-1227)) (T -241))
+((-1357 (*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)))) (-3627 (*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)))) (-2677 (*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 -2677 ((-242 |#1| |#3|) (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -3627 (|#3| (-1 |#3| |#2| |#3|) (-242 |#1| |#2|) |#3|)) (-15 -1357 ((-242 |#1| |#3|) (-1 |#3| |#2|) (-242 |#1| |#2|))))
+((-2560 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3721 (((-112) $) NIL (|has| |#2| (-132)))) (-2451 (($ (-928)) 63 (|has| |#2| (-1058)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-3271 (($ $ $) 68 (|has| |#2| (-799)))) (-1966 (((-3 $ "failed") $ $) 55 (|has| |#2| (-132)))) (-1932 (((-112) $ (-777)) 17)) (-3513 (((-777)) NIL (|has| |#2| (-373)))) (-3408 (((-570) $) NIL (|has| |#2| (-854)))) (-3935 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4383 (((-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") $) 31 (|has| |#2| (-1109)))) (-3220 (((-570) $) NIL (-12 (|has| |#2| (-1047 (-570))) (|has| |#2| (-1109)))) (((-413 (-570)) $) NIL (-12 (|has| |#2| (-1047 (-413 (-570)))) (|has| |#2| (-1109)))) ((|#2| $) 29 (|has| |#2| (-1109)))) (-2179 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-1929 (((-3 $ "failed") $) 59 (|has| |#2| (-732)))) (-3449 (($) NIL (|has| |#2| (-373)))) (-1518 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ (-570)) 57)) (-2346 (((-112) $) NIL (|has| |#2| (-854)))) (-3630 (((-650 |#2|) $) 15 (|has| $ (-6 -4452)))) (-4139 (((-112) $) NIL (|has| |#2| (-732)))) (-2788 (((-112) $) NIL (|has| |#2| (-854)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) 20 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2052 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 (((-570) $) 56 (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-1503 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#2| |#2|) $) 45)) (-2400 (((-928) $) NIL (|has| |#2| (-373)))) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-2267 (($ (-928)) NIL (|has| |#2| (-373)))) (-3580 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3546 ((|#2| $) NIL (|has| (-570) (-856)))) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#2|) $) 24 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) 21)) (-4266 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3846 (($ (-1277 |#2|)) 18)) (-2517 (((-135)) NIL (|has| |#2| (-368)))) (-3550 (($ $) 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)))) (-3587 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-1277 |#2|) $) 10) (($ (-570)) NIL (-2895 (-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))))) (-2851 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-3359 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4379 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3231 (($ $) NIL (|has| |#2| (-854)))) (-1862 (($) 37 (|has| |#2| (-132)) CONST)) (-1876 (($) 42 (|has| |#2| (-732)) CONST)) (-2945 (($ $) 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)))) (-3075 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3055 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3025 (((-112) $ $) 28 (|has| |#2| (-1109)))) (-3065 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3045 (((-112) $ $) 66 (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-3104 (($ $ $) 35 (|has| |#2| (-25)))) (** (($ $ (-777)) NIL (|has| |#2| (-732))) (($ $ (-928)) NIL (|has| |#2| (-732)))) (* (($ (-570) $) NIL (|has| |#2| (-1058))) (($ $ $) 48 (|has| |#2| (-732))) (($ $ |#2|) 46 (|has| |#2| (-732))) (($ |#2| $) 47 (|has| |#2| (-732))) (($ (-777) $) NIL (|has| |#2| (-132))) (($ (-928) $) NIL (|has| |#2| (-25)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-242 |#1| |#2|) (-240 |#1| |#2|) (-777) (-1227)) (T -242))
NIL
(-240 |#1| |#2|)
-((-2304 (((-570) (-650 (-1168))) 36) (((-570) (-1168)) 29)) (-1706 (((-1282) (-650 (-1168))) 40) (((-1282) (-1168)) 39)) (-2602 (((-1168)) 16)) (-4237 (((-1168) (-570) (-1168)) 23)) (-2288 (((-650 (-1168)) (-650 (-1168)) (-570) (-1168)) 37) (((-1168) (-1168) (-570) (-1168)) 35)) (-4149 (((-650 (-1168)) (-650 (-1168))) 15) (((-650 (-1168)) (-1168)) 11)))
-(((-243) (-10 -7 (-15 -4149 ((-650 (-1168)) (-1168))) (-15 -4149 ((-650 (-1168)) (-650 (-1168)))) (-15 -2602 ((-1168))) (-15 -4237 ((-1168) (-570) (-1168))) (-15 -2288 ((-1168) (-1168) (-570) (-1168))) (-15 -2288 ((-650 (-1168)) (-650 (-1168)) (-570) (-1168))) (-15 -1706 ((-1282) (-1168))) (-15 -1706 ((-1282) (-650 (-1168)))) (-15 -2304 ((-570) (-1168))) (-15 -2304 ((-570) (-650 (-1168)))))) (T -243))
-((-2304 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-570)) (-5 *1 (-243)))) (-2304 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-243)))) (-1706 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1282)) (-5 *1 (-243)))) (-1706 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-243)))) (-2288 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-650 (-1168))) (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *1 (-243)))) (-2288 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))) (-4237 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))) (-2602 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-243)))) (-4149 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)))) (-4149 (*1 *2 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)) (-5 *3 (-1168)))))
-(-10 -7 (-15 -4149 ((-650 (-1168)) (-1168))) (-15 -4149 ((-650 (-1168)) (-650 (-1168)))) (-15 -2602 ((-1168))) (-15 -4237 ((-1168) (-570) (-1168))) (-15 -2288 ((-1168) (-1168) (-570) (-1168))) (-15 -2288 ((-650 (-1168)) (-650 (-1168)) (-570) (-1168))) (-15 -1706 ((-1282) (-1168))) (-15 -1706 ((-1282) (-650 (-1168)))) (-15 -2304 ((-570) (-1168))) (-15 -2304 ((-570) (-650 (-1168)))))
+((-4228 (((-570) (-650 (-1168))) 36) (((-570) (-1168)) 29)) (-1707 (((-1282) (-650 (-1168))) 40) (((-1282) (-1168)) 39)) (-4215 (((-1168)) 16)) (-2561 (((-1168) (-570) (-1168)) 23)) (-2289 (((-650 (-1168)) (-650 (-1168)) (-570) (-1168)) 37) (((-1168) (-1168) (-570) (-1168)) 35)) (-4152 (((-650 (-1168)) (-650 (-1168))) 15) (((-650 (-1168)) (-1168)) 11)))
+(((-243) (-10 -7 (-15 -4152 ((-650 (-1168)) (-1168))) (-15 -4152 ((-650 (-1168)) (-650 (-1168)))) (-15 -4215 ((-1168))) (-15 -2561 ((-1168) (-570) (-1168))) (-15 -2289 ((-1168) (-1168) (-570) (-1168))) (-15 -2289 ((-650 (-1168)) (-650 (-1168)) (-570) (-1168))) (-15 -1707 ((-1282) (-1168))) (-15 -1707 ((-1282) (-650 (-1168)))) (-15 -4228 ((-570) (-1168))) (-15 -4228 ((-570) (-650 (-1168)))))) (T -243))
+((-4228 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-570)) (-5 *1 (-243)))) (-4228 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-243)))) (-1707 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1282)) (-5 *1 (-243)))) (-1707 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-243)))) (-2289 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-650 (-1168))) (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *1 (-243)))) (-2289 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))) (-2561 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))) (-4215 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-243)))) (-4152 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)))) (-4152 (*1 *2 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-243)) (-5 *3 (-1168)))))
+(-10 -7 (-15 -4152 ((-650 (-1168)) (-1168))) (-15 -4152 ((-650 (-1168)) (-650 (-1168)))) (-15 -4215 ((-1168))) (-15 -2561 ((-1168) (-570) (-1168))) (-15 -2289 ((-1168) (-1168) (-570) (-1168))) (-15 -2289 ((-650 (-1168)) (-650 (-1168)) (-570) (-1168))) (-15 -1707 ((-1282) (-1168))) (-15 -1707 ((-1282) (-650 (-1168)))) (-15 -4228 ((-570) (-1168))) (-15 -4228 ((-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|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 47)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 51)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 48)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ (-413 (-570)) $) 50) (($ $ (-413 (-570))) 49)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 47)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 51)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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)))) (-1877 (*1 *1 *1) (-4 *1 (-245))))
-(-13 (-294) (-38 (-413 (-570))) (-10 -8 (-15 ** ($ $ (-570))) (-15 -1877 ($ $))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-245)) (-5 *2 (-570)))) (-1878 (*1 *1 *1) (-4 *1 (-245))))
+(-13 (-294) (-38 (-413 (-570))) (-10 -8 (-15 ** ($ $ (-570))) (-15 -1878 ($ $))))
(((-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))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-1602 (($ $) 58)) (-4302 (((-112) $ (-777)) 8)) (-2988 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-1662 (($ $ $) 54 (|has| $ (-6 -4450)))) (-4411 (($ $ $) 53 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-1705 (($) 7 T CONST)) (-1428 (($ $) 57)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 51)) (-2439 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2158 (($ $) 56)) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-2403 (((-650 |#1|) $) 46)) (-2606 (((-112) $) 50)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1769 ((|#1| $) 60)) (-1311 (($ $) 59)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ "value") 48)) (-2738 (((-570) $ $) 45)) (-3817 (((-112) $) 47)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3276 (($ $ $) 55 (|has| $ (-6 -4450)))) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 52)) (-3746 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-1603 (($ $) 58)) (-1932 (((-112) $ (-777)) 8)) (-1647 ((|#1| $ |#1|) 40 (|has| $ (-6 -4453)))) (-3964 (($ $ $) 54 (|has| $ (-6 -4453)))) (-3534 (($ $ $) 53 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 42 (|has| $ (-6 -4453)))) (-3195 (($) 7 T CONST)) (-1429 (($ $) 57)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 51)) (-2045 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2159 (($ $) 56)) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-2404 (((-650 |#1|) $) 46)) (-4244 (((-112) $) 50)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1770 ((|#1| $) 60)) (-1586 (($ $) 59)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ "value") 48)) (-3108 (((-570) $ $) 45)) (-2759 (((-112) $) 47)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1319 (($ $ $) 55 (|has| $ (-6 -4453)))) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 52)) (-3290 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-246 |#1|) (-141) (-1227)) (T -246))
-((-1769 (*1 *2 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1311 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1602 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1428 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-2158 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-3276 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1662 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-4411 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
-(-13 (-1019 |t#1|) (-10 -8 (-15 -1769 (|t#1| $)) (-15 -1311 ($ $)) (-15 -1602 ($ $)) (-15 -1428 ($ $)) (-15 -2158 ($ $)) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3276 ($ $ $)) (-15 -1662 ($ $ $)) (-15 -4411 ($ $ $))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-2698 ((|#1| $) NIL)) (-1602 (($ $) NIL)) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4004 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-3393 (($ $) 10 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-2988 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3986 (($ $ $) NIL (|has| $ (-6 -4450)))) (-2363 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-2869 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3932 ((|#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)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3753 (($ (-1 (-112) |#1|) $) NIL)) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2686 ((|#1| $) NIL)) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3555 (($ $) NIL) (($ $ (-777)) NIL)) (-3110 (($ $) NIL (|has| |#1| (-1109)))) (-3579 (($ $) 7 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3249 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1741 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3624 ((|#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))))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-3414 (((-112) $) NIL)) (-4027 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4291 (($ (-777) |#1|) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2168 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2024 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3420 (($ |#1|) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1769 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-1385 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4290 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3607 (((-112) $) NIL)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#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)) (-2738 (((-570) $ $) NIL)) (-3459 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4326 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3320 (($ (-650 |#1|)) 22)) (-3817 (((-112) $) NIL)) (-4366 (($ $) NIL)) (-4063 (($ $) NIL (|has| $ (-6 -4450)))) (-2264 (((-777) $) NIL)) (-1839 (($ $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) NIL)) (-3276 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2584 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3799 (($ (-650 |#1|)) 17) (((-650 |#1|) $) 18) (((-868) $) 21 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2569 (((-777) $) 14 (|has| $ (-6 -4449)))))
-(((-247 |#1|) (-13 (-672 |#1|) (-496 (-650 |#1|)) (-10 -8 (-15 -3320 ($ (-650 |#1|))) (-15 -1941 ($ $ "unique")) (-15 -1941 ($ $ "sort")) (-15 -1941 ((-777) $ "count")))) (-856)) (T -247))
-((-3320 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-247 *3)))) (-1941 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-247 *3)) (-4 *3 (-856)))) (-1941 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-247 *3)) (-4 *3 (-856)))) (-1941 (*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 -3320 ($ (-650 |#1|))) (-15 -1941 ($ $ "unique")) (-15 -1941 ($ $ "sort")) (-15 -1941 ((-777) $ "count"))))
-((-3298 (((-3 (-777) "failed") |#1| |#1| (-777)) 40)))
-(((-248 |#1|) (-10 -7 (-15 -3298 ((-3 (-777) "failed") |#1| |#1| (-777)))) (-13 (-732) (-373) (-10 -7 (-15 ** (|#1| |#1| (-570)))))) (T -248))
-((-3298 (*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 -3298 ((-3 (-777) "failed") |#1| |#1| (-777))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-870 |#1|)) $) NIL)) (-3775 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3074 (($ $) NIL (|has| |#2| (-562)))) (-3475 (((-112) $) NIL (|has| |#2| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4364 (($ $) NIL (|has| |#2| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-4322 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3210 (($ $ (-650 (-570))) NIL)) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#2| (-916)))) (-3720 (($ $ |#2| (-242 (-2569 |#1|) (-777)) $) NIL)) (-2842 (((-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)))))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-1742 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#2| (-242 (-2569 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-870 |#1|)) NIL)) (-2575 (((-242 (-2569 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1918 (($ (-1 (-242 (-2569 |#1|) (-777)) (-242 (-2569 |#1|) (-777))) $) NIL)) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-3362 (((-3 (-870 |#1|) "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#2| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1988 (((-1168) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3357 (-777))) "failed") $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#2| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2547 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1770 (($ $ (-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)) (-3570 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3547 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2130 (((-242 (-2569 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1425 (((-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)))))) (-1848 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ (-413 (-570))) NIL (-2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ (-242 (-2569 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 (-2569 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -3210 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058)) (T -249))
-((-3210 (*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 (-2569 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -3210 ($ $ (-650 (-570))))))
-((-2558 (((-112) $ $) NIL)) (-1635 (((-1282) $) 17)) (-3701 (((-185 (-251)) $) 11)) (-1996 (($ (-185 (-251))) 12)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1609 (((-251) $) 7)) (-3799 (((-868) $) 9)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 15)))
-(((-250) (-13 (-1109) (-10 -8 (-15 -1609 ((-251) $)) (-15 -3701 ((-185 (-251)) $)) (-15 -1996 ($ (-185 (-251)))) (-15 -1635 ((-1282) $))))) (T -250))
-((-1609 (*1 *2 *1) (-12 (-5 *2 (-251)) (-5 *1 (-250)))) (-3701 (*1 *2 *1) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))) (-1996 (*1 *1 *2) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))) (-1635 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-250)))))
-(-13 (-1109) (-10 -8 (-15 -1609 ((-251) $)) (-15 -3701 ((-185 (-251)) $)) (-15 -1996 ($ (-185 (-251)))) (-15 -1635 ((-1282) $))))
-((-2558 (((-112) $ $) NIL)) (-1817 (((-650 (-871)) $) NIL)) (-3600 (((-512) $) NIL)) (-1988 (((-1168) $) NIL)) (-3887 (((-188) $) NIL)) (-3190 (((-112) $ (-512)) NIL)) (-3577 (((-1129) $) NIL)) (-1715 (((-337) $) 7)) (-1530 (((-650 (-112)) $) NIL)) (-3799 (((-868) $) NIL) (((-189) $) 8)) (-2335 (((-112) $ $) NIL)) (-1835 (((-55) $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-251) (-13 (-187) (-619 (-189)) (-10 -8 (-15 -1715 ((-337) $))))) (T -251))
-((-1715 (*1 *2 *1) (-12 (-5 *2 (-337)) (-5 *1 (-251)))))
-(-13 (-187) (-619 (-189)) (-10 -8 (-15 -1715 ((-337) $))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1941 (((-1191) $ (-777)) 13)) (-3799 (((-868) $) 20)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 16)) (-2569 (((-777) $) 9)))
-(((-252) (-13 (-1109) (-10 -8 (-15 -2569 ((-777) $)) (-15 -1941 ((-1191) $ (-777)))))) (T -252))
-((-2569 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-252)))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1191)) (-5 *1 (-252)))))
-(-13 (-1109) (-10 -8 (-15 -2569 ((-777) $)) (-15 -1941 ((-1191) $ (-777)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2797 (($ (-928)) NIL (|has| |#4| (-1058)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3744 (($ $ $) NIL (|has| |#4| (-799)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-3510 (((-777)) NIL (|has| |#4| (-373)))) (-4395 (((-570) $) NIL (|has| |#4| (-854)))) (-3932 ((|#4| $ (-570) |#4|) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 ((|#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))))) (-4196 (((-2 (|:| -2415 (-695 |#4|)) (|:| |vec| (-1277 |#4|))) (-695 $) (-1277 $)) NIL (|has| |#4| (-1058))) (((-695 |#4|) (-695 $)) NIL (|has| |#4| (-1058))) (((-2 (|:| -2415 (-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))))) (-2875 (((-3 $ "failed") $) NIL (-2892 (-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)))))) (-3446 (($) NIL (|has| |#4| (-373)))) (-1517 ((|#4| $ (-570) |#4|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#4| $ (-570)) NIL)) (-3903 (((-112) $) NIL (|has| |#4| (-854)))) (-3627 (((-650 |#4|) $) NIL (|has| $ (-6 -4449)))) (-4346 (((-112) $) NIL (-2892 (-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)))))) (-1479 (((-112) $) NIL (|has| |#4| (-854)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (-2892 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2752 (((-650 |#4|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (-2892 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-1502 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) NIL)) (-1884 (((-928) $) NIL (|has| |#4| (-373)))) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-2268 (($ (-928)) NIL (|has| |#4| (-373)))) (-3577 (((-1129) $) NIL)) (-3543 ((|#4| $) NIL (|has| (-570) (-856)))) (-2147 (($ $ |#4|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-3700 (((-650 |#4|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#4| $ (-570) |#4|) NIL) ((|#4| $ (-570)) 12)) (-2609 ((|#4| $ $) NIL (|has| |#4| (-1058)))) (-3843 (($ (-1277 |#4|)) NIL)) (-2951 (((-135)) NIL (|has| |#4| (-368)))) (-3547 (($ $ (-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))))) (-3584 (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-1277 |#4|) $) NIL) (((-868) $) NIL) (($ |#4|) NIL (|has| |#4| (-1109))) (($ (-570)) NIL (-2892 (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109))) (|has| |#4| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))) (-3499 (((-777)) NIL (|has| |#4| (-1058)) CONST)) (-2335 (((-112) $ $) NIL)) (-4371 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-2622 (($ $) NIL (|has| |#4| (-854)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL (-2892 (-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)) (-2942 (($ $ (-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))))) (-3072 (((-112) $ $) NIL (-2892 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3052 (((-112) $ $) NIL (-2892 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (-2892 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3042 (((-112) $ $) NIL (-2892 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3122 (($ $ |#4|) NIL (|has| |#4| (-368)))) (-3111 (($ $ $) NIL) (($ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-777)) NIL (-2892 (-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 (-2892 (-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| $) 14) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-732))) (($ |#4| $) NIL (|has| |#4| (-732))) (($ $ $) NIL (-2892 (-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)))))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-1770 (*1 *2 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1586 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1603 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1429 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-2159 (*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-1319 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-3964 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))) (-3534 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(-13 (-1019 |t#1|) (-10 -8 (-15 -1770 (|t#1| $)) (-15 -1586 ($ $)) (-15 -1603 ($ $)) (-15 -1429 ($ $)) (-15 -2159 ($ $)) (IF (|has| $ (-6 -4453)) (PROGN (-15 -1319 ($ $ $)) (-15 -3964 ($ $ $)) (-15 -3534 ($ $ $))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-2701 ((|#1| $) NIL)) (-1603 (($ $) NIL)) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3936 (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-3396 (($ $) 10 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1647 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1917 (($ $ $) NIL (|has| $ (-6 -4453)))) (-3671 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1854 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4453))) (($ $ "rest" $) NIL (|has| $ (-6 -4453))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3353 (($ (-1 (-112) |#1|) $) NIL)) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-2688 ((|#1| $) NIL)) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3558 (($ $) NIL) (($ $ (-777)) NIL)) (-3476 (($ $) NIL (|has| |#1| (-1109)))) (-3582 (($ $) 7 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2385 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1742 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-3242 (((-112) $) NIL)) (-4029 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4294 (($ (-777) |#1|) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2270 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3183 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3423 (($ |#1|) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1770 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-3502 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4293 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-2568 (((-112) $) NIL)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#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)) (-3108 (((-570) $ $) NIL)) (-3651 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4330 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3323 (($ (-650 |#1|)) 22)) (-2759 (((-112) $) NIL)) (-4332 (($ $) NIL)) (-3305 (($ $) NIL (|has| $ (-6 -4453)))) (-3853 (((-777) $) NIL)) (-1991 (($ $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) NIL)) (-1319 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2585 (($ $ $) NIL) (($ |#1| $) NIL) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3802 (($ (-650 |#1|)) 17) (((-650 |#1|) $) 18) (((-868) $) 21 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2570 (((-777) $) 14 (|has| $ (-6 -4452)))))
+(((-247 |#1|) (-13 (-672 |#1|) (-496 (-650 |#1|)) (-10 -8 (-15 -3323 ($ (-650 |#1|))) (-15 -1942 ($ $ "unique")) (-15 -1942 ($ $ "sort")) (-15 -1942 ((-777) $ "count")))) (-856)) (T -247))
+((-3323 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-247 *3)))) (-1942 (*1 *1 *1 *2) (-12 (-5 *2 "unique") (-5 *1 (-247 *3)) (-4 *3 (-856)))) (-1942 (*1 *1 *1 *2) (-12 (-5 *2 "sort") (-5 *1 (-247 *3)) (-4 *3 (-856)))) (-1942 (*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 -3323 ($ (-650 |#1|))) (-15 -1942 ($ $ "unique")) (-15 -1942 ($ $ "sort")) (-15 -1942 ((-777) $ "count"))))
+((-1580 (((-3 (-777) "failed") |#1| |#1| (-777)) 40)))
+(((-248 |#1|) (-10 -7 (-15 -1580 ((-3 (-777) "failed") |#1| |#1| (-777)))) (-13 (-732) (-373) (-10 -7 (-15 ** (|#1| |#1| (-570)))))) (T -248))
+((-1580 (*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 -1580 ((-3 (-777) "failed") |#1| |#1| (-777))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-870 |#1|)) $) NIL)) (-3778 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-4306 (($ $) NIL (|has| |#2| (-562)))) (-2617 (((-112) $) NIL (|has| |#2| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4310 (($ $) NIL (|has| |#2| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#2| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-3930 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-2007 (($ $ (-650 (-570))) NIL)) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#2| (-916)))) (-4243 (($ $ |#2| (-242 (-2570 |#1|) (-777)) $) NIL)) (-1557 (((-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)))))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-1744 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#2| (-242 (-2570 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-870 |#1|)) NIL)) (-3970 (((-242 (-2570 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1414 (($ (-1 (-242 (-2570 |#1|) (-777)) (-242 (-2570 |#1|) (-777))) $) NIL)) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-4023 (((-3 (-870 |#1|) "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#2| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-3989 (((-1168) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3994 (-777))) "failed") $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#2| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2548 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1771 (($ $ (-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)) (-2265 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3550 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3079 (((-242 (-2570 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1426 (((-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)))))) (-2077 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ (-413 (-570))) NIL (-2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ (-242 (-2570 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 (-2570 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -2007 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058)) (T -249))
+((-2007 (*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 (-2570 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -2007 ($ $ (-650 (-570))))))
+((-2560 (((-112) $ $) NIL)) (-1636 (((-1282) $) 17)) (-4057 (((-185 (-251)) $) 11)) (-4064 (($ (-185 (-251))) 12)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1610 (((-251) $) 7)) (-3802 (((-868) $) 9)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 15)))
+(((-250) (-13 (-1109) (-10 -8 (-15 -1610 ((-251) $)) (-15 -4057 ((-185 (-251)) $)) (-15 -4064 ($ (-185 (-251)))) (-15 -1636 ((-1282) $))))) (T -250))
+((-1610 (*1 *2 *1) (-12 (-5 *2 (-251)) (-5 *1 (-250)))) (-4057 (*1 *2 *1) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))) (-4064 (*1 *1 *2) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))) (-1636 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-250)))))
+(-13 (-1109) (-10 -8 (-15 -1610 ((-251) $)) (-15 -4057 ((-185 (-251)) $)) (-15 -4064 ($ (-185 (-251)))) (-15 -1636 ((-1282) $))))
+((-2560 (((-112) $ $) NIL)) (-1818 (((-650 (-871)) $) NIL)) (-3602 (((-512) $) NIL)) (-3989 (((-1168) $) NIL)) (-3890 (((-188) $) NIL)) (-3006 (((-112) $ (-512)) NIL)) (-3580 (((-1129) $) NIL)) (-3264 (((-337) $) 7)) (-2058 (((-650 (-112)) $) NIL)) (-3802 (((-868) $) NIL) (((-189) $) 8)) (-3359 (((-112) $ $) NIL)) (-1968 (((-55) $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-251) (-13 (-187) (-619 (-189)) (-10 -8 (-15 -3264 ((-337) $))))) (T -251))
+((-3264 (*1 *2 *1) (-12 (-5 *2 (-337)) (-5 *1 (-251)))))
+(-13 (-187) (-619 (-189)) (-10 -8 (-15 -3264 ((-337) $))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1942 (((-1191) $ (-777)) 13)) (-3802 (((-868) $) 20)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 16)) (-2570 (((-777) $) 9)))
+(((-252) (-13 (-1109) (-10 -8 (-15 -2570 ((-777) $)) (-15 -1942 ((-1191) $ (-777)))))) (T -252))
+((-2570 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-252)))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1191)) (-5 *1 (-252)))))
+(-13 (-1109) (-10 -8 (-15 -2570 ((-777) $)) (-15 -1942 ((-1191) $ (-777)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-2451 (($ (-928)) NIL (|has| |#4| (-1058)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-3271 (($ $ $) NIL (|has| |#4| (-799)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3513 (((-777)) NIL (|has| |#4| (-373)))) (-3408 (((-570) $) NIL (|has| |#4| (-854)))) (-3935 ((|#4| $ (-570) |#4|) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 ((|#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))))) (-2179 (((-2 (|:| -2990 (-695 |#4|)) (|:| |vec| (-1277 |#4|))) (-695 $) (-1277 $)) NIL (|has| |#4| (-1058))) (((-695 |#4|) (-695 $)) NIL (|has| |#4| (-1058))) (((-2 (|:| -2990 (-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))))) (-1929 (((-3 $ "failed") $) NIL (-2895 (-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)))))) (-3449 (($) NIL (|has| |#4| (-373)))) (-1518 ((|#4| $ (-570) |#4|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#4| $ (-570)) NIL)) (-2346 (((-112) $) NIL (|has| |#4| (-854)))) (-3630 (((-650 |#4|) $) NIL (|has| $ (-6 -4452)))) (-4139 (((-112) $) NIL (-2895 (-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)))))) (-2788 (((-112) $) NIL (|has| |#4| (-854)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (-2895 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-2052 (((-650 |#4|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (-2895 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-1503 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) NIL)) (-2400 (((-928) $) NIL (|has| |#4| (-373)))) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-2267 (($ (-928)) NIL (|has| |#4| (-373)))) (-3580 (((-1129) $) NIL)) (-3546 ((|#4| $) NIL (|has| (-570) (-856)))) (-2061 (($ $ |#4|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-4049 (((-650 |#4|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#4| $ (-570) |#4|) NIL) ((|#4| $ (-570)) 12)) (-4266 ((|#4| $ $) NIL (|has| |#4| (-1058)))) (-3846 (($ (-1277 |#4|)) NIL)) (-2517 (((-135)) NIL (|has| |#4| (-368)))) (-3550 (($ $ (-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))))) (-3587 (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452))) (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-1277 |#4|) $) NIL) (((-868) $) NIL) (($ |#4|) NIL (|has| |#4| (-1109))) (($ (-570)) NIL (-2895 (-12 (|has| |#4| (-1047 (-570))) (|has| |#4| (-1109))) (|has| |#4| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#4| (-1047 (-413 (-570)))) (|has| |#4| (-1109))))) (-2851 (((-777)) NIL (|has| |#4| (-1058)) CONST)) (-3359 (((-112) $ $) NIL)) (-4379 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3231 (($ $) NIL (|has| |#4| (-854)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL (-2895 (-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)) (-2945 (($ $ (-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))))) (-3075 (((-112) $ $) NIL (-2895 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3055 (((-112) $ $) NIL (-2895 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (-2895 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3045 (((-112) $ $) NIL (-2895 (|has| |#4| (-799)) (|has| |#4| (-854))))) (-3125 (($ $ |#4|) NIL (|has| |#4| (-368)))) (-3114 (($ $ $) NIL) (($ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-777)) NIL (-2895 (-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 (-2895 (-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| $) 14) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL) (($ |#3| $) 18) (($ $ |#4|) NIL (|has| |#4| (-732))) (($ |#4| $) NIL (|has| |#4| (-732))) (($ $ $) NIL (-2895 (-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)))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-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|))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2797 (($ (-928)) NIL (|has| |#3| (-1058)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3744 (($ $ $) NIL (|has| |#3| (-799)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-3510 (((-777)) NIL (|has| |#3| (-373)))) (-4395 (((-570) $) NIL (|has| |#3| (-854)))) (-3932 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 ((|#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))))) (-4196 (((-2 (|:| -2415 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) NIL (|has| |#3| (-1058))) (((-695 |#3|) (-695 $)) NIL (|has| |#3| (-1058))) (((-2 (|:| -2415 (-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))))) (-2875 (((-3 $ "failed") $) NIL (-2892 (-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)))))) (-3446 (($) NIL (|has| |#3| (-373)))) (-1517 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#3| $ (-570)) NIL)) (-3903 (((-112) $) NIL (|has| |#3| (-854)))) (-3627 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-4346 (((-112) $) NIL (-2892 (-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)))))) (-1479 (((-112) $) NIL (|has| |#3| (-854)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2752 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-1502 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#3| |#3|) $) NIL)) (-1884 (((-928) $) NIL (|has| |#3| (-373)))) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-2268 (($ (-928)) NIL (|has| |#3| (-373)))) (-3577 (((-1129) $) NIL)) (-3543 ((|#3| $) NIL (|has| (-570) (-856)))) (-2147 (($ $ |#3|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-3700 (((-650 |#3|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#3| $ (-570) |#3|) NIL) ((|#3| $ (-570)) 11)) (-2609 ((|#3| $ $) NIL (|has| |#3| (-1058)))) (-3843 (($ (-1277 |#3|)) NIL)) (-2951 (((-135)) NIL (|has| |#3| (-368)))) (-3547 (($ $ (-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))))) (-3584 (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449))) (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-1277 |#3|) $) NIL) (((-868) $) NIL) (($ |#3|) NIL (|has| |#3| (-1109))) (($ (-570)) NIL (-2892 (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))) (-3499 (((-777)) NIL (|has| |#3| (-1058)) CONST)) (-2335 (((-112) $ $) NIL)) (-4371 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-2622 (($ $) NIL (|has| |#3| (-854)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL (-2892 (-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)) (-2942 (($ $ (-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))))) (-3072 (((-112) $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3052 (((-112) $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3042 (((-112) $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3122 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-3111 (($ $ $) NIL) (($ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-777)) NIL (-2892 (-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 (-2892 (-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| $) 13) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-732))) (($ |#3| $) NIL (|has| |#3| (-732))) (($ $ $) NIL (-2892 (-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)))))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-2451 (($ (-928)) NIL (|has| |#3| (-1058)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-3271 (($ $ $) NIL (|has| |#3| (-799)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3513 (((-777)) NIL (|has| |#3| (-373)))) (-3408 (((-570) $) NIL (|has| |#3| (-854)))) (-3935 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 ((|#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))))) (-2179 (((-2 (|:| -2990 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) NIL (|has| |#3| (-1058))) (((-695 |#3|) (-695 $)) NIL (|has| |#3| (-1058))) (((-2 (|:| -2990 (-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))))) (-1929 (((-3 $ "failed") $) NIL (-2895 (-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)))))) (-3449 (($) NIL (|has| |#3| (-373)))) (-1518 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#3| $ (-570)) NIL)) (-2346 (((-112) $) NIL (|has| |#3| (-854)))) (-3630 (((-650 |#3|) $) NIL (|has| $ (-6 -4452)))) (-4139 (((-112) $) NIL (-2895 (-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)))))) (-2788 (((-112) $) NIL (|has| |#3| (-854)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2052 (((-650 |#3|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#3| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-1503 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#3| |#3|) $) NIL)) (-2400 (((-928) $) NIL (|has| |#3| (-373)))) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-2267 (($ (-928)) NIL (|has| |#3| (-373)))) (-3580 (((-1129) $) NIL)) (-3546 ((|#3| $) NIL (|has| (-570) (-856)))) (-2061 (($ $ |#3|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#3| (-1109))))) (-4049 (((-650 |#3|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#3| $ (-570) |#3|) NIL) ((|#3| $ (-570)) 11)) (-4266 ((|#3| $ $) NIL (|has| |#3| (-1058)))) (-3846 (($ (-1277 |#3|)) NIL)) (-2517 (((-135)) NIL (|has| |#3| (-368)))) (-3550 (($ $ (-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))))) (-3587 (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452))) (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#3| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-1277 |#3|) $) NIL) (((-868) $) NIL) (($ |#3|) NIL (|has| |#3| (-1109))) (($ (-570)) NIL (-2895 (-12 (|has| |#3| (-1047 (-570))) (|has| |#3| (-1109))) (|has| |#3| (-1058)))) (($ (-413 (-570))) NIL (-12 (|has| |#3| (-1047 (-413 (-570)))) (|has| |#3| (-1109))))) (-2851 (((-777)) NIL (|has| |#3| (-1058)) CONST)) (-3359 (((-112) $ $) NIL)) (-4379 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452)))) (-3231 (($ $) NIL (|has| |#3| (-854)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL (-2895 (-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)) (-2945 (($ $ (-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))))) (-3075 (((-112) $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3055 (((-112) $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3045 (((-112) $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3125 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-3114 (($ $ $) NIL) (($ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-777)) NIL (-2895 (-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 (-2895 (-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| $) 13) (($ (-570) $) NIL) (($ (-777) $) NIL) (($ (-928) $) NIL) (($ $ |#3|) NIL (|has| |#3| (-732))) (($ |#3| $) NIL (|has| |#3| (-732))) (($ $ $) NIL (-2895 (-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)))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-254 |#1| |#2| |#3|) (-13 (-240 |#1| |#3|) (-654 |#2|)) (-777) (-1058) (-654 |#2|)) (T -254))
NIL
(-13 (-240 |#1| |#3|) (-654 |#2|))
-((-3571 (((-650 (-777)) $) 56) (((-650 (-777)) $ |#3|) 59)) (-3223 (((-777) $) 58) (((-777) $ |#3|) 61)) (-3904 (($ $) 76)) (-4380 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 83)) (-4323 (((-777) $ |#3|) 43) (((-777) $) 38)) (-3064 (((-1 $ (-777)) |#3|) 15) (((-1 $ (-777)) $) 88)) (-3218 ((|#4| $) 69)) (-3436 (((-112) $) 67)) (-1537 (($ $) 75)) (-1770 (($ $ (-650 (-298 $))) 111) (($ $ (-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 $)) 103) (($ $ |#3| |#2|) NIL) (($ $ (-650 |#3|) (-650 |#2|)) 97)) (-3547 (($ $ |#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)) (-4212 (((-650 |#3|) $) 86)) (-2130 ((|#5| $) NIL) (((-777) $ |#4|) NIL) (((-650 (-777)) $ (-650 |#4|)) NIL) (((-777) $ |#3|) 49)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 78) (($ (-413 (-570))) NIL) (($ $) NIL)))
-(((-255 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3799 (|#1| |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -1770 (|#1| |#1| (-650 |#3|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#3| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#3|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#3| |#1|)) (-15 -3064 ((-1 |#1| (-777)) |#1|)) (-15 -3904 (|#1| |#1|)) (-15 -1537 (|#1| |#1|)) (-15 -3218 (|#4| |#1|)) (-15 -3436 ((-112) |#1|)) (-15 -3223 ((-777) |#1| |#3|)) (-15 -3571 ((-650 (-777)) |#1| |#3|)) (-15 -3223 ((-777) |#1|)) (-15 -3571 ((-650 (-777)) |#1|)) (-15 -2130 ((-777) |#1| |#3|)) (-15 -4323 ((-777) |#1|)) (-15 -4323 ((-777) |#1| |#3|)) (-15 -4212 ((-650 |#3|) |#1|)) (-15 -3064 ((-1 |#1| (-777)) |#3|)) (-15 -3799 (|#1| |#3|)) (-15 -4380 ((-3 |#3| "failed") |#1|)) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1|)) (-15 -2130 ((-650 (-777)) |#1| (-650 |#4|))) (-15 -2130 ((-777) |#1| |#4|)) (-15 -3799 (|#1| |#4|)) (-15 -4380 ((-3 |#4| "failed") |#1|)) (-15 -1770 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#4| |#1|)) (-15 -1770 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#4| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -2130 (|#5| |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -3547 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3547 (|#1| |#1| |#4| (-777))) (-15 -3547 (|#1| |#1| (-650 |#4|))) (-15 -3547 (|#1| |#1| |#4|)) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-256 |#2| |#3| |#4| |#5|) (-1058) (-856) (-269 |#3|) (-799)) (T -255))
+((-2275 (((-650 (-777)) $) 56) (((-650 (-777)) $ |#3|) 59)) (-2117 (((-777) $) 58) (((-777) $ |#3|) 61)) (-2355 (($ $) 76)) (-4383 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 |#3| "failed") $) 83)) (-3941 (((-777) $ |#3|) 43) (((-777) $) 38)) (-4212 (((-1 $ (-777)) |#3|) 15) (((-1 $ (-777)) $) 88)) (-3221 ((|#4| $) 69)) (-3426 (((-112) $) 67)) (-1538 (($ $) 75)) (-1771 (($ $ (-650 (-298 $))) 111) (($ $ (-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 $)) 103) (($ $ |#3| |#2|) NIL) (($ $ (-650 |#3|) (-650 |#2|)) 97)) (-3550 (($ $ |#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)) (-2310 (((-650 |#3|) $) 86)) (-3079 ((|#5| $) NIL) (((-777) $ |#4|) NIL) (((-650 (-777)) $ (-650 |#4|)) NIL) (((-777) $ |#3|) 49)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (($ |#3|) 78) (($ (-413 (-570))) NIL) (($ $) NIL)))
+(((-255 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3802 (|#1| |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -1771 (|#1| |#1| (-650 |#3|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#3| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#3|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#3| |#1|)) (-15 -4212 ((-1 |#1| (-777)) |#1|)) (-15 -2355 (|#1| |#1|)) (-15 -1538 (|#1| |#1|)) (-15 -3221 (|#4| |#1|)) (-15 -3426 ((-112) |#1|)) (-15 -2117 ((-777) |#1| |#3|)) (-15 -2275 ((-650 (-777)) |#1| |#3|)) (-15 -2117 ((-777) |#1|)) (-15 -2275 ((-650 (-777)) |#1|)) (-15 -3079 ((-777) |#1| |#3|)) (-15 -3941 ((-777) |#1|)) (-15 -3941 ((-777) |#1| |#3|)) (-15 -2310 ((-650 |#3|) |#1|)) (-15 -4212 ((-1 |#1| (-777)) |#3|)) (-15 -3802 (|#1| |#3|)) (-15 -4383 ((-3 |#3| "failed") |#1|)) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1|)) (-15 -3079 ((-650 (-777)) |#1| (-650 |#4|))) (-15 -3079 ((-777) |#1| |#4|)) (-15 -3802 (|#1| |#4|)) (-15 -4383 ((-3 |#4| "failed") |#1|)) (-15 -1771 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#4| |#1|)) (-15 -1771 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#4| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3079 (|#5| |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -3550 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3550 (|#1| |#1| |#4| (-777))) (-15 -3550 (|#1| |#1| (-650 |#4|))) (-15 -3550 (|#1| |#1| |#4|)) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-256 |#2| |#3| |#4| |#5|) (-1058) (-856) (-269 |#3|) (-799)) (T -255))
NIL
-(-10 -8 (-15 -3799 (|#1| |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -1770 (|#1| |#1| (-650 |#3|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#3| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#3|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#3| |#1|)) (-15 -3064 ((-1 |#1| (-777)) |#1|)) (-15 -3904 (|#1| |#1|)) (-15 -1537 (|#1| |#1|)) (-15 -3218 (|#4| |#1|)) (-15 -3436 ((-112) |#1|)) (-15 -3223 ((-777) |#1| |#3|)) (-15 -3571 ((-650 (-777)) |#1| |#3|)) (-15 -3223 ((-777) |#1|)) (-15 -3571 ((-650 (-777)) |#1|)) (-15 -2130 ((-777) |#1| |#3|)) (-15 -4323 ((-777) |#1|)) (-15 -4323 ((-777) |#1| |#3|)) (-15 -4212 ((-650 |#3|) |#1|)) (-15 -3064 ((-1 |#1| (-777)) |#3|)) (-15 -3799 (|#1| |#3|)) (-15 -4380 ((-3 |#3| "failed") |#1|)) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1|)) (-15 -2130 ((-650 (-777)) |#1| (-650 |#4|))) (-15 -2130 ((-777) |#1| |#4|)) (-15 -3799 (|#1| |#4|)) (-15 -4380 ((-3 |#4| "failed") |#1|)) (-15 -1770 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#4| |#1|)) (-15 -1770 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#4| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -2130 (|#5| |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -3547 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3547 (|#1| |#1| |#4| (-777))) (-15 -3547 (|#1| |#1| (-650 |#4|))) (-15 -3547 (|#1| |#1| |#4|)) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3571 (((-650 (-777)) $) 216) (((-650 (-777)) $ |#2|) 214)) (-3223 (((-777) $) 215) (((-777) $ |#2|) 213)) (-1755 (((-650 |#3|) $) 112)) (-3775 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-3074 (($ $) 90 (|has| |#1| (-562)))) (-3475 (((-112) $) 92 (|has| |#1| (-562)))) (-3415 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-3990 (((-3 $ "failed") $ $) 20)) (-3924 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-4364 (($ $) 100 (|has| |#1| (-458)))) (-1652 (((-424 $) $) 99 (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-3904 (($ $) 209)) (-1705 (($) 18 T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139) ((|#2| $) 224)) (-4322 (($ $ $ |#3|) 110 (|has| |#1| (-174)))) (-1956 (($ $) 156)) (-4196 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-2875 (((-3 $ "failed") $) 37)) (-3988 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1938 (((-650 $) $) 111)) (-3618 (((-112) $) 98 (|has| |#1| (-916)))) (-3720 (($ $ |#1| |#4| $) 174)) (-2842 (((-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)))))) (-4323 (((-777) $ |#2|) 219) (((-777) $) 218)) (-4346 (((-112) $) 35)) (-3173 (((-777) $) 171)) (-1742 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-4008 (((-650 $) $) 128)) (-2359 (((-112) $) 154)) (-3912 (($ |#1| |#4|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ |#3|) 122)) (-2575 ((|#4| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-1918 (($ (-1 |#4| |#4|) $) 173)) (-1356 (($ (-1 |#1| |#1|) $) 153)) (-3064 (((-1 $ (-777)) |#2|) 221) (((-1 $ (-777)) $) 208 (|has| |#1| (-235)))) (-3362 (((-3 |#3| "failed") $) 125)) (-1915 (($ $) 151)) (-1927 ((|#1| $) 150)) (-3218 ((|#3| $) 211)) (-1899 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-1988 (((-1168) $) 10)) (-3436 (((-112) $) 212)) (-2209 (((-3 (-650 $) "failed") $) 116)) (-3654 (((-3 (-650 $) "failed") $) 117)) (-1895 (((-3 (-2 (|:| |var| |#3|) (|:| -3357 (-777))) "failed") $) 115)) (-1537 (($ $) 210)) (-3577 (((-1129) $) 11)) (-1886 (((-112) $) 168)) (-1898 ((|#1| $) 169)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1942 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3801 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2547 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1770 (($ $ (-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)))) (-3570 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3547 (($ $ |#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)) (-4212 (((-650 |#2|) $) 220)) (-2130 ((|#4| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131) (((-777) $ |#2|) 217)) (-1425 (((-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)))))) (-1848 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1809 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ |#2|) 222) (($ (-413 (-570))) 80 (-2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) 170)) (-2249 ((|#1| $ |#4|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3532 (((-3 $ "failed") $) 81 (-2892 (-1809 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) 32 T CONST)) (-4247 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ |#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)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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 -3802 (|#1| |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -1771 (|#1| |#1| (-650 |#3|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#3| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#3|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#3| |#1|)) (-15 -4212 ((-1 |#1| (-777)) |#1|)) (-15 -2355 (|#1| |#1|)) (-15 -1538 (|#1| |#1|)) (-15 -3221 (|#4| |#1|)) (-15 -3426 ((-112) |#1|)) (-15 -2117 ((-777) |#1| |#3|)) (-15 -2275 ((-650 (-777)) |#1| |#3|)) (-15 -2117 ((-777) |#1|)) (-15 -2275 ((-650 (-777)) |#1|)) (-15 -3079 ((-777) |#1| |#3|)) (-15 -3941 ((-777) |#1|)) (-15 -3941 ((-777) |#1| |#3|)) (-15 -2310 ((-650 |#3|) |#1|)) (-15 -4212 ((-1 |#1| (-777)) |#3|)) (-15 -3802 (|#1| |#3|)) (-15 -4383 ((-3 |#3| "failed") |#1|)) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1|)) (-15 -3079 ((-650 (-777)) |#1| (-650 |#4|))) (-15 -3079 ((-777) |#1| |#4|)) (-15 -3802 (|#1| |#4|)) (-15 -4383 ((-3 |#4| "failed") |#1|)) (-15 -1771 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#4| |#1|)) (-15 -1771 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#4| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3079 (|#5| |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -3550 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3550 (|#1| |#1| |#4| (-777))) (-15 -3550 (|#1| |#1| (-650 |#4|))) (-15 -3550 (|#1| |#1| |#4|)) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-2275 (((-650 (-777)) $) 216) (((-650 (-777)) $ |#2|) 214)) (-2117 (((-777) $) 215) (((-777) $ |#2|) 213)) (-1755 (((-650 |#3|) $) 112)) (-3778 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-4306 (($ $) 90 (|has| |#1| (-562)))) (-2617 (((-112) $) 92 (|has| |#1| (-562)))) (-3249 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-1966 (((-3 $ "failed") $ $) 20)) (-2536 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-4310 (($ $) 100 (|has| |#1| (-458)))) (-3871 (((-424 $) $) 99 (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-2355 (($ $) 209)) (-3195 (($) 18 T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139) ((|#2| $) 224)) (-3930 (($ $ $ |#3|) 110 (|has| |#1| (-174)))) (-1954 (($ $) 156)) (-2179 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-1929 (((-3 $ "failed") $) 37)) (-1944 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1938 (((-650 $) $) 111)) (-1336 (((-112) $) 98 (|has| |#1| (-916)))) (-4243 (($ $ |#1| |#4| $) 174)) (-1557 (((-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)))))) (-3941 (((-777) $ |#2|) 219) (((-777) $) 218)) (-4139 (((-112) $) 35)) (-2867 (((-777) $) 171)) (-1744 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-3967 (((-650 $) $) 128)) (-3633 (((-112) $) 154)) (-3915 (($ |#1| |#4|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ |#3|) 122)) (-3970 ((|#4| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-1414 (($ (-1 |#4| |#4|) $) 173)) (-1357 (($ (-1 |#1| |#1|) $) 153)) (-4212 (((-1 $ (-777)) |#2|) 221) (((-1 $ (-777)) $) 208 (|has| |#1| (-235)))) (-4023 (((-3 |#3| "failed") $) 125)) (-1914 (($ $) 151)) (-1928 ((|#1| $) 150)) (-3221 ((|#3| $) 211)) (-1901 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-3989 (((-1168) $) 10)) (-3426 (((-112) $) 212)) (-1369 (((-3 (-650 $) "failed") $) 116)) (-1777 (((-3 (-650 $) "failed") $) 117)) (-2505 (((-3 (-2 (|:| |var| |#3|) (|:| -3994 (-777))) "failed") $) 115)) (-1538 (($ $) 210)) (-3580 (((-1129) $) 11)) (-1887 (((-112) $) 168)) (-1900 ((|#1| $) 169)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1939 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3804 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2548 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1771 (($ $ (-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)))) (-2265 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3550 (($ $ |#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)) (-2310 (((-650 |#2|) $) 220)) (-3079 ((|#4| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131) (((-777) $ |#2|) 217)) (-1426 (((-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)))))) (-2077 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1810 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ |#2|) 222) (($ (-413 (-570))) 80 (-2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) 170)) (-1864 ((|#1| $ |#4|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3132 (((-3 $ "failed") $) 81 (-2895 (-1810 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) 32 T CONST)) (-2648 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ |#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)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3064 (*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)))) (-4212 (*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)))) (-4323 (*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)))) (-4323 (*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)))) (-2130 (*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)))) (-3571 (*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))))) (-3223 (*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)))) (-3571 (*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))))) (-3223 (*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)))) (-3436 (*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)))) (-3218 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-799)) (-4 *2 (-269 *4)))) (-1537 (*1 *1 *1) (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-269 *3)) (-4 *5 (-799)))) (-3904 (*1 *1 *1) (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-269 *3)) (-4 *5 (-799)))) (-3064 (*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 -3064 ((-1 $ (-777)) |t#2|)) (-15 -4212 ((-650 |t#2|) $)) (-15 -4323 ((-777) $ |t#2|)) (-15 -4323 ((-777) $)) (-15 -2130 ((-777) $ |t#2|)) (-15 -3571 ((-650 (-777)) $)) (-15 -3223 ((-777) $)) (-15 -3571 ((-650 (-777)) $ |t#2|)) (-15 -3223 ((-777) $ |t#2|)) (-15 -3436 ((-112) $)) (-15 -3218 (|t#3| $)) (-15 -1537 ($ $)) (-15 -3904 ($ $)) (IF (|has| |t#1| (-235)) (PROGN (-6 (-520 |t#2| |t#1|)) (-6 (-520 |t#2| $)) (-6 (-313 $)) (-15 -3064 ((-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 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#2|) . T) ((-622 |#3|) . T) ((-622 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-174) -2892 (|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) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#4|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2892 (|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) -2892 (|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 $) -2892 (|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 $) -2892 (|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 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3590 ((|#1| $) 55)) (-3353 ((|#1| $) 45)) (-4302 (((-112) $ (-777)) 8)) (-1705 (($) 7 T CONST)) (-2084 (($ $) 61)) (-2844 (($ $) 49)) (-1740 ((|#1| |#1| $) 47)) (-3636 ((|#1| $) 46)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1355 (((-777) $) 62)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1490 ((|#1| $) 40)) (-4262 ((|#1| |#1| $) 53)) (-2217 ((|#1| |#1| $) 52)) (-1385 (($ |#1| $) 41)) (-1444 (((-777) $) 56)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1612 ((|#1| $) 63)) (-2530 ((|#1| $) 51)) (-4178 ((|#1| $) 50)) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-3528 ((|#1| |#1| $) 59)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2524 ((|#1| $) 60)) (-3057 (($) 58) (($ (-650 |#1|)) 57)) (-2918 (((-777) $) 44)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-1791 ((|#1| $) 54)) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 43)) (-3073 ((|#1| $) 64)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-4212 (*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)))) (-2310 (*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)))) (-3941 (*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)))) (-3941 (*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)))) (-3079 (*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)))) (-2275 (*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))))) (-2117 (*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)))) (-2275 (*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))))) (-2117 (*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)))) (-3426 (*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)))) (-3221 (*1 *2 *1) (-12 (-4 *1 (-256 *3 *4 *2 *5)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *5 (-799)) (-4 *2 (-269 *4)))) (-1538 (*1 *1 *1) (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-269 *3)) (-4 *5 (-799)))) (-2355 (*1 *1 *1) (-12 (-4 *1 (-256 *2 *3 *4 *5)) (-4 *2 (-1058)) (-4 *3 (-856)) (-4 *4 (-269 *3)) (-4 *5 (-799)))) (-4212 (*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 -4212 ((-1 $ (-777)) |t#2|)) (-15 -2310 ((-650 |t#2|) $)) (-15 -3941 ((-777) $ |t#2|)) (-15 -3941 ((-777) $)) (-15 -3079 ((-777) $ |t#2|)) (-15 -2275 ((-650 (-777)) $)) (-15 -2117 ((-777) $)) (-15 -2275 ((-650 (-777)) $ |t#2|)) (-15 -2117 ((-777) $ |t#2|)) (-15 -3426 ((-112) $)) (-15 -3221 (|t#3| $)) (-15 -1538 ($ $)) (-15 -2355 ($ $)) (IF (|has| |t#1| (-235)) (PROGN (-6 (-520 |t#2| |t#1|)) (-6 (-520 |t#2| $)) (-6 (-313 $)) (-15 -4212 ((-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 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#2|) . T) ((-622 |#3|) . T) ((-622 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-174) -2895 (|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) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#4|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2895 (|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) -2895 (|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 $) -2895 (|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 $) -2895 (|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 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2433 ((|#1| $) 55)) (-3356 ((|#1| $) 45)) (-1932 (((-112) $ (-777)) 8)) (-3195 (($) 7 T CONST)) (-2622 (($ $) 61)) (-1582 (($ $) 49)) (-3536 ((|#1| |#1| $) 47)) (-1552 ((|#1| $) 46)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-1356 (((-777) $) 62)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2885 ((|#1| $) 40)) (-1502 ((|#1| |#1| $) 53)) (-1466 ((|#1| |#1| $) 52)) (-3502 (($ |#1| $) 41)) (-1445 (((-777) $) 56)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1593 ((|#1| $) 63)) (-1698 ((|#1| $) 51)) (-3171 ((|#1| $) 50)) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-3102 ((|#1| |#1| $) 59)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1640 ((|#1| $) 60)) (-4146 (($) 58) (($ (-650 |#1|)) 57)) (-2921 (((-777) $) 44)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2781 ((|#1| $) 54)) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 43)) (-4295 ((|#1| $) 64)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-257 |#1|) (-141) (-1227)) (T -257))
-((-3057 (*1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-3057 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-257 *3)))) (-1444 (*1 *2 *1) (-12 (-4 *1 (-257 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-3590 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-1791 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-4262 (*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-2217 (*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-2530 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-4178 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-2844 (*1 *1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
-(-13 (-1130 |t#1|) (-1004 |t#1|) (-10 -8 (-15 -3057 ($)) (-15 -3057 ($ (-650 |t#1|))) (-15 -1444 ((-777) $)) (-15 -3590 (|t#1| $)) (-15 -1791 (|t#1| $)) (-15 -4262 (|t#1| |t#1| $)) (-15 -2217 (|t#1| |t#1| $)) (-15 -2530 (|t#1| $)) (-15 -4178 (|t#1| $)) (-15 -2844 ($ $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-2660 (((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227))) 153)) (-1436 (((-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)) (-1381 (((-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 -1381 ((-1278) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1278) (-1 (-227) (-227)) (-1103 (-384)))) (-15 -1381 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1381 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1381 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1381 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1381 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1381 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -2660 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))) (T -258))
-((-2660 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227) (-227))) (-5 *3 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-258)))) (-1436 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1436 (*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)))) (-1381 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1381 (*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)))) (-1436 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1436 (*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)))) (-1381 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1381 (*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)))) (-1436 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1436 (*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)))) (-1381 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1381 (*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)))) (-1436 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1436 (*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)))) (-1436 (*1 *2 *3 *4) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1436 (*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)))) (-1381 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1381 (*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)))) (-1381 (*1 *2 *3 *4) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1381 (*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)))) (-1381 (*1 *2 *3 *4) (-12 (-5 *3 (-884 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1381 (*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)))) (-1381 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1381 (*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 -1381 ((-1278) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1278) (-1 (-227) (-227)) (-1103 (-384)))) (-15 -1381 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1381 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1381 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1381 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1381 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1381 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1436 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -2660 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))
-((-1381 (((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266))) 101)))
-(((-259 |#1| |#2|) (-10 -7 (-15 -1381 ((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266))))) (-13 (-562) (-856) (-1047 (-570))) (-436 |#1|)) (T -259))
-((-1381 (*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 -1381 ((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266)))))
-((-3290 (((-570) (-570)) 71)) (-2102 (((-570) (-570)) 72)) (-3283 (((-227) (-227)) 73)) (-1931 (((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227))) 70)) (-2342 (((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112)) 68)))
-(((-260) (-10 -7 (-15 -2342 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112))) (-15 -1931 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -3290 ((-570) (-570))) (-15 -2102 ((-570) (-570))) (-15 -3283 ((-227) (-227))))) (T -260))
-((-3283 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-260)))) (-2102 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))) (-3290 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))) (-1931 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227))) (-5 *2 (-1279)) (-5 *1 (-260)))) (-2342 (*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 -2342 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112))) (-15 -1931 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -3290 ((-570) (-570))) (-15 -2102 ((-570) (-570))) (-15 -3283 ((-227) (-227))))
-((-3799 (((-1101 (-384)) (-1101 (-320 |#1|))) 16)))
-(((-261 |#1|) (-10 -7 (-15 -3799 ((-1101 (-384)) (-1101 (-320 |#1|))))) (-13 (-856) (-562) (-620 (-384)))) (T -261))
-((-3799 (*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 -3799 ((-1101 (-384)) (-1101 (-320 |#1|)))))
-((-1436 (((-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)) (-1381 (((-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 -1381 ((-1278) |#1| (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1278) |#1| (-1101 (-384)))) (-15 -1381 ((-1278) (-884 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1278) (-884 |#1|) (-1101 (-384)))) (-15 -1381 ((-1279) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-886 |#1|) (-1101 (-384)))) (-15 -1436 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)))) (-15 -1381 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1436 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1381 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))) (-15 -1436 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384))))) (-13 (-620 (-542)) (-1109))) (T -262))
-((-1436 (*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)))) (-1436 (*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)))) (-1381 (*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)))) (-1381 (*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)))) (-1436 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1436 (*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))))) (-1381 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1279)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1381 (*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))))) (-1436 (*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)))) (-1436 (*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)))) (-1381 (*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)))) (-1381 (*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)))) (-1381 (*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)))) (-1381 (*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)))) (-1381 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1278)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1381 (*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 -1381 ((-1278) |#1| (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1278) |#1| (-1101 (-384)))) (-15 -1381 ((-1278) (-884 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1278) (-884 |#1|) (-1101 (-384)))) (-15 -1381 ((-1279) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-886 |#1|) (-1101 (-384)))) (-15 -1436 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)))) (-15 -1381 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1436 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1381 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1381 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))) (-15 -1436 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1436 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))))
-((-1381 (((-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 -1381 ((-1278) (-650 (-227)) (-650 (-227)))) (-15 -1381 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-266)))) (-15 -1381 ((-1278) (-650 (-950 (-227))))) (-15 -1381 ((-1278) (-650 (-950 (-227))) (-650 (-266)))) (-15 -1381 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)))) (-15 -1381 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266)))))) (T -263))
-((-1381 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-263)))) (-1381 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1279)) (-5 *1 (-263)))) (-1381 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1381 (*1 *2 *3) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1381 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1381 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1278)) (-5 *1 (-263)))))
-(-10 -7 (-15 -1381 ((-1278) (-650 (-227)) (-650 (-227)))) (-15 -1381 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-266)))) (-15 -1381 ((-1278) (-650 (-950 (-227))))) (-15 -1381 ((-1278) (-650 (-950 (-227))) (-650 (-266)))) (-15 -1381 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)))) (-15 -1381 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266)))))
-((-2734 (((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 25)) (-2536 (((-928) (-650 (-266)) (-928)) 52)) (-1461 (((-928) (-650 (-266)) (-928)) 51)) (-3222 (((-650 (-384)) (-650 (-266)) (-650 (-384))) 68)) (-1407 (((-384) (-650 (-266)) (-384)) 57)) (-3341 (((-928) (-650 (-266)) (-928)) 53)) (-3379 (((-112) (-650 (-266)) (-112)) 27)) (-3369 (((-1168) (-650 (-266)) (-1168)) 19)) (-3514 (((-1168) (-650 (-266)) (-1168)) 26)) (-3735 (((-1142 (-227)) (-650 (-266))) 46)) (-1531 (((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384)))) 40)) (-2032 (((-880) (-650 (-266)) (-880)) 32)) (-3883 (((-880) (-650 (-266)) (-880)) 33)) (-2330 (((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227)))) 63)) (-3660 (((-112) (-650 (-266)) (-112)) 14)) (-2045 (((-112) (-650 (-266)) (-112)) 13)))
-(((-264) (-10 -7 (-15 -2045 ((-112) (-650 (-266)) (-112))) (-15 -3660 ((-112) (-650 (-266)) (-112))) (-15 -2734 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3369 ((-1168) (-650 (-266)) (-1168))) (-15 -3514 ((-1168) (-650 (-266)) (-1168))) (-15 -3379 ((-112) (-650 (-266)) (-112))) (-15 -2032 ((-880) (-650 (-266)) (-880))) (-15 -3883 ((-880) (-650 (-266)) (-880))) (-15 -1531 ((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384))))) (-15 -1461 ((-928) (-650 (-266)) (-928))) (-15 -2536 ((-928) (-650 (-266)) (-928))) (-15 -3735 ((-1142 (-227)) (-650 (-266)))) (-15 -3341 ((-928) (-650 (-266)) (-928))) (-15 -1407 ((-384) (-650 (-266)) (-384))) (-15 -2330 ((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227))))) (-15 -3222 ((-650 (-384)) (-650 (-266)) (-650 (-384)))))) (T -264))
-((-3222 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-384))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2330 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1407 (*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3341 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3735 (*1 *2 *3) (-12 (-5 *3 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-264)))) (-2536 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1461 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1531 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3883 (*1 *2 *3 *2) (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2032 (*1 *2 *3 *2) (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3379 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3514 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3369 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2734 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3660 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2045 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
-(-10 -7 (-15 -2045 ((-112) (-650 (-266)) (-112))) (-15 -3660 ((-112) (-650 (-266)) (-112))) (-15 -2734 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3369 ((-1168) (-650 (-266)) (-1168))) (-15 -3514 ((-1168) (-650 (-266)) (-1168))) (-15 -3379 ((-112) (-650 (-266)) (-112))) (-15 -2032 ((-880) (-650 (-266)) (-880))) (-15 -3883 ((-880) (-650 (-266)) (-880))) (-15 -1531 ((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384))))) (-15 -1461 ((-928) (-650 (-266)) (-928))) (-15 -2536 ((-928) (-650 (-266)) (-928))) (-15 -3735 ((-1142 (-227)) (-650 (-266)))) (-15 -3341 ((-928) (-650 (-266)) (-928))) (-15 -1407 ((-384) (-650 (-266)) (-384))) (-15 -2330 ((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227))))) (-15 -3222 ((-650 (-384)) (-650 (-266)) (-650 (-384)))))
-((-1628 (((-3 |#1| "failed") (-650 (-266)) (-1186)) 17)))
-(((-265 |#1|) (-10 -7 (-15 -1628 ((-3 |#1| "failed") (-650 (-266)) (-1186)))) (-1227)) (T -265))
-((-1628 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *1 (-265 *2)) (-4 *2 (-1227)))))
-(-10 -7 (-15 -1628 ((-3 |#1| "failed") (-650 (-266)) (-1186))))
-((-2558 (((-112) $ $) NIL)) (-2734 (($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 24)) (-2536 (($ (-928)) 81)) (-1461 (($ (-928)) 80)) (-3128 (($ (-650 (-384))) 87)) (-1407 (($ (-384)) 66)) (-3341 (($ (-928)) 82)) (-3379 (($ (-112)) 33)) (-3369 (($ (-1168)) 28)) (-3514 (($ (-1168)) 29)) (-3735 (($ (-1142 (-227))) 76)) (-1531 (($ (-650 (-1103 (-384)))) 72)) (-2521 (($ (-650 (-1103 (-384)))) 68) (($ (-650 (-1103 (-413 (-570))))) 71)) (-3734 (($ (-384)) 38) (($ (-880)) 42)) (-2993 (((-112) (-650 $) (-1186)) 100)) (-1628 (((-3 (-52) "failed") (-650 $) (-1186)) 102)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3846 (($ (-384)) 43) (($ (-880)) 44)) (-3424 (($ (-1 (-950 (-227)) (-950 (-227)))) 65)) (-2330 (($ (-1 (-950 (-227)) (-950 (-227)))) 83)) (-2955 (($ (-1 (-227) (-227))) 48) (($ (-1 (-227) (-227) (-227))) 52) (($ (-1 (-227) (-227) (-227) (-227))) 56)) (-3799 (((-868) $) 93)) (-4286 (($ (-112)) 34) (($ (-650 (-1103 (-384)))) 60)) (-2335 (((-112) $ $) NIL)) (-2045 (($ (-112)) 35)) (-3022 (((-112) $ $) 97)))
-(((-266) (-13 (-1109) (-10 -8 (-15 -2045 ($ (-112))) (-15 -4286 ($ (-112))) (-15 -2734 ($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3369 ($ (-1168))) (-15 -3514 ($ (-1168))) (-15 -3379 ($ (-112))) (-15 -4286 ($ (-650 (-1103 (-384))))) (-15 -3424 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -3734 ($ (-384))) (-15 -3734 ($ (-880))) (-15 -3846 ($ (-384))) (-15 -3846 ($ (-880))) (-15 -2955 ($ (-1 (-227) (-227)))) (-15 -2955 ($ (-1 (-227) (-227) (-227)))) (-15 -2955 ($ (-1 (-227) (-227) (-227) (-227)))) (-15 -1407 ($ (-384))) (-15 -2521 ($ (-650 (-1103 (-384))))) (-15 -2521 ($ (-650 (-1103 (-413 (-570)))))) (-15 -1531 ($ (-650 (-1103 (-384))))) (-15 -3735 ($ (-1142 (-227)))) (-15 -1461 ($ (-928))) (-15 -2536 ($ (-928))) (-15 -3341 ($ (-928))) (-15 -2330 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -3128 ($ (-650 (-384)))) (-15 -1628 ((-3 (-52) "failed") (-650 $) (-1186))) (-15 -2993 ((-112) (-650 $) (-1186)))))) (T -266))
-((-2045 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-4286 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-2734 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *1 (-266)))) (-3369 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))) (-3514 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))) (-3379 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-4286 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-3424 (*1 *1 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266)))) (-3734 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-3734 (*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-3846 (*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266)))) (-2955 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-266)))) (-2955 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-266)))) (-2955 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-266)))) (-1407 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-2521 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-2521 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-413 (-570))))) (-5 *1 (-266)))) (-1531 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-3735 (*1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-266)))) (-1461 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-2536 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-3341 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-2330 (*1 *1 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266)))) (-3128 (*1 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-266)))) (-1628 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-52)) (-5 *1 (-266)))) (-2993 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-112)) (-5 *1 (-266)))))
-(-13 (-1109) (-10 -8 (-15 -2045 ($ (-112))) (-15 -4286 ($ (-112))) (-15 -2734 ($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3369 ($ (-1168))) (-15 -3514 ($ (-1168))) (-15 -3379 ($ (-112))) (-15 -4286 ($ (-650 (-1103 (-384))))) (-15 -3424 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -3734 ($ (-384))) (-15 -3734 ($ (-880))) (-15 -3846 ($ (-384))) (-15 -3846 ($ (-880))) (-15 -2955 ($ (-1 (-227) (-227)))) (-15 -2955 ($ (-1 (-227) (-227) (-227)))) (-15 -2955 ($ (-1 (-227) (-227) (-227) (-227)))) (-15 -1407 ($ (-384))) (-15 -2521 ($ (-650 (-1103 (-384))))) (-15 -2521 ($ (-650 (-1103 (-413 (-570)))))) (-15 -1531 ($ (-650 (-1103 (-384))))) (-15 -3735 ($ (-1142 (-227)))) (-15 -1461 ($ (-928))) (-15 -2536 ($ (-928))) (-15 -3341 ($ (-928))) (-15 -2330 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -3128 ($ (-650 (-384)))) (-15 -1628 ((-3 (-52) "failed") (-650 $) (-1186))) (-15 -2993 ((-112) (-650 $) (-1186)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3571 (((-650 (-777)) $) NIL) (((-650 (-777)) $ |#2|) NIL)) (-3223 (((-777) $) NIL) (((-777) $ |#2|) NIL)) (-1755 (((-650 |#3|) $) NIL)) (-3775 (((-1182 $) $ |#3|) NIL) (((-1182 |#1|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 |#3|)) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3904 (($ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1134 |#1| |#2|) $) NIL)) (-4322 (($ $ $ |#3|) NIL (|has| |#1| (-174)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458))) (($ $ |#3|) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-3720 (($ $ |#1| (-537 |#3|) $) NIL)) (-2842 (((-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)))))) (-4323 (((-777) $ |#2|) NIL) (((-777) $) 10)) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-1742 (($ (-1182 |#1|) |#3|) NIL) (($ (-1182 $) |#3|) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-537 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ |#3|) NIL)) (-2575 (((-537 |#3|) $) NIL) (((-777) $ |#3|) NIL) (((-650 (-777)) $ (-650 |#3|)) NIL)) (-1918 (($ (-1 (-537 |#3|) (-537 |#3|)) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3064 (((-1 $ (-777)) |#2|) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-3362 (((-3 |#3| "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-3218 ((|#3| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1988 (((-1168) $) NIL)) (-3436 (((-112) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| |#3|) (|:| -3357 (-777))) "failed") $) NIL)) (-1537 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1770 (($ $ (-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)))) (-3570 (($ $ |#3|) NIL (|has| |#1| (-174)))) (-3547 (($ $ |#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)) (-4212 (((-650 |#2|) $) NIL)) (-2130 (((-537 |#3|) $) NIL) (((-777) $ |#3|) NIL) (((-650 (-777)) $ (-650 |#3|)) NIL) (((-777) $ |#2|) NIL)) (-1425 (((-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)))))) (-1848 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ |#3|) NIL (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) 26) (($ |#3|) 25) (($ |#2|) NIL) (($ (-1134 |#1| |#2|)) 32) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-537 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ |#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)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))
+((-4146 (*1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-4146 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-257 *3)))) (-1445 (*1 *2 *1) (-12 (-4 *1 (-257 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-2433 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-2781 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-1502 (*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-1466 (*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-1698 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-3171 (*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))) (-1582 (*1 *1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(-13 (-1130 |t#1|) (-1004 |t#1|) (-10 -8 (-15 -4146 ($)) (-15 -4146 ($ (-650 |t#1|))) (-15 -1445 ((-777) $)) (-15 -2433 (|t#1| $)) (-15 -2781 (|t#1| $)) (-15 -1502 (|t#1| |t#1| $)) (-15 -1466 (|t#1| |t#1| $)) (-15 -1698 (|t#1| $)) (-15 -3171 (|t#1| $)) (-15 -1582 ($ $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3598 (((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227))) 153)) (-1438 (((-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)) (-1382 (((-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 -1382 ((-1278) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1278) (-1 (-227) (-227)) (-1103 (-384)))) (-15 -1382 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1382 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1382 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1382 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1382 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1382 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -3598 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))) (T -258))
+((-3598 (*1 *2 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227) (-227))) (-5 *3 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-258)))) (-1438 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1438 (*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)))) (-1382 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-889 (-1 (-227) (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1382 (*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)))) (-1438 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1438 (*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)))) (-1382 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1382 (*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)))) (-1438 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1438 (*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)))) (-1382 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-227) (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1382 (*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)))) (-1438 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1438 (*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)))) (-1438 (*1 *2 *3 *4) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-258)))) (-1438 (*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)))) (-1382 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-950 (-227)) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1382 (*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)))) (-1382 (*1 *2 *3 *4) (-12 (-5 *3 (-886 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1279)) (-5 *1 (-258)))) (-1382 (*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)))) (-1382 (*1 *2 *3 *4) (-12 (-5 *3 (-884 (-1 (-227) (-227)))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1382 (*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)))) (-1382 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-227) (-227))) (-5 *4 (-1103 (-384))) (-5 *2 (-1278)) (-5 *1 (-258)))) (-1382 (*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 -1382 ((-1278) (-1 (-227) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1278) (-1 (-227) (-227)) (-1103 (-384)))) (-15 -1382 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1278) (-884 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1382 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1382 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-886 (-1 (-227) (-227))) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-1 (-950 (-227)) (-227)) (-1103 (-384)))) (-15 -1382 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1382 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-384)) (-1103 (-384)))) (-15 -1382 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -1438 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-889 (-1 (-227) (-227) (-227))) (-1103 (-384)) (-1103 (-384)))) (-15 -3598 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))
+((-1382 (((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266))) 101)))
+(((-259 |#1| |#2|) (-10 -7 (-15 -1382 ((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266))))) (-13 (-562) (-856) (-1047 (-570))) (-436 |#1|)) (T -259))
+((-1382 (*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 -1382 ((-1278) (-298 |#2|) (-1186) (-1186) (-650 (-266)))))
+((-1493 (((-570) (-570)) 71)) (-2811 (((-570) (-570)) 72)) (-1410 (((-227) (-227)) 73)) (-1561 (((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227))) 70)) (-3441 (((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112)) 68)))
+(((-260) (-10 -7 (-15 -3441 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112))) (-15 -1561 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -1493 ((-570) (-570))) (-15 -2811 ((-570) (-570))) (-15 -1410 ((-227) (-227))))) (T -260))
+((-1410 (*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-260)))) (-2811 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))) (-1493 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))) (-1561 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227))) (-5 *2 (-1279)) (-5 *1 (-260)))) (-3441 (*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 -3441 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)) (-112))) (-15 -1561 ((-1279) (-1 (-171 (-227)) (-171 (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -1493 ((-570) (-570))) (-15 -2811 ((-570) (-570))) (-15 -1410 ((-227) (-227))))
+((-3802 (((-1101 (-384)) (-1101 (-320 |#1|))) 16)))
+(((-261 |#1|) (-10 -7 (-15 -3802 ((-1101 (-384)) (-1101 (-320 |#1|))))) (-13 (-856) (-562) (-620 (-384)))) (T -261))
+((-3802 (*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 -3802 ((-1101 (-384)) (-1101 (-320 |#1|)))))
+((-1438 (((-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)) (-1382 (((-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 -1382 ((-1278) |#1| (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1278) |#1| (-1101 (-384)))) (-15 -1382 ((-1278) (-884 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1278) (-884 |#1|) (-1101 (-384)))) (-15 -1382 ((-1279) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-886 |#1|) (-1101 (-384)))) (-15 -1438 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)))) (-15 -1382 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1438 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1382 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))) (-15 -1438 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384))))) (-13 (-620 (-542)) (-1109))) (T -262))
+((-1438 (*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)))) (-1438 (*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)))) (-1382 (*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)))) (-1382 (*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)))) (-1438 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1142 (-227))) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1438 (*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))))) (-1382 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1279)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1382 (*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))))) (-1438 (*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)))) (-1438 (*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)))) (-1382 (*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)))) (-1382 (*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)))) (-1382 (*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)))) (-1382 (*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)))) (-1382 (*1 *2 *3 *4) (-12 (-5 *4 (-1101 (-384))) (-5 *2 (-1278)) (-5 *1 (-262 *3)) (-4 *3 (-13 (-620 (-542)) (-1109))))) (-1382 (*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 -1382 ((-1278) |#1| (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1278) |#1| (-1101 (-384)))) (-15 -1382 ((-1278) (-884 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1278) (-884 |#1|) (-1101 (-384)))) (-15 -1382 ((-1279) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-886 |#1|) (-1101 (-384)))) (-15 -1438 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-886 |#1|) (-1101 (-384)))) (-15 -1382 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1438 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) |#1| (-1101 (-384)) (-1101 (-384)))) (-15 -1382 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1382 ((-1279) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))) (-15 -1438 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)) (-650 (-266)))) (-15 -1438 ((-1142 (-227)) (-889 |#1|) (-1101 (-384)) (-1101 (-384)))))
+((-1382 (((-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 -1382 ((-1278) (-650 (-227)) (-650 (-227)))) (-15 -1382 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-266)))) (-15 -1382 ((-1278) (-650 (-950 (-227))))) (-15 -1382 ((-1278) (-650 (-950 (-227))) (-650 (-266)))) (-15 -1382 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)))) (-15 -1382 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266)))))) (T -263))
+((-1382 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1279)) (-5 *1 (-263)))) (-1382 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1279)) (-5 *1 (-263)))) (-1382 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1382 (*1 *2 *3) (-12 (-5 *3 (-650 (-950 (-227)))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1382 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-263)))) (-1382 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1278)) (-5 *1 (-263)))))
+(-10 -7 (-15 -1382 ((-1278) (-650 (-227)) (-650 (-227)))) (-15 -1382 ((-1278) (-650 (-227)) (-650 (-227)) (-650 (-266)))) (-15 -1382 ((-1278) (-650 (-950 (-227))))) (-15 -1382 ((-1278) (-650 (-950 (-227))) (-650 (-266)))) (-15 -1382 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)))) (-15 -1382 ((-1279) (-650 (-227)) (-650 (-227)) (-650 (-227)) (-650 (-266)))))
+((-3081 (((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 25)) (-1776 (((-928) (-650 (-266)) (-928)) 52)) (-2611 (((-928) (-650 (-266)) (-928)) 51)) (-3225 (((-650 (-384)) (-650 (-266)) (-650 (-384))) 68)) (-3885 (((-384) (-650 (-266)) (-384)) 57)) (-3860 (((-928) (-650 (-266)) (-928)) 53)) (-4141 (((-112) (-650 (-266)) (-112)) 27)) (-3372 (((-1168) (-650 (-266)) (-1168)) 19)) (-2982 (((-1168) (-650 (-266)) (-1168)) 26)) (-4377 (((-1142 (-227)) (-650 (-266))) 46)) (-2070 (((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384)))) 40)) (-3251 (((-880) (-650 (-266)) (-880)) 32)) (-2152 (((-880) (-650 (-266)) (-880)) 33)) (-3304 (((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227)))) 63)) (-1857 (((-112) (-650 (-266)) (-112)) 14)) (-3391 (((-112) (-650 (-266)) (-112)) 13)))
+(((-264) (-10 -7 (-15 -3391 ((-112) (-650 (-266)) (-112))) (-15 -1857 ((-112) (-650 (-266)) (-112))) (-15 -3081 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3372 ((-1168) (-650 (-266)) (-1168))) (-15 -2982 ((-1168) (-650 (-266)) (-1168))) (-15 -4141 ((-112) (-650 (-266)) (-112))) (-15 -3251 ((-880) (-650 (-266)) (-880))) (-15 -2152 ((-880) (-650 (-266)) (-880))) (-15 -2070 ((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384))))) (-15 -2611 ((-928) (-650 (-266)) (-928))) (-15 -1776 ((-928) (-650 (-266)) (-928))) (-15 -4377 ((-1142 (-227)) (-650 (-266)))) (-15 -3860 ((-928) (-650 (-266)) (-928))) (-15 -3885 ((-384) (-650 (-266)) (-384))) (-15 -3304 ((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227))))) (-15 -3225 ((-650 (-384)) (-650 (-266)) (-650 (-384)))))) (T -264))
+((-3225 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-384))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3304 (*1 *2 *3 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3885 (*1 *2 *3 *2) (-12 (-5 *2 (-384)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3860 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-4377 (*1 *2 *3) (-12 (-5 *3 (-650 (-266))) (-5 *2 (-1142 (-227))) (-5 *1 (-264)))) (-1776 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2611 (*1 *2 *3 *2) (-12 (-5 *2 (-928)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2070 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2152 (*1 *2 *3 *2) (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3251 (*1 *2 *3 *2) (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-4141 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-2982 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3372 (*1 *2 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3081 (*1 *2 *3 *2) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-1857 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))) (-3391 (*1 *2 *3 *2) (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(-10 -7 (-15 -3391 ((-112) (-650 (-266)) (-112))) (-15 -1857 ((-112) (-650 (-266)) (-112))) (-15 -3081 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) (-650 (-266)) (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3372 ((-1168) (-650 (-266)) (-1168))) (-15 -2982 ((-1168) (-650 (-266)) (-1168))) (-15 -4141 ((-112) (-650 (-266)) (-112))) (-15 -3251 ((-880) (-650 (-266)) (-880))) (-15 -2152 ((-880) (-650 (-266)) (-880))) (-15 -2070 ((-650 (-1103 (-384))) (-650 (-266)) (-650 (-1103 (-384))))) (-15 -2611 ((-928) (-650 (-266)) (-928))) (-15 -1776 ((-928) (-650 (-266)) (-928))) (-15 -4377 ((-1142 (-227)) (-650 (-266)))) (-15 -3860 ((-928) (-650 (-266)) (-928))) (-15 -3885 ((-384) (-650 (-266)) (-384))) (-15 -3304 ((-1 (-950 (-227)) (-950 (-227))) (-650 (-266)) (-1 (-950 (-227)) (-950 (-227))))) (-15 -3225 ((-650 (-384)) (-650 (-266)) (-650 (-384)))))
+((-1629 (((-3 |#1| "failed") (-650 (-266)) (-1186)) 17)))
+(((-265 |#1|) (-10 -7 (-15 -1629 ((-3 |#1| "failed") (-650 (-266)) (-1186)))) (-1227)) (T -265))
+((-1629 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *1 (-265 *2)) (-4 *2 (-1227)))))
+(-10 -7 (-15 -1629 ((-3 |#1| "failed") (-650 (-266)) (-1186))))
+((-2560 (((-112) $ $) NIL)) (-3081 (($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) 24)) (-1776 (($ (-928)) 81)) (-2611 (($ (-928)) 80)) (-3635 (($ (-650 (-384))) 87)) (-3885 (($ (-384)) 66)) (-3860 (($ (-928)) 82)) (-4141 (($ (-112)) 33)) (-3372 (($ (-1168)) 28)) (-2982 (($ (-1168)) 29)) (-4377 (($ (-1142 (-227))) 76)) (-2070 (($ (-650 (-1103 (-384)))) 72)) (-1600 (($ (-650 (-1103 (-384)))) 68) (($ (-650 (-1103 (-413 (-570))))) 71)) (-4368 (($ (-384)) 38) (($ (-880)) 42)) (-1696 (((-112) (-650 $) (-1186)) 100)) (-1629 (((-3 (-52) "failed") (-650 $) (-1186)) 102)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2988 (($ (-384)) 43) (($ (-880)) 44)) (-3314 (($ (-1 (-950 (-227)) (-950 (-227)))) 65)) (-3304 (($ (-1 (-950 (-227)) (-950 (-227)))) 83)) (-4357 (($ (-1 (-227) (-227))) 48) (($ (-1 (-227) (-227) (-227))) 52) (($ (-1 (-227) (-227) (-227) (-227))) 56)) (-3802 (((-868) $) 93)) (-1764 (($ (-112)) 34) (($ (-650 (-1103 (-384)))) 60)) (-3359 (((-112) $ $) NIL)) (-3391 (($ (-112)) 35)) (-3025 (((-112) $ $) 97)))
+(((-266) (-13 (-1109) (-10 -8 (-15 -3391 ($ (-112))) (-15 -1764 ($ (-112))) (-15 -3081 ($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3372 ($ (-1168))) (-15 -2982 ($ (-1168))) (-15 -4141 ($ (-112))) (-15 -1764 ($ (-650 (-1103 (-384))))) (-15 -3314 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -4368 ($ (-384))) (-15 -4368 ($ (-880))) (-15 -2988 ($ (-384))) (-15 -2988 ($ (-880))) (-15 -4357 ($ (-1 (-227) (-227)))) (-15 -4357 ($ (-1 (-227) (-227) (-227)))) (-15 -4357 ($ (-1 (-227) (-227) (-227) (-227)))) (-15 -3885 ($ (-384))) (-15 -1600 ($ (-650 (-1103 (-384))))) (-15 -1600 ($ (-650 (-1103 (-413 (-570)))))) (-15 -2070 ($ (-650 (-1103 (-384))))) (-15 -4377 ($ (-1142 (-227)))) (-15 -2611 ($ (-928))) (-15 -1776 ($ (-928))) (-15 -3860 ($ (-928))) (-15 -3304 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -3635 ($ (-650 (-384)))) (-15 -1629 ((-3 (-52) "failed") (-650 $) (-1186))) (-15 -1696 ((-112) (-650 $) (-1186)))))) (T -266))
+((-3391 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-1764 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-3081 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *1 (-266)))) (-3372 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))) (-2982 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266)))) (-4141 (*1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-266)))) (-1764 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-3314 (*1 *1 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266)))) (-4368 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-4368 (*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266)))) (-2988 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-2988 (*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266)))) (-4357 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-266)))) (-4357 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-266)))) (-4357 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-266)))) (-3885 (*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))) (-1600 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-1600 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-413 (-570))))) (-5 *1 (-266)))) (-2070 (*1 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-266)))) (-4377 (*1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-266)))) (-2611 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-1776 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-3860 (*1 *1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-266)))) (-3304 (*1 *1 *2) (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *1 (-266)))) (-3635 (*1 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-266)))) (-1629 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-52)) (-5 *1 (-266)))) (-1696 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-112)) (-5 *1 (-266)))))
+(-13 (-1109) (-10 -8 (-15 -3391 ($ (-112))) (-15 -1764 ($ (-112))) (-15 -3081 ($ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3372 ($ (-1168))) (-15 -2982 ($ (-1168))) (-15 -4141 ($ (-112))) (-15 -1764 ($ (-650 (-1103 (-384))))) (-15 -3314 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -4368 ($ (-384))) (-15 -4368 ($ (-880))) (-15 -2988 ($ (-384))) (-15 -2988 ($ (-880))) (-15 -4357 ($ (-1 (-227) (-227)))) (-15 -4357 ($ (-1 (-227) (-227) (-227)))) (-15 -4357 ($ (-1 (-227) (-227) (-227) (-227)))) (-15 -3885 ($ (-384))) (-15 -1600 ($ (-650 (-1103 (-384))))) (-15 -1600 ($ (-650 (-1103 (-413 (-570)))))) (-15 -2070 ($ (-650 (-1103 (-384))))) (-15 -4377 ($ (-1142 (-227)))) (-15 -2611 ($ (-928))) (-15 -1776 ($ (-928))) (-15 -3860 ($ (-928))) (-15 -3304 ($ (-1 (-950 (-227)) (-950 (-227))))) (-15 -3635 ($ (-650 (-384)))) (-15 -1629 ((-3 (-52) "failed") (-650 $) (-1186))) (-15 -1696 ((-112) (-650 $) (-1186)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-2275 (((-650 (-777)) $) NIL) (((-650 (-777)) $ |#2|) NIL)) (-2117 (((-777) $) NIL) (((-777) $ |#2|) NIL)) (-1755 (((-650 |#3|) $) NIL)) (-3778 (((-1182 $) $ |#3|) NIL) (((-1182 |#1|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 |#3|)) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2355 (($ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#3| $) NIL) ((|#2| $) NIL) (((-1134 |#1| |#2|) $) NIL)) (-3930 (($ $ $ |#3|) NIL (|has| |#1| (-174)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458))) (($ $ |#3|) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-4243 (($ $ |#1| (-537 |#3|) $) NIL)) (-1557 (((-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)))))) (-3941 (((-777) $ |#2|) NIL) (((-777) $) 10)) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-1744 (($ (-1182 |#1|) |#3|) NIL) (($ (-1182 $) |#3|) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-537 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ |#3|) NIL)) (-3970 (((-537 |#3|) $) NIL) (((-777) $ |#3|) NIL) (((-650 (-777)) $ (-650 |#3|)) NIL)) (-1414 (($ (-1 (-537 |#3|) (-537 |#3|)) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4212 (((-1 $ (-777)) |#2|) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-4023 (((-3 |#3| "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3221 ((|#3| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3989 (((-1168) $) NIL)) (-3426 (((-112) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| |#3|) (|:| -3994 (-777))) "failed") $) NIL)) (-1538 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1771 (($ $ (-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)))) (-2265 (($ $ |#3|) NIL (|has| |#1| (-174)))) (-3550 (($ $ |#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)) (-2310 (((-650 |#2|) $) NIL)) (-3079 (((-537 |#3|) $) NIL) (((-777) $ |#3|) NIL) (((-650 (-777)) $ (-650 |#3|)) NIL) (((-777) $ |#2|) NIL)) (-1426 (((-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)))))) (-2077 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ |#3|) NIL (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) 26) (($ |#3|) 25) (($ |#2|) NIL) (($ (-1134 |#1| |#2|)) 32) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-537 |#3|)) NIL) (($ $ |#3| (-777)) NIL) (($ $ (-650 |#3|) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ |#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)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)))
-((-3223 (((-777) $) 37)) (-4380 (((-3 |#2| "failed") $) 22)) (-3216 ((|#2| $) 33)) (-3547 (($ $) 14) (($ $ (-777)) 18)) (-3799 (((-868) $) 32) (($ |#2|) 11)) (-3022 (((-112) $ $) 26)) (-3042 (((-112) $ $) 36)))
-(((-268 |#1| |#2|) (-10 -8 (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1|)) (-15 -3223 ((-777) |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3042 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|))) (-269 |#2|) (-856)) (T -268))
+((-2117 (((-777) $) 37)) (-4383 (((-3 |#2| "failed") $) 22)) (-3220 ((|#2| $) 33)) (-3550 (($ $) 14) (($ $ (-777)) 18)) (-3802 (((-868) $) 32) (($ |#2|) 11)) (-3025 (((-112) $ $) 26)) (-3045 (((-112) $ $) 36)))
+(((-268 |#1| |#2|) (-10 -8 (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1|)) (-15 -2117 ((-777) |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3045 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|))) (-269 |#2|) (-856)) (T -268))
NIL
-(-10 -8 (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1|)) (-15 -3223 ((-777) |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3042 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3223 (((-777) $) 23)) (-2798 ((|#1| $) 24)) (-4380 (((-3 |#1| "failed") $) 28)) (-3216 ((|#1| $) 29)) (-4323 (((-777) $) 25)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-3064 (($ |#1| (-777)) 26)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3547 (($ $) 22) (($ $ (-777)) 21)) (-3799 (((-868) $) 12) (($ |#1|) 27)) (-2335 (((-112) $ $) 9)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)))
+(-10 -8 (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1|)) (-15 -2117 ((-777) |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3045 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-2117 (((-777) $) 23)) (-2800 ((|#1| $) 24)) (-4383 (((-3 |#1| "failed") $) 28)) (-3220 ((|#1| $) 29)) (-3941 (((-777) $) 25)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-4212 (($ |#1| (-777)) 26)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3550 (($ $) 22) (($ $ (-777)) 21)) (-3802 (((-868) $) 12) (($ |#1|) 27)) (-3359 (((-112) $ $) 9)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)))
(((-269 |#1|) (-141) (-856)) (T -269))
-((-3799 (*1 *1 *2) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3064 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-4323 (*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))) (-2798 (*1 *2 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3223 (*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3547 (*1 *1 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-269 *3)) (-4 *3 (-856)))))
-(-13 (-856) (-1047 |t#1|) (-10 -8 (-15 -3064 ($ |t#1| (-777))) (-15 -4323 ((-777) $)) (-15 -2798 (|t#1| $)) (-15 -3223 ((-777) $)) (-15 -3547 ($ $)) (-15 -3547 ($ $ (-777))) (-15 -3799 ($ |t#1|))))
+((-3802 (*1 *1 *2) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-4212 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3941 (*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))) (-2800 (*1 *2 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-2117 (*1 *2 *1) (-12 (-4 *1 (-269 *3)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3550 (*1 *1 *1) (-12 (-4 *1 (-269 *2)) (-4 *2 (-856)))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-269 *3)) (-4 *3 (-856)))))
+(-13 (-856) (-1047 |t#1|) (-10 -8 (-15 -4212 ($ |t#1| (-777))) (-15 -3941 ((-777) $)) (-15 -2800 (|t#1| $)) (-15 -2117 ((-777) $)) (-15 -3550 ($ $)) (-15 -3550 ($ $ (-777))) (-15 -3802 ($ |t#1|))))
(((-102) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-856) . T) ((-1047 |#1|) . T) ((-1109) . T))
-((-1755 (((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 53)) (-3179 (((-650 (-1186)) (-320 (-227)) (-777)) 94)) (-2210 (((-3 (-320 (-227)) "failed") (-320 (-227))) 63)) (-3240 (((-320 (-227)) (-320 (-227))) 79)) (-1980 (((-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 38)) (-1775 (((-112) (-650 (-320 (-227)))) 104)) (-3442 (((-112) (-320 (-227))) 36)) (-2321 (((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))))) 132)) (-3174 (((-650 (-320 (-227))) (-650 (-320 (-227)))) 108)) (-4040 (((-650 (-320 (-227))) (-650 (-320 (-227)))) 106)) (-3431 (((-695 (-227)) (-650 (-320 (-227))) (-777)) 120)) (-3375 (((-112) (-320 (-227))) 31) (((-112) (-650 (-320 (-227)))) 105)) (-4275 (((-650 (-227)) (-650 (-849 (-227))) (-227)) 15)) (-3891 (((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 126)) (-3747 (((-1044) (-1186) (-1044)) 46)))
-(((-270) (-10 -7 (-15 -4275 ((-650 (-227)) (-650 (-849 (-227))) (-227))) (-15 -1980 ((-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -2210 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -3240 ((-320 (-227)) (-320 (-227)))) (-15 -1775 ((-112) (-650 (-320 (-227))))) (-15 -3375 ((-112) (-650 (-320 (-227))))) (-15 -3375 ((-112) (-320 (-227)))) (-15 -3431 ((-695 (-227)) (-650 (-320 (-227))) (-777))) (-15 -4040 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -3174 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -3442 ((-112) (-320 (-227)))) (-15 -1755 ((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) (-15 -3179 ((-650 (-1186)) (-320 (-227)) (-777))) (-15 -3747 ((-1044) (-1186) (-1044))) (-15 -3891 ((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) (-15 -2321 ((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))))))) (T -270))
-((-2321 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))))) (-5 *2 (-650 (-1168))) (-5 *1 (-270)))) (-3891 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) (-5 *2 (-384)) (-5 *1 (-270)))) (-3747 (*1 *2 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-270)))) (-3179 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-270)))) (-1755 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) (-5 *2 (-650 (-1186))) (-5 *1 (-270)))) (-3442 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))) (-3174 (*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))) (-4040 (*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))) (-3431 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *4 (-777)) (-5 *2 (-695 (-227))) (-5 *1 (-270)))) (-3375 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))) (-3375 (*1 *2 *3) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))) (-1775 (*1 *2 *3) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))) (-3240 (*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))) (-2210 (*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))) (-1980 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *1 (-270)))) (-4275 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-849 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 *4)) (-5 *1 (-270)))))
-(-10 -7 (-15 -4275 ((-650 (-227)) (-650 (-849 (-227))) (-227))) (-15 -1980 ((-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -2210 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -3240 ((-320 (-227)) (-320 (-227)))) (-15 -1775 ((-112) (-650 (-320 (-227))))) (-15 -3375 ((-112) (-650 (-320 (-227))))) (-15 -3375 ((-112) (-320 (-227)))) (-15 -3431 ((-695 (-227)) (-650 (-320 (-227))) (-777))) (-15 -4040 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -3174 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -3442 ((-112) (-320 (-227)))) (-15 -1755 ((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) (-15 -3179 ((-650 (-1186)) (-320 (-227)) (-777))) (-15 -3747 ((-1044) (-1186) (-1044))) (-15 -3891 ((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) (-15 -2321 ((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))))))
-((-2558 (((-112) $ $) NIL)) (-2486 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 56)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 32) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-1755 (((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 53)) (-3182 (((-650 (-1186)) (-320 (-227)) (-777)) 94)) (-1384 (((-3 (-320 (-227)) "failed") (-320 (-227))) 63)) (-2290 (((-320 (-227)) (-320 (-227))) 79)) (-3905 (((-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 38)) (-2636 (((-112) (-650 (-320 (-227)))) 104)) (-3494 (((-112) (-320 (-227))) 36)) (-3224 (((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))))) 132)) (-2874 (((-650 (-320 (-227))) (-650 (-320 (-227)))) 108)) (-4260 (((-650 (-320 (-227))) (-650 (-320 (-227)))) 106)) (-3368 (((-695 (-227)) (-650 (-320 (-227))) (-777)) 120)) (-4110 (((-112) (-320 (-227))) 31) (((-112) (-650 (-320 (-227)))) 105)) (-1651 (((-650 (-227)) (-650 (-849 (-227))) (-227)) 15)) (-2227 (((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 126)) (-3299 (((-1044) (-1186) (-1044)) 46)))
+(((-270) (-10 -7 (-15 -1651 ((-650 (-227)) (-650 (-849 (-227))) (-227))) (-15 -3905 ((-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -1384 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -2290 ((-320 (-227)) (-320 (-227)))) (-15 -2636 ((-112) (-650 (-320 (-227))))) (-15 -4110 ((-112) (-650 (-320 (-227))))) (-15 -4110 ((-112) (-320 (-227)))) (-15 -3368 ((-695 (-227)) (-650 (-320 (-227))) (-777))) (-15 -4260 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -2874 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -3494 ((-112) (-320 (-227)))) (-15 -1755 ((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) (-15 -3182 ((-650 (-1186)) (-320 (-227)) (-777))) (-15 -3299 ((-1044) (-1186) (-1044))) (-15 -2227 ((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) (-15 -3224 ((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))))))) (T -270))
+((-3224 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))))) (-5 *2 (-650 (-1168))) (-5 *1 (-270)))) (-2227 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) (-5 *2 (-384)) (-5 *1 (-270)))) (-3299 (*1 *2 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-270)))) (-3182 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-227))) (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-270)))) (-1755 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) (-5 *2 (-650 (-1186))) (-5 *1 (-270)))) (-3494 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))) (-2874 (*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))) (-4260 (*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))) (-3368 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *4 (-777)) (-5 *2 (-695 (-227))) (-5 *1 (-270)))) (-4110 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))) (-4110 (*1 *2 *3) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))) (-2636 (*1 *2 *3) (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))) (-2290 (*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))) (-1384 (*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))) (-3905 (*1 *2 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *1 (-270)))) (-1651 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-849 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 *4)) (-5 *1 (-270)))))
+(-10 -7 (-15 -1651 ((-650 (-227)) (-650 (-849 (-227))) (-227))) (-15 -3905 ((-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -1384 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -2290 ((-320 (-227)) (-320 (-227)))) (-15 -2636 ((-112) (-650 (-320 (-227))))) (-15 -4110 ((-112) (-650 (-320 (-227))))) (-15 -4110 ((-112) (-320 (-227)))) (-15 -3368 ((-695 (-227)) (-650 (-320 (-227))) (-777))) (-15 -4260 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -2874 ((-650 (-320 (-227))) (-650 (-320 (-227))))) (-15 -3494 ((-112) (-320 (-227)))) (-15 -1755 ((-650 (-1186)) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) (-15 -3182 ((-650 (-1186)) (-320 (-227)) (-777))) (-15 -3299 ((-1044) (-1186) (-1044))) (-15 -2227 ((-384) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) (-15 -3224 ((-650 (-1168)) (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))))))
+((-2560 (((-112) $ $) NIL)) (-2537 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 56)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 32) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-271) (-845)) (T -271))
NIL
(-845)
-((-2558 (((-112) $ $) NIL)) (-2486 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 72) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 63)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 41) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 43)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-2537 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 72) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 63)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 41) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 43)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-272) (-845)) (T -272))
NIL
(-845)
-((-2558 (((-112) $ $) NIL)) (-2486 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 85)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 52) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 65)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-2537 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 90) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 85)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 52) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 65)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-273) (-845)) (T -273))
NIL
(-845)
-((-2558 (((-112) $ $) NIL)) (-2486 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 73)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 45) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-2537 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 73)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 45) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-274) (-845)) (T -274))
NIL
(-845)
-((-2558 (((-112) $ $) NIL)) (-2486 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 65)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 31) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-2537 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 65)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 31) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-275) (-845)) (T -275))
NIL
(-845)
-((-2558 (((-112) $ $) NIL)) (-2486 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 90)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 33) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-2537 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 90)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 33) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-276) (-845)) (T -276))
NIL
(-845)
-((-2558 (((-112) $ $) NIL)) (-2486 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 87)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 32) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-2537 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 87)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 32) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-277) (-845)) (T -277))
NIL
(-845)
-((-2558 (((-112) $ $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2057 (((-650 (-570)) $) 29)) (-2130 (((-777) $) 27)) (-3799 (((-868) $) 33) (($ (-650 (-570))) 23)) (-2335 (((-112) $ $) NIL)) (-3804 (($ (-777)) 30)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 9)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 17)))
-(((-278) (-13 (-856) (-10 -8 (-15 -3799 ($ (-650 (-570)))) (-15 -2130 ((-777) $)) (-15 -2057 ((-650 (-570)) $)) (-15 -3804 ($ (-777)))))) (T -278))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))) (-2130 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-278)))) (-2057 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))) (-3804 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-278)))))
-(-13 (-856) (-10 -8 (-15 -3799 ($ (-650 (-570)))) (-15 -2130 ((-777) $)) (-15 -2057 ((-650 (-570)) $)) (-15 -3804 ($ (-777)))))
-((-2887 ((|#2| |#2|) 77)) (-2751 ((|#2| |#2|) 65)) (-2126 (((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 125)) (-2866 ((|#2| |#2|) 75)) (-2733 ((|#2| |#2|) 63)) (-4107 ((|#2| |#2|) 79)) (-2774 ((|#2| |#2|) 67)) (-1315 ((|#2|) 46)) (-3756 (((-115) (-115)) 100)) (-2789 ((|#2| |#2|) 61)) (-1545 (((-112) |#2|) 147)) (-2472 ((|#2| |#2|) 195)) (-1695 ((|#2| |#2|) 171)) (-4073 ((|#2|) 59)) (-3398 ((|#2|) 58)) (-2107 ((|#2| |#2|) 191)) (-2560 ((|#2| |#2|) 167)) (-1364 ((|#2| |#2|) 199)) (-2747 ((|#2| |#2|) 175)) (-4276 ((|#2| |#2|) 163)) (-2278 ((|#2| |#2|) 165)) (-2113 ((|#2| |#2|) 201)) (-2333 ((|#2| |#2|) 177)) (-3918 ((|#2| |#2|) 197)) (-3215 ((|#2| |#2|) 173)) (-3337 ((|#2| |#2|) 193)) (-1650 ((|#2| |#2|) 169)) (-2992 ((|#2| |#2|) 207)) (-2025 ((|#2| |#2|) 183)) (-1934 ((|#2| |#2|) 203)) (-3736 ((|#2| |#2|) 179)) (-3562 ((|#2| |#2|) 211)) (-4096 ((|#2| |#2|) 187)) (-3761 ((|#2| |#2|) 213)) (-2981 ((|#2| |#2|) 189)) (-3118 ((|#2| |#2|) 209)) (-1866 ((|#2| |#2|) 185)) (-3496 ((|#2| |#2|) 205)) (-3792 ((|#2| |#2|) 181)) (-4387 ((|#2| |#2|) 62)) (-4117 ((|#2| |#2|) 80)) (-2788 ((|#2| |#2|) 68)) (-2899 ((|#2| |#2|) 78)) (-2766 ((|#2| |#2|) 66)) (-2876 ((|#2| |#2|) 76)) (-2740 ((|#2| |#2|) 64)) (-1388 (((-112) (-115)) 98)) (-4154 ((|#2| |#2|) 83)) (-2825 ((|#2| |#2|) 71)) (-4129 ((|#2| |#2|) 81)) (-2801 ((|#2| |#2|) 69)) (-4176 ((|#2| |#2|) 85)) (-2845 ((|#2| |#2|) 73)) (-1578 ((|#2| |#2|) 86)) (-2855 ((|#2| |#2|) 74)) (-4163 ((|#2| |#2|) 84)) (-2835 ((|#2| |#2|) 72)) (-4140 ((|#2| |#2|) 82)) (-2814 ((|#2| |#2|) 70)))
-(((-279 |#1| |#2|) (-10 -7 (-15 -4387 (|#2| |#2|)) (-15 -2789 (|#2| |#2|)) (-15 -2733 (|#2| |#2|)) (-15 -2740 (|#2| |#2|)) (-15 -2751 (|#2| |#2|)) (-15 -2766 (|#2| |#2|)) (-15 -2774 (|#2| |#2|)) (-15 -2788 (|#2| |#2|)) (-15 -2801 (|#2| |#2|)) (-15 -2814 (|#2| |#2|)) (-15 -2825 (|#2| |#2|)) (-15 -2835 (|#2| |#2|)) (-15 -2845 (|#2| |#2|)) (-15 -2855 (|#2| |#2|)) (-15 -2866 (|#2| |#2|)) (-15 -2876 (|#2| |#2|)) (-15 -2887 (|#2| |#2|)) (-15 -2899 (|#2| |#2|)) (-15 -4107 (|#2| |#2|)) (-15 -4117 (|#2| |#2|)) (-15 -4129 (|#2| |#2|)) (-15 -4140 (|#2| |#2|)) (-15 -4154 (|#2| |#2|)) (-15 -4163 (|#2| |#2|)) (-15 -4176 (|#2| |#2|)) (-15 -1578 (|#2| |#2|)) (-15 -1315 (|#2|)) (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -3398 (|#2|)) (-15 -4073 (|#2|)) (-15 -2278 (|#2| |#2|)) (-15 -4276 (|#2| |#2|)) (-15 -2560 (|#2| |#2|)) (-15 -1650 (|#2| |#2|)) (-15 -1695 (|#2| |#2|)) (-15 -3215 (|#2| |#2|)) (-15 -2747 (|#2| |#2|)) (-15 -2333 (|#2| |#2|)) (-15 -3736 (|#2| |#2|)) (-15 -3792 (|#2| |#2|)) (-15 -2025 (|#2| |#2|)) (-15 -1866 (|#2| |#2|)) (-15 -4096 (|#2| |#2|)) (-15 -2981 (|#2| |#2|)) (-15 -2107 (|#2| |#2|)) (-15 -3337 (|#2| |#2|)) (-15 -2472 (|#2| |#2|)) (-15 -3918 (|#2| |#2|)) (-15 -1364 (|#2| |#2|)) (-15 -2113 (|#2| |#2|)) (-15 -1934 (|#2| |#2|)) (-15 -3496 (|#2| |#2|)) (-15 -2992 (|#2| |#2|)) (-15 -3118 (|#2| |#2|)) (-15 -3562 (|#2| |#2|)) (-15 -3761 (|#2| |#2|)) (-15 -2126 ((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -1545 ((-112) |#2|))) (-562) (-13 (-436 |#1|) (-1011))) (T -279))
-((-1545 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *3)) (-4 *3 (-13 (-436 *4) (-1011))))) (-2126 (*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)))) (-3761 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3562 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3118 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2992 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3496 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1934 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2113 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1364 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3918 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2472 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3337 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2107 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2981 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4096 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1866 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2025 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3792 (*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))))) (-2333 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2747 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3215 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1695 (*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))))) (-2560 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4276 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2278 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4073 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-3398 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-3756 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-279 *3 *4)) (-4 *4 (-13 (-436 *3) (-1011))))) (-1388 (*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)))) (-1578 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4176 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4163 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4154 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4140 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4129 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4117 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4107 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2899 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2887 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2876 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2866 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2855 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2845 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2835 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2825 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2814 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2801 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2788 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2774 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2766 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2751 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2740 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2733 (*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))))) (-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 -2789 (|#2| |#2|)) (-15 -2733 (|#2| |#2|)) (-15 -2740 (|#2| |#2|)) (-15 -2751 (|#2| |#2|)) (-15 -2766 (|#2| |#2|)) (-15 -2774 (|#2| |#2|)) (-15 -2788 (|#2| |#2|)) (-15 -2801 (|#2| |#2|)) (-15 -2814 (|#2| |#2|)) (-15 -2825 (|#2| |#2|)) (-15 -2835 (|#2| |#2|)) (-15 -2845 (|#2| |#2|)) (-15 -2855 (|#2| |#2|)) (-15 -2866 (|#2| |#2|)) (-15 -2876 (|#2| |#2|)) (-15 -2887 (|#2| |#2|)) (-15 -2899 (|#2| |#2|)) (-15 -4107 (|#2| |#2|)) (-15 -4117 (|#2| |#2|)) (-15 -4129 (|#2| |#2|)) (-15 -4140 (|#2| |#2|)) (-15 -4154 (|#2| |#2|)) (-15 -4163 (|#2| |#2|)) (-15 -4176 (|#2| |#2|)) (-15 -1578 (|#2| |#2|)) (-15 -1315 (|#2|)) (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -3398 (|#2|)) (-15 -4073 (|#2|)) (-15 -2278 (|#2| |#2|)) (-15 -4276 (|#2| |#2|)) (-15 -2560 (|#2| |#2|)) (-15 -1650 (|#2| |#2|)) (-15 -1695 (|#2| |#2|)) (-15 -3215 (|#2| |#2|)) (-15 -2747 (|#2| |#2|)) (-15 -2333 (|#2| |#2|)) (-15 -3736 (|#2| |#2|)) (-15 -3792 (|#2| |#2|)) (-15 -2025 (|#2| |#2|)) (-15 -1866 (|#2| |#2|)) (-15 -4096 (|#2| |#2|)) (-15 -2981 (|#2| |#2|)) (-15 -2107 (|#2| |#2|)) (-15 -3337 (|#2| |#2|)) (-15 -2472 (|#2| |#2|)) (-15 -3918 (|#2| |#2|)) (-15 -1364 (|#2| |#2|)) (-15 -2113 (|#2| |#2|)) (-15 -1934 (|#2| |#2|)) (-15 -3496 (|#2| |#2|)) (-15 -2992 (|#2| |#2|)) (-15 -3118 (|#2| |#2|)) (-15 -3562 (|#2| |#2|)) (-15 -3761 (|#2| |#2|)) (-15 -2126 ((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -1545 ((-112) |#2|)))
-((-2577 (((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186)) 151)) (-4099 ((|#2| (-413 (-570)) |#2|) 49)) (-2099 ((|#2| |#2| (-618 |#2|)) 144)) (-3606 (((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186)) 143)) (-4200 ((|#2| |#2| (-1186)) 20) ((|#2| |#2|) 23)) (-2478 ((|#2| |#2| (-1186)) 157) ((|#2| |#2|) 155)))
-(((-280 |#1| |#2|) (-10 -7 (-15 -2478 (|#2| |#2|)) (-15 -2478 (|#2| |#2| (-1186))) (-15 -3606 ((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186))) (-15 -4200 (|#2| |#2|)) (-15 -4200 (|#2| |#2| (-1186))) (-15 -2577 ((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186))) (-15 -2099 (|#2| |#2| (-618 |#2|))) (-15 -4099 (|#2| (-413 (-570)) |#2|))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -280))
-((-4099 (*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))))) (-2099 (*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)))) (-2577 (*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)))) (-4200 (*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))))) (-4200 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3606 (*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))))) (-2478 (*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))))) (-2478 (*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 -2478 (|#2| |#2|)) (-15 -2478 (|#2| |#2| (-1186))) (-15 -3606 ((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186))) (-15 -4200 (|#2| |#2|)) (-15 -4200 (|#2| |#2| (-1186))) (-15 -2577 ((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186))) (-15 -2099 (|#2| |#2| (-618 |#2|))) (-15 -4099 (|#2| (-413 (-570)) |#2|)))
-((-1472 (((-3 |#3| "failed") |#3|) 120)) (-2887 ((|#3| |#3|) 142)) (-1815 (((-3 |#3| "failed") |#3|) 89)) (-2751 ((|#3| |#3|) 132)) (-3327 (((-3 |#3| "failed") |#3|) 65)) (-2866 ((|#3| |#3|) 140)) (-1352 (((-3 |#3| "failed") |#3|) 53)) (-2733 ((|#3| |#3|) 130)) (-1337 (((-3 |#3| "failed") |#3|) 122)) (-4107 ((|#3| |#3|) 144)) (-1389 (((-3 |#3| "failed") |#3|) 91)) (-2774 ((|#3| |#3|) 134)) (-2593 (((-3 |#3| "failed") |#3| (-777)) 41)) (-2681 (((-3 |#3| "failed") |#3|) 81)) (-2789 ((|#3| |#3|) 129)) (-3086 (((-3 |#3| "failed") |#3|) 51)) (-4387 ((|#3| |#3|) 128)) (-1627 (((-3 |#3| "failed") |#3|) 123)) (-4117 ((|#3| |#3|) 145)) (-4124 (((-3 |#3| "failed") |#3|) 92)) (-2788 ((|#3| |#3|) 135)) (-3507 (((-3 |#3| "failed") |#3|) 121)) (-2899 ((|#3| |#3|) 143)) (-2928 (((-3 |#3| "failed") |#3|) 90)) (-2766 ((|#3| |#3|) 133)) (-4131 (((-3 |#3| "failed") |#3|) 67)) (-2876 ((|#3| |#3|) 141)) (-4153 (((-3 |#3| "failed") |#3|) 55)) (-2740 ((|#3| |#3|) 131)) (-1803 (((-3 |#3| "failed") |#3|) 73)) (-4154 ((|#3| |#3|) 148)) (-3589 (((-3 |#3| "failed") |#3|) 114)) (-2825 ((|#3| |#3|) 152)) (-1865 (((-3 |#3| "failed") |#3|) 69)) (-4129 ((|#3| |#3|) 146)) (-3214 (((-3 |#3| "failed") |#3|) 57)) (-2801 ((|#3| |#3|) 136)) (-3158 (((-3 |#3| "failed") |#3|) 77)) (-4176 ((|#3| |#3|) 150)) (-2665 (((-3 |#3| "failed") |#3|) 61)) (-2845 ((|#3| |#3|) 138)) (-3810 (((-3 |#3| "failed") |#3|) 79)) (-1578 ((|#3| |#3|) 151)) (-4119 (((-3 |#3| "failed") |#3|) 63)) (-2855 ((|#3| |#3|) 139)) (-3091 (((-3 |#3| "failed") |#3|) 75)) (-4163 ((|#3| |#3|) 149)) (-1949 (((-3 |#3| "failed") |#3|) 117)) (-2835 ((|#3| |#3|) 153)) (-3061 (((-3 |#3| "failed") |#3|) 71)) (-4140 ((|#3| |#3|) 147)) (-3899 (((-3 |#3| "failed") |#3|) 59)) (-2814 ((|#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 -2789 (|#3| |#3|)) (-15 -2733 (|#3| |#3|)) (-15 -2740 (|#3| |#3|)) (-15 -2751 (|#3| |#3|)) (-15 -2766 (|#3| |#3|)) (-15 -2774 (|#3| |#3|)) (-15 -2788 (|#3| |#3|)) (-15 -2801 (|#3| |#3|)) (-15 -2814 (|#3| |#3|)) (-15 -2825 (|#3| |#3|)) (-15 -2835 (|#3| |#3|)) (-15 -2845 (|#3| |#3|)) (-15 -2855 (|#3| |#3|)) (-15 -2866 (|#3| |#3|)) (-15 -2876 (|#3| |#3|)) (-15 -2887 (|#3| |#3|)) (-15 -2899 (|#3| |#3|)) (-15 -4107 (|#3| |#3|)) (-15 -4117 (|#3| |#3|)) (-15 -4129 (|#3| |#3|)) (-15 -4140 (|#3| |#3|)) (-15 -4154 (|#3| |#3|)) (-15 -4163 (|#3| |#3|)) (-15 -4176 (|#3| |#3|)) (-15 -1578 (|#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)))) (-4387 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2789 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2733 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2740 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2751 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2766 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2774 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2788 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2801 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2814 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2825 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2835 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2845 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2855 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2866 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2876 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2887 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2899 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4107 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4117 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4129 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4140 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4154 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4163 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4176 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-1578 (*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 -4387 (|#3| |#3|)) (-15 -2789 (|#3| |#3|)) (-15 -2733 (|#3| |#3|)) (-15 -2740 (|#3| |#3|)) (-15 -2751 (|#3| |#3|)) (-15 -2766 (|#3| |#3|)) (-15 -2774 (|#3| |#3|)) (-15 -2788 (|#3| |#3|)) (-15 -2801 (|#3| |#3|)) (-15 -2814 (|#3| |#3|)) (-15 -2825 (|#3| |#3|)) (-15 -2835 (|#3| |#3|)) (-15 -2845 (|#3| |#3|)) (-15 -2855 (|#3| |#3|)) (-15 -2866 (|#3| |#3|)) (-15 -2876 (|#3| |#3|)) (-15 -2887 (|#3| |#3|)) (-15 -2899 (|#3| |#3|)) (-15 -4107 (|#3| |#3|)) (-15 -4117 (|#3| |#3|)) (-15 -4129 (|#3| |#3|)) (-15 -4140 (|#3| |#3|)) (-15 -4154 (|#3| |#3|)) (-15 -4163 (|#3| |#3|)) (-15 -4176 (|#3| |#3|)) (-15 -1578 (|#3| |#3|))))
-((-1472 (((-3 |#3| "failed") |#3|) 70)) (-2887 ((|#3| |#3|) 137)) (-1815 (((-3 |#3| "failed") |#3|) 54)) (-2751 ((|#3| |#3|) 125)) (-3327 (((-3 |#3| "failed") |#3|) 66)) (-2866 ((|#3| |#3|) 135)) (-1352 (((-3 |#3| "failed") |#3|) 50)) (-2733 ((|#3| |#3|) 123)) (-1337 (((-3 |#3| "failed") |#3|) 74)) (-4107 ((|#3| |#3|) 139)) (-1389 (((-3 |#3| "failed") |#3|) 58)) (-2774 ((|#3| |#3|) 127)) (-2593 (((-3 |#3| "failed") |#3| (-777)) 38)) (-2681 (((-3 |#3| "failed") |#3|) 48)) (-2789 ((|#3| |#3|) 111)) (-3086 (((-3 |#3| "failed") |#3|) 46)) (-4387 ((|#3| |#3|) 122)) (-1627 (((-3 |#3| "failed") |#3|) 76)) (-4117 ((|#3| |#3|) 140)) (-4124 (((-3 |#3| "failed") |#3|) 60)) (-2788 ((|#3| |#3|) 128)) (-3507 (((-3 |#3| "failed") |#3|) 72)) (-2899 ((|#3| |#3|) 138)) (-2928 (((-3 |#3| "failed") |#3|) 56)) (-2766 ((|#3| |#3|) 126)) (-4131 (((-3 |#3| "failed") |#3|) 68)) (-2876 ((|#3| |#3|) 136)) (-4153 (((-3 |#3| "failed") |#3|) 52)) (-2740 ((|#3| |#3|) 124)) (-1803 (((-3 |#3| "failed") |#3|) 78)) (-4154 ((|#3| |#3|) 143)) (-3589 (((-3 |#3| "failed") |#3|) 62)) (-2825 ((|#3| |#3|) 131)) (-1865 (((-3 |#3| "failed") |#3|) 112)) (-4129 ((|#3| |#3|) 141)) (-3214 (((-3 |#3| "failed") |#3|) 100)) (-2801 ((|#3| |#3|) 129)) (-3158 (((-3 |#3| "failed") |#3|) 116)) (-4176 ((|#3| |#3|) 145)) (-2665 (((-3 |#3| "failed") |#3|) 107)) (-2845 ((|#3| |#3|) 133)) (-3810 (((-3 |#3| "failed") |#3|) 117)) (-1578 ((|#3| |#3|) 146)) (-4119 (((-3 |#3| "failed") |#3|) 109)) (-2855 ((|#3| |#3|) 134)) (-3091 (((-3 |#3| "failed") |#3|) 80)) (-4163 ((|#3| |#3|) 144)) (-1949 (((-3 |#3| "failed") |#3|) 64)) (-2835 ((|#3| |#3|) 132)) (-3061 (((-3 |#3| "failed") |#3|) 113)) (-4140 ((|#3| |#3|) 142)) (-3899 (((-3 |#3| "failed") |#3|) 103)) (-2814 ((|#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 -2789 (|#3| |#3|)) (-15 -2733 (|#3| |#3|)) (-15 -2740 (|#3| |#3|)) (-15 -2751 (|#3| |#3|)) (-15 -2766 (|#3| |#3|)) (-15 -2774 (|#3| |#3|)) (-15 -2788 (|#3| |#3|)) (-15 -2801 (|#3| |#3|)) (-15 -2814 (|#3| |#3|)) (-15 -2825 (|#3| |#3|)) (-15 -2835 (|#3| |#3|)) (-15 -2845 (|#3| |#3|)) (-15 -2855 (|#3| |#3|)) (-15 -2866 (|#3| |#3|)) (-15 -2876 (|#3| |#3|)) (-15 -2887 (|#3| |#3|)) (-15 -2899 (|#3| |#3|)) (-15 -4107 (|#3| |#3|)) (-15 -4117 (|#3| |#3|)) (-15 -4129 (|#3| |#3|)) (-15 -4140 (|#3| |#3|)) (-15 -4154 (|#3| |#3|)) (-15 -4163 (|#3| |#3|)) (-15 -4176 (|#3| |#3|)) (-15 -1578 (|#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)))) (-4387 (*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)))) (-2789 (*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)))) (-2733 (*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)))) (-2740 (*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)))) (-2751 (*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)))) (-2766 (*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)))) (-2774 (*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)))) (-2788 (*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)))) (-2801 (*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)))) (-2814 (*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)))) (-2825 (*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)))) (-2835 (*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)))) (-2845 (*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)))) (-2855 (*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)))) (-2866 (*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)))) (-2876 (*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)))) (-2887 (*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)))) (-2899 (*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)))) (-4107 (*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)))) (-4117 (*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)))) (-4129 (*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)))) (-4140 (*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)))) (-4154 (*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)))) (-4163 (*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)))) (-4176 (*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)))) (-1578 (*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 -4387 (|#3| |#3|)) (-15 -2789 (|#3| |#3|)) (-15 -2733 (|#3| |#3|)) (-15 -2740 (|#3| |#3|)) (-15 -2751 (|#3| |#3|)) (-15 -2766 (|#3| |#3|)) (-15 -2774 (|#3| |#3|)) (-15 -2788 (|#3| |#3|)) (-15 -2801 (|#3| |#3|)) (-15 -2814 (|#3| |#3|)) (-15 -2825 (|#3| |#3|)) (-15 -2835 (|#3| |#3|)) (-15 -2845 (|#3| |#3|)) (-15 -2855 (|#3| |#3|)) (-15 -2866 (|#3| |#3|)) (-15 -2876 (|#3| |#3|)) (-15 -2887 (|#3| |#3|)) (-15 -2899 (|#3| |#3|)) (-15 -4107 (|#3| |#3|)) (-15 -4117 (|#3| |#3|)) (-15 -4129 (|#3| |#3|)) (-15 -4140 (|#3| |#3|)) (-15 -4154 (|#3| |#3|)) (-15 -4163 (|#3| |#3|)) (-15 -4176 (|#3| |#3|)) (-15 -1578 (|#3| |#3|))))
-((-4039 (((-112) $) 20)) (-2135 (((-1191) $) 7)) (-3056 (((-3 (-512) "failed") $) 14)) (-1951 (((-3 (-650 $) "failed") $) NIL)) (-2514 (((-3 (-512) "failed") $) 21)) (-2850 (((-3 (-1113) "failed") $) 18)) (-3935 (((-112) $) 16)) (-3799 (((-868) $) NIL)) (-4313 (((-112) $) 9)))
-(((-283) (-13 (-619 (-868)) (-10 -8 (-15 -2135 ((-1191) $)) (-15 -3935 ((-112) $)) (-15 -2850 ((-3 (-1113) "failed") $)) (-15 -4039 ((-112) $)) (-15 -2514 ((-3 (-512) "failed") $)) (-15 -4313 ((-112) $)) (-15 -3056 ((-3 (-512) "failed") $)) (-15 -1951 ((-3 (-650 $) "failed") $))))) (T -283))
-((-2135 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-283)))) (-3935 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-2850 (*1 *2 *1) (|partial| -12 (-5 *2 (-1113)) (-5 *1 (-283)))) (-4039 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-2514 (*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))) (-4313 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-3056 (*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))) (-1951 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-283))) (-5 *1 (-283)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -2135 ((-1191) $)) (-15 -3935 ((-112) $)) (-15 -2850 ((-3 (-1113) "failed") $)) (-15 -4039 ((-112) $)) (-15 -2514 ((-3 (-512) "failed") $)) (-15 -4313 ((-112) $)) (-15 -3056 ((-3 (-512) "failed") $)) (-15 -1951 ((-3 (-650 $) "failed") $))))
-((-3257 (((-603) $) 10)) (-3184 (((-591) $) 8)) (-4203 (((-295) $) 12)) (-2629 (($ (-591) (-603) (-295)) NIL)) (-3799 (((-868) $) 19)))
-(((-284) (-13 (-619 (-868)) (-10 -8 (-15 -2629 ($ (-591) (-603) (-295))) (-15 -3184 ((-591) $)) (-15 -3257 ((-603) $)) (-15 -4203 ((-295) $))))) (T -284))
-((-2629 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-591)) (-5 *3 (-603)) (-5 *4 (-295)) (-5 *1 (-284)))) (-3184 (*1 *2 *1) (-12 (-5 *2 (-591)) (-5 *1 (-284)))) (-3257 (*1 *2 *1) (-12 (-5 *2 (-603)) (-5 *1 (-284)))) (-4203 (*1 *2 *1) (-12 (-5 *2 (-295)) (-5 *1 (-284)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -2629 ($ (-591) (-603) (-295))) (-15 -3184 ((-591) $)) (-15 -3257 ((-603) $)) (-15 -4203 ((-295) $))))
-((-1431 (($ (-1 (-112) |#2|) $) 24)) (-3579 (($ $) 38)) (-3249 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 36)) (-1741 (($ |#2| $) 34) (($ (-1 (-112) |#2|) $) 18)) (-2168 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 42)) (-4290 (($ |#2| $ (-570)) 20) (($ $ $ (-570)) 22)) (-4326 (($ $ (-570)) 11) (($ $ (-1244 (-570))) 14)) (-3276 (($ $ |#2|) 32) (($ $ $) NIL)) (-2584 (($ $ |#2|) 31) (($ |#2| $) NIL) (($ $ $) 26) (($ (-650 $)) NIL)))
-(((-285 |#1| |#2|) (-10 -8 (-15 -2168 (|#1| |#1| |#1|)) (-15 -3249 (|#1| |#2| |#1|)) (-15 -2168 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3249 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3276 (|#1| |#1| |#1|)) (-15 -3276 (|#1| |#1| |#2|)) (-15 -4290 (|#1| |#1| |#1| (-570))) (-15 -4290 (|#1| |#2| |#1| (-570))) (-15 -4326 (|#1| |#1| (-1244 (-570)))) (-15 -4326 (|#1| |#1| (-570))) (-15 -2584 (|#1| (-650 |#1|))) (-15 -2584 (|#1| |#1| |#1|)) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#2|)) (-15 -1741 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1431 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1741 (|#1| |#2| |#1|)) (-15 -3579 (|#1| |#1|))) (-286 |#2|) (-1227)) (T -285))
-NIL
-(-10 -8 (-15 -2168 (|#1| |#1| |#1|)) (-15 -3249 (|#1| |#2| |#1|)) (-15 -2168 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3249 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3276 (|#1| |#1| |#1|)) (-15 -3276 (|#1| |#1| |#2|)) (-15 -4290 (|#1| |#1| |#1| (-570))) (-15 -4290 (|#1| |#2| |#1| (-570))) (-15 -4326 (|#1| |#1| (-1244 (-570)))) (-15 -4326 (|#1| |#1| (-570))) (-15 -2584 (|#1| (-650 |#1|))) (-15 -2584 (|#1| |#1| |#1|)) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#2|)) (-15 -1741 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1431 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1741 (|#1| |#2| |#1|)) (-15 -3579 (|#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-3753 (($ (-1 (-112) |#1|) $) 86)) (-1431 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3110 (($ $) 84 (|has| |#1| (-1109)))) (-3579 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ (-1 (-112) |#1|) $) 90) (($ |#1| $) 85 (|has| |#1| (-1109)))) (-1741 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 52)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-4291 (($ (-777) |#1|) 70)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-2168 (($ (-1 (-112) |#1| |#1|) $ $) 87) (($ $ $) 83 (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1385 (($ |#1| $ (-570)) 89) (($ $ $ (-570)) 88)) (-4290 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 43 (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2147 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-3459 (($ $ (-570)) 92) (($ $ (-1244 (-570))) 91)) (-4326 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 71)) (-3276 (($ $ |#1|) 94) (($ $ $) 93)) (-2584 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3529 (((-650 (-570)) $) 29)) (-3079 (((-777) $) 27)) (-3802 (((-868) $) 33) (($ (-650 (-570))) 23)) (-3359 (((-112) $ $) NIL)) (-2661 (($ (-777)) 30)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 9)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 17)))
+(((-278) (-13 (-856) (-10 -8 (-15 -3802 ($ (-650 (-570)))) (-15 -3079 ((-777) $)) (-15 -3529 ((-650 (-570)) $)) (-15 -2661 ($ (-777)))))) (T -278))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))) (-3079 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-278)))) (-3529 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))) (-2661 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-278)))))
+(-13 (-856) (-10 -8 (-15 -3802 ($ (-650 (-570)))) (-15 -3079 ((-777) $)) (-15 -3529 ((-650 (-570)) $)) (-15 -2661 ($ (-777)))))
+((-2890 ((|#2| |#2|) 77)) (-2755 ((|#2| |#2|) 65)) (-3048 (((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112))))) 125)) (-2869 ((|#2| |#2|) 75)) (-2736 ((|#2| |#2|) 63)) (-4109 ((|#2| |#2|) 79)) (-2777 ((|#2| |#2|) 67)) (-1315 ((|#2|) 46)) (-3759 (((-115) (-115)) 100)) (-2792 ((|#2| |#2|) 61)) (-2202 (((-112) |#2|) 147)) (-2390 ((|#2| |#2|) 195)) (-4257 ((|#2| |#2|) 171)) (-3428 ((|#2|) 59)) (-4268 ((|#2|) 58)) (-2853 ((|#2| |#2|) 191)) (-3849 ((|#2| |#2|) 167)) (-2241 ((|#2| |#2|) 199)) (-3185 ((|#2| |#2|) 175)) (-1663 ((|#2| |#2|) 163)) (-3983 ((|#2| |#2|) 165)) (-2918 ((|#2| |#2|) 201)) (-3336 ((|#2| |#2|) 177)) (-2481 ((|#2| |#2|) 197)) (-2060 ((|#2| |#2|) 173)) (-3821 ((|#2| |#2|) 193)) (-3851 ((|#2| |#2|) 169)) (-1685 ((|#2| |#2|) 207)) (-3189 ((|#2| |#2|) 183)) (-1598 ((|#2| |#2|) 203)) (-4387 ((|#2| |#2|) 179)) (-2186 ((|#2| |#2|) 211)) (-3672 ((|#2| |#2|) 187)) (-3434 ((|#2| |#2|) 213)) (-1562 ((|#2| |#2|) 189)) (-3541 ((|#2| |#2|) 209)) (-2240 ((|#2| |#2|) 185)) (-2820 ((|#2| |#2|) 205)) (-3735 ((|#2| |#2|) 181)) (-4389 ((|#2| |#2|) 62)) (-4120 ((|#2| |#2|) 80)) (-2791 ((|#2| |#2|) 68)) (-2902 ((|#2| |#2|) 78)) (-2768 ((|#2| |#2|) 66)) (-2879 ((|#2| |#2|) 76)) (-2743 ((|#2| |#2|) 64)) (-3200 (((-112) (-115)) 98)) (-4157 ((|#2| |#2|) 83)) (-2828 ((|#2| |#2|) 71)) (-4129 ((|#2| |#2|) 81)) (-2804 ((|#2| |#2|) 69)) (-4179 ((|#2| |#2|) 85)) (-2848 ((|#2| |#2|) 73)) (-1579 ((|#2| |#2|) 86)) (-2858 ((|#2| |#2|) 74)) (-4166 ((|#2| |#2|) 84)) (-2838 ((|#2| |#2|) 72)) (-4144 ((|#2| |#2|) 82)) (-2817 ((|#2| |#2|) 70)))
+(((-279 |#1| |#2|) (-10 -7 (-15 -4389 (|#2| |#2|)) (-15 -2792 (|#2| |#2|)) (-15 -2736 (|#2| |#2|)) (-15 -2743 (|#2| |#2|)) (-15 -2755 (|#2| |#2|)) (-15 -2768 (|#2| |#2|)) (-15 -2777 (|#2| |#2|)) (-15 -2791 (|#2| |#2|)) (-15 -2804 (|#2| |#2|)) (-15 -2817 (|#2| |#2|)) (-15 -2828 (|#2| |#2|)) (-15 -2838 (|#2| |#2|)) (-15 -2848 (|#2| |#2|)) (-15 -2858 (|#2| |#2|)) (-15 -2869 (|#2| |#2|)) (-15 -2879 (|#2| |#2|)) (-15 -2890 (|#2| |#2|)) (-15 -2902 (|#2| |#2|)) (-15 -4109 (|#2| |#2|)) (-15 -4120 (|#2| |#2|)) (-15 -4129 (|#2| |#2|)) (-15 -4144 (|#2| |#2|)) (-15 -4157 (|#2| |#2|)) (-15 -4166 (|#2| |#2|)) (-15 -4179 (|#2| |#2|)) (-15 -1579 (|#2| |#2|)) (-15 -1315 (|#2|)) (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -4268 (|#2|)) (-15 -3428 (|#2|)) (-15 -3983 (|#2| |#2|)) (-15 -1663 (|#2| |#2|)) (-15 -3849 (|#2| |#2|)) (-15 -3851 (|#2| |#2|)) (-15 -4257 (|#2| |#2|)) (-15 -2060 (|#2| |#2|)) (-15 -3185 (|#2| |#2|)) (-15 -3336 (|#2| |#2|)) (-15 -4387 (|#2| |#2|)) (-15 -3735 (|#2| |#2|)) (-15 -3189 (|#2| |#2|)) (-15 -2240 (|#2| |#2|)) (-15 -3672 (|#2| |#2|)) (-15 -1562 (|#2| |#2|)) (-15 -2853 (|#2| |#2|)) (-15 -3821 (|#2| |#2|)) (-15 -2390 (|#2| |#2|)) (-15 -2481 (|#2| |#2|)) (-15 -2241 (|#2| |#2|)) (-15 -2918 (|#2| |#2|)) (-15 -1598 (|#2| |#2|)) (-15 -2820 (|#2| |#2|)) (-15 -1685 (|#2| |#2|)) (-15 -3541 (|#2| |#2|)) (-15 -2186 (|#2| |#2|)) (-15 -3434 (|#2| |#2|)) (-15 -3048 ((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -2202 ((-112) |#2|))) (-562) (-13 (-436 |#1|) (-1011))) (T -279))
+((-2202 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *3)) (-4 *3 (-13 (-436 *4) (-1011))))) (-3048 (*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)))) (-3434 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2186 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3541 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1685 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2820 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1598 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2918 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2241 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2481 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2390 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3821 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2853 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1562 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3672 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2240 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3189 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3735 (*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))))) (-3336 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3185 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2060 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4257 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3851 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3849 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-1663 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3983 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-3428 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-4268 (*1 *2) (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2)) (-4 *3 (-562)))) (-3759 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-279 *3 *4)) (-4 *4 (-13 (-436 *3) (-1011))))) (-3200 (*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)))) (-1579 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4179 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4166 (*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))))) (-4144 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4129 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4120 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4109 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2902 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2890 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2879 (*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))))) (-2858 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2848 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2838 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2828 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2817 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2804 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2791 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2777 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2768 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2755 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2743 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2736 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-2792 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))) (-4389 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011))))))
+(-10 -7 (-15 -4389 (|#2| |#2|)) (-15 -2792 (|#2| |#2|)) (-15 -2736 (|#2| |#2|)) (-15 -2743 (|#2| |#2|)) (-15 -2755 (|#2| |#2|)) (-15 -2768 (|#2| |#2|)) (-15 -2777 (|#2| |#2|)) (-15 -2791 (|#2| |#2|)) (-15 -2804 (|#2| |#2|)) (-15 -2817 (|#2| |#2|)) (-15 -2828 (|#2| |#2|)) (-15 -2838 (|#2| |#2|)) (-15 -2848 (|#2| |#2|)) (-15 -2858 (|#2| |#2|)) (-15 -2869 (|#2| |#2|)) (-15 -2879 (|#2| |#2|)) (-15 -2890 (|#2| |#2|)) (-15 -2902 (|#2| |#2|)) (-15 -4109 (|#2| |#2|)) (-15 -4120 (|#2| |#2|)) (-15 -4129 (|#2| |#2|)) (-15 -4144 (|#2| |#2|)) (-15 -4157 (|#2| |#2|)) (-15 -4166 (|#2| |#2|)) (-15 -4179 (|#2| |#2|)) (-15 -1579 (|#2| |#2|)) (-15 -1315 (|#2|)) (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -4268 (|#2|)) (-15 -3428 (|#2|)) (-15 -3983 (|#2| |#2|)) (-15 -1663 (|#2| |#2|)) (-15 -3849 (|#2| |#2|)) (-15 -3851 (|#2| |#2|)) (-15 -4257 (|#2| |#2|)) (-15 -2060 (|#2| |#2|)) (-15 -3185 (|#2| |#2|)) (-15 -3336 (|#2| |#2|)) (-15 -4387 (|#2| |#2|)) (-15 -3735 (|#2| |#2|)) (-15 -3189 (|#2| |#2|)) (-15 -2240 (|#2| |#2|)) (-15 -3672 (|#2| |#2|)) (-15 -1562 (|#2| |#2|)) (-15 -2853 (|#2| |#2|)) (-15 -3821 (|#2| |#2|)) (-15 -2390 (|#2| |#2|)) (-15 -2481 (|#2| |#2|)) (-15 -2241 (|#2| |#2|)) (-15 -2918 (|#2| |#2|)) (-15 -1598 (|#2| |#2|)) (-15 -2820 (|#2| |#2|)) (-15 -1685 (|#2| |#2|)) (-15 -3541 (|#2| |#2|)) (-15 -2186 (|#2| |#2|)) (-15 -3434 (|#2| |#2|)) (-15 -3048 ((-3 |#2| "failed") |#2| (-650 (-2 (|:| |func| |#2|) (|:| |pole| (-112)))))) (-15 -2202 ((-112) |#2|)))
+((-3990 (((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186)) 151)) (-3706 ((|#2| (-413 (-570)) |#2|) 49)) (-2776 ((|#2| |#2| (-618 |#2|)) 144)) (-2558 (((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186)) 143)) (-2211 ((|#2| |#2| (-1186)) 20) ((|#2| |#2|) 23)) (-2454 ((|#2| |#2| (-1186)) 157) ((|#2| |#2|) 155)))
+(((-280 |#1| |#2|) (-10 -7 (-15 -2454 (|#2| |#2|)) (-15 -2454 (|#2| |#2| (-1186))) (-15 -2558 ((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186))) (-15 -2211 (|#2| |#2|)) (-15 -2211 (|#2| |#2| (-1186))) (-15 -3990 ((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186))) (-15 -2776 (|#2| |#2| (-618 |#2|))) (-15 -3706 (|#2| (-413 (-570)) |#2|))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -280))
+((-3706 (*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))))) (-2776 (*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)))) (-3990 (*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)))) (-2211 (*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))))) (-2211 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-280 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-2558 (*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))))) (-2454 (*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))))) (-2454 (*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 -2454 (|#2| |#2|)) (-15 -2454 (|#2| |#2| (-1186))) (-15 -2558 ((-2 (|:| |func| |#2|) (|:| |kers| (-650 (-618 |#2|))) (|:| |vals| (-650 |#2|))) |#2| (-1186))) (-15 -2211 (|#2| |#2|)) (-15 -2211 (|#2| |#2| (-1186))) (-15 -3990 ((-3 |#2| "failed") (-650 (-618 |#2|)) |#2| (-1186))) (-15 -2776 (|#2| |#2| (-618 |#2|))) (-15 -3706 (|#2| (-413 (-570)) |#2|)))
+((-2722 (((-3 |#3| "failed") |#3|) 120)) (-2890 ((|#3| |#3|) 142)) (-2981 (((-3 |#3| "failed") |#3|) 89)) (-2755 ((|#3| |#3|) 132)) (-1902 (((-3 |#3| "failed") |#3|) 65)) (-2869 ((|#3| |#3|) 140)) (-2059 (((-3 |#3| "failed") |#3|) 53)) (-2736 ((|#3| |#3|) 130)) (-1912 (((-3 |#3| "failed") |#3|) 122)) (-4109 ((|#3| |#3|) 144)) (-3210 (((-3 |#3| "failed") |#3|) 91)) (-2777 ((|#3| |#3|) 134)) (-4126 (((-3 |#3| "failed") |#3| (-777)) 41)) (-3782 (((-3 |#3| "failed") |#3|) 81)) (-2792 ((|#3| |#3|) 129)) (-3245 (((-3 |#3| "failed") |#3|) 51)) (-4389 ((|#3| |#3|) 128)) (-1768 (((-3 |#3| "failed") |#3|) 123)) (-4120 ((|#3| |#3|) 145)) (-2742 (((-3 |#3| "failed") |#3|) 92)) (-2791 ((|#3| |#3|) 135)) (-2926 (((-3 |#3| "failed") |#3|) 121)) (-2902 ((|#3| |#3|) 143)) (-2306 (((-3 |#3| "failed") |#3|) 90)) (-2768 ((|#3| |#3|) 133)) (-2797 (((-3 |#3| "failed") |#3|) 67)) (-2879 ((|#3| |#3|) 141)) (-2966 (((-3 |#3| "failed") |#3|) 55)) (-2743 ((|#3| |#3|) 131)) (-2881 (((-3 |#3| "failed") |#3|) 73)) (-4157 ((|#3| |#3|) 148)) (-2424 (((-3 |#3| "failed") |#3|) 114)) (-2828 ((|#3| |#3|) 152)) (-2230 (((-3 |#3| "failed") |#3|) 69)) (-4129 ((|#3| |#3|) 146)) (-2049 (((-3 |#3| "failed") |#3|) 57)) (-2804 ((|#3| |#3|) 136)) (-2724 (((-3 |#3| "failed") |#3|) 77)) (-4179 ((|#3| |#3|) 150)) (-3646 (((-3 |#3| "failed") |#3|) 61)) (-2848 ((|#3| |#3|) 138)) (-2715 (((-3 |#3| "failed") |#3|) 79)) (-1579 ((|#3| |#3|) 151)) (-2700 (((-3 |#3| "failed") |#3|) 63)) (-2858 ((|#3| |#3|) 139)) (-3288 (((-3 |#3| "failed") |#3|) 75)) (-4166 ((|#3| |#3|) 149)) (-1732 (((-3 |#3| "failed") |#3|) 117)) (-2838 ((|#3| |#3|) 153)) (-4191 (((-3 |#3| "failed") |#3|) 71)) (-4144 ((|#3| |#3|) 147)) (-2304 (((-3 |#3| "failed") |#3|) 59)) (-2817 ((|#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 -4389 (|#3| |#3|)) (-15 -2792 (|#3| |#3|)) (-15 -2736 (|#3| |#3|)) (-15 -2743 (|#3| |#3|)) (-15 -2755 (|#3| |#3|)) (-15 -2768 (|#3| |#3|)) (-15 -2777 (|#3| |#3|)) (-15 -2791 (|#3| |#3|)) (-15 -2804 (|#3| |#3|)) (-15 -2817 (|#3| |#3|)) (-15 -2828 (|#3| |#3|)) (-15 -2838 (|#3| |#3|)) (-15 -2848 (|#3| |#3|)) (-15 -2858 (|#3| |#3|)) (-15 -2869 (|#3| |#3|)) (-15 -2879 (|#3| |#3|)) (-15 -2890 (|#3| |#3|)) (-15 -2902 (|#3| |#3|)) (-15 -4109 (|#3| |#3|)) (-15 -4120 (|#3| |#3|)) (-15 -4129 (|#3| |#3|)) (-15 -4144 (|#3| |#3|)) (-15 -4157 (|#3| |#3|)) (-15 -4166 (|#3| |#3|)) (-15 -4179 (|#3| |#3|)) (-15 -1579 (|#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)))) (-4389 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2792 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2736 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2743 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2755 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2768 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2777 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2791 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2804 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2817 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2828 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2838 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2848 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2858 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2869 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2879 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2890 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-2902 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4109 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4120 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4129 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4144 (*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)))) (-4166 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-4179 (*1 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-4 *4 (-1268 *3)) (-5 *1 (-281 *3 *4 *2)) (-4 *2 (-1239 *3 *4)))) (-1579 (*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 -4389 (|#3| |#3|)) (-15 -2792 (|#3| |#3|)) (-15 -2736 (|#3| |#3|)) (-15 -2743 (|#3| |#3|)) (-15 -2755 (|#3| |#3|)) (-15 -2768 (|#3| |#3|)) (-15 -2777 (|#3| |#3|)) (-15 -2791 (|#3| |#3|)) (-15 -2804 (|#3| |#3|)) (-15 -2817 (|#3| |#3|)) (-15 -2828 (|#3| |#3|)) (-15 -2838 (|#3| |#3|)) (-15 -2848 (|#3| |#3|)) (-15 -2858 (|#3| |#3|)) (-15 -2869 (|#3| |#3|)) (-15 -2879 (|#3| |#3|)) (-15 -2890 (|#3| |#3|)) (-15 -2902 (|#3| |#3|)) (-15 -4109 (|#3| |#3|)) (-15 -4120 (|#3| |#3|)) (-15 -4129 (|#3| |#3|)) (-15 -4144 (|#3| |#3|)) (-15 -4157 (|#3| |#3|)) (-15 -4166 (|#3| |#3|)) (-15 -4179 (|#3| |#3|)) (-15 -1579 (|#3| |#3|))))
+((-2722 (((-3 |#3| "failed") |#3|) 70)) (-2890 ((|#3| |#3|) 137)) (-2981 (((-3 |#3| "failed") |#3|) 54)) (-2755 ((|#3| |#3|) 125)) (-1902 (((-3 |#3| "failed") |#3|) 66)) (-2869 ((|#3| |#3|) 135)) (-2059 (((-3 |#3| "failed") |#3|) 50)) (-2736 ((|#3| |#3|) 123)) (-1912 (((-3 |#3| "failed") |#3|) 74)) (-4109 ((|#3| |#3|) 139)) (-3210 (((-3 |#3| "failed") |#3|) 58)) (-2777 ((|#3| |#3|) 127)) (-4126 (((-3 |#3| "failed") |#3| (-777)) 38)) (-3782 (((-3 |#3| "failed") |#3|) 48)) (-2792 ((|#3| |#3|) 111)) (-3245 (((-3 |#3| "failed") |#3|) 46)) (-4389 ((|#3| |#3|) 122)) (-1768 (((-3 |#3| "failed") |#3|) 76)) (-4120 ((|#3| |#3|) 140)) (-2742 (((-3 |#3| "failed") |#3|) 60)) (-2791 ((|#3| |#3|) 128)) (-2926 (((-3 |#3| "failed") |#3|) 72)) (-2902 ((|#3| |#3|) 138)) (-2306 (((-3 |#3| "failed") |#3|) 56)) (-2768 ((|#3| |#3|) 126)) (-2797 (((-3 |#3| "failed") |#3|) 68)) (-2879 ((|#3| |#3|) 136)) (-2966 (((-3 |#3| "failed") |#3|) 52)) (-2743 ((|#3| |#3|) 124)) (-2881 (((-3 |#3| "failed") |#3|) 78)) (-4157 ((|#3| |#3|) 143)) (-2424 (((-3 |#3| "failed") |#3|) 62)) (-2828 ((|#3| |#3|) 131)) (-2230 (((-3 |#3| "failed") |#3|) 112)) (-4129 ((|#3| |#3|) 141)) (-2049 (((-3 |#3| "failed") |#3|) 100)) (-2804 ((|#3| |#3|) 129)) (-2724 (((-3 |#3| "failed") |#3|) 116)) (-4179 ((|#3| |#3|) 145)) (-3646 (((-3 |#3| "failed") |#3|) 107)) (-2848 ((|#3| |#3|) 133)) (-2715 (((-3 |#3| "failed") |#3|) 117)) (-1579 ((|#3| |#3|) 146)) (-2700 (((-3 |#3| "failed") |#3|) 109)) (-2858 ((|#3| |#3|) 134)) (-3288 (((-3 |#3| "failed") |#3|) 80)) (-4166 ((|#3| |#3|) 144)) (-1732 (((-3 |#3| "failed") |#3|) 64)) (-2838 ((|#3| |#3|) 132)) (-4191 (((-3 |#3| "failed") |#3|) 113)) (-4144 ((|#3| |#3|) 142)) (-2304 (((-3 |#3| "failed") |#3|) 103)) (-2817 ((|#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 -4389 (|#3| |#3|)) (-15 -2792 (|#3| |#3|)) (-15 -2736 (|#3| |#3|)) (-15 -2743 (|#3| |#3|)) (-15 -2755 (|#3| |#3|)) (-15 -2768 (|#3| |#3|)) (-15 -2777 (|#3| |#3|)) (-15 -2791 (|#3| |#3|)) (-15 -2804 (|#3| |#3|)) (-15 -2817 (|#3| |#3|)) (-15 -2828 (|#3| |#3|)) (-15 -2838 (|#3| |#3|)) (-15 -2848 (|#3| |#3|)) (-15 -2858 (|#3| |#3|)) (-15 -2869 (|#3| |#3|)) (-15 -2879 (|#3| |#3|)) (-15 -2890 (|#3| |#3|)) (-15 -2902 (|#3| |#3|)) (-15 -4109 (|#3| |#3|)) (-15 -4120 (|#3| |#3|)) (-15 -4129 (|#3| |#3|)) (-15 -4144 (|#3| |#3|)) (-15 -4157 (|#3| |#3|)) (-15 -4166 (|#3| |#3|)) (-15 -4179 (|#3| |#3|)) (-15 -1579 (|#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)))) (-4389 (*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)))) (-2792 (*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)))) (-2736 (*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)))) (-2743 (*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)))) (-2755 (*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)))) (-2768 (*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)))) (-2777 (*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)))) (-2791 (*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)))) (-2804 (*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)))) (-2817 (*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)))) (-2828 (*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)))) (-2838 (*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)))) (-2848 (*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)))) (-2858 (*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)))) (-2869 (*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)))) (-2879 (*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)))) (-2890 (*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)))) (-2902 (*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)))) (-4109 (*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)))) (-4120 (*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)))) (-4129 (*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)))) (-4144 (*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)))) (-4166 (*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)))) (-4179 (*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)))) (-1579 (*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 -4389 (|#3| |#3|)) (-15 -2792 (|#3| |#3|)) (-15 -2736 (|#3| |#3|)) (-15 -2743 (|#3| |#3|)) (-15 -2755 (|#3| |#3|)) (-15 -2768 (|#3| |#3|)) (-15 -2777 (|#3| |#3|)) (-15 -2791 (|#3| |#3|)) (-15 -2804 (|#3| |#3|)) (-15 -2817 (|#3| |#3|)) (-15 -2828 (|#3| |#3|)) (-15 -2838 (|#3| |#3|)) (-15 -2848 (|#3| |#3|)) (-15 -2858 (|#3| |#3|)) (-15 -2869 (|#3| |#3|)) (-15 -2879 (|#3| |#3|)) (-15 -2890 (|#3| |#3|)) (-15 -2902 (|#3| |#3|)) (-15 -4109 (|#3| |#3|)) (-15 -4120 (|#3| |#3|)) (-15 -4129 (|#3| |#3|)) (-15 -4144 (|#3| |#3|)) (-15 -4157 (|#3| |#3|)) (-15 -4166 (|#3| |#3|)) (-15 -4179 (|#3| |#3|)) (-15 -1579 (|#3| |#3|))))
+((-4250 (((-112) $) 20)) (-2136 (((-1191) $) 7)) (-4136 (((-3 (-512) "failed") $) 14)) (-1760 (((-3 (-650 $) "failed") $) NIL)) (-1525 (((-3 (-512) "failed") $) 21)) (-1645 (((-3 (-1113) "failed") $) 18)) (-2624 (((-112) $) 16)) (-3802 (((-868) $) NIL)) (-2026 (((-112) $) 9)))
+(((-283) (-13 (-619 (-868)) (-10 -8 (-15 -2136 ((-1191) $)) (-15 -2624 ((-112) $)) (-15 -1645 ((-3 (-1113) "failed") $)) (-15 -4250 ((-112) $)) (-15 -1525 ((-3 (-512) "failed") $)) (-15 -2026 ((-112) $)) (-15 -4136 ((-3 (-512) "failed") $)) (-15 -1760 ((-3 (-650 $) "failed") $))))) (T -283))
+((-2136 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-283)))) (-2624 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-1645 (*1 *2 *1) (|partial| -12 (-5 *2 (-1113)) (-5 *1 (-283)))) (-4250 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-1525 (*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))) (-2026 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))) (-4136 (*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))) (-1760 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-283))) (-5 *1 (-283)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -2136 ((-1191) $)) (-15 -2624 ((-112) $)) (-15 -1645 ((-3 (-1113) "failed") $)) (-15 -4250 ((-112) $)) (-15 -1525 ((-3 (-512) "failed") $)) (-15 -2026 ((-112) $)) (-15 -4136 ((-3 (-512) "failed") $)) (-15 -1760 ((-3 (-650 $) "failed") $))))
+((-3260 (((-603) $) 10)) (-2959 (((-591) $) 8)) (-2245 (((-295) $) 12)) (-3281 (($ (-591) (-603) (-295)) NIL)) (-3802 (((-868) $) 19)))
+(((-284) (-13 (-619 (-868)) (-10 -8 (-15 -3281 ($ (-591) (-603) (-295))) (-15 -2959 ((-591) $)) (-15 -3260 ((-603) $)) (-15 -2245 ((-295) $))))) (T -284))
+((-3281 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-591)) (-5 *3 (-603)) (-5 *4 (-295)) (-5 *1 (-284)))) (-2959 (*1 *2 *1) (-12 (-5 *2 (-591)) (-5 *1 (-284)))) (-3260 (*1 *2 *1) (-12 (-5 *2 (-603)) (-5 *1 (-284)))) (-2245 (*1 *2 *1) (-12 (-5 *2 (-295)) (-5 *1 (-284)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3281 ($ (-591) (-603) (-295))) (-15 -2959 ((-591) $)) (-15 -3260 ((-603) $)) (-15 -2245 ((-295) $))))
+((-1434 (($ (-1 (-112) |#2|) $) 24)) (-3582 (($ $) 38)) (-2385 (($ (-1 (-112) |#2|) $) NIL) (($ |#2| $) 36)) (-1742 (($ |#2| $) 34) (($ (-1 (-112) |#2|) $) 18)) (-2270 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 42)) (-4293 (($ |#2| $ (-570)) 20) (($ $ $ (-570)) 22)) (-4330 (($ $ (-570)) 11) (($ $ (-1244 (-570))) 14)) (-1319 (($ $ |#2|) 32) (($ $ $) NIL)) (-2585 (($ $ |#2|) 31) (($ |#2| $) NIL) (($ $ $) 26) (($ (-650 $)) NIL)))
+(((-285 |#1| |#2|) (-10 -8 (-15 -2270 (|#1| |#1| |#1|)) (-15 -2385 (|#1| |#2| |#1|)) (-15 -2270 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2385 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1319 (|#1| |#1| |#1|)) (-15 -1319 (|#1| |#1| |#2|)) (-15 -4293 (|#1| |#1| |#1| (-570))) (-15 -4293 (|#1| |#2| |#1| (-570))) (-15 -4330 (|#1| |#1| (-1244 (-570)))) (-15 -4330 (|#1| |#1| (-570))) (-15 -2585 (|#1| (-650 |#1|))) (-15 -2585 (|#1| |#1| |#1|)) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#2|)) (-15 -1742 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1434 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1742 (|#1| |#2| |#1|)) (-15 -3582 (|#1| |#1|))) (-286 |#2|) (-1227)) (T -285))
+NIL
+(-10 -8 (-15 -2270 (|#1| |#1| |#1|)) (-15 -2385 (|#1| |#2| |#1|)) (-15 -2270 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -2385 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1319 (|#1| |#1| |#1|)) (-15 -1319 (|#1| |#1| |#2|)) (-15 -4293 (|#1| |#1| |#1| (-570))) (-15 -4293 (|#1| |#2| |#1| (-570))) (-15 -4330 (|#1| |#1| (-1244 (-570)))) (-15 -4330 (|#1| |#1| (-570))) (-15 -2585 (|#1| (-650 |#1|))) (-15 -2585 (|#1| |#1| |#1|)) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#2|)) (-15 -1742 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1434 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1742 (|#1| |#2| |#1|)) (-15 -3582 (|#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4453)))) (-3353 (($ (-1 (-112) |#1|) $) 86)) (-1434 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3476 (($ $) 84 (|has| |#1| (-1109)))) (-3582 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ (-1 (-112) |#1|) $) 90) (($ |#1| $) 85 (|has| |#1| (-1109)))) (-1742 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 52)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-4294 (($ (-777) |#1|) 70)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-2270 (($ (-1 (-112) |#1| |#1|) $ $) 87) (($ $ $) 83 (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3502 (($ |#1| $ (-570)) 89) (($ $ $ (-570)) 88)) (-4293 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 43 (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2061 (($ $ |#1|) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-3651 (($ $ (-570)) 92) (($ $ (-1244 (-570))) 91)) (-4330 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 71)) (-1319 (($ $ |#1|) 94) (($ $ $) 93)) (-2585 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-286 |#1|) (-141) (-1227)) (T -286))
-((-3276 (*1 *1 *1 *2) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-3276 (*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-3459 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3459 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3249 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-1385 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-1385 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-2168 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3753 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3249 (*1 *1 *2 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-3110 (*1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-2168 (*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))))
-(-13 (-657 |t#1|) (-10 -8 (-6 -4450) (-15 -3276 ($ $ |t#1|)) (-15 -3276 ($ $ $)) (-15 -3459 ($ $ (-570))) (-15 -3459 ($ $ (-1244 (-570)))) (-15 -3249 ($ (-1 (-112) |t#1|) $)) (-15 -1385 ($ |t#1| $ (-570))) (-15 -1385 ($ $ $ (-570))) (-15 -2168 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3753 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3249 ($ |t#1| $)) (-15 -3110 ($ $))) |%noBranch|) (IF (|has| |t#1| (-856)) (-15 -2168 ($ $ $)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
+((-1319 (*1 *1 *1 *2) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-1319 (*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-3651 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3651 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-2385 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3502 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-286 *2)) (-4 *2 (-1227)))) (-3502 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-2270 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-3353 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-286 *3)) (-4 *3 (-1227)))) (-2385 (*1 *1 *2 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-3476 (*1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-1109)))) (-2270 (*1 *1 *1 *1) (-12 (-4 *1 (-286 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))))
+(-13 (-657 |t#1|) (-10 -8 (-6 -4453) (-15 -1319 ($ $ |t#1|)) (-15 -1319 ($ $ $)) (-15 -3651 ($ $ (-570))) (-15 -3651 ($ $ (-1244 (-570)))) (-15 -2385 ($ (-1 (-112) |t#1|) $)) (-15 -3502 ($ |t#1| $ (-570))) (-15 -3502 ($ $ $ (-570))) (-15 -2270 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -3353 ($ (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -2385 ($ |t#1| $)) (-15 -3476 ($ $))) |%noBranch|) (IF (|has| |t#1| (-856)) (-15 -2270 ($ $ $)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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|)))
-((-2789 (($ $) 6)) (-4387 (($ $) 7)) (** (($ $ $) 8)))
+((-2792 (($ $) 6)) (-4389 (($ $) 7)) (** (($ $ $) 8)))
(((-288) (-141)) (T -288))
-((** (*1 *1 *1 *1) (-4 *1 (-288))) (-4387 (*1 *1 *1) (-4 *1 (-288))) (-2789 (*1 *1 *1) (-4 *1 (-288))))
-(-13 (-10 -8 (-15 -2789 ($ $)) (-15 -4387 ($ $)) (-15 ** ($ $ $))))
-((-1310 (((-650 (-1166 |#1|)) (-1166 |#1|) |#1|) 35)) (-4207 ((|#2| |#2| |#1|) 39)) (-3266 ((|#2| |#2| |#1|) 41)) (-3112 ((|#2| |#2| |#1|) 40)))
-(((-289 |#1| |#2|) (-10 -7 (-15 -4207 (|#2| |#2| |#1|)) (-15 -3112 (|#2| |#2| |#1|)) (-15 -3266 (|#2| |#2| |#1|)) (-15 -1310 ((-650 (-1166 |#1|)) (-1166 |#1|) |#1|))) (-368) (-1268 |#1|)) (T -289))
-((-1310 (*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)))) (-3266 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))) (-3112 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))) (-4207 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))))
-(-10 -7 (-15 -4207 (|#2| |#2| |#1|)) (-15 -3112 (|#2| |#2| |#1|)) (-15 -3266 (|#2| |#2| |#1|)) (-15 -1310 ((-650 (-1166 |#1|)) (-1166 |#1|) |#1|)))
-((-1941 ((|#2| $ |#1|) 6)))
+((** (*1 *1 *1 *1) (-4 *1 (-288))) (-4389 (*1 *1 *1) (-4 *1 (-288))) (-2792 (*1 *1 *1) (-4 *1 (-288))))
+(-13 (-10 -8 (-15 -2792 ($ $)) (-15 -4389 ($ $)) (-15 ** ($ $ $))))
+((-1573 (((-650 (-1166 |#1|)) (-1166 |#1|) |#1|) 35)) (-4210 ((|#2| |#2| |#1|) 39)) (-2543 ((|#2| |#2| |#1|) 41)) (-3115 ((|#2| |#2| |#1|) 40)))
+(((-289 |#1| |#2|) (-10 -7 (-15 -4210 (|#2| |#2| |#1|)) (-15 -3115 (|#2| |#2| |#1|)) (-15 -2543 (|#2| |#2| |#1|)) (-15 -1573 ((-650 (-1166 |#1|)) (-1166 |#1|) |#1|))) (-368) (-1268 |#1|)) (T -289))
+((-1573 (*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)))) (-2543 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))) (-3115 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))) (-4210 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))))
+(-10 -7 (-15 -4210 (|#2| |#2| |#1|)) (-15 -3115 (|#2| |#2| |#1|)) (-15 -2543 (|#2| |#2| |#1|)) (-15 -1573 ((-650 (-1166 |#1|)) (-1166 |#1|) |#1|)))
+((-1942 ((|#2| $ |#1|) 6)))
(((-290 |#1| |#2|) (-141) (-1109) (-1227)) (T -290))
-((-1941 (*1 *2 *1 *3) (-12 (-4 *1 (-290 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))))
-(-13 (-10 -8 (-15 -1941 (|t#2| $ |t#1|))))
-((-1517 ((|#3| $ |#2| |#3|) 12)) (-3820 ((|#3| $ |#2|) 10)))
-(((-291 |#1| |#2| |#3|) (-10 -8 (-15 -1517 (|#3| |#1| |#2| |#3|)) (-15 -3820 (|#3| |#1| |#2|))) (-292 |#2| |#3|) (-1109) (-1227)) (T -291))
+((-1942 (*1 *2 *1 *3) (-12 (-4 *1 (-290 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))))
+(-13 (-10 -8 (-15 -1942 (|t#2| $ |t#1|))))
+((-1518 ((|#3| $ |#2| |#3|) 12)) (-3824 ((|#3| $ |#2|) 10)))
+(((-291 |#1| |#2| |#3|) (-10 -8 (-15 -1518 (|#3| |#1| |#2| |#3|)) (-15 -3824 (|#3| |#1| |#2|))) (-292 |#2| |#3|) (-1109) (-1227)) (T -291))
NIL
-(-10 -8 (-15 -1517 (|#3| |#1| |#2| |#3|)) (-15 -3820 (|#3| |#1| |#2|)))
-((-3932 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4450)))) (-1517 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) 11)) (-1941 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
+(-10 -8 (-15 -1518 (|#3| |#1| |#2| |#3|)) (-15 -3824 (|#3| |#1| |#2|)))
+((-3935 ((|#2| $ |#1| |#2|) 10 (|has| $ (-6 -4453)))) (-1518 ((|#2| $ |#1| |#2|) 9 (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) 11)) (-1942 ((|#2| $ |#1|) 6) ((|#2| $ |#1| |#2|) 12)))
(((-292 |#1| |#2|) (-141) (-1109) (-1227)) (T -292))
-((-1941 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3820 (*1 *2 *1 *3) (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3932 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-1517 (*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 -1941 (|t#2| $ |t#1| |t#2|)) (-15 -3820 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3932 (|t#2| $ |t#1| |t#2|)) (-15 -1517 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
+((-1942 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3824 (*1 *2 *1 *3) (-12 (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3935 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-1518 (*1 *2 *1 *3 *2) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))))
+(-13 (-290 |t#1| |t#2|) (-10 -8 (-15 -1942 (|t#2| $ |t#1| |t#2|)) (-15 -3824 (|t#2| $ |t#1|)) (IF (|has| $ (-6 -4453)) (PROGN (-15 -3935 (|t#2| $ |t#1| |t#2|)) (-15 -1518 (|t#2| $ |t#1| |t#2|))) |%noBranch|)))
(((-290 |#1| |#2|) . T))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 37)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 44)) (-3074 (($ $) 41)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-2506 (($ $ $) 35)) (-3624 (($ |#2| |#3|) 18)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-4346 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1932 ((|#3| $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 19)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4046 (((-3 $ "failed") $ $) NIL)) (-2142 (((-777) $) 36)) (-1941 ((|#2| $ |#2|) 46)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 23)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) 31 T CONST)) (-1875 (($) 39 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 40)))
-(((-293 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-311) (-10 -8 (-15 -1932 (|#3| $)) (-15 -3799 (|#2| $)) (-15 -3624 ($ |#2| |#3|)) (-15 -4046 ((-3 $ "failed") $ $)) (-15 -2875 ((-3 $ "failed") $)) (-15 -1877 ($ $)) (-15 -1941 (|#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))
-((-2875 (*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)))) (-1932 (*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)))) (-3799 (*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)))) (-3624 (*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)))) (-4046 (*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)))) (-1877 (*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)))) (-1941 (*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 -1932 (|#3| $)) (-15 -3799 (|#2| $)) (-15 -3624 ($ |#2| |#3|)) (-15 -4046 ((-3 $ "failed") $ $)) (-15 -2875 ((-3 $ "failed") $)) (-15 -1877 ($ $)) (-15 -1941 (|#2| $ |#2|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 37)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 44)) (-4306 (($ $) 41)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2504 (($ $ $) 35)) (-3627 (($ |#2| |#3|) 18)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-4139 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1574 ((|#3| $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 19)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4326 (((-3 $ "failed") $ $) NIL)) (-2006 (((-777) $) 36)) (-1942 ((|#2| $ |#2|) 46)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 23)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) ((|#2| $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) 31 T CONST)) (-1876 (($) 39 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 40)))
+(((-293 |#1| |#2| |#3| |#4| |#5| |#6|) (-13 (-311) (-10 -8 (-15 -1574 (|#3| $)) (-15 -3802 (|#2| $)) (-15 -3627 ($ |#2| |#3|)) (-15 -4326 ((-3 $ "failed") $ $)) (-15 -1929 ((-3 $ "failed") $)) (-15 -1878 ($ $)) (-15 -1942 (|#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))
+((-1929 (*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)))) (-1574 (*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)))) (-3802 (*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)))) (-3627 (*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)))) (-4326 (*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)))) (-1878 (*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)))) (-1942 (*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 -1574 (|#3| $)) (-15 -3802 (|#2| $)) (-15 -3627 ($ |#2| |#3|)) (-15 -4326 ((-3 $ "failed") $ $)) (-15 -1929 ((-3 $ "failed") $)) (-15 -1878 ($ $)) (-15 -1942 (|#2| $ |#2|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-294) (-141)) (T -294))
NIL
-(-13 (-1058) (-111 $ $) (-10 -7 (-6 -4442)))
+(-13 (-1058) (-111 $ $) (-10 -7 (-6 -4445)))
(((-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))
-((-3857 (((-650 (-1094)) $) 10)) (-4120 (($ (-512) (-512) (-1113) $) 19)) (-3961 (($ (-512) (-650 (-972)) $) 23)) (-1629 (($) 25)) (-2581 (((-697 (-1113)) (-512) (-512) $) 18)) (-2284 (((-650 (-972)) (-512) $) 22)) (-2380 (($) 7)) (-1400 (($) 24)) (-3799 (((-868) $) 29)) (-4077 (($) 26)))
-(((-295) (-13 (-619 (-868)) (-10 -8 (-15 -2380 ($)) (-15 -3857 ((-650 (-1094)) $)) (-15 -2581 ((-697 (-1113)) (-512) (-512) $)) (-15 -4120 ($ (-512) (-512) (-1113) $)) (-15 -2284 ((-650 (-972)) (-512) $)) (-15 -3961 ($ (-512) (-650 (-972)) $)) (-15 -1400 ($)) (-15 -1629 ($)) (-15 -4077 ($))))) (T -295))
-((-2380 (*1 *1) (-5 *1 (-295))) (-3857 (*1 *2 *1) (-12 (-5 *2 (-650 (-1094))) (-5 *1 (-295)))) (-2581 (*1 *2 *3 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-1113))) (-5 *1 (-295)))) (-4120 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-295)))) (-2284 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-650 (-972))) (-5 *1 (-295)))) (-3961 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-295)))) (-1400 (*1 *1) (-5 *1 (-295))) (-1629 (*1 *1) (-5 *1 (-295))) (-4077 (*1 *1) (-5 *1 (-295))))
-(-13 (-619 (-868)) (-10 -8 (-15 -2380 ($)) (-15 -3857 ((-650 (-1094)) $)) (-15 -2581 ((-697 (-1113)) (-512) (-512) $)) (-15 -4120 ($ (-512) (-512) (-1113) $)) (-15 -2284 ((-650 (-972)) (-512) $)) (-15 -3961 ($ (-512) (-650 (-972)) $)) (-15 -1400 ($)) (-15 -1629 ($)) (-15 -4077 ($))))
-((-2309 (((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))) 102)) (-3329 (((-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|)))) 97) (((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777)) 41)) (-3126 (((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))) 99)) (-2724 (((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|)))) 75)) (-2852 (((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|)))) 74)) (-3553 (((-959 |#1|) (-695 (-413 (-959 |#1|)))) 55) (((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186)) 56)))
-(((-296 |#1|) (-10 -7 (-15 -3553 ((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186))) (-15 -3553 ((-959 |#1|) (-695 (-413 (-959 |#1|))))) (-15 -2852 ((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|))))) (-15 -2724 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))))) (-15 -3329 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777))) (-15 -3329 ((-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 -2309 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))) (-15 -3126 ((-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))
-((-3126 (*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)))))) (-2309 (*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)))))) (-3329 (*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)))))) (-3329 (*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)))))) (-2724 (*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)))))) (-2852 (*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)))) (-3553 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-5 *2 (-959 *4)) (-5 *1 (-296 *4)) (-4 *4 (-458)))) (-3553 (*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 -3553 ((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186))) (-15 -3553 ((-959 |#1|) (-695 (-413 (-959 |#1|))))) (-15 -2852 ((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|))))) (-15 -2724 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))))) (-15 -3329 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777))) (-15 -3329 ((-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 -2309 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))) (-15 -3126 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))))
-((-1356 (((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|)) 14)))
-(((-297 |#1| |#2|) (-10 -7 (-15 -1356 ((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|)))) (-1227) (-1227)) (T -297))
-((-1356 (*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 -1356 ((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3467 (((-112) $) NIL (|has| |#1| (-21)))) (-3755 (($ $) 12)) (-3990 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-4335 (($ $ $) 95 (|has| |#1| (-306)))) (-1705 (($) NIL (-2892 (|has| |#1| (-21)) (|has| |#1| (-732))) CONST)) (-2578 (($ $) 51 (|has| |#1| (-21)))) (-3682 (((-3 $ "failed") $) 62 (|has| |#1| (-732)))) (-2225 ((|#1| $) 11)) (-2875 (((-3 $ "failed") $) 60 (|has| |#1| (-732)))) (-4346 (((-112) $) NIL (|has| |#1| (-732)))) (-1356 (($ (-1 |#1| |#1|) $) 14)) (-2213 ((|#1| $) 10)) (-2151 (($ $) 50 (|has| |#1| (-21)))) (-3322 (((-3 $ "failed") $) 61 (|has| |#1| (-732)))) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1877 (($ $) 64 (-2892 (|has| |#1| (-368)) (|has| |#1| (-479))))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-4263 (((-650 $) $) 85 (|has| |#1| (-562)))) (-1770 (($ $ $) 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|)))) (-3530 (($ |#1| |#1|) 9)) (-2951 (((-135)) 90 (|has| |#1| (-368)))) (-3547 (($ $ (-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))))) (-2020 (($ $ $) NIL (|has| |#1| (-479)))) (-4391 (($ $ $) NIL (|has| |#1| (-479)))) (-3799 (($ (-570)) NIL (|has| |#1| (-1058))) (((-112) $) 37 (|has| |#1| (-1109))) (((-868) $) 36 (|has| |#1| (-1109)))) (-3499 (((-777)) 67 (|has| |#1| (-1058)) CONST)) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1861 (($) 47 (|has| |#1| (-21)) CONST)) (-1875 (($) 57 (|has| |#1| (-732)) CONST)) (-2942 (($ $ (-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))))) (-3022 (($ |#1| |#1|) 8) (((-112) $ $) 32 (|has| |#1| (-1109)))) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 92 (-2892 (|has| |#1| (-368)) (|has| |#1| (-479))))) (-3111 (($ |#1| $) 45 (|has| |#1| (-21))) (($ $ |#1|) 46 (|has| |#1| (-21))) (($ $ $) 44 (|has| |#1| (-21))) (($ $) 43 (|has| |#1| (-21)))) (-3101 (($ |#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 -3022 ($ |#1| |#1|)) (-15 -3530 ($ |#1| |#1|)) (-15 -3755 ($ $)) (-15 -2213 (|#1| $)) (-15 -2225 (|#1| $)) (-15 -1356 ($ (-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 -1770 ($ $ $)) (-15 -1770 ($ $ (-650 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -3101 ($ |#1| $)) (-15 -3101 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2151 ($ $)) (-15 -2578 ($ $)) (-15 -3111 ($ |#1| $)) (-15 -3111 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1121)) (PROGN (-6 (-1121)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-732)) (PROGN (-6 (-732)) (-15 -3322 ((-3 $ "failed") $)) (-15 -3682 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-479)) (PROGN (-6 (-479)) (-15 -3322 ((-3 $ "failed") $)) (-15 -3682 ((-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 -4263 ((-650 $) $)) |%noBranch|) (IF (|has| |#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-1284 |#1|)) (-15 -3122 ($ $ $)) (-15 -1877 ($ $))) |%noBranch|) (IF (|has| |#1| (-306)) (-15 -4335 ($ $ $)) |%noBranch|))) (-1227)) (T -298))
-((-3022 (*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-3530 (*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-3755 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-2213 (*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-2225 (*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-298 *3)))) (-1770 (*1 *1 *1 *1) (-12 (-4 *2 (-313 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)) (-5 *1 (-298 *2)))) (-1770 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *3))) (-4 *3 (-313 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)) (-5 *1 (-298 *3)))) (-3101 (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1227)))) (-3101 (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1227)))) (-2151 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-2578 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-3111 (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-3111 (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-3322 (*1 *1 *1) (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))) (-3682 (*1 *1 *1) (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))) (-4263 (*1 *2 *1) (-12 (-5 *2 (-650 (-298 *3))) (-5 *1 (-298 *3)) (-4 *3 (-562)) (-4 *3 (-1227)))) (-4335 (*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)))) (-3122 (*1 *1 *1 *1) (-2892 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1227))) (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1227))))) (-1877 (*1 *1 *1) (-2892 (-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 -3022 ($ |#1| |#1|)) (-15 -3530 ($ |#1| |#1|)) (-15 -3755 ($ $)) (-15 -2213 (|#1| $)) (-15 -2225 (|#1| $)) (-15 -1356 ($ (-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 -1770 ($ $ $)) (-15 -1770 ($ $ (-650 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -3101 ($ |#1| $)) (-15 -3101 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2151 ($ $)) (-15 -2578 ($ $)) (-15 -3111 ($ |#1| $)) (-15 -3111 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1121)) (PROGN (-6 (-1121)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-732)) (PROGN (-6 (-732)) (-15 -3322 ((-3 $ "failed") $)) (-15 -3682 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-479)) (PROGN (-6 (-479)) (-15 -3322 ((-3 $ "failed") $)) (-15 -3682 ((-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 -4263 ((-650 $) $)) |%noBranch|) (IF (|has| |#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-1284 |#1|)) (-15 -3122 ($ $ $)) (-15 -1877 ($ $))) |%noBranch|) (IF (|has| |#1| (-306)) (-15 -4335 ($ $ $)) |%noBranch|)))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3851 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#2| $ |#1| |#2|) NIL)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 |#2| "failed") |#1| $) NIL)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) NIL)) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) NIL)) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 ((|#1| $) NIL (|has| |#1| (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 ((|#1| $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2911 (((-650 |#1|) $) NIL)) (-3245 (((-112) |#1| $) NIL)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1805 (((-650 |#1|) $) NIL)) (-3939 (((-112) |#1| $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3543 ((|#2| $) NIL (|has| |#1| (-856)))) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2569 (((-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)))
-((-3670 (((-316) (-1168) (-650 (-1168))) 17) (((-316) (-1168) (-1168)) 16) (((-316) (-650 (-1168))) 15) (((-316) (-1168)) 14)))
-(((-300) (-10 -7 (-15 -3670 ((-316) (-1168))) (-15 -3670 ((-316) (-650 (-1168)))) (-15 -3670 ((-316) (-1168) (-1168))) (-15 -3670 ((-316) (-1168) (-650 (-1168)))))) (T -300))
-((-3670 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1168))) (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))) (-3670 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))) (-3670 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-316)) (-5 *1 (-300)))) (-3670 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))))
-(-10 -7 (-15 -3670 ((-316) (-1168))) (-15 -3670 ((-316) (-650 (-1168)))) (-15 -3670 ((-316) (-1168) (-1168))) (-15 -3670 ((-316) (-1168) (-650 (-1168)))))
-((-1356 ((|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|)) 18)))
-(((-301 |#1| |#2|) (-10 -7 (-15 -1356 (|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|)))) (-306) (-1227)) (T -301))
-((-1356 (*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 -1356 (|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|))))
-((-1356 ((|#2| (-1 |#2| |#1|) (-618 |#1|)) 17)))
-(((-302 |#1| |#2|) (-10 -7 (-15 -1356 (|#2| (-1 |#2| |#1|) (-618 |#1|)))) (-306) (-306)) (T -302))
-((-1356 (*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 -1356 (|#2| (-1 |#2| |#1|) (-618 |#1|))))
-((-4036 (((-112) (-227)) 12)))
-(((-303 |#1| |#2|) (-10 -7 (-15 -4036 ((-112) (-227)))) (-227) (-227)) (T -303))
-((-4036 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-303 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
-(-10 -7 (-15 -4036 ((-112) (-227))))
-((-2523 (((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227)))) 118)) (-2193 (((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227)))) 135) (((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227)))) 72)) (-2773 (((-650 (-1168)) (-1166 (-227))) NIL)) (-3694 (((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227)))) 69)) (-3531 (((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227)))) 59)) (-2337 (((-650 (-1168)) (-650 (-227))) NIL)) (-2961 (((-227) (-1103 (-849 (-227)))) 29)) (-3602 (((-227) (-1103 (-849 (-227)))) 30)) (-3456 (((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 64)) (-1509 (((-1168) (-227)) NIL)))
-(((-304) (-10 -7 (-15 -2961 ((-227) (-1103 (-849 (-227))))) (-15 -3602 ((-227) (-1103 (-849 (-227))))) (-15 -3456 ((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3694 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -2523 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2193 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2193 ((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -3531 ((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227))))) (-15 -1509 ((-1168) (-227))) (-15 -2337 ((-650 (-1168)) (-650 (-227)))) (-15 -2773 ((-650 (-1168)) (-1166 (-227)))))) (T -304))
-((-2773 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304)))) (-2337 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304)))) (-1509 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-304)))) (-3531 (*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)))) (-2193 (*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)))) (-2193 (*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)))) (-2523 (*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)))) (-3694 (*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)))) (-3456 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-112)) (-5 *1 (-304)))) (-3602 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304)))) (-2961 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304)))))
-(-10 -7 (-15 -2961 ((-227) (-1103 (-849 (-227))))) (-15 -3602 ((-227) (-1103 (-849 (-227))))) (-15 -3456 ((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3694 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -2523 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2193 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2193 ((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -3531 ((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227))))) (-15 -1509 ((-1168) (-227))) (-15 -2337 ((-650 (-1168)) (-650 (-227)))) (-15 -2773 ((-650 (-1168)) (-1166 (-227)))))
-((-3684 (((-650 (-618 $)) $) 27)) (-4335 (($ $ (-298 $)) 78) (($ $ (-650 (-298 $))) 139) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-4380 (((-3 (-618 $) "failed") $) 127)) (-3216 (((-618 $) $) 126)) (-2481 (($ $) 17) (($ (-650 $)) 54)) (-2856 (((-650 (-115)) $) 35)) (-3756 (((-115) (-115)) 88)) (-2110 (((-112) $) 150)) (-1356 (($ (-1 $ $) (-618 $)) 86)) (-4143 (((-3 (-618 $) "failed") $) 94)) (-1365 (($ (-115) $) 59) (($ (-115) (-650 $)) 110)) (-3190 (((-112) $ (-115)) 132) (((-112) $ (-1186)) 131)) (-1444 (((-777) $) 44)) (-2603 (((-112) $ $) 57) (((-112) $ (-1186)) 49)) (-3273 (((-112) $) 148)) (-1770 (($ $ (-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)) (-1941 (($ (-115) $) 60) (($ (-115) $ $) 61) (($ (-115) $ $ $) 62) (($ (-115) $ $ $ $) 63) (($ (-115) (-650 $)) 123)) (-3444 (($ $) 51) (($ $ $) 135)) (-4244 (($ $) 15) (($ (-650 $)) 53)) (-1388 (((-112) (-115)) 21)))
-(((-305 |#1|) (-10 -8 (-15 -2110 ((-112) |#1|)) (-15 -3273 ((-112) |#1|)) (-15 -1770 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1770 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -2603 ((-112) |#1| (-1186))) (-15 -2603 ((-112) |#1| |#1|)) (-15 -1356 (|#1| (-1 |#1| |#1|) (-618 |#1|))) (-15 -1365 (|#1| (-115) (-650 |#1|))) (-15 -1365 (|#1| (-115) |#1|)) (-15 -3190 ((-112) |#1| (-1186))) (-15 -3190 ((-112) |#1| (-115))) (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -2856 ((-650 (-115)) |#1|)) (-15 -3684 ((-650 (-618 |#1|)) |#1|)) (-15 -4143 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -1444 ((-777) |#1|)) (-15 -3444 (|#1| |#1| |#1|)) (-15 -3444 (|#1| |#1|)) (-15 -2481 (|#1| (-650 |#1|))) (-15 -2481 (|#1| |#1|)) (-15 -4244 (|#1| (-650 |#1|))) (-15 -4244 (|#1| |#1|)) (-15 -4335 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4335 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4335 (|#1| |#1| (-298 |#1|))) (-15 -1941 (|#1| (-115) (-650 |#1|))) (-15 -1941 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1770 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -4380 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3216 ((-618 |#1|) |#1|))) (-306)) (T -305))
-((-3756 (*1 *2 *2) (-12 (-5 *2 (-115)) (-5 *1 (-305 *3)) (-4 *3 (-306)))) (-1388 (*1 *2 *3) (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-305 *4)) (-4 *4 (-306)))))
-(-10 -8 (-15 -2110 ((-112) |#1|)) (-15 -3273 ((-112) |#1|)) (-15 -1770 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1770 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -2603 ((-112) |#1| (-1186))) (-15 -2603 ((-112) |#1| |#1|)) (-15 -1356 (|#1| (-1 |#1| |#1|) (-618 |#1|))) (-15 -1365 (|#1| (-115) (-650 |#1|))) (-15 -1365 (|#1| (-115) |#1|)) (-15 -3190 ((-112) |#1| (-1186))) (-15 -3190 ((-112) |#1| (-115))) (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -2856 ((-650 (-115)) |#1|)) (-15 -3684 ((-650 (-618 |#1|)) |#1|)) (-15 -4143 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -1444 ((-777) |#1|)) (-15 -3444 (|#1| |#1| |#1|)) (-15 -3444 (|#1| |#1|)) (-15 -2481 (|#1| (-650 |#1|))) (-15 -2481 (|#1| |#1|)) (-15 -4244 (|#1| (-650 |#1|))) (-15 -4244 (|#1| |#1|)) (-15 -4335 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4335 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4335 (|#1| |#1| (-298 |#1|))) (-15 -1941 (|#1| (-115) (-650 |#1|))) (-15 -1941 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1770 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -4380 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3216 ((-618 |#1|) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3684 (((-650 (-618 $)) $) 39)) (-4335 (($ $ (-298 $)) 51) (($ $ (-650 (-298 $))) 50) (($ $ (-650 (-618 $)) (-650 $)) 49)) (-4380 (((-3 (-618 $) "failed") $) 64)) (-3216 (((-618 $) $) 65)) (-2481 (($ $) 46) (($ (-650 $)) 45)) (-2856 (((-650 (-115)) $) 38)) (-3756 (((-115) (-115)) 37)) (-2110 (((-112) $) 17 (|has| $ (-1047 (-570))))) (-4032 (((-1182 $) (-618 $)) 20 (|has| $ (-1058)))) (-1356 (($ (-1 $ $) (-618 $)) 31)) (-4143 (((-3 (-618 $) "failed") $) 41)) (-1988 (((-1168) $) 10)) (-3748 (((-650 (-618 $)) $) 40)) (-1365 (($ (-115) $) 33) (($ (-115) (-650 $)) 32)) (-3190 (((-112) $ (-115)) 35) (((-112) $ (-1186)) 34)) (-1444 (((-777) $) 42)) (-3577 (((-1129) $) 11)) (-2603 (((-112) $ $) 30) (((-112) $ (-1186)) 29)) (-3273 (((-112) $) 18 (|has| $ (-1047 (-570))))) (-1770 (($ $ (-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)) (-1941 (($ (-115) $) 56) (($ (-115) $ $) 55) (($ (-115) $ $ $) 54) (($ (-115) $ $ $ $) 53) (($ (-115) (-650 $)) 52)) (-3444 (($ $) 44) (($ $ $) 43)) (-2755 (($ $) 19 (|has| $ (-1058)))) (-3799 (((-868) $) 12) (($ (-618 $)) 63)) (-4244 (($ $) 48) (($ (-650 $)) 47)) (-1388 (((-112) (-115)) 36)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-3097 (((-650 (-1094)) $) 10)) (-2710 (($ (-512) (-512) (-1113) $) 19)) (-1617 (($ (-512) (-650 (-972)) $) 23)) (-1781 (($) 25)) (-4018 (((-697 (-1113)) (-512) (-512) $) 18)) (-4044 (((-650 (-972)) (-512) $) 22)) (-2656 (($) 7)) (-1401 (($) 24)) (-3802 (((-868) $) 29)) (-3475 (($) 26)))
+(((-295) (-13 (-619 (-868)) (-10 -8 (-15 -2656 ($)) (-15 -3097 ((-650 (-1094)) $)) (-15 -4018 ((-697 (-1113)) (-512) (-512) $)) (-15 -2710 ($ (-512) (-512) (-1113) $)) (-15 -4044 ((-650 (-972)) (-512) $)) (-15 -1617 ($ (-512) (-650 (-972)) $)) (-15 -1401 ($)) (-15 -1781 ($)) (-15 -3475 ($))))) (T -295))
+((-2656 (*1 *1) (-5 *1 (-295))) (-3097 (*1 *2 *1) (-12 (-5 *2 (-650 (-1094))) (-5 *1 (-295)))) (-4018 (*1 *2 *3 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-1113))) (-5 *1 (-295)))) (-2710 (*1 *1 *2 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-295)))) (-4044 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-650 (-972))) (-5 *1 (-295)))) (-1617 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-295)))) (-1401 (*1 *1) (-5 *1 (-295))) (-1781 (*1 *1) (-5 *1 (-295))) (-3475 (*1 *1) (-5 *1 (-295))))
+(-13 (-619 (-868)) (-10 -8 (-15 -2656 ($)) (-15 -3097 ((-650 (-1094)) $)) (-15 -4018 ((-697 (-1113)) (-512) (-512) $)) (-15 -2710 ($ (-512) (-512) (-1113) $)) (-15 -4044 ((-650 (-972)) (-512) $)) (-15 -1617 ($ (-512) (-650 (-972)) $)) (-15 -1401 ($)) (-15 -1781 ($)) (-15 -3475 ($))))
+((-4270 (((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))) 102)) (-1913 (((-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|)))) 97) (((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777)) 41)) (-3611 (((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|)))) 99)) (-2998 (((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|)))) 75)) (-1670 (((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|)))) 74)) (-2124 (((-959 |#1|) (-695 (-413 (-959 |#1|)))) 55) (((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186)) 56)))
+(((-296 |#1|) (-10 -7 (-15 -2124 ((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186))) (-15 -2124 ((-959 |#1|) (-695 (-413 (-959 |#1|))))) (-15 -1670 ((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|))))) (-15 -2998 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))))) (-15 -1913 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777))) (-15 -1913 ((-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 -4270 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))) (-15 -3611 ((-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))
+((-3611 (*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)))))) (-4270 (*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)))))) (-1913 (*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)))))) (-1913 (*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)))))) (-2998 (*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)))))) (-1670 (*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)))) (-2124 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 *4)))) (-5 *2 (-959 *4)) (-5 *1 (-296 *4)) (-4 *4 (-458)))) (-2124 (*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 -2124 ((-959 |#1|) (-695 (-413 (-959 |#1|))) (-1186))) (-15 -2124 ((-959 |#1|) (-695 (-413 (-959 |#1|))))) (-15 -1670 ((-650 (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (-695 (-413 (-959 |#1|))))) (-15 -2998 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))))) (-15 -1913 ((-650 (-695 (-413 (-959 |#1|)))) (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|))) (-695 (-413 (-959 |#1|))) (-777) (-777))) (-15 -1913 ((-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 -4270 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |geneigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))) (-15 -3611 ((-650 (-2 (|:| |eigval| (-3 (-413 (-959 |#1|)) (-1175 (-1186) (-959 |#1|)))) (|:| |eigmult| (-777)) (|:| |eigvec| (-650 (-695 (-413 (-959 |#1|))))))) (-695 (-413 (-959 |#1|))))))
+((-1357 (((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|)) 14)))
+(((-297 |#1| |#2|) (-10 -7 (-15 -1357 ((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|)))) (-1227) (-1227)) (T -297))
+((-1357 (*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 -1357 ((-298 |#2|) (-1 |#2| |#1|) (-298 |#1|))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3721 (((-112) $) NIL (|has| |#1| (-21)))) (-3377 (($ $) 12)) (-1966 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-4338 (($ $ $) 95 (|has| |#1| (-306)))) (-3195 (($) NIL (-2895 (|has| |#1| (-21)) (|has| |#1| (-732))) CONST)) (-3999 (($ $) 51 (|has| |#1| (-21)))) (-3897 (((-3 $ "failed") $) 62 (|has| |#1| (-732)))) (-2226 ((|#1| $) 11)) (-1929 (((-3 $ "failed") $) 60 (|has| |#1| (-732)))) (-4139 (((-112) $) NIL (|has| |#1| (-732)))) (-1357 (($ (-1 |#1| |#1|) $) 14)) (-2215 ((|#1| $) 10)) (-2095 (($ $) 50 (|has| |#1| (-21)))) (-1835 (((-3 $ "failed") $) 61 (|has| |#1| (-732)))) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1878 (($ $) 64 (-2895 (|has| |#1| (-368)) (|has| |#1| (-479))))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1517 (((-650 $) $) 85 (|has| |#1| (-562)))) (-1771 (($ $ $) 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|)))) (-3533 (($ |#1| |#1|) 9)) (-2517 (((-135)) 90 (|has| |#1| (-368)))) (-3550 (($ $ (-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))))) (-4307 (($ $ $) NIL (|has| |#1| (-479)))) (-3381 (($ $ $) NIL (|has| |#1| (-479)))) (-3802 (($ (-570)) NIL (|has| |#1| (-1058))) (((-112) $) 37 (|has| |#1| (-1109))) (((-868) $) 36 (|has| |#1| (-1109)))) (-2851 (((-777)) 67 (|has| |#1| (-1058)) CONST)) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1862 (($) 47 (|has| |#1| (-21)) CONST)) (-1876 (($) 57 (|has| |#1| (-732)) CONST)) (-2945 (($ $ (-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))))) (-3025 (($ |#1| |#1|) 8) (((-112) $ $) 32 (|has| |#1| (-1109)))) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 92 (-2895 (|has| |#1| (-368)) (|has| |#1| (-479))))) (-3114 (($ |#1| $) 45 (|has| |#1| (-21))) (($ $ |#1|) 46 (|has| |#1| (-21))) (($ $ $) 44 (|has| |#1| (-21))) (($ $) 43 (|has| |#1| (-21)))) (-3104 (($ |#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 -3025 ($ |#1| |#1|)) (-15 -3533 ($ |#1| |#1|)) (-15 -3377 ($ $)) (-15 -2215 (|#1| $)) (-15 -2226 (|#1| $)) (-15 -1357 ($ (-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 -1771 ($ $ $)) (-15 -1771 ($ $ (-650 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -3104 ($ |#1| $)) (-15 -3104 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2095 ($ $)) (-15 -3999 ($ $)) (-15 -3114 ($ |#1| $)) (-15 -3114 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1121)) (PROGN (-6 (-1121)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-732)) (PROGN (-6 (-732)) (-15 -1835 ((-3 $ "failed") $)) (-15 -3897 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-479)) (PROGN (-6 (-479)) (-15 -1835 ((-3 $ "failed") $)) (-15 -3897 ((-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 -1517 ((-650 $) $)) |%noBranch|) (IF (|has| |#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-1284 |#1|)) (-15 -3125 ($ $ $)) (-15 -1878 ($ $))) |%noBranch|) (IF (|has| |#1| (-306)) (-15 -4338 ($ $ $)) |%noBranch|))) (-1227)) (T -298))
+((-3025 (*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-3533 (*1 *1 *2 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-3377 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-2215 (*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-2226 (*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227)))) (-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-298 *3)))) (-1771 (*1 *1 *1 *1) (-12 (-4 *2 (-313 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)) (-5 *1 (-298 *2)))) (-1771 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *3))) (-4 *3 (-313 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)) (-5 *1 (-298 *3)))) (-3104 (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1227)))) (-3104 (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-25)) (-4 *2 (-1227)))) (-2095 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-3999 (*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-3114 (*1 *1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-3114 (*1 *1 *1 *2) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))) (-1835 (*1 *1 *1) (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))) (-3897 (*1 *1 *1) (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))) (-1517 (*1 *2 *1) (-12 (-5 *2 (-650 (-298 *3))) (-5 *1 (-298 *3)) (-4 *3 (-562)) (-4 *3 (-1227)))) (-4338 (*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)))) (-3125 (*1 *1 *1 *1) (-2895 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1227))) (-12 (-5 *1 (-298 *2)) (-4 *2 (-479)) (-4 *2 (-1227))))) (-1878 (*1 *1 *1) (-2895 (-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 -3025 ($ |#1| |#1|)) (-15 -3533 ($ |#1| |#1|)) (-15 -3377 ($ $)) (-15 -2215 (|#1| $)) (-15 -2226 (|#1| $)) (-15 -1357 ($ (-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 -1771 ($ $ $)) (-15 -1771 ($ $ (-650 $)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-25)) (PROGN (-6 (-25)) (-15 -3104 ($ |#1| $)) (-15 -3104 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-21)) (PROGN (-6 (-21)) (-15 -2095 ($ $)) (-15 -3999 ($ $)) (-15 -3114 ($ |#1| $)) (-15 -3114 ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-1121)) (PROGN (-6 (-1121)) (-15 * ($ |#1| $)) (-15 * ($ $ |#1|))) |%noBranch|) (IF (|has| |#1| (-732)) (PROGN (-6 (-732)) (-15 -1835 ((-3 $ "failed") $)) (-15 -3897 ((-3 $ "failed") $))) |%noBranch|) (IF (|has| |#1| (-479)) (PROGN (-6 (-479)) (-15 -1835 ((-3 $ "failed") $)) (-15 -3897 ((-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 -1517 ((-650 $) $)) |%noBranch|) (IF (|has| |#1| (-907 (-1186))) (-6 (-907 (-1186))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-1284 |#1|)) (-15 -3125 ($ $ $)) (-15 -1878 ($ $))) |%noBranch|) (IF (|has| |#1| (-306)) (-15 -4338 ($ $ $)) |%noBranch|)))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3040 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#2| $ |#1| |#2|) NIL)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 |#2| "failed") |#1| $) NIL)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) NIL)) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) NIL)) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 ((|#1| $) NIL (|has| |#1| (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 ((|#1| $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2914 (((-650 |#1|) $) NIL)) (-2343 (((-112) |#1| $) NIL)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2903 (((-650 |#1|) $) NIL)) (-1358 (((-112) |#1| $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3546 ((|#2| $) NIL (|has| |#1| (-856)))) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-299 |#1| |#2|) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452))) (-1109) (-1109)) (T -299))
+NIL
+(-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452)))
+((-3673 (((-316) (-1168) (-650 (-1168))) 17) (((-316) (-1168) (-1168)) 16) (((-316) (-650 (-1168))) 15) (((-316) (-1168)) 14)))
+(((-300) (-10 -7 (-15 -3673 ((-316) (-1168))) (-15 -3673 ((-316) (-650 (-1168)))) (-15 -3673 ((-316) (-1168) (-1168))) (-15 -3673 ((-316) (-1168) (-650 (-1168)))))) (T -300))
+((-3673 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1168))) (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))) (-3673 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))) (-3673 (*1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-316)) (-5 *1 (-300)))) (-3673 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-300)))))
+(-10 -7 (-15 -3673 ((-316) (-1168))) (-15 -3673 ((-316) (-650 (-1168)))) (-15 -3673 ((-316) (-1168) (-1168))) (-15 -3673 ((-316) (-1168) (-650 (-1168)))))
+((-1357 ((|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|)) 18)))
+(((-301 |#1| |#2|) (-10 -7 (-15 -1357 (|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|)))) (-306) (-1227)) (T -301))
+((-1357 (*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 -1357 (|#2| (-1 |#2| |#1|) (-1168) (-618 |#1|))))
+((-1357 ((|#2| (-1 |#2| |#1|) (-618 |#1|)) 17)))
+(((-302 |#1| |#2|) (-10 -7 (-15 -1357 (|#2| (-1 |#2| |#1|) (-618 |#1|)))) (-306) (-306)) (T -302))
+((-1357 (*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 -1357 (|#2| (-1 |#2| |#1|) (-618 |#1|))))
+((-4221 (((-112) (-227)) 12)))
+(((-303 |#1| |#2|) (-10 -7 (-15 -4221 ((-112) (-227)))) (-227) (-227)) (T -303))
+((-4221 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-303 *4 *5)) (-14 *4 *3) (-14 *5 *3))))
+(-10 -7 (-15 -4221 ((-112) (-227))))
+((-1626 (((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227)))) 118)) (-2522 (((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227)))) 135) (((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227)))) 72)) (-2261 (((-650 (-1168)) (-1166 (-227))) NIL)) (-4000 (((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227)))) 69)) (-3121 (((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227)))) 59)) (-3382 (((-650 (-1168)) (-650 (-227))) NIL)) (-4422 (((-227) (-1103 (-849 (-227)))) 29)) (-2515 (((-227) (-1103 (-849 (-227)))) 30)) (-3632 (((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 64)) (-3067 (((-1168) (-227)) NIL)))
+(((-304) (-10 -7 (-15 -4422 ((-227) (-1103 (-849 (-227))))) (-15 -2515 ((-227) (-1103 (-849 (-227))))) (-15 -3632 ((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4000 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -1626 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2522 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2522 ((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -3121 ((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227))))) (-15 -3067 ((-1168) (-227))) (-15 -3382 ((-650 (-1168)) (-650 (-227)))) (-15 -2261 ((-650 (-1168)) (-1166 (-227)))))) (T -304))
+((-2261 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304)))) (-3382 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-304)))) (-3067 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-304)))) (-3121 (*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)))) (-2522 (*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)))) (-2522 (*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)))) (-1626 (*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)))) (-4000 (*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)))) (-3632 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-112)) (-5 *1 (-304)))) (-2515 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304)))) (-4422 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-304)))))
+(-10 -7 (-15 -4422 ((-227) (-1103 (-849 (-227))))) (-15 -2515 ((-227) (-1103 (-849 (-227))))) (-15 -3632 ((-112) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4000 ((-650 (-227)) (-320 (-227)) (-1186) (-1103 (-849 (-227))))) (-15 -1626 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2522 ((-1166 (-227)) (-320 (-227)) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -2522 ((-1166 (-227)) (-1277 (-320 (-227))) (-650 (-1186)) (-1103 (-849 (-227))))) (-15 -3121 ((-650 (-227)) (-959 (-413 (-570))) (-1186) (-1103 (-849 (-227))))) (-15 -3067 ((-1168) (-227))) (-15 -3382 ((-650 (-1168)) (-650 (-227)))) (-15 -2261 ((-650 (-1168)) (-1166 (-227)))))
+((-3687 (((-650 (-618 $)) $) 27)) (-4338 (($ $ (-298 $)) 78) (($ $ (-650 (-298 $))) 139) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-4383 (((-3 (-618 $) "failed") $) 127)) (-3220 (((-618 $) $) 126)) (-2486 (($ $) 17) (($ (-650 $)) 54)) (-1705 (((-650 (-115)) $) 35)) (-3759 (((-115) (-115)) 88)) (-2888 (((-112) $) 150)) (-1357 (($ (-1 $ $) (-618 $)) 86)) (-2907 (((-3 (-618 $) "failed") $) 94)) (-1366 (($ (-115) $) 59) (($ (-115) (-650 $)) 110)) (-3006 (((-112) $ (-115)) 132) (((-112) $ (-1186)) 131)) (-1445 (((-777) $) 44)) (-4224 (((-112) $ $) 57) (((-112) $ (-1186)) 49)) (-4418 (((-112) $) 148)) (-1771 (($ $ (-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)) (-1942 (($ (-115) $) 60) (($ (-115) $ $) 61) (($ (-115) $ $ $) 62) (($ (-115) $ $ $ $) 63) (($ (-115) (-650 $)) 123)) (-3515 (($ $) 51) (($ $ $) 135)) (-4246 (($ $) 15) (($ (-650 $)) 53)) (-3200 (((-112) (-115)) 21)))
+(((-305 |#1|) (-10 -8 (-15 -2888 ((-112) |#1|)) (-15 -4418 ((-112) |#1|)) (-15 -1771 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1771 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -4224 ((-112) |#1| (-1186))) (-15 -4224 ((-112) |#1| |#1|)) (-15 -1357 (|#1| (-1 |#1| |#1|) (-618 |#1|))) (-15 -1366 (|#1| (-115) (-650 |#1|))) (-15 -1366 (|#1| (-115) |#1|)) (-15 -3006 ((-112) |#1| (-1186))) (-15 -3006 ((-112) |#1| (-115))) (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -1705 ((-650 (-115)) |#1|)) (-15 -3687 ((-650 (-618 |#1|)) |#1|)) (-15 -2907 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -1445 ((-777) |#1|)) (-15 -3515 (|#1| |#1| |#1|)) (-15 -3515 (|#1| |#1|)) (-15 -2486 (|#1| (-650 |#1|))) (-15 -2486 (|#1| |#1|)) (-15 -4246 (|#1| (-650 |#1|))) (-15 -4246 (|#1| |#1|)) (-15 -4338 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4338 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4338 (|#1| |#1| (-298 |#1|))) (-15 -1942 (|#1| (-115) (-650 |#1|))) (-15 -1942 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1771 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -4383 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3220 ((-618 |#1|) |#1|))) (-306)) (T -305))
+((-3759 (*1 *2 *2) (-12 (-5 *2 (-115)) (-5 *1 (-305 *3)) (-4 *3 (-306)))) (-3200 (*1 *2 *3) (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-305 *4)) (-4 *4 (-306)))))
+(-10 -8 (-15 -2888 ((-112) |#1|)) (-15 -4418 ((-112) |#1|)) (-15 -1771 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1771 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -4224 ((-112) |#1| (-1186))) (-15 -4224 ((-112) |#1| |#1|)) (-15 -1357 (|#1| (-1 |#1| |#1|) (-618 |#1|))) (-15 -1366 (|#1| (-115) (-650 |#1|))) (-15 -1366 (|#1| (-115) |#1|)) (-15 -3006 ((-112) |#1| (-1186))) (-15 -3006 ((-112) |#1| (-115))) (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -1705 ((-650 (-115)) |#1|)) (-15 -3687 ((-650 (-618 |#1|)) |#1|)) (-15 -2907 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -1445 ((-777) |#1|)) (-15 -3515 (|#1| |#1| |#1|)) (-15 -3515 (|#1| |#1|)) (-15 -2486 (|#1| (-650 |#1|))) (-15 -2486 (|#1| |#1|)) (-15 -4246 (|#1| (-650 |#1|))) (-15 -4246 (|#1| |#1|)) (-15 -4338 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4338 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4338 (|#1| |#1| (-298 |#1|))) (-15 -1942 (|#1| (-115) (-650 |#1|))) (-15 -1942 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1771 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -4383 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3220 ((-618 |#1|) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3687 (((-650 (-618 $)) $) 39)) (-4338 (($ $ (-298 $)) 51) (($ $ (-650 (-298 $))) 50) (($ $ (-650 (-618 $)) (-650 $)) 49)) (-4383 (((-3 (-618 $) "failed") $) 64)) (-3220 (((-618 $) $) 65)) (-2486 (($ $) 46) (($ (-650 $)) 45)) (-1705 (((-650 (-115)) $) 38)) (-3759 (((-115) (-115)) 37)) (-2888 (((-112) $) 17 (|has| $ (-1047 (-570))))) (-4189 (((-1182 $) (-618 $)) 20 (|has| $ (-1058)))) (-1357 (($ (-1 $ $) (-618 $)) 31)) (-2907 (((-3 (-618 $) "failed") $) 41)) (-3989 (((-1168) $) 10)) (-3751 (((-650 (-618 $)) $) 40)) (-1366 (($ (-115) $) 33) (($ (-115) (-650 $)) 32)) (-3006 (((-112) $ (-115)) 35) (((-112) $ (-1186)) 34)) (-1445 (((-777) $) 42)) (-3580 (((-1129) $) 11)) (-4224 (((-112) $ $) 30) (((-112) $ (-1186)) 29)) (-4418 (((-112) $) 18 (|has| $ (-1047 (-570))))) (-1771 (($ $ (-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)) (-1942 (($ (-115) $) 56) (($ (-115) $ $) 55) (($ (-115) $ $ $) 54) (($ (-115) $ $ $ $) 53) (($ (-115) (-650 $)) 52)) (-3515 (($ $) 44) (($ $ $) 43)) (-2075 (($ $) 19 (|has| $ (-1058)))) (-3802 (((-868) $) 12) (($ (-618 $)) 63)) (-4246 (($ $) 48) (($ (-650 $)) 47)) (-3200 (((-112) (-115)) 36)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-306) (-141)) (T -306))
-((-1941 (*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1941 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1941 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1941 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1941 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-4335 (*1 *1 *1 *2) (-12 (-5 *2 (-298 *1)) (-4 *1 (-306)))) (-4335 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *1))) (-4 *1 (-306)))) (-4335 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-618 *1))) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-4244 (*1 *1 *1) (-4 *1 (-306))) (-4244 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306)))) (-2481 (*1 *1 *1) (-4 *1 (-306))) (-2481 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306)))) (-3444 (*1 *1 *1) (-4 *1 (-306))) (-3444 (*1 *1 *1 *1) (-4 *1 (-306))) (-1444 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-777)))) (-4143 (*1 *2 *1) (|partial| -12 (-5 *2 (-618 *1)) (-4 *1 (-306)))) (-3748 (*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))) (-3684 (*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))) (-2856 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-650 (-115))))) (-3756 (*1 *2 *2) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1388 (*1 *2 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112)))) (-3190 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112)))) (-3190 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112)))) (-1365 (*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1365 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-1356 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-618 *1)) (-4 *1 (-306)))) (-2603 (*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))) (-2603 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-1 *1 *1))) (-4 *1 (-306)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-306)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1 *1 (-650 *1))) (-4 *1 (-306)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 (-1 *1 *1))) (-4 *1 (-306)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-306)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *1 (-650 *1))) (-4 *1 (-306)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306)))) (-4032 (*1 *2 *3) (-12 (-5 *3 (-618 *1)) (-4 *1 (-1058)) (-4 *1 (-306)) (-5 *2 (-1182 *1)))) (-2755 (*1 *1 *1) (-12 (-4 *1 (-1058)) (-4 *1 (-306)))) (-3273 (*1 *2 *1) (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112)))) (-2110 (*1 *2 *1) (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112)))))
-(-13 (-1109) (-1047 (-618 $)) (-520 (-618 $) $) (-313 $) (-10 -8 (-15 -1941 ($ (-115) $)) (-15 -1941 ($ (-115) $ $)) (-15 -1941 ($ (-115) $ $ $)) (-15 -1941 ($ (-115) $ $ $ $)) (-15 -1941 ($ (-115) (-650 $))) (-15 -4335 ($ $ (-298 $))) (-15 -4335 ($ $ (-650 (-298 $)))) (-15 -4335 ($ $ (-650 (-618 $)) (-650 $))) (-15 -4244 ($ $)) (-15 -4244 ($ (-650 $))) (-15 -2481 ($ $)) (-15 -2481 ($ (-650 $))) (-15 -3444 ($ $)) (-15 -3444 ($ $ $)) (-15 -1444 ((-777) $)) (-15 -4143 ((-3 (-618 $) "failed") $)) (-15 -3748 ((-650 (-618 $)) $)) (-15 -3684 ((-650 (-618 $)) $)) (-15 -2856 ((-650 (-115)) $)) (-15 -3756 ((-115) (-115))) (-15 -1388 ((-112) (-115))) (-15 -3190 ((-112) $ (-115))) (-15 -3190 ((-112) $ (-1186))) (-15 -1365 ($ (-115) $)) (-15 -1365 ($ (-115) (-650 $))) (-15 -1356 ($ (-1 $ $) (-618 $))) (-15 -2603 ((-112) $ $)) (-15 -2603 ((-112) $ (-1186))) (-15 -1770 ($ $ (-650 (-1186)) (-650 (-1 $ $)))) (-15 -1770 ($ $ (-650 (-1186)) (-650 (-1 $ (-650 $))))) (-15 -1770 ($ $ (-1186) (-1 $ (-650 $)))) (-15 -1770 ($ $ (-1186) (-1 $ $))) (-15 -1770 ($ $ (-650 (-115)) (-650 (-1 $ $)))) (-15 -1770 ($ $ (-650 (-115)) (-650 (-1 $ (-650 $))))) (-15 -1770 ($ $ (-115) (-1 $ (-650 $)))) (-15 -1770 ($ $ (-115) (-1 $ $))) (IF (|has| $ (-1058)) (PROGN (-15 -4032 ((-1182 $) (-618 $))) (-15 -2755 ($ $))) |%noBranch|) (IF (|has| $ (-1047 (-570))) (PROGN (-15 -3273 ((-112) $)) (-15 -2110 ((-112) $))) |%noBranch|)))
+((-1942 (*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1942 (*1 *1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1942 (*1 *1 *2 *1 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1942 (*1 *1 *2 *1 *1 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1942 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-4338 (*1 *1 *1 *2) (-12 (-5 *2 (-298 *1)) (-4 *1 (-306)))) (-4338 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-298 *1))) (-4 *1 (-306)))) (-4338 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-618 *1))) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-4246 (*1 *1 *1) (-4 *1 (-306))) (-4246 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306)))) (-2486 (*1 *1 *1) (-4 *1 (-306))) (-2486 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-306)))) (-3515 (*1 *1 *1) (-4 *1 (-306))) (-3515 (*1 *1 *1 *1) (-4 *1 (-306))) (-1445 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-777)))) (-2907 (*1 *2 *1) (|partial| -12 (-5 *2 (-618 *1)) (-4 *1 (-306)))) (-3751 (*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))) (-3687 (*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))) (-1705 (*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-650 (-115))))) (-3759 (*1 *2 *2) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-3200 (*1 *2 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112)))) (-3006 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-115)) (-5 *2 (-112)))) (-3006 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112)))) (-1366 (*1 *1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-115)))) (-1366 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 *1)) (-4 *1 (-306)))) (-1357 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *1 *1)) (-5 *3 (-618 *1)) (-4 *1 (-306)))) (-4224 (*1 *2 *1 *1) (-12 (-4 *1 (-306)) (-5 *2 (-112)))) (-4224 (*1 *2 *1 *3) (-12 (-4 *1 (-306)) (-5 *3 (-1186)) (-5 *2 (-112)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-1 *1 *1))) (-4 *1 (-306)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-306)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1 *1 (-650 *1))) (-4 *1 (-306)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 (-1 *1 *1))) (-4 *1 (-306)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-115))) (-5 *3 (-650 (-1 *1 (-650 *1)))) (-4 *1 (-306)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *1 (-650 *1))) (-4 *1 (-306)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1 *1 *1)) (-4 *1 (-306)))) (-4189 (*1 *2 *3) (-12 (-5 *3 (-618 *1)) (-4 *1 (-1058)) (-4 *1 (-306)) (-5 *2 (-1182 *1)))) (-2075 (*1 *1 *1) (-12 (-4 *1 (-1058)) (-4 *1 (-306)))) (-4418 (*1 *2 *1) (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112)))) (-2888 (*1 *2 *1) (-12 (-4 *1 (-1047 (-570))) (-4 *1 (-306)) (-5 *2 (-112)))))
+(-13 (-1109) (-1047 (-618 $)) (-520 (-618 $) $) (-313 $) (-10 -8 (-15 -1942 ($ (-115) $)) (-15 -1942 ($ (-115) $ $)) (-15 -1942 ($ (-115) $ $ $)) (-15 -1942 ($ (-115) $ $ $ $)) (-15 -1942 ($ (-115) (-650 $))) (-15 -4338 ($ $ (-298 $))) (-15 -4338 ($ $ (-650 (-298 $)))) (-15 -4338 ($ $ (-650 (-618 $)) (-650 $))) (-15 -4246 ($ $)) (-15 -4246 ($ (-650 $))) (-15 -2486 ($ $)) (-15 -2486 ($ (-650 $))) (-15 -3515 ($ $)) (-15 -3515 ($ $ $)) (-15 -1445 ((-777) $)) (-15 -2907 ((-3 (-618 $) "failed") $)) (-15 -3751 ((-650 (-618 $)) $)) (-15 -3687 ((-650 (-618 $)) $)) (-15 -1705 ((-650 (-115)) $)) (-15 -3759 ((-115) (-115))) (-15 -3200 ((-112) (-115))) (-15 -3006 ((-112) $ (-115))) (-15 -3006 ((-112) $ (-1186))) (-15 -1366 ($ (-115) $)) (-15 -1366 ($ (-115) (-650 $))) (-15 -1357 ($ (-1 $ $) (-618 $))) (-15 -4224 ((-112) $ $)) (-15 -4224 ((-112) $ (-1186))) (-15 -1771 ($ $ (-650 (-1186)) (-650 (-1 $ $)))) (-15 -1771 ($ $ (-650 (-1186)) (-650 (-1 $ (-650 $))))) (-15 -1771 ($ $ (-1186) (-1 $ (-650 $)))) (-15 -1771 ($ $ (-1186) (-1 $ $))) (-15 -1771 ($ $ (-650 (-115)) (-650 (-1 $ $)))) (-15 -1771 ($ $ (-650 (-115)) (-650 (-1 $ (-650 $))))) (-15 -1771 ($ $ (-115) (-1 $ (-650 $)))) (-15 -1771 ($ $ (-115) (-1 $ $))) (IF (|has| $ (-1058)) (PROGN (-15 -4189 ((-1182 $) (-618 $))) (-15 -2075 ($ $))) |%noBranch|) (IF (|has| $ (-1047 (-570))) (PROGN (-15 -4418 ((-112) $)) (-15 -2888 ((-112) $))) |%noBranch|)))
(((-102) . T) ((-622 #0=(-618 $)) . T) ((-619 (-868)) . T) ((-313 $) . T) ((-520 (-618 $) $) . T) ((-520 $ $) . T) ((-1047 #0#) . T) ((-1109) . T))
-((-2594 (((-650 |#1|) (-650 |#1|)) 10)))
-(((-307 |#1|) (-10 -7 (-15 -2594 ((-650 |#1|) (-650 |#1|)))) (-854)) (T -307))
-((-2594 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-854)) (-5 *1 (-307 *3)))))
-(-10 -7 (-15 -2594 ((-650 |#1|) (-650 |#1|))))
-((-1356 (((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|)) 17)))
-(((-308 |#1| |#2|) (-10 -7 (-15 -1356 ((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|)))) (-1058) (-1058)) (T -308))
-((-1356 (*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 -1356 ((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|))))
-((-3012 (((-1277 (-320 (-384))) (-1277 (-320 (-227)))) 110)) (-1527 (((-1103 (-849 (-227))) (-1103 (-849 (-384)))) 43)) (-2773 (((-650 (-1168)) (-1166 (-227))) 92)) (-2851 (((-320 (-384)) (-959 (-227))) 53)) (-1408 (((-227) (-959 (-227))) 49)) (-3847 (((-1168) (-384)) 195)) (-3342 (((-849 (-227)) (-849 (-384))) 37)) (-3007 (((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227)))) 165)) (-2484 (((-1044) (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) 207) (((-1044) (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))))) 205)) (-2415 (((-695 (-227)) (-650 (-227)) (-777)) 19)) (-2498 (((-1277 (-705)) (-650 (-227))) 99)) (-2337 (((-650 (-1168)) (-650 (-227))) 79)) (-1372 (((-3 (-320 (-227)) "failed") (-320 (-227))) 128)) (-4036 (((-112) (-227) (-1103 (-849 (-227)))) 117)) (-1935 (((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) 224)) (-2961 (((-227) (-1103 (-849 (-227)))) 112)) (-3602 (((-227) (-1103 (-849 (-227)))) 113)) (-3480 (((-227) (-413 (-570))) 31)) (-1668 (((-1168) (-384)) 77)) (-2888 (((-227) (-384)) 22)) (-3891 (((-384) (-1277 (-320 (-227)))) 177)) (-4186 (((-320 (-227)) (-320 (-384))) 28)) (-3268 (((-413 (-570)) (-320 (-227))) 56)) (-2985 (((-320 (-413 (-570))) (-320 (-227))) 73)) (-2539 (((-320 (-384)) (-320 (-227))) 103)) (-4265 (((-227) (-320 (-227))) 57)) (-2952 (((-650 (-227)) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) 68)) (-2402 (((-1103 (-849 (-227))) (-1103 (-849 (-227)))) 65)) (-1509 (((-1168) (-227)) 76)) (-2889 (((-705) (-227)) 95)) (-2910 (((-413 (-570)) (-227)) 58)) (-2011 (((-320 (-384)) (-227)) 52)) (-1425 (((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384))))) 46)) (-2584 (((-1044) (-650 (-1044))) 191) (((-1044) (-1044) (-1044)) 185)) (-2749 (((-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"))) (|:| -2521 (-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"))))) 221)))
-(((-309) (-10 -7 (-15 -2888 ((-227) (-384))) (-15 -4186 ((-320 (-227)) (-320 (-384)))) (-15 -3342 ((-849 (-227)) (-849 (-384)))) (-15 -1527 ((-1103 (-849 (-227))) (-1103 (-849 (-384))))) (-15 -1425 ((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384)))))) (-15 -2910 ((-413 (-570)) (-227))) (-15 -3268 ((-413 (-570)) (-320 (-227)))) (-15 -4265 ((-227) (-320 (-227)))) (-15 -1372 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -3891 ((-384) (-1277 (-320 (-227))))) (-15 -3007 ((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227))))) (-15 -2985 ((-320 (-413 (-570))) (-320 (-227)))) (-15 -2402 ((-1103 (-849 (-227))) (-1103 (-849 (-227))))) (-15 -2952 ((-650 (-227)) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-15 -2889 ((-705) (-227))) (-15 -2498 ((-1277 (-705)) (-650 (-227)))) (-15 -2539 ((-320 (-384)) (-320 (-227)))) (-15 -3012 ((-1277 (-320 (-384))) (-1277 (-320 (-227))))) (-15 -4036 ((-112) (-227) (-1103 (-849 (-227))))) (-15 -1509 ((-1168) (-227))) (-15 -1668 ((-1168) (-384))) (-15 -2337 ((-650 (-1168)) (-650 (-227)))) (-15 -2773 ((-650 (-1168)) (-1166 (-227)))) (-15 -2961 ((-227) (-1103 (-849 (-227))))) (-15 -3602 ((-227) (-1103 (-849 (-227))))) (-15 -2584 ((-1044) (-1044) (-1044))) (-15 -2584 ((-1044) (-650 (-1044)))) (-15 -3847 ((-1168) (-384))) (-15 -2484 ((-1044) (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))))) (-15 -2484 ((-1044) (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))) (-15 -2749 ((-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"))) (|:| -2521 (-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 -1935 ((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))) (-15 -2851 ((-320 (-384)) (-959 (-227)))) (-15 -1408 ((-227) (-959 (-227)))) (-15 -2011 ((-320 (-384)) (-227))) (-15 -3480 ((-227) (-413 (-570)))) (-15 -2415 ((-695 (-227)) (-650 (-227)) (-777))))) (T -309))
-((-2415 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-777)) (-5 *2 (-695 (-227))) (-5 *1 (-309)))) (-3480 (*1 *2 *3) (-12 (-5 *3 (-413 (-570))) (-5 *2 (-227)) (-5 *1 (-309)))) (-2011 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-1408 (*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))) (-2851 (*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-1935 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2749 (*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"))) (|:| -2521 (-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)))) (-2484 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2484 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-3847 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-2584 (*1 *2 *3) (-12 (-5 *3 (-650 (-1044))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2584 (*1 *2 *2 *2) (-12 (-5 *2 (-1044)) (-5 *1 (-309)))) (-3602 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))) (-2961 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))) (-2773 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))) (-2337 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))) (-1668 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-1509 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-4036 (*1 *2 *3 *4) (-12 (-5 *4 (-1103 (-849 (-227)))) (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-309)))) (-3012 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-1277 (-320 (-384)))) (-5 *1 (-309)))) (-2539 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-2498 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1277 (-705))) (-5 *1 (-309)))) (-2889 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-705)) (-5 *1 (-309)))) (-2952 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *2 (-650 (-227))) (-5 *1 (-309)))) (-2402 (*1 *2 *2) (-12 (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))) (-2985 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-413 (-570)))) (-5 *1 (-309)))) (-3007 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570)))) (-5 *1 (-309)))) (-3891 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-309)))) (-1372 (*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-309)))) (-4265 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))) (-3268 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-413 (-570))) (-5 *1 (-309)))) (-2910 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-413 (-570))) (-5 *1 (-309)))) (-1425 (*1 *2 *3) (-12 (-5 *3 (-650 (-1103 (-849 (-384))))) (-5 *2 (-650 (-1103 (-849 (-227))))) (-5 *1 (-309)))) (-1527 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-384)))) (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))) (-3342 (*1 *2 *3) (-12 (-5 *3 (-849 (-384))) (-5 *2 (-849 (-227))) (-5 *1 (-309)))) (-4186 (*1 *2 *3) (-12 (-5 *3 (-320 (-384))) (-5 *2 (-320 (-227))) (-5 *1 (-309)))) (-2888 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-309)))))
-(-10 -7 (-15 -2888 ((-227) (-384))) (-15 -4186 ((-320 (-227)) (-320 (-384)))) (-15 -3342 ((-849 (-227)) (-849 (-384)))) (-15 -1527 ((-1103 (-849 (-227))) (-1103 (-849 (-384))))) (-15 -1425 ((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384)))))) (-15 -2910 ((-413 (-570)) (-227))) (-15 -3268 ((-413 (-570)) (-320 (-227)))) (-15 -4265 ((-227) (-320 (-227)))) (-15 -1372 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -3891 ((-384) (-1277 (-320 (-227))))) (-15 -3007 ((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227))))) (-15 -2985 ((-320 (-413 (-570))) (-320 (-227)))) (-15 -2402 ((-1103 (-849 (-227))) (-1103 (-849 (-227))))) (-15 -2952 ((-650 (-227)) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-15 -2889 ((-705) (-227))) (-15 -2498 ((-1277 (-705)) (-650 (-227)))) (-15 -2539 ((-320 (-384)) (-320 (-227)))) (-15 -3012 ((-1277 (-320 (-384))) (-1277 (-320 (-227))))) (-15 -4036 ((-112) (-227) (-1103 (-849 (-227))))) (-15 -1509 ((-1168) (-227))) (-15 -1668 ((-1168) (-384))) (-15 -2337 ((-650 (-1168)) (-650 (-227)))) (-15 -2773 ((-650 (-1168)) (-1166 (-227)))) (-15 -2961 ((-227) (-1103 (-849 (-227))))) (-15 -3602 ((-227) (-1103 (-849 (-227))))) (-15 -2584 ((-1044) (-1044) (-1044))) (-15 -2584 ((-1044) (-650 (-1044)))) (-15 -3847 ((-1168) (-384))) (-15 -2484 ((-1044) (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))))) (-15 -2484 ((-1044) (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))) (-15 -2749 ((-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"))) (|:| -2521 (-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 -1935 ((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))) (-15 -2851 ((-320 (-384)) (-959 (-227)))) (-15 -1408 ((-227) (-959 (-227)))) (-15 -2011 ((-320 (-384)) (-227))) (-15 -3480 ((-227) (-413 (-570)))) (-15 -2415 ((-695 (-227)) (-650 (-227)) (-777))))
-((-3473 (((-112) $ $) 14)) (-2506 (($ $ $) 18)) (-2518 (($ $ $) 17)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 50)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 65)) (-1942 (($ $ $) 25) (($ (-650 $)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 35) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 40)) (-2547 (((-3 $ "failed") $ $) 21)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 53)))
-(((-310 |#1|) (-10 -8 (-15 -1641 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -1590 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1590 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2466 |#1|)) |#1| |#1|)) (-15 -2506 (|#1| |#1| |#1|)) (-15 -2518 (|#1| |#1| |#1|)) (-15 -3473 ((-112) |#1| |#1|)) (-15 -3132 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -3035 ((-2 (|:| -1452 (-650 |#1|)) (|:| -2466 |#1|)) (-650 |#1|))) (-15 -1942 (|#1| (-650 |#1|))) (-15 -1942 (|#1| |#1| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#1|))) (-311)) (T -310))
-NIL
-(-10 -8 (-15 -1641 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -1590 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1590 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2466 |#1|)) |#1| |#1|)) (-15 -2506 (|#1| |#1| |#1|)) (-15 -2518 (|#1| |#1| |#1|)) (-15 -3473 ((-112) |#1| |#1|)) (-15 -3132 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -3035 ((-2 (|:| -1452 (-650 |#1|)) (|:| -2466 |#1|)) (-650 |#1|))) (-15 -1942 (|#1| (-650 |#1|))) (-15 -1942 (|#1| |#1| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-3473 (((-112) $ $) 65)) (-1705 (($) 18 T CONST)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-4346 (((-112) $) 35)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-4137 (((-650 |#1|) (-650 |#1|)) 10)))
+(((-307 |#1|) (-10 -7 (-15 -4137 ((-650 |#1|) (-650 |#1|)))) (-854)) (T -307))
+((-4137 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-854)) (-5 *1 (-307 *3)))))
+(-10 -7 (-15 -4137 ((-650 |#1|) (-650 |#1|))))
+((-1357 (((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|)) 17)))
+(((-308 |#1| |#2|) (-10 -7 (-15 -1357 ((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|)))) (-1058) (-1058)) (T -308))
+((-1357 (*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 -1357 ((-695 |#2|) (-1 |#2| |#1|) (-695 |#1|))))
+((-3760 (((-1277 (-320 (-384))) (-1277 (-320 (-227)))) 110)) (-2039 (((-1103 (-849 (-227))) (-1103 (-849 (-384)))) 43)) (-2261 (((-650 (-1168)) (-1166 (-227))) 92)) (-1656 (((-320 (-384)) (-959 (-227))) 53)) (-3680 (((-227) (-959 (-227))) 49)) (-2999 (((-1168) (-384)) 195)) (-3872 (((-849 (-227)) (-849 (-384))) 37)) (-1867 (((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227)))) 165)) (-2518 (((-1044) (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) 207) (((-1044) (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))))) 205)) (-2990 (((-695 (-227)) (-650 (-227)) (-777)) 19)) (-1335 (((-1277 (-705)) (-650 (-227))) 99)) (-3382 (((-650 (-1168)) (-650 (-227))) 79)) (-1373 (((-3 (-320 (-227)) "failed") (-320 (-227))) 128)) (-4221 (((-112) (-227) (-1103 (-849 (-227)))) 117)) (-1613 (((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) 224)) (-4422 (((-227) (-1103 (-849 (-227)))) 112)) (-2515 (((-227) (-1103 (-849 (-227)))) 113)) (-2655 (((-227) (-413 (-570))) 31)) (-4012 (((-1168) (-384)) 77)) (-1931 (((-227) (-384)) 22)) (-2227 (((-384) (-1277 (-320 (-227)))) 177)) (-3243 (((-320 (-227)) (-320 (-384))) 28)) (-2563 (((-413 (-570)) (-320 (-227))) 56)) (-1612 (((-320 (-413 (-570))) (-320 (-227))) 73)) (-1803 (((-320 (-384)) (-320 (-227))) 103)) (-1543 (((-227) (-320 (-227))) 57)) (-2527 (((-650 (-227)) (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) 68)) (-2880 (((-1103 (-849 (-227))) (-1103 (-849 (-227)))) 65)) (-3067 (((-1168) (-227)) 76)) (-1945 (((-705) (-227)) 95)) (-2132 (((-413 (-570)) (-227)) 58)) (-4223 (((-320 (-384)) (-227)) 52)) (-1426 (((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384))))) 46)) (-2585 (((-1044) (-650 (-1044))) 191) (((-1044) (-1044) (-1044)) 185)) (-3202 (((-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"))) (|:| -1600 (-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"))))) 221)))
+(((-309) (-10 -7 (-15 -1931 ((-227) (-384))) (-15 -3243 ((-320 (-227)) (-320 (-384)))) (-15 -3872 ((-849 (-227)) (-849 (-384)))) (-15 -2039 ((-1103 (-849 (-227))) (-1103 (-849 (-384))))) (-15 -1426 ((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384)))))) (-15 -2132 ((-413 (-570)) (-227))) (-15 -2563 ((-413 (-570)) (-320 (-227)))) (-15 -1543 ((-227) (-320 (-227)))) (-15 -1373 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -2227 ((-384) (-1277 (-320 (-227))))) (-15 -1867 ((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227))))) (-15 -1612 ((-320 (-413 (-570))) (-320 (-227)))) (-15 -2880 ((-1103 (-849 (-227))) (-1103 (-849 (-227))))) (-15 -2527 ((-650 (-227)) (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))) (-15 -1945 ((-705) (-227))) (-15 -1335 ((-1277 (-705)) (-650 (-227)))) (-15 -1803 ((-320 (-384)) (-320 (-227)))) (-15 -3760 ((-1277 (-320 (-384))) (-1277 (-320 (-227))))) (-15 -4221 ((-112) (-227) (-1103 (-849 (-227))))) (-15 -3067 ((-1168) (-227))) (-15 -4012 ((-1168) (-384))) (-15 -3382 ((-650 (-1168)) (-650 (-227)))) (-15 -2261 ((-650 (-1168)) (-1166 (-227)))) (-15 -4422 ((-227) (-1103 (-849 (-227))))) (-15 -2515 ((-227) (-1103 (-849 (-227))))) (-15 -2585 ((-1044) (-1044) (-1044))) (-15 -2585 ((-1044) (-650 (-1044)))) (-15 -2999 ((-1168) (-384))) (-15 -2518 ((-1044) (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))))) (-15 -2518 ((-1044) (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))) (-15 -3202 ((-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"))) (|:| -1600 (-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 -1613 ((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))) (-15 -1656 ((-320 (-384)) (-959 (-227)))) (-15 -3680 ((-227) (-959 (-227)))) (-15 -4223 ((-320 (-384)) (-227))) (-15 -2655 ((-227) (-413 (-570)))) (-15 -2990 ((-695 (-227)) (-650 (-227)) (-777))))) (T -309))
+((-2990 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-227))) (-5 *4 (-777)) (-5 *2 (-695 (-227))) (-5 *1 (-309)))) (-2655 (*1 *2 *3) (-12 (-5 *3 (-413 (-570))) (-5 *2 (-227)) (-5 *1 (-309)))) (-4223 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-3680 (*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))) (-1656 (*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-1613 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-3202 (*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"))) (|:| -1600 (-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)))) (-2518 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2518 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2999 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-2585 (*1 *2 *3) (-12 (-5 *3 (-650 (-1044))) (-5 *2 (-1044)) (-5 *1 (-309)))) (-2585 (*1 *2 *2 *2) (-12 (-5 *2 (-1044)) (-5 *1 (-309)))) (-2515 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))) (-4422 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))) (-2261 (*1 *2 *3) (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))) (-3382 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))) (-4012 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-3067 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1168)) (-5 *1 (-309)))) (-4221 (*1 *2 *3 *4) (-12 (-5 *4 (-1103 (-849 (-227)))) (-5 *3 (-227)) (-5 *2 (-112)) (-5 *1 (-309)))) (-3760 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-1277 (-320 (-384)))) (-5 *1 (-309)))) (-1803 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))) (-1335 (*1 *2 *3) (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1277 (-705))) (-5 *1 (-309)))) (-1945 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-705)) (-5 *1 (-309)))) (-2527 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-5 *2 (-650 (-227))) (-5 *1 (-309)))) (-2880 (*1 *2 *2) (-12 (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))) (-1612 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-413 (-570)))) (-5 *1 (-309)))) (-1867 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570)))) (-5 *1 (-309)))) (-2227 (*1 *2 *3) (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-309)))) (-1373 (*1 *2 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-309)))) (-1543 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))) (-2563 (*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-413 (-570))) (-5 *1 (-309)))) (-2132 (*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-413 (-570))) (-5 *1 (-309)))) (-1426 (*1 *2 *3) (-12 (-5 *3 (-650 (-1103 (-849 (-384))))) (-5 *2 (-650 (-1103 (-849 (-227))))) (-5 *1 (-309)))) (-2039 (*1 *2 *3) (-12 (-5 *3 (-1103 (-849 (-384)))) (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))) (-3872 (*1 *2 *3) (-12 (-5 *3 (-849 (-384))) (-5 *2 (-849 (-227))) (-5 *1 (-309)))) (-3243 (*1 *2 *3) (-12 (-5 *3 (-320 (-384))) (-5 *2 (-320 (-227))) (-5 *1 (-309)))) (-1931 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-309)))))
+(-10 -7 (-15 -1931 ((-227) (-384))) (-15 -3243 ((-320 (-227)) (-320 (-384)))) (-15 -3872 ((-849 (-227)) (-849 (-384)))) (-15 -2039 ((-1103 (-849 (-227))) (-1103 (-849 (-384))))) (-15 -1426 ((-650 (-1103 (-849 (-227)))) (-650 (-1103 (-849 (-384)))))) (-15 -2132 ((-413 (-570)) (-227))) (-15 -2563 ((-413 (-570)) (-320 (-227)))) (-15 -1543 ((-227) (-320 (-227)))) (-15 -1373 ((-3 (-320 (-227)) "failed") (-320 (-227)))) (-15 -2227 ((-384) (-1277 (-320 (-227))))) (-15 -1867 ((-2 (|:| |additions| (-570)) (|:| |multiplications| (-570)) (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))) (-1277 (-320 (-227))))) (-15 -1612 ((-320 (-413 (-570))) (-320 (-227)))) (-15 -2880 ((-1103 (-849 (-227))) (-1103 (-849 (-227))))) (-15 -2527 ((-650 (-227)) (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))) (-15 -1945 ((-705) (-227))) (-15 -1335 ((-1277 (-705)) (-650 (-227)))) (-15 -1803 ((-320 (-384)) (-320 (-227)))) (-15 -3760 ((-1277 (-320 (-384))) (-1277 (-320 (-227))))) (-15 -4221 ((-112) (-227) (-1103 (-849 (-227))))) (-15 -3067 ((-1168) (-227))) (-15 -4012 ((-1168) (-384))) (-15 -3382 ((-650 (-1168)) (-650 (-227)))) (-15 -2261 ((-650 (-1168)) (-1166 (-227)))) (-15 -4422 ((-227) (-1103 (-849 (-227))))) (-15 -2515 ((-227) (-1103 (-849 (-227))))) (-15 -2585 ((-1044) (-1044) (-1044))) (-15 -2585 ((-1044) (-650 (-1044)))) (-15 -2999 ((-1168) (-384))) (-15 -2518 ((-1044) (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))))) (-15 -2518 ((-1044) (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))) (-15 -3202 ((-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"))) (|:| -1600 (-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 -1613 ((-1044) (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))) (-15 -1656 ((-320 (-384)) (-959 (-227)))) (-15 -3680 ((-227) (-959 (-227)))) (-15 -4223 ((-320 (-384)) (-227))) (-15 -2655 ((-227) (-413 (-570)))) (-15 -2990 ((-695 (-227)) (-650 (-227)) (-777))))
+((-3765 (((-112) $ $) 14)) (-2504 (($ $ $) 18)) (-2519 (($ $ $) 17)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 50)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 65)) (-1939 (($ $ $) 25) (($ (-650 $)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 35) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 40)) (-2548 (((-3 $ "failed") $ $) 21)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 53)))
+(((-310 |#1|) (-10 -8 (-15 -3764 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -1339 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1339 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2467 |#1|)) |#1| |#1|)) (-15 -2504 (|#1| |#1| |#1|)) (-15 -2519 (|#1| |#1| |#1|)) (-15 -3765 ((-112) |#1| |#1|)) (-15 -3677 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -3958 ((-2 (|:| -1453 (-650 |#1|)) (|:| -2467 |#1|)) (-650 |#1|))) (-15 -1939 (|#1| (-650 |#1|))) (-15 -1939 (|#1| |#1| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#1|))) (-311)) (T -310))
+NIL
+(-10 -8 (-15 -3764 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -1339 ((-3 (-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|)) "failed") |#1| |#1| |#1|)) (-15 -1339 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2467 |#1|)) |#1| |#1|)) (-15 -2504 (|#1| |#1| |#1|)) (-15 -2519 (|#1| |#1| |#1|)) (-15 -3765 ((-112) |#1| |#1|)) (-15 -3677 ((-3 (-650 |#1|) "failed") (-650 |#1|) |#1|)) (-15 -3958 ((-2 (|:| -1453 (-650 |#1|)) (|:| -2467 |#1|)) (-650 |#1|))) (-15 -1939 (|#1| (-650 |#1|))) (-15 -1939 (|#1| |#1| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-3765 (((-112) $ $) 65)) (-3195 (($) 18 T CONST)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-4139 (((-112) $) 35)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-311) (-141)) (T -311))
-((-3473 (*1 *2 *1 *1) (-12 (-4 *1 (-311)) (-5 *2 (-112)))) (-2142 (*1 *2 *1) (-12 (-4 *1 (-311)) (-5 *2 (-777)))) (-2384 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-311)))) (-2518 (*1 *1 *1 *1) (-4 *1 (-311))) (-2506 (*1 *1 *1 *1) (-4 *1 (-311))) (-1590 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2466 *1))) (-4 *1 (-311)))) (-1590 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-311)))) (-1641 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-311)))))
-(-13 (-927) (-10 -8 (-15 -3473 ((-112) $ $)) (-15 -2142 ((-777) $)) (-15 -2384 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -2518 ($ $ $)) (-15 -2506 ($ $ $)) (-15 -1590 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $)) (-15 -1590 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -1641 ((-3 (-650 $) "failed") (-650 $) $))))
+((-3765 (*1 *2 *1 *1) (-12 (-4 *1 (-311)) (-5 *2 (-112)))) (-2006 (*1 *2 *1) (-12 (-4 *1 (-311)) (-5 *2 (-777)))) (-2696 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-311)))) (-2519 (*1 *1 *1 *1) (-4 *1 (-311))) (-2504 (*1 *1 *1 *1) (-4 *1 (-311))) (-1339 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2467 *1))) (-4 *1 (-311)))) (-1339 (*1 *2 *1 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-311)))) (-3764 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-311)))))
+(-13 (-927) (-10 -8 (-15 -3765 ((-112) $ $)) (-15 -2006 ((-777) $)) (-15 -2696 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -2519 ($ $ $)) (-15 -2504 ($ $ $)) (-15 -1339 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $)) (-15 -1339 ((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $)) (-15 -3764 ((-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))
-((-1770 (($ $ (-650 |#2|) (-650 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-298 |#2|)) 11) (($ $ (-650 (-298 |#2|))) NIL)))
-(((-312 |#1| |#2|) (-10 -8 (-15 -1770 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1770 (|#1| |#1| (-298 |#2|))) (-15 -1770 (|#1| |#1| |#2| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#2|) (-650 |#2|)))) (-313 |#2|) (-1109)) (T -312))
+((-1771 (($ $ (-650 |#2|) (-650 |#2|)) 14) (($ $ |#2| |#2|) NIL) (($ $ (-298 |#2|)) 11) (($ $ (-650 (-298 |#2|))) NIL)))
+(((-312 |#1| |#2|) (-10 -8 (-15 -1771 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1771 (|#1| |#1| (-298 |#2|))) (-15 -1771 (|#1| |#1| |#2| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#2|) (-650 |#2|)))) (-313 |#2|) (-1109)) (T -312))
NIL
-(-10 -8 (-15 -1770 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1770 (|#1| |#1| (-298 |#2|))) (-15 -1770 (|#1| |#1| |#2| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#2|) (-650 |#2|))))
-((-1770 (($ $ (-650 |#1|) (-650 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-298 |#1|)) 11) (($ $ (-650 (-298 |#1|))) 10)))
+(-10 -8 (-15 -1771 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1771 (|#1| |#1| (-298 |#2|))) (-15 -1771 (|#1| |#1| |#2| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#2|) (-650 |#2|))))
+((-1771 (($ $ (-650 |#1|) (-650 |#1|)) 7) (($ $ |#1| |#1|) 6) (($ $ (-298 |#1|)) 11) (($ $ (-650 (-298 |#1|))) 10)))
(((-313 |#1|) (-141) (-1109)) (T -313))
-((-1770 (*1 *1 *1 *2) (-12 (-5 *2 (-298 *3)) (-4 *1 (-313 *3)) (-4 *3 (-1109)))) (-1770 (*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 -1770 ($ $ (-298 |t#1|))) (-15 -1770 ($ $ (-650 (-298 |t#1|))))))
+((-1771 (*1 *1 *1 *2) (-12 (-5 *2 (-298 *3)) (-4 *1 (-313 *3)) (-4 *3 (-1109)))) (-1771 (*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 -1771 ($ $ (-298 |t#1|))) (-15 -1771 ($ $ (-650 (-298 |t#1|))))))
(((-520 |#1| |#1|) . T))
-((-1770 ((|#1| (-1 |#1| (-570)) (-1188 (-413 (-570)))) 26)))
-(((-314 |#1|) (-10 -7 (-15 -1770 (|#1| (-1 |#1| (-570)) (-1188 (-413 (-570)))))) (-38 (-413 (-570)))) (T -314))
-((-1770 (*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 -1770 (|#1| (-1 |#1| (-570)) (-1188 (-413 (-570))))))
-((-2558 (((-112) $ $) NIL)) (-2608 (((-570) $) 12)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1434 (((-1144) $) 9)) (-3799 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-315) (-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $)) (-15 -2608 ((-570) $))))) (T -315))
-((-1434 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-315)))) (-2608 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-315)))))
-(-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $)) (-15 -2608 ((-570) $))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 7)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 9)))
+((-1771 ((|#1| (-1 |#1| (-570)) (-1188 (-413 (-570)))) 26)))
+(((-314 |#1|) (-10 -7 (-15 -1771 (|#1| (-1 |#1| (-570)) (-1188 (-413 (-570)))))) (-38 (-413 (-570)))) (T -314))
+((-1771 (*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 -1771 (|#1| (-1 |#1| (-570)) (-1188 (-413 (-570))))))
+((-2560 (((-112) $ $) NIL)) (-2609 (((-570) $) 12)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1435 (((-1144) $) 9)) (-3802 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-315) (-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $)) (-15 -2609 ((-570) $))))) (T -315))
+((-1435 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-315)))) (-2609 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-315)))))
+(-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $)) (-15 -2609 ((-570) $))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 7)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 9)))
(((-316) (-1109)) (T -316))
NIL
(-1109)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 60)) (-1733 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 (((-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)) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-1263 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1277 (-1263 |#1| |#2| |#3| |#4|)))) (-695 $) (-1277 $)) NIL) (((-695 (-1263 |#1| |#2| |#3| |#4|)) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-2842 (((-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))))) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL)) (-4399 (((-1263 |#1| |#2| |#3| |#4|) $) 22)) (-2619 (((-3 $ "failed") $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1161)))) (-1479 (((-112) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-2800 (($ $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-1356 (($ (-1 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) $) NIL)) (-1901 (((-3 (-849 |#2|) "failed") $) 80)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-311)))) (-3665 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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|))))) (-2142 (((-777) $) NIL)) (-1941 (($ $ (-1263 |#1| |#2| |#3| |#4|)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-290 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 (((-1263 |#1| |#2| |#3| |#4|) $) 19)) (-1425 (((-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)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1263 |#1| |#2| |#3| |#4|) (-916))))) (-3799 (((-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)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| (-1263 |#1| |#2| |#3| |#4|) (-916))) (|has| (-1263 |#1| |#2| |#3| |#4|) (-146))))) (-3499 (((-777)) NIL T CONST)) (-1313 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-2622 (($ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-3122 (($ $ $) 35) (($ (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) 32)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1901 ((-3 (-849 |#2|) "failed") $)) (-15 -3799 ($ (-1262 |#2| |#3| |#4|))))) (-13 (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1212) (-436 |#1|)) (-1186) |#2|) (T -317))
-((-3799 (*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)))) (-1901 (*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 -1901 ((-3 (-849 |#2|) "failed") $)) (-15 -3799 ($ (-1262 |#2| |#3| |#4|)))))
-((-1356 (((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|)) 13)))
-(((-318 |#1| |#2|) (-10 -7 (-15 -1356 ((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|)))) (-1109) (-1109)) (T -318))
-((-1356 (*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 -1356 ((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|))))
-((-1825 (((-52) |#2| (-298 |#2|) (-777)) 40) (((-52) |#2| (-298 |#2|)) 32) (((-52) |#2| (-777)) 35) (((-52) |#2|) 33) (((-52) (-1186)) 26)) (-3418 (((-52) |#2| (-298 |#2|) (-413 (-570))) 59) (((-52) |#2| (-298 |#2|)) 56) (((-52) |#2| (-413 (-570))) 58) (((-52) |#2|) 57) (((-52) (-1186)) 55)) (-1852 (((-52) |#2| (-298 |#2|) (-413 (-570))) 54) (((-52) |#2| (-298 |#2|)) 51) (((-52) |#2| (-413 (-570))) 53) (((-52) |#2|) 52) (((-52) (-1186)) 50)) (-1838 (((-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 -1825 ((-52) (-1186))) (-15 -1825 ((-52) |#2|)) (-15 -1825 ((-52) |#2| (-777))) (-15 -1825 ((-52) |#2| (-298 |#2|))) (-15 -1825 ((-52) |#2| (-298 |#2|) (-777))) (-15 -1838 ((-52) (-1186))) (-15 -1838 ((-52) |#2|)) (-15 -1838 ((-52) |#2| (-570))) (-15 -1838 ((-52) |#2| (-298 |#2|))) (-15 -1838 ((-52) |#2| (-298 |#2|) (-570))) (-15 -1852 ((-52) (-1186))) (-15 -1852 ((-52) |#2|)) (-15 -1852 ((-52) |#2| (-413 (-570)))) (-15 -1852 ((-52) |#2| (-298 |#2|))) (-15 -1852 ((-52) |#2| (-298 |#2|) (-413 (-570)))) (-15 -3418 ((-52) (-1186))) (-15 -3418 ((-52) |#2|)) (-15 -3418 ((-52) |#2| (-413 (-570)))) (-15 -3418 ((-52) |#2| (-298 |#2|))) (-15 -3418 ((-52) |#2| (-298 |#2|) (-413 (-570))))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -319))
-((-3418 (*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)))) (-3418 (*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)))) (-3418 (*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))))) (-3418 (*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))))) (-3418 (*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))))) (-1852 (*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)))) (-1852 (*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)))) (-1852 (*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))))) (-1852 (*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))))) (-1852 (*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))))) (-1838 (*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)))) (-1838 (*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)))) (-1838 (*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))))) (-1838 (*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))))) (-1838 (*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))))) (-1825 (*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)))) (-1825 (*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)))) (-1825 (*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))))) (-1825 (*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))))) (-1825 (*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 -1825 ((-52) (-1186))) (-15 -1825 ((-52) |#2|)) (-15 -1825 ((-52) |#2| (-777))) (-15 -1825 ((-52) |#2| (-298 |#2|))) (-15 -1825 ((-52) |#2| (-298 |#2|) (-777))) (-15 -1838 ((-52) (-1186))) (-15 -1838 ((-52) |#2|)) (-15 -1838 ((-52) |#2| (-570))) (-15 -1838 ((-52) |#2| (-298 |#2|))) (-15 -1838 ((-52) |#2| (-298 |#2|) (-570))) (-15 -1852 ((-52) (-1186))) (-15 -1852 ((-52) |#2|)) (-15 -1852 ((-52) |#2| (-413 (-570)))) (-15 -1852 ((-52) |#2| (-298 |#2|))) (-15 -1852 ((-52) |#2| (-298 |#2|) (-413 (-570)))) (-15 -3418 ((-52) (-1186))) (-15 -3418 ((-52) |#2|)) (-15 -3418 ((-52) |#2| (-413 (-570)))) (-15 -3418 ((-52) |#2| (-298 |#2|))) (-15 -3418 ((-52) |#2| (-298 |#2|) (-413 (-570)))))
-((-2558 (((-112) $ $) NIL)) (-2523 (((-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)))) (-4045 (($ $ (-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)))) (-3467 (((-112) $) 27 (-2892 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-1755 (((-650 (-1186)) $) 368)) (-3775 (((-413 (-1182 $)) $ (-618 $)) NIL (|has| |#1| (-562)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3684 (((-650 (-618 $)) $) NIL)) (-2887 (($ $) 171 (|has| |#1| (-562)))) (-2751 (($ $) 147 (|has| |#1| (-562)))) (-3364 (($ $ (-1101 $)) 232 (|has| |#1| (-562))) (($ $ (-1186)) 228 (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) NIL (-2892 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-4335 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) 386) (($ $ (-650 (-618 $)) (-650 $)) 430)) (-3924 (((-424 (-1182 $)) (-1182 $)) 308 (-12 (|has| |#1| (-458)) (|has| |#1| (-562))))) (-4364 (($ $) NIL (|has| |#1| (-562)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-562)))) (-3814 (($ $) NIL (|has| |#1| (-562)))) (-3473 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2866 (($ $) 167 (|has| |#1| (-562)))) (-2733 (($ $) 143 (|has| |#1| (-562)))) (-2226 (($ $ (-570)) 73 (|has| |#1| (-562)))) (-4107 (($ $) 175 (|has| |#1| (-562)))) (-2774 (($ $) 151 (|has| |#1| (-562)))) (-1705 (($) NIL (-2892 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))) CONST)) (-1538 (((-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)))) (-1979 (($ $ (-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)))) (-4380 (((-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 (-2892 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3216 (((-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 (-2892 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2506 (($ $ $) NIL (|has| |#1| (-562)))) (-4196 (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 125 (|has| |#1| (-1058))) (((-695 |#1|) (-695 $)) 115 (|has| |#1| (-1058))) (((-2 (|:| -2415 (-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))))) (-3624 (($ $) 96 (|has| |#1| (-562)))) (-2875 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (-2518 (($ $ $) NIL (|has| |#1| (-562)))) (-4057 (($ $ (-1101 $)) 236 (|has| |#1| (-562))) (($ $ (-1186)) 234 (|has| |#1| (-562)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-562)))) (-3618 (((-112) $) NIL (|has| |#1| (-562)))) (-4083 (($ $ $) 202 (|has| |#1| (-562)))) (-1315 (($) 137 (|has| |#1| (-562)))) (-4071 (($ $ $) 222 (|has| |#1| (-562)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 392 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 399 (|has| |#1| (-893 (-384))))) (-2481 (($ $) NIL) (($ (-650 $)) NIL)) (-2856 (((-650 (-115)) $) NIL)) (-3756 (((-115) (-115)) 276)) (-4346 (((-112) $) 25 (-2892 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (-2110 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1330 (($ $) 72 (|has| |#1| (-1058)))) (-4399 (((-1134 |#1| (-618 $)) $) 91 (|has| |#1| (-1058)))) (-3998 (((-112) $) 62 (|has| |#1| (-562)))) (-2923 (($ $ (-570)) NIL (|has| |#1| (-562)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-562)))) (-4032 (((-1182 $) (-618 $)) 277 (|has| $ (-1058)))) (-1356 (($ (-1 $ $) (-618 $)) 426)) (-4143 (((-3 (-618 $) "failed") $) NIL)) (-2789 (($ $) 141 (|has| |#1| (-562)))) (-4162 (($ $) 247 (|has| |#1| (-562)))) (-1899 (($ (-650 $)) NIL (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-1988 (((-1168) $) NIL)) (-3748 (((-650 (-618 $)) $) 49)) (-1365 (($ (-115) $) NIL) (($ (-115) (-650 $)) 431)) (-2209 (((-3 (-650 $) "failed") $) NIL (|has| |#1| (-1121)))) (-3352 (((-3 (-2 (|:| |val| $) (|:| -3357 (-570))) "failed") $) NIL (|has| |#1| (-1058)))) (-3654 (((-3 (-650 $) "failed") $) 436 (|has| |#1| (-25)))) (-2778 (((-3 (-2 (|:| -1452 (-570)) (|:| |var| (-618 $))) "failed") $) 440 (|has| |#1| (-25)))) (-1895 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $) NIL (|has| |#1| (-1121))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-115)) NIL (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-1186)) NIL (|has| |#1| (-1058)))) (-3190 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) 51)) (-1877 (($ $) NIL (-2892 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-2212 (($ $ (-1186)) 251 (|has| |#1| (-562))) (($ $ (-1101 $)) 253 (|has| |#1| (-562)))) (-1444 (((-777) $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) 43)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 301 (|has| |#1| (-562)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-2603 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-1560 (($ $ (-1186)) 226 (|has| |#1| (-562))) (($ $) 224 (|has| |#1| (-562)))) (-4365 (($ $) 218 (|has| |#1| (-562)))) (-2224 (((-424 (-1182 $)) (-1182 $)) 306 (-12 (|has| |#1| (-458)) (|has| |#1| (-562))))) (-3801 (((-424 $) $) NIL (|has| |#1| (-562)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-562))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-562)))) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-562)))) (-4387 (($ $) 139 (|has| |#1| (-562)))) (-3273 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1770 (($ $ (-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)))) (-2142 (((-777) $) NIL (|has| |#1| (-562)))) (-2690 (($ $) 239 (|has| |#1| (-562)))) (-1941 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-3444 (($ $) NIL) (($ $ $) NIL)) (-2722 (($ $) 249 (|has| |#1| (-562)))) (-2326 (($ $) 200 (|has| |#1| (-562)))) (-3547 (($ $ (-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)))) (-2978 (($ $) 74 (|has| |#1| (-562)))) (-4413 (((-1134 |#1| (-618 $)) $) 93 (|has| |#1| (-562)))) (-2755 (($ $) 317 (|has| $ (-1058)))) (-4117 (($ $) 177 (|has| |#1| (-562)))) (-2788 (($ $) 153 (|has| |#1| (-562)))) (-2899 (($ $) 173 (|has| |#1| (-562)))) (-2766 (($ $) 149 (|has| |#1| (-562)))) (-2876 (($ $) 169 (|has| |#1| (-562)))) (-2740 (($ $) 145 (|has| |#1| (-562)))) (-1425 (((-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))))) (-2020 (($ $ $) NIL (|has| |#1| (-479)))) (-4391 (($ $ $) NIL (|has| |#1| (-479)))) (-3799 (((-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 (-2892 (|has| |#1| (-562)) (|has| |#1| (-1047 (-413 (-570)))))) (($ (-570)) 34 (-2892 (|has| |#1| (-1047 (-570))) (|has| |#1| (-1058))))) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL (|has| |#1| (-1058)) CONST)) (-4244 (($ $) NIL) (($ (-650 $)) NIL)) (-2858 (($ $ $) 220 (|has| |#1| (-562)))) (-4231 (($ $ $) 206 (|has| |#1| (-562)))) (-3890 (($ $ $) 210 (|has| |#1| (-562)))) (-3564 (($ $ $) 204 (|has| |#1| (-562)))) (-3773 (($ $ $) 208 (|has| |#1| (-562)))) (-1388 (((-112) (-115)) 10)) (-2335 (((-112) $ $) 86)) (-4154 (($ $) 183 (|has| |#1| (-562)))) (-2825 (($ $) 159 (|has| |#1| (-562)))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 179 (|has| |#1| (-562)))) (-2801 (($ $) 155 (|has| |#1| (-562)))) (-4176 (($ $) 187 (|has| |#1| (-562)))) (-2845 (($ $) 163 (|has| |#1| (-562)))) (-4205 (($ (-1186) $) NIL) (($ (-1186) $ $) NIL) (($ (-1186) $ $ $) NIL) (($ (-1186) $ $ $ $) NIL) (($ (-1186) (-650 $)) NIL)) (-3635 (($ $) 214 (|has| |#1| (-562)))) (-4116 (($ $) 212 (|has| |#1| (-562)))) (-1578 (($ $) 189 (|has| |#1| (-562)))) (-2855 (($ $) 165 (|has| |#1| (-562)))) (-4163 (($ $) 185 (|has| |#1| (-562)))) (-2835 (($ $) 161 (|has| |#1| (-562)))) (-4140 (($ $) 181 (|has| |#1| (-562)))) (-2814 (($ $) 157 (|has| |#1| (-562)))) (-2622 (($ $) 192 (|has| |#1| (-562)))) (-1861 (($) 21 (-2892 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) CONST)) (-3019 (($ $) 243 (|has| |#1| (-562)))) (-1875 (($) 23 (-2892 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))) CONST)) (-2256 (($ $) 194 (|has| |#1| (-562))) (($ $ $) 196 (|has| |#1| (-562)))) (-2097 (($ $) 241 (|has| |#1| (-562)))) (-2942 (($ $ (-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)))) (-2921 (($ $) 245 (|has| |#1| (-562)))) (-4250 (($ $ $) 198 (|has| |#1| (-562)))) (-3022 (((-112) $ $) 88)) (-3122 (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 106 (|has| |#1| (-562))) (($ $ $) 42 (-2892 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-3111 (($ $ $) 40 (-2892 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ $) 29 (-2892 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-3101 (($ $ $) 38 (-2892 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (** (($ $ $) 64 (|has| |#1| (-562))) (($ $ (-413 (-570))) 314 (|has| |#1| (-562))) (($ $ (-570)) 80 (-2892 (|has| |#1| (-479)) (|has| |#1| (-562)))) (($ $ (-777)) 75 (-2892 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121)))) (($ $ (-928)) 84 (-2892 (-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 (-2892 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121)))) (($ (-570) $) 32 (-2892 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ (-777) $) NIL (-2892 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ (-928) $) NIL (-2892 (|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 -3624 ($ $)) (-15 -3998 ((-112) $)) (-15 -2226 ($ $ (-570))) (IF (|has| |#1| (-458)) (PROGN (-15 -2224 ((-424 (-1182 $)) (-1182 $))) (-15 -3924 ((-424 (-1182 $)) (-1182 $)))) |%noBranch|) (IF (|has| |#1| (-1047 (-570))) (-6 (-1047 (-48))) |%noBranch|)) |%noBranch|))) (-1109)) (T -320))
-((-3624 (*1 *1 *1) (-12 (-5 *1 (-320 *2)) (-4 *2 (-562)) (-4 *2 (-1109)))) (-3998 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-2226 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-2224 (*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)))) (-3924 (*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 -3624 ($ $)) (-15 -3998 ((-112) $)) (-15 -2226 ($ $ (-570))) (IF (|has| |#1| (-458)) (PROGN (-15 -2224 ((-424 (-1182 $)) (-1182 $))) (-15 -3924 ((-424 (-1182 $)) (-1182 $)))) |%noBranch|) (IF (|has| |#1| (-1047 (-570))) (-6 (-1047 (-48))) |%noBranch|)) |%noBranch|)))
-((-2030 (((-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 -2030 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|))) (-15 -2030 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -2030 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -2030 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -2030 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -2030 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -2030 ((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|)) (-15 -2030 ((-52) |#2| (-115) (-298 |#2|) |#2|)) (-15 -2030 ((-52) |#2| (-115) (-298 |#2|) (-298 |#2|))) (-15 -2030 ((-52) |#2| (-115) (-298 |#2|) (-650 |#2|)))) (-13 (-562) (-620 (-542))) (-436 |#1|)) (T -321))
-((-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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 -2030 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|))) (-15 -2030 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -2030 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -2030 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -2030 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -2030 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -2030 ((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|)) (-15 -2030 ((-52) |#2| (-115) (-298 |#2|) |#2|)) (-15 -2030 ((-52) |#2| (-115) (-298 |#2|) (-298 |#2|))) (-15 -2030 ((-52) |#2| (-115) (-298 |#2|) (-650 |#2|))))
-((-3221 (((-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)) (-2396 (((-1 (-227) (-227)) (-227)) 66)))
-(((-322) (-10 -7 (-15 -2396 ((-1 (-227) (-227)) (-227))) (-15 -3221 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570))) (-15 -3221 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168))) (-15 -3221 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570))) (-15 -3221 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168))))) (T -322))
-((-3221 (*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)))) (-3221 (*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)))) (-3221 (*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)))) (-3221 (*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)))) (-2396 (*1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-322)) (-5 *3 (-227)))))
-(-10 -7 (-15 -2396 ((-1 (-227) (-227)) (-227))) (-15 -3221 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570))) (-15 -3221 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168))) (-15 -3221 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570))) (-15 -3221 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 26)) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-1447 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3416 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 20)) (-2887 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2866 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4107 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) 36)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-2379 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) 16)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-413 (-570))) NIL) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-2789 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2898 (($ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2431 (($ $ (-413 (-570))) NIL)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4377 (((-413 (-570)) $) 17)) (-3390 (($ (-1262 |#1| |#2| |#3|)) 11)) (-3357 (((-1262 |#1| |#2| |#3|) $) 12)) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3547 (($ $ (-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|))))) (-2130 (((-413 (-570)) $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 10)) (-3799 (((-868) $) 42) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-2249 ((|#1| $ (-413 (-570))) 34)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2288 ((|#1| $) NIL)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-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|))))) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 28)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 37)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3390 ($ (-1262 |#1| |#2| |#3|))) (-15 -3357 ((-1262 |#1| |#2| |#3|) $)) (-15 -4377 ((-413 (-570)) $)))) (-368) (-1186) |#1|) (T -323))
-((-3390 (*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)))) (-3357 (*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))) (-4377 (*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 -3390 ($ (-1262 |#1| |#2| |#3|))) (-15 -3357 ((-1262 |#1| |#2| |#3|) $)) (-15 -4377 ((-413 (-570)) $))))
-((-2923 (((-2 (|:| -3357 (-777)) (|:| -1452 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777)) 35)) (-2789 (((-650 (-2 (|:| -1452 (-777)) (|:| |logand| |#1|))) (-424 |#1|)) 40)))
-(((-324 |#1|) (-10 -7 (-15 -2923 ((-2 (|:| -3357 (-777)) (|:| -1452 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777))) (-15 -2789 ((-650 (-2 (|:| -1452 (-777)) (|:| |logand| |#1|))) (-424 |#1|)))) (-562)) (T -324))
-((-2789 (*1 *2 *3) (-12 (-5 *3 (-424 *4)) (-4 *4 (-562)) (-5 *2 (-650 (-2 (|:| -1452 (-777)) (|:| |logand| *4)))) (-5 *1 (-324 *4)))) (-2923 (*1 *2 *3 *4) (-12 (-5 *3 (-424 *5)) (-4 *5 (-562)) (-5 *2 (-2 (|:| -3357 (-777)) (|:| -1452 *5) (|:| |radicand| (-650 *5)))) (-5 *1 (-324 *5)) (-5 *4 (-777)))))
-(-10 -7 (-15 -2923 ((-2 (|:| -3357 (-777)) (|:| -1452 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777))) (-15 -2789 ((-650 (-2 (|:| -1452 (-777)) (|:| |logand| |#1|))) (-424 |#1|))))
-((-1755 (((-650 |#2|) (-1182 |#4|)) 44)) (-3921 ((|#3| (-570)) 47)) (-2399 (((-1182 |#4|) (-1182 |#3|)) 30)) (-4353 (((-1182 |#4|) (-1182 |#4|) (-570)) 66)) (-1963 (((-1182 |#3|) (-1182 |#4|)) 21)) (-2130 (((-650 (-777)) (-1182 |#4|) (-650 |#2|)) 41)) (-1991 (((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|)) 35)))
-(((-325 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1991 ((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|))) (-15 -2130 ((-650 (-777)) (-1182 |#4|) (-650 |#2|))) (-15 -1755 ((-650 |#2|) (-1182 |#4|))) (-15 -1963 ((-1182 |#3|) (-1182 |#4|))) (-15 -2399 ((-1182 |#4|) (-1182 |#3|))) (-15 -4353 ((-1182 |#4|) (-1182 |#4|) (-570))) (-15 -3921 (|#3| (-570)))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|)) (T -325))
-((-3921 (*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)))) (-4353 (*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)))) (-2399 (*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)))) (-1963 (*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)))) (-1755 (*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)))) (-2130 (*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)))) (-1991 (*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 -1991 ((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|))) (-15 -2130 ((-650 (-777)) (-1182 |#4|) (-650 |#2|))) (-15 -1755 ((-650 |#2|) (-1182 |#4|))) (-15 -1963 ((-1182 |#3|) (-1182 |#4|))) (-15 -2399 ((-1182 |#4|) (-1182 |#3|))) (-15 -4353 ((-1182 |#4|) (-1182 |#4|) (-570))) (-15 -3921 (|#3| (-570))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 19)) (-3416 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-570)))) $) 21)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3510 (((-777) $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-2610 ((|#1| $ (-570)) NIL)) (-2882 (((-570) $ (-570)) NIL)) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-2131 (($ (-1 |#1| |#1|) $) NIL)) (-2979 (($ (-1 (-570) (-570)) $) 11)) (-1988 (((-1168) $) NIL)) (-1334 (($ $ $) NIL (|has| (-570) (-798)))) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ |#1|) NIL)) (-2249 (((-570) |#1| $) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) 29 (|has| |#1| (-856)))) (-3111 (($ $) 12) (($ $ $) 28)) (-3101 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ (-570)) NIL) (($ (-570) |#1|) 27)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 60)) (-3472 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 (((-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)) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-1263 |#1| |#2| |#3| |#4|))) (|:| |vec| (-1277 (-1263 |#1| |#2| |#3| |#4|)))) (-695 $) (-1277 $)) NIL) (((-695 (-1263 |#1| |#2| |#3| |#4|)) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-1557 (((-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))))) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL)) (-4402 (((-1263 |#1| |#2| |#3| |#4|) $) 22)) (-4369 (((-3 $ "failed") $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1161)))) (-2788 (((-112) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-2472 (($ $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-1357 (($ (-1 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) $) NIL)) (-4349 (((-3 (-849 |#2|) "failed") $) 80)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-311)))) (-1920 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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|))))) (-2006 (((-777) $) NIL)) (-1942 (($ $ (-1263 |#1| |#2| |#3| |#4|)) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-290 (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 (((-1263 |#1| |#2| |#3| |#4|) $) 19)) (-1426 (((-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)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1263 |#1| |#2| |#3| |#4|) (-916))))) (-3802 (((-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)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| (-1263 |#1| |#2| |#3| |#4|) (-916))) (|has| (-1263 |#1| |#2| |#3| |#4|) (-146))))) (-2851 (((-777)) NIL T CONST)) (-1918 (((-1263 |#1| |#2| |#3| |#4|) $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-551)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3231 (($ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-826)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-1263 |#1| |#2| |#3| |#4|) (-856)))) (-3125 (($ $ $) 35) (($ (-1263 |#1| |#2| |#3| |#4|) (-1263 |#1| |#2| |#3| |#4|)) 32)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -4349 ((-3 (-849 |#2|) "failed") $)) (-15 -3802 ($ (-1262 |#2| |#3| |#4|))))) (-13 (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1212) (-436 |#1|)) (-1186) |#2|) (T -317))
+((-3802 (*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)))) (-4349 (*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 -4349 ((-3 (-849 |#2|) "failed") $)) (-15 -3802 ($ (-1262 |#2| |#3| |#4|)))))
+((-1357 (((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|)) 13)))
+(((-318 |#1| |#2|) (-10 -7 (-15 -1357 ((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|)))) (-1109) (-1109)) (T -318))
+((-1357 (*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 -1357 ((-320 |#2|) (-1 |#2| |#1|) (-320 |#1|))))
+((-1822 (((-52) |#2| (-298 |#2|) (-777)) 40) (((-52) |#2| (-298 |#2|)) 32) (((-52) |#2| (-777)) 35) (((-52) |#2|) 33) (((-52) (-1186)) 26)) (-3421 (((-52) |#2| (-298 |#2|) (-413 (-570))) 59) (((-52) |#2| (-298 |#2|)) 56) (((-52) |#2| (-413 (-570))) 58) (((-52) |#2|) 57) (((-52) (-1186)) 55)) (-1853 (((-52) |#2| (-298 |#2|) (-413 (-570))) 54) (((-52) |#2| (-298 |#2|)) 51) (((-52) |#2| (-413 (-570))) 53) (((-52) |#2|) 52) (((-52) (-1186)) 50)) (-1839 (((-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 -1822 ((-52) (-1186))) (-15 -1822 ((-52) |#2|)) (-15 -1822 ((-52) |#2| (-777))) (-15 -1822 ((-52) |#2| (-298 |#2|))) (-15 -1822 ((-52) |#2| (-298 |#2|) (-777))) (-15 -1839 ((-52) (-1186))) (-15 -1839 ((-52) |#2|)) (-15 -1839 ((-52) |#2| (-570))) (-15 -1839 ((-52) |#2| (-298 |#2|))) (-15 -1839 ((-52) |#2| (-298 |#2|) (-570))) (-15 -1853 ((-52) (-1186))) (-15 -1853 ((-52) |#2|)) (-15 -1853 ((-52) |#2| (-413 (-570)))) (-15 -1853 ((-52) |#2| (-298 |#2|))) (-15 -1853 ((-52) |#2| (-298 |#2|) (-413 (-570)))) (-15 -3421 ((-52) (-1186))) (-15 -3421 ((-52) |#2|)) (-15 -3421 ((-52) |#2| (-413 (-570)))) (-15 -3421 ((-52) |#2| (-298 |#2|))) (-15 -3421 ((-52) |#2| (-298 |#2|) (-413 (-570))))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -319))
+((-3421 (*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)))) (-3421 (*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)))) (-3421 (*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))))) (-3421 (*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))))) (-3421 (*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))))) (-1853 (*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)))) (-1853 (*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)))) (-1853 (*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))))) (-1853 (*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))))) (-1853 (*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))))) (-1839 (*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)))) (-1839 (*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)))) (-1839 (*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))))) (-1839 (*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))))) (-1839 (*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))))) (-1822 (*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)))) (-1822 (*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)))) (-1822 (*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))))) (-1822 (*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))))) (-1822 (*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 -1822 ((-52) (-1186))) (-15 -1822 ((-52) |#2|)) (-15 -1822 ((-52) |#2| (-777))) (-15 -1822 ((-52) |#2| (-298 |#2|))) (-15 -1822 ((-52) |#2| (-298 |#2|) (-777))) (-15 -1839 ((-52) (-1186))) (-15 -1839 ((-52) |#2|)) (-15 -1839 ((-52) |#2| (-570))) (-15 -1839 ((-52) |#2| (-298 |#2|))) (-15 -1839 ((-52) |#2| (-298 |#2|) (-570))) (-15 -1853 ((-52) (-1186))) (-15 -1853 ((-52) |#2|)) (-15 -1853 ((-52) |#2| (-413 (-570)))) (-15 -1853 ((-52) |#2| (-298 |#2|))) (-15 -1853 ((-52) |#2| (-298 |#2|) (-413 (-570)))) (-15 -3421 ((-52) (-1186))) (-15 -3421 ((-52) |#2|)) (-15 -3421 ((-52) |#2| (-413 (-570)))) (-15 -3421 ((-52) |#2| (-298 |#2|))) (-15 -3421 ((-52) |#2| (-298 |#2|) (-413 (-570)))))
+((-2560 (((-112) $ $) NIL)) (-1626 (((-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)))) (-4316 (($ $ (-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)))) (-3721 (((-112) $) 27 (-2895 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-1755 (((-650 (-1186)) $) 368)) (-3778 (((-413 (-1182 $)) $ (-618 $)) NIL (|has| |#1| (-562)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3687 (((-650 (-618 $)) $) NIL)) (-2890 (($ $) 171 (|has| |#1| (-562)))) (-2755 (($ $) 147 (|has| |#1| (-562)))) (-4043 (($ $ (-1101 $)) 232 (|has| |#1| (-562))) (($ $ (-1186)) 228 (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) NIL (-2895 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-4338 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) 386) (($ $ (-650 (-618 $)) (-650 $)) 430)) (-2536 (((-424 (-1182 $)) (-1182 $)) 308 (-12 (|has| |#1| (-458)) (|has| |#1| (-562))))) (-4310 (($ $) NIL (|has| |#1| (-562)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-562)))) (-3817 (($ $) NIL (|has| |#1| (-562)))) (-3765 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2869 (($ $) 167 (|has| |#1| (-562)))) (-2736 (($ $) 143 (|has| |#1| (-562)))) (-1566 (($ $ (-570)) 73 (|has| |#1| (-562)))) (-4109 (($ $) 175 (|has| |#1| (-562)))) (-2777 (($ $) 151 (|has| |#1| (-562)))) (-3195 (($) NIL (-2895 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))) CONST)) (-2126 (((-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)))) (-3896 (($ $ (-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)))) (-4383 (((-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 (-2895 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3220 (((-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 (-2895 (-12 (|has| |#1| (-562)) (|has| |#1| (-1047 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2504 (($ $ $) NIL (|has| |#1| (-562)))) (-2179 (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 125 (|has| |#1| (-1058))) (((-695 |#1|) (-695 $)) 115 (|has| |#1| (-1058))) (((-2 (|:| -2990 (-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))))) (-3627 (($ $) 96 (|has| |#1| (-562)))) (-1929 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (-2519 (($ $ $) NIL (|has| |#1| (-562)))) (-3258 (($ $ (-1101 $)) 236 (|has| |#1| (-562))) (($ $ (-1186)) 234 (|has| |#1| (-562)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-562)))) (-1336 (((-112) $) NIL (|has| |#1| (-562)))) (-3539 (($ $ $) 202 (|has| |#1| (-562)))) (-1315 (($) 137 (|has| |#1| (-562)))) (-3401 (($ $ $) 222 (|has| |#1| (-562)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 392 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 399 (|has| |#1| (-893 (-384))))) (-2486 (($ $) NIL) (($ (-650 $)) NIL)) (-1705 (((-650 (-115)) $) NIL)) (-3759 (((-115) (-115)) 276)) (-4139 (((-112) $) 25 (-2895 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))))) (-2888 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1834 (($ $) 72 (|has| |#1| (-1058)))) (-4402 (((-1134 |#1| (-618 $)) $) 91 (|has| |#1| (-1058)))) (-3874 (((-112) $) 62 (|has| |#1| (-562)))) (-2252 (($ $ (-570)) NIL (|has| |#1| (-562)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-562)))) (-4189 (((-1182 $) (-618 $)) 277 (|has| $ (-1058)))) (-1357 (($ (-1 $ $) (-618 $)) 426)) (-2907 (((-3 (-618 $) "failed") $) NIL)) (-2792 (($ $) 141 (|has| |#1| (-562)))) (-4165 (($ $) 247 (|has| |#1| (-562)))) (-1901 (($ (-650 $)) NIL (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-3989 (((-1168) $) NIL)) (-3751 (((-650 (-618 $)) $) 49)) (-1366 (($ (-115) $) NIL) (($ (-115) (-650 $)) 431)) (-1369 (((-3 (-650 $) "failed") $) NIL (|has| |#1| (-1121)))) (-3952 (((-3 (-2 (|:| |val| $) (|:| -3994 (-570))) "failed") $) NIL (|has| |#1| (-1058)))) (-1777 (((-3 (-650 $) "failed") $) 436 (|has| |#1| (-25)))) (-2292 (((-3 (-2 (|:| -1453 (-570)) (|:| |var| (-618 $))) "failed") $) 440 (|has| |#1| (-25)))) (-2505 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $) NIL (|has| |#1| (-1121))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-115)) NIL (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-1186)) NIL (|has| |#1| (-1058)))) (-3006 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) 51)) (-1878 (($ $) NIL (-2895 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-1411 (($ $ (-1186)) 251 (|has| |#1| (-562))) (($ $ (-1101 $)) 253 (|has| |#1| (-562)))) (-1445 (((-777) $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) 43)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 301 (|has| |#1| (-562)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-4224 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-2362 (($ $ (-1186)) 226 (|has| |#1| (-562))) (($ $) 224 (|has| |#1| (-562)))) (-4322 (($ $) 218 (|has| |#1| (-562)))) (-1558 (((-424 (-1182 $)) (-1182 $)) 306 (-12 (|has| |#1| (-458)) (|has| |#1| (-562))))) (-3804 (((-424 $) $) NIL (|has| |#1| (-562)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-562))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-562)))) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-562)))) (-4389 (($ $) 139 (|has| |#1| (-562)))) (-4418 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1771 (($ $ (-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)))) (-2006 (((-777) $) NIL (|has| |#1| (-562)))) (-2691 (($ $) 239 (|has| |#1| (-562)))) (-1942 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-3515 (($ $) NIL) (($ $ $) NIL)) (-2723 (($ $) 249 (|has| |#1| (-562)))) (-3266 (($ $) 200 (|has| |#1| (-562)))) (-3550 (($ $ (-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)))) (-1526 (($ $) 74 (|has| |#1| (-562)))) (-4416 (((-1134 |#1| (-618 $)) $) 93 (|has| |#1| (-562)))) (-2075 (($ $) 317 (|has| $ (-1058)))) (-4120 (($ $) 177 (|has| |#1| (-562)))) (-2791 (($ $) 153 (|has| |#1| (-562)))) (-2902 (($ $) 173 (|has| |#1| (-562)))) (-2768 (($ $) 149 (|has| |#1| (-562)))) (-2879 (($ $) 169 (|has| |#1| (-562)))) (-2743 (($ $) 145 (|has| |#1| (-562)))) (-1426 (((-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))))) (-4307 (($ $ $) NIL (|has| |#1| (-479)))) (-3381 (($ $ $) NIL (|has| |#1| (-479)))) (-3802 (((-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 (-2895 (|has| |#1| (-562)) (|has| |#1| (-1047 (-413 (-570)))))) (($ (-570)) 34 (-2895 (|has| |#1| (-1047 (-570))) (|has| |#1| (-1058))))) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL (|has| |#1| (-1058)) CONST)) (-4246 (($ $) NIL) (($ (-650 $)) NIL)) (-1730 (($ $ $) 220 (|has| |#1| (-562)))) (-2509 (($ $ $) 206 (|has| |#1| (-562)))) (-2217 (($ $ $) 210 (|has| |#1| (-562)))) (-2210 (($ $ $) 204 (|has| |#1| (-562)))) (-3556 (($ $ $) 208 (|has| |#1| (-562)))) (-3200 (((-112) (-115)) 10)) (-3359 (((-112) $ $) 86)) (-4157 (($ $) 183 (|has| |#1| (-562)))) (-2828 (($ $) 159 (|has| |#1| (-562)))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 179 (|has| |#1| (-562)))) (-2804 (($ $) 155 (|has| |#1| (-562)))) (-4179 (($ $) 187 (|has| |#1| (-562)))) (-2848 (($ $) 163 (|has| |#1| (-562)))) (-4206 (($ (-1186) $) NIL) (($ (-1186) $ $) NIL) (($ (-1186) $ $ $) NIL) (($ (-1186) $ $ $ $) NIL) (($ (-1186) (-650 $)) NIL)) (-1542 (($ $) 214 (|has| |#1| (-562)))) (-3845 (($ $) 212 (|has| |#1| (-562)))) (-1579 (($ $) 189 (|has| |#1| (-562)))) (-2858 (($ $) 165 (|has| |#1| (-562)))) (-4166 (($ $) 185 (|has| |#1| (-562)))) (-2838 (($ $) 161 (|has| |#1| (-562)))) (-4144 (($ $) 181 (|has| |#1| (-562)))) (-2817 (($ $) 157 (|has| |#1| (-562)))) (-3231 (($ $) 192 (|has| |#1| (-562)))) (-1862 (($) 21 (-2895 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) CONST)) (-3816 (($ $) 243 (|has| |#1| (-562)))) (-1876 (($) 23 (-2895 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121))) CONST)) (-1941 (($ $) 194 (|has| |#1| (-562))) (($ $ $) 196 (|has| |#1| (-562)))) (-2754 (($ $) 241 (|has| |#1| (-562)))) (-2945 (($ $ (-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)))) (-2229 (($ $) 245 (|has| |#1| (-562)))) (-2669 (($ $ $) 198 (|has| |#1| (-562)))) (-3025 (((-112) $ $) 88)) (-3125 (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 106 (|has| |#1| (-562))) (($ $ $) 42 (-2895 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-3114 (($ $ $) 40 (-2895 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ $) 29 (-2895 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (-3104 (($ $ $) 38 (-2895 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))))) (** (($ $ $) 64 (|has| |#1| (-562))) (($ $ (-413 (-570))) 314 (|has| |#1| (-562))) (($ $ (-570)) 80 (-2895 (|has| |#1| (-479)) (|has| |#1| (-562)))) (($ $ (-777)) 75 (-2895 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121)))) (($ $ (-928)) 84 (-2895 (-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 (-2895 (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))) (|has| |#1| (-1121)))) (($ (-570) $) 32 (-2895 (|has| |#1| (-21)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ (-777) $) NIL (-2895 (|has| |#1| (-25)) (-12 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058))))) (($ (-928) $) NIL (-2895 (|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 -3627 ($ $)) (-15 -3874 ((-112) $)) (-15 -1566 ($ $ (-570))) (IF (|has| |#1| (-458)) (PROGN (-15 -1558 ((-424 (-1182 $)) (-1182 $))) (-15 -2536 ((-424 (-1182 $)) (-1182 $)))) |%noBranch|) (IF (|has| |#1| (-1047 (-570))) (-6 (-1047 (-48))) |%noBranch|)) |%noBranch|))) (-1109)) (T -320))
+((-3627 (*1 *1 *1) (-12 (-5 *1 (-320 *2)) (-4 *2 (-562)) (-4 *2 (-1109)))) (-3874 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-1566 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-1558 (*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)))) (-2536 (*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 -3627 ($ $)) (-15 -3874 ((-112) $)) (-15 -1566 ($ $ (-570))) (IF (|has| |#1| (-458)) (PROGN (-15 -1558 ((-424 (-1182 $)) (-1182 $))) (-15 -2536 ((-424 (-1182 $)) (-1182 $)))) |%noBranch|) (IF (|has| |#1| (-1047 (-570))) (-6 (-1047 (-48))) |%noBranch|)) |%noBranch|)))
+((-3236 (((-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 -3236 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|))) (-15 -3236 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -3236 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3236 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3236 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3236 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3236 ((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|)) (-15 -3236 ((-52) |#2| (-115) (-298 |#2|) |#2|)) (-15 -3236 ((-52) |#2| (-115) (-298 |#2|) (-298 |#2|))) (-15 -3236 ((-52) |#2| (-115) (-298 |#2|) (-650 |#2|)))) (-13 (-562) (-620 (-542))) (-436 |#1|)) (T -321))
+((-3236 (*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)))) (-3236 (*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)))) (-3236 (*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)))) (-3236 (*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)))) (-3236 (*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)))) (-3236 (*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)))) (-3236 (*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)))) (-3236 (*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)))) (-3236 (*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)))) (-3236 (*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 -3236 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-298 |#2|))) (-15 -3236 ((-52) (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -3236 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3236 ((-52) (-650 (-298 |#2|)) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3236 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 |#2|))) (-15 -3236 ((-52) (-650 |#2|) (-650 (-115)) (-298 |#2|) (-650 (-298 |#2|)))) (-15 -3236 ((-52) (-298 |#2|) (-115) (-298 |#2|) |#2|)) (-15 -3236 ((-52) |#2| (-115) (-298 |#2|) |#2|)) (-15 -3236 ((-52) |#2| (-115) (-298 |#2|) (-298 |#2|))) (-15 -3236 ((-52) |#2| (-115) (-298 |#2|) (-650 |#2|))))
+((-2103 (((-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)) (-2821 (((-1 (-227) (-227)) (-227)) 66)))
+(((-322) (-10 -7 (-15 -2821 ((-1 (-227) (-227)) (-227))) (-15 -2103 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570))) (-15 -2103 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168))) (-15 -2103 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570))) (-15 -2103 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168))))) (T -322))
+((-2103 (*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)))) (-2103 (*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)))) (-2103 (*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)))) (-2103 (*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)))) (-2821 (*1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-322)) (-5 *3 (-227)))))
+(-10 -7 (-15 -2821 ((-1 (-227) (-227)) (-227))) (-15 -2103 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570))) (-15 -2103 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-1 (-227) (-227)) (-570) (-1168))) (-15 -2103 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570))) (-15 -2103 ((-1222 (-933)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-227) (-570) (-1168))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 26)) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1622 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3257 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 20)) (-2890 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2869 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4109 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) 36)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-2646 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) 16)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-413 (-570))) NIL) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2792 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2023 (($ $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3152 (($ $ (-413 (-570))) NIL)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1325 (((-413 (-570)) $) 17)) (-4220 (($ (-1262 |#1| |#2| |#3|)) 11)) (-3994 (((-1262 |#1| |#2| |#3|) $) 12)) (-4389 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-3550 (($ $ (-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|))))) (-3079 (((-413 (-570)) $) NIL)) (-4120 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 10)) (-3802 (((-868) $) 42) (($ (-570)) NIL) (($ |#1|) NIL (|has| |#1| (-174))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1864 ((|#1| $ (-413 (-570))) 34)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-2289 ((|#1| $) NIL)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-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|))))) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 28)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 37)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -4220 ($ (-1262 |#1| |#2| |#3|))) (-15 -3994 ((-1262 |#1| |#2| |#3|) $)) (-15 -1325 ((-413 (-570)) $)))) (-368) (-1186) |#1|) (T -323))
+((-4220 (*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)))) (-3994 (*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))) (-1325 (*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 -4220 ($ (-1262 |#1| |#2| |#3|))) (-15 -3994 ((-1262 |#1| |#2| |#3|) $)) (-15 -1325 ((-413 (-570)) $))))
+((-2252 (((-2 (|:| -3994 (-777)) (|:| -1453 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777)) 35)) (-2792 (((-650 (-2 (|:| -1453 (-777)) (|:| |logand| |#1|))) (-424 |#1|)) 40)))
+(((-324 |#1|) (-10 -7 (-15 -2252 ((-2 (|:| -3994 (-777)) (|:| -1453 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777))) (-15 -2792 ((-650 (-2 (|:| -1453 (-777)) (|:| |logand| |#1|))) (-424 |#1|)))) (-562)) (T -324))
+((-2792 (*1 *2 *3) (-12 (-5 *3 (-424 *4)) (-4 *4 (-562)) (-5 *2 (-650 (-2 (|:| -1453 (-777)) (|:| |logand| *4)))) (-5 *1 (-324 *4)))) (-2252 (*1 *2 *3 *4) (-12 (-5 *3 (-424 *5)) (-4 *5 (-562)) (-5 *2 (-2 (|:| -3994 (-777)) (|:| -1453 *5) (|:| |radicand| (-650 *5)))) (-5 *1 (-324 *5)) (-5 *4 (-777)))))
+(-10 -7 (-15 -2252 ((-2 (|:| -3994 (-777)) (|:| -1453 |#1|) (|:| |radicand| (-650 |#1|))) (-424 |#1|) (-777))) (-15 -2792 ((-650 (-2 (|:| -1453 (-777)) (|:| |logand| |#1|))) (-424 |#1|))))
+((-1755 (((-650 |#2|) (-1182 |#4|)) 44)) (-2514 ((|#3| (-570)) 47)) (-2850 (((-1182 |#4|) (-1182 |#3|)) 30)) (-4217 (((-1182 |#4|) (-1182 |#4|) (-570)) 66)) (-1892 (((-1182 |#3|) (-1182 |#4|)) 21)) (-3079 (((-650 (-777)) (-1182 |#4|) (-650 |#2|)) 41)) (-4016 (((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|)) 35)))
+(((-325 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4016 ((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|))) (-15 -3079 ((-650 (-777)) (-1182 |#4|) (-650 |#2|))) (-15 -1755 ((-650 |#2|) (-1182 |#4|))) (-15 -1892 ((-1182 |#3|) (-1182 |#4|))) (-15 -2850 ((-1182 |#4|) (-1182 |#3|))) (-15 -4217 ((-1182 |#4|) (-1182 |#4|) (-570))) (-15 -2514 (|#3| (-570)))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|)) (T -325))
+((-2514 (*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)))) (-4217 (*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)))) (-2850 (*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)))) (-1892 (*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)))) (-1755 (*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)))) (-3079 (*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)))) (-4016 (*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 -4016 ((-1182 |#3|) (-1182 |#4|) (-650 |#2|) (-650 |#3|))) (-15 -3079 ((-650 (-777)) (-1182 |#4|) (-650 |#2|))) (-15 -1755 ((-650 |#2|) (-1182 |#4|))) (-15 -1892 ((-1182 |#3|) (-1182 |#4|))) (-15 -2850 ((-1182 |#4|) (-1182 |#3|))) (-15 -4217 ((-1182 |#4|) (-1182 |#4|) (-570))) (-15 -2514 (|#3| (-570))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 19)) (-3257 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 (-570)))) $) 21)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3513 (((-777) $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-4275 ((|#1| $ (-570)) NIL)) (-1988 (((-570) $ (-570)) NIL)) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-3088 (($ (-1 |#1| |#1|) $) NIL)) (-1540 (($ (-1 (-570) (-570)) $) 11)) (-3989 (((-1168) $) NIL)) (-1885 (($ $ $) NIL (|has| (-570) (-798)))) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ |#1|) NIL)) (-1864 (((-570) |#1| $) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) 29 (|has| |#1| (-856)))) (-3114 (($ $) 12) (($ $ $) 28)) (-3104 (($ $ $) 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|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3416 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $) 28)) (-3990 (((-3 $ "failed") $ $) 20)) (-3510 (((-777) $) 29)) (-1705 (($) 18 T CONST)) (-4380 (((-3 |#1| "failed") $) 33)) (-3216 ((|#1| $) 34)) (-2610 ((|#1| $ (-570)) 26)) (-2882 ((|#2| $ (-570)) 27)) (-2131 (($ (-1 |#1| |#1|) $) 23)) (-2979 (($ (-1 |#2| |#2|) $) 24)) (-1988 (((-1168) $) 10)) (-1334 (($ $ $) 22 (|has| |#2| (-798)))) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ |#1|) 32)) (-2249 ((|#2| |#1| $) 25)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3101 (($ $ $) 15) (($ |#1| $) 31)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ |#2| |#1|) 30)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3257 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 |#2|))) $) 28)) (-1966 (((-3 $ "failed") $ $) 20)) (-3513 (((-777) $) 29)) (-3195 (($) 18 T CONST)) (-4383 (((-3 |#1| "failed") $) 33)) (-3220 ((|#1| $) 34)) (-4275 ((|#1| $ (-570)) 26)) (-1988 ((|#2| $ (-570)) 27)) (-3088 (($ (-1 |#1| |#1|) $) 23)) (-1540 (($ (-1 |#2| |#2|) $) 24)) (-3989 (((-1168) $) 10)) (-1885 (($ $ $) 22 (|has| |#2| (-798)))) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ |#1|) 32)) (-1864 ((|#2| |#1| $) 25)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3104 (($ $ $) 15) (($ |#1| $) 31)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ |#2| |#1|) 30)))
(((-327 |#1| |#2|) (-141) (-1109) (-132)) (T -327))
-((-3101 (*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)))) (-3510 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)) (-5 *2 (-777)))) (-3416 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)) (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 *4)))))) (-2882 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-327 *4 *2)) (-4 *4 (-1109)) (-4 *2 (-132)))) (-2610 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-327 *2 *4)) (-4 *4 (-132)) (-4 *2 (-1109)))) (-2249 (*1 *2 *3 *1) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132)))) (-2979 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)))) (-2131 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)))) (-1334 (*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 -3101 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3510 ((-777) $)) (-15 -3416 ((-650 (-2 (|:| |gen| |t#1|) (|:| -4387 |t#2|))) $)) (-15 -2882 (|t#2| $ (-570))) (-15 -2610 (|t#1| $ (-570))) (-15 -2249 (|t#2| |t#1| $)) (-15 -2979 ($ (-1 |t#2| |t#2|) $)) (-15 -2131 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-798)) (-15 -1334 ($ $ $)) |%noBranch|)))
+((-3104 (*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)))) (-3513 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)) (-5 *2 (-777)))) (-3257 (*1 *2 *1) (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)) (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 *4)))))) (-1988 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-327 *4 *2)) (-4 *4 (-1109)) (-4 *2 (-132)))) (-4275 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-327 *2 *4)) (-4 *4 (-132)) (-4 *2 (-1109)))) (-1864 (*1 *2 *3 *1) (-12 (-4 *1 (-327 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-132)))) (-1540 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)))) (-3088 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132)))) (-1885 (*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 -3104 ($ |t#1| $)) (-15 * ($ |t#2| |t#1|)) (-15 -3513 ((-777) $)) (-15 -3257 ((-650 (-2 (|:| |gen| |t#1|) (|:| -4389 |t#2|))) $)) (-15 -1988 (|t#2| $ (-570))) (-15 -4275 (|t#1| $ (-570))) (-15 -1864 (|t#2| |t#1| $)) (-15 -1540 ($ (-1 |t#2| |t#2|) $)) (-15 -3088 ($ (-1 |t#1| |t#1|) $)) (IF (|has| |t#2| (-798)) (-15 -1885 ($ $ $)) |%noBranch|)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-1047 |#1|) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3416 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-777)))) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3510 (((-777) $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-2610 ((|#1| $ (-570)) NIL)) (-2882 (((-777) $ (-570)) NIL)) (-2131 (($ (-1 |#1| |#1|) $) NIL)) (-2979 (($ (-1 (-777) (-777)) $) NIL)) (-1988 (((-1168) $) NIL)) (-1334 (($ $ $) NIL (|has| (-777) (-798)))) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ |#1|) NIL)) (-2249 (((-777) |#1| $) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3101 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-777) |#1|) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3257 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 (-777)))) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3513 (((-777) $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-4275 ((|#1| $ (-570)) NIL)) (-1988 (((-777) $ (-570)) NIL)) (-3088 (($ (-1 |#1| |#1|) $) NIL)) (-1540 (($ (-1 (-777) (-777)) $) NIL)) (-3989 (((-1168) $) NIL)) (-1885 (($ $ $) NIL (|has| (-777) (-798)))) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ |#1|) NIL)) (-1864 (((-777) |#1| $) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3104 (($ $ $) NIL) (($ |#1| $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-777) |#1|) NIL)))
(((-328 |#1|) (-327 |#1| (-777)) (-1109)) (T -328))
NIL
(-327 |#1| (-777))
-((-3988 (($ $) 72)) (-3720 (($ $ |#2| |#3| $) 14)) (-1918 (($ (-1 |#3| |#3|) $) 51)) (-1886 (((-112) $) 42)) (-1898 ((|#2| $) 44)) (-2547 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 64)) (-1848 ((|#2| $) 68)) (-2186 (((-650 |#2|) $) 56)) (-4247 (($ $ $ (-777)) 37)) (-3122 (($ $ |#2|) 60)))
-(((-329 |#1| |#2| |#3|) (-10 -8 (-15 -3988 (|#1| |#1|)) (-15 -1848 (|#2| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4247 (|#1| |#1| |#1| (-777))) (-15 -3720 (|#1| |#1| |#2| |#3| |#1|)) (-15 -1918 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2186 ((-650 |#2|) |#1|)) (-15 -1898 (|#2| |#1|)) (-15 -1886 ((-112) |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3122 (|#1| |#1| |#2|))) (-330 |#2| |#3|) (-1058) (-798)) (T -329))
+((-1944 (($ $) 72)) (-4243 (($ $ |#2| |#3| $) 14)) (-1414 (($ (-1 |#3| |#3|) $) 51)) (-1887 (((-112) $) 42)) (-1900 ((|#2| $) 44)) (-2548 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#2|) 64)) (-2077 ((|#2| $) 68)) (-2459 (((-650 |#2|) $) 56)) (-2648 (($ $ $ (-777)) 37)) (-3125 (($ $ |#2|) 60)))
+(((-329 |#1| |#2| |#3|) (-10 -8 (-15 -1944 (|#1| |#1|)) (-15 -2077 (|#2| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2648 (|#1| |#1| |#1| (-777))) (-15 -4243 (|#1| |#1| |#2| |#3| |#1|)) (-15 -1414 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2459 ((-650 |#2|) |#1|)) (-15 -1900 (|#2| |#1|)) (-15 -1887 ((-112) |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3125 (|#1| |#1| |#2|))) (-330 |#2| |#3|) (-1058) (-798)) (T -329))
NIL
-(-10 -8 (-15 -3988 (|#1| |#1|)) (-15 -1848 (|#2| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#2|)) (-15 -4247 (|#1| |#1| |#1| (-777))) (-15 -3720 (|#1| |#1| |#2| |#3| |#1|)) (-15 -1918 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2186 ((-650 |#2|) |#1|)) (-15 -1898 (|#2| |#1|)) (-15 -1886 ((-112) |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3122 (|#1| |#1| |#2|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-4380 (((-3 (-570) "failed") $) 100 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 98 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 95)) (-3216 (((-570) $) 99 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 97 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 96)) (-1956 (($ $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-3988 (($ $) 84 (|has| |#1| (-458)))) (-3720 (($ $ |#1| |#2| $) 88)) (-4346 (((-112) $) 35)) (-3173 (((-777) $) 91)) (-2359 (((-112) $) 74)) (-3912 (($ |#1| |#2|) 73)) (-2575 ((|#2| $) 90)) (-1918 (($ (-1 |#2| |#2|) $) 89)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-1886 (((-112) $) 94)) (-1898 ((|#1| $) 93)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) 86 (|has| |#1| (-562)))) (-2130 ((|#2| $) 76)) (-1848 ((|#1| $) 85 (|has| |#1| (-458)))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59) (($ (-413 (-570))) 69 (-2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))))) (-2186 (((-650 |#1|) $) 92)) (-2249 ((|#1| $ |#2|) 71)) (-3532 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-4247 (($ $ $ (-777)) 87 (|has| |#1| (-174)))) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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 -1944 (|#1| |#1|)) (-15 -2077 (|#2| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2648 (|#1| |#1| |#1| (-777))) (-15 -4243 (|#1| |#1| |#2| |#3| |#1|)) (-15 -1414 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -2459 ((-650 |#2|) |#1|)) (-15 -1900 (|#2| |#1|)) (-15 -1887 ((-112) |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3125 (|#1| |#1| |#2|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-4383 (((-3 (-570) "failed") $) 100 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 98 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 95)) (-3220 (((-570) $) 99 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 97 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 96)) (-1954 (($ $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-1944 (($ $) 84 (|has| |#1| (-458)))) (-4243 (($ $ |#1| |#2| $) 88)) (-4139 (((-112) $) 35)) (-2867 (((-777) $) 91)) (-3633 (((-112) $) 74)) (-3915 (($ |#1| |#2|) 73)) (-3970 ((|#2| $) 90)) (-1414 (($ (-1 |#2| |#2|) $) 89)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-1887 (((-112) $) 94)) (-1900 ((|#1| $) 93)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) 86 (|has| |#1| (-562)))) (-3079 ((|#2| $) 76)) (-2077 ((|#1| $) 85 (|has| |#1| (-458)))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59) (($ (-413 (-570))) 69 (-2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))))) (-2459 (((-650 |#1|) $) 92)) (-1864 ((|#1| $ |#2|) 71)) (-3132 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-2648 (($ $ $ (-777)) 87 (|has| |#1| (-174)))) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1886 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-112)))) (-1898 (*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2186 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-650 *3)))) (-3173 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-777)))) (-2575 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1918 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-3720 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-4247 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *3 (-174)))) (-2547 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *2 (-562)))) (-1848 (*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-3988 (*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 -1886 ((-112) $)) (-15 -1898 (|t#1| $)) (-15 -2186 ((-650 |t#1|) $)) (-15 -3173 ((-777) $)) (-15 -2575 (|t#2| $)) (-15 -1918 ($ (-1 |t#2| |t#2|) $)) (-15 -3720 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-174)) (-15 -4247 ($ $ $ (-777))) |%noBranch|) (IF (|has| |t#1| (-562)) (-15 -2547 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -1848 (|t#1| $)) (-15 -3988 ($ $))) |%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 $ $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2892 (|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 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-2180 (((-112) (-112)) NIL)) (-3932 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-3753 (($ (-1 (-112) |#1|) $) NIL)) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3110 (($ $) NIL (|has| |#1| (-1109)))) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3249 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-4027 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3269 (($ $ (-570)) NIL)) (-1565 (((-777) $) NIL)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4291 (($ (-777) |#1|) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2168 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1385 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4290 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2033 (($ (-650 |#1|)) NIL)) (-3543 ((|#1| $) NIL (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3459 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) NIL)) (-3276 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2584 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-331 |#1|) (-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2033 ($ (-650 |#1|))) (-15 -1565 ((-777) $)) (-15 -3269 ($ $ (-570))) (-15 -2180 ((-112) (-112))))) (-1227)) (T -331))
-((-2033 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-331 *3)))) (-1565 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))) (-3269 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))) (-2180 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))))
-(-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2033 ($ (-650 |#1|))) (-15 -1565 ((-777) $)) (-15 -3269 ($ $ (-570))) (-15 -2180 ((-112) (-112)))))
-((-1787 (((-112) $) 47)) (-2509 (((-777)) 23)) (-3207 ((|#2| $) 51) (($ $ (-928)) 121)) (-3510 (((-777)) 122)) (-3243 (($ (-1277 |#2|)) 20)) (-4019 (((-112) $) 134)) (-2959 ((|#2| $) 53) (($ $ (-928)) 118)) (-3521 (((-1182 |#2|) $) NIL) (((-1182 $) $ (-928)) 109)) (-1779 (((-1182 |#2|) $) 95)) (-2991 (((-1182 |#2|) $) 91) (((-3 (-1182 |#2|) "failed") $ $) 88)) (-4171 (($ $ (-1182 |#2|)) 58)) (-2587 (((-839 (-928))) 30) (((-928)) 48)) (-2951 (((-135)) 27)) (-2130 (((-839 (-928)) $) 32) (((-928) $) 137)) (-4426 (($) 128)) (-3424 (((-1277 |#2|) $) NIL) (((-695 |#2|) (-1277 $)) 42)) (-3532 (($ $) NIL) (((-3 $ "failed") $) 98)) (-2561 (((-112) $) 45)))
-(((-332 |#1| |#2|) (-10 -8 (-15 -3532 ((-3 |#1| "failed") |#1|)) (-15 -3510 ((-777))) (-15 -3532 (|#1| |#1|)) (-15 -2991 ((-3 (-1182 |#2|) "failed") |#1| |#1|)) (-15 -2991 ((-1182 |#2|) |#1|)) (-15 -1779 ((-1182 |#2|) |#1|)) (-15 -4171 (|#1| |#1| (-1182 |#2|))) (-15 -4019 ((-112) |#1|)) (-15 -4426 (|#1|)) (-15 -3207 (|#1| |#1| (-928))) (-15 -2959 (|#1| |#1| (-928))) (-15 -3521 ((-1182 |#1|) |#1| (-928))) (-15 -3207 (|#2| |#1|)) (-15 -2959 (|#2| |#1|)) (-15 -2130 ((-928) |#1|)) (-15 -2587 ((-928))) (-15 -3521 ((-1182 |#2|) |#1|)) (-15 -3243 (|#1| (-1277 |#2|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1|)) (-15 -2509 ((-777))) (-15 -2587 ((-839 (-928)))) (-15 -2130 ((-839 (-928)) |#1|)) (-15 -1787 ((-112) |#1|)) (-15 -2561 ((-112) |#1|)) (-15 -2951 ((-135)))) (-333 |#2|) (-368)) (T -332))
-((-2951 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-135)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-2587 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-839 (-928))) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-2509 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-2587 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-928)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-3510 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))))
-(-10 -8 (-15 -3532 ((-3 |#1| "failed") |#1|)) (-15 -3510 ((-777))) (-15 -3532 (|#1| |#1|)) (-15 -2991 ((-3 (-1182 |#2|) "failed") |#1| |#1|)) (-15 -2991 ((-1182 |#2|) |#1|)) (-15 -1779 ((-1182 |#2|) |#1|)) (-15 -4171 (|#1| |#1| (-1182 |#2|))) (-15 -4019 ((-112) |#1|)) (-15 -4426 (|#1|)) (-15 -3207 (|#1| |#1| (-928))) (-15 -2959 (|#1| |#1| (-928))) (-15 -3521 ((-1182 |#1|) |#1| (-928))) (-15 -3207 (|#2| |#1|)) (-15 -2959 (|#2| |#1|)) (-15 -2130 ((-928) |#1|)) (-15 -2587 ((-928))) (-15 -3521 ((-1182 |#2|) |#1|)) (-15 -3243 (|#1| (-1277 |#2|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1|)) (-15 -2509 ((-777))) (-15 -2587 ((-839 (-928)))) (-15 -2130 ((-839 (-928)) |#1|)) (-15 -1787 ((-112) |#1|)) (-15 -2561 ((-112) |#1|)) (-15 -2951 ((-135))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-1787 (((-112) $) 104)) (-2509 (((-777)) 100)) (-3207 ((|#1| $) 150) (($ $ (-928)) 147 (|has| |#1| (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) 132 (|has| |#1| (-373)))) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3473 (((-112) $ $) 65)) (-3510 (((-777)) 122 (|has| |#1| (-373)))) (-1705 (($) 18 T CONST)) (-4380 (((-3 |#1| "failed") $) 111)) (-3216 ((|#1| $) 112)) (-3243 (($ (-1277 |#1|)) 156)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 138 (|has| |#1| (-373)))) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-3446 (($) 119 (|has| |#1| (-373)))) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-2652 (($) 134 (|has| |#1| (-373)))) (-2542 (((-112) $) 135 (|has| |#1| (-373)))) (-2063 (($ $ (-777)) 97 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) 96 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3618 (((-112) $) 79)) (-4323 (((-928) $) 137 (|has| |#1| (-373))) (((-839 (-928)) $) 94 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4346 (((-112) $) 35)) (-2881 (($) 145 (|has| |#1| (-373)))) (-4019 (((-112) $) 144 (|has| |#1| (-373)))) (-2959 ((|#1| $) 151) (($ $ (-928)) 148 (|has| |#1| (-373)))) (-2619 (((-3 $ "failed") $) 123 (|has| |#1| (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3521 (((-1182 |#1|) $) 155) (((-1182 $) $ (-928)) 149 (|has| |#1| (-373)))) (-1884 (((-928) $) 120 (|has| |#1| (-373)))) (-1779 (((-1182 |#1|) $) 141 (|has| |#1| (-373)))) (-2991 (((-1182 |#1|) $) 140 (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) 139 (|has| |#1| (-373)))) (-4171 (($ $ (-1182 |#1|)) 142 (|has| |#1| (-373)))) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-2438 (($) 124 (|has| |#1| (-373)) CONST)) (-2268 (($ (-928)) 121 (|has| |#1| (-373)))) (-4064 (((-112) $) 103)) (-3577 (((-1129) $) 11)) (-2466 (($) 143 (|has| |#1| (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 131 (|has| |#1| (-373)))) (-3801 (((-424 $) $) 82)) (-2587 (((-839 (-928))) 101) (((-928)) 153)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-2289 (((-777) $) 136 (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) 95 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2951 (((-135)) 109)) (-3547 (($ $) 128 (|has| |#1| (-373))) (($ $ (-777)) 126 (|has| |#1| (-373)))) (-2130 (((-839 (-928)) $) 102) (((-928) $) 152)) (-2755 (((-1182 |#1|)) 154)) (-4003 (($) 133 (|has| |#1| (-373)))) (-4426 (($) 146 (|has| |#1| (-373)))) (-3424 (((-1277 |#1|) $) 158) (((-695 |#1|) (-1277 $)) 157)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 130 (|has| |#1| (-373)))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 110)) (-3532 (($ $) 129 (|has| |#1| (-373))) (((-3 $ "failed") $) 93 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1972 (((-1277 $)) 160) (((-1277 $) (-928)) 159)) (-2029 (((-112) $ $) 45)) (-2561 (((-112) $) 105)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3944 (($ $) 99 (|has| |#1| (-373))) (($ $ (-777)) 98 (|has| |#1| (-373)))) (-2942 (($ $) 127 (|has| |#1| (-373))) (($ $ (-777)) 125 (|has| |#1| (-373)))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 73) (($ $ |#1|) 108)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
+((-1887 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-112)))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2459 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-650 *3)))) (-2867 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-777)))) (-3970 (*1 *2 *1) (-12 (-4 *1 (-330 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1414 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-4243 (*1 *1 *1 *2 *3 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))) (-2648 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *3 (-174)))) (-2548 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *2 (-562)))) (-2077 (*1 *2 *1) (-12 (-4 *1 (-330 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-1944 (*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 -1887 ((-112) $)) (-15 -1900 (|t#1| $)) (-15 -2459 ((-650 |t#1|) $)) (-15 -2867 ((-777) $)) (-15 -3970 (|t#2| $)) (-15 -1414 ($ (-1 |t#2| |t#2|) $)) (-15 -4243 ($ $ |t#1| |t#2| $)) (IF (|has| |t#1| (-174)) (-15 -2648 ($ $ $ (-777))) |%noBranch|) (IF (|has| |t#1| (-562)) (-15 -2548 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -2077 (|t#1| $)) (-15 -1944 ($ $))) |%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 $ $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) |has| |#1| (-562)) ((-619 (-868)) . T) ((-174) -2895 (|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 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-2395 (((-112) (-112)) NIL)) (-3935 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453)))) (-3353 (($ (-1 (-112) |#1|) $) NIL)) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3476 (($ $) NIL (|has| |#1| (-1109)))) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2385 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-4029 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-4372 (($ $ (-570)) NIL)) (-2416 (((-777) $) NIL)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-4294 (($ (-777) |#1|) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2270 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3502 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4293 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3261 (($ (-650 |#1|)) NIL)) (-3546 ((|#1| $) NIL (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3651 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) NIL)) (-1319 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2585 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-331 |#1|) (-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -3261 ($ (-650 |#1|))) (-15 -2416 ((-777) $)) (-15 -4372 ($ $ (-570))) (-15 -2395 ((-112) (-112))))) (-1227)) (T -331))
+((-3261 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-331 *3)))) (-2416 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))) (-4372 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))) (-2395 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-1227)))))
+(-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -3261 ($ (-650 |#1|))) (-15 -2416 ((-777) $)) (-15 -4372 ($ $ (-570))) (-15 -2395 ((-112) (-112)))))
+((-2739 (((-112) $) 47)) (-1463 (((-777)) 23)) (-3211 ((|#2| $) 51) (($ $ (-928)) 121)) (-3513 (((-777)) 122)) (-2322 (($ (-1277 |#2|)) 20)) (-4073 (((-112) $) 134)) (-4399 ((|#2| $) 53) (($ $ (-928)) 118)) (-3043 (((-1182 |#2|) $) NIL) (((-1182 $) $ (-928)) 109)) (-2665 (((-1182 |#2|) $) 95)) (-1672 (((-1182 |#2|) $) 91) (((-3 (-1182 |#2|) "failed") $ $) 88)) (-3113 (($ $ (-1182 |#2|)) 58)) (-4068 (((-839 (-928))) 30) (((-928)) 48)) (-2517 (((-135)) 27)) (-3079 (((-839 (-928)) $) 32) (((-928) $) 137)) (-3667 (($) 128)) (-3314 (((-1277 |#2|) $) NIL) (((-695 |#2|) (-1277 $)) 42)) (-3132 (($ $) NIL) (((-3 $ "failed") $) 98)) (-3857 (((-112) $) 45)))
+(((-332 |#1| |#2|) (-10 -8 (-15 -3132 ((-3 |#1| "failed") |#1|)) (-15 -3513 ((-777))) (-15 -3132 (|#1| |#1|)) (-15 -1672 ((-3 (-1182 |#2|) "failed") |#1| |#1|)) (-15 -1672 ((-1182 |#2|) |#1|)) (-15 -2665 ((-1182 |#2|) |#1|)) (-15 -3113 (|#1| |#1| (-1182 |#2|))) (-15 -4073 ((-112) |#1|)) (-15 -3667 (|#1|)) (-15 -3211 (|#1| |#1| (-928))) (-15 -4399 (|#1| |#1| (-928))) (-15 -3043 ((-1182 |#1|) |#1| (-928))) (-15 -3211 (|#2| |#1|)) (-15 -4399 (|#2| |#1|)) (-15 -3079 ((-928) |#1|)) (-15 -4068 ((-928))) (-15 -3043 ((-1182 |#2|) |#1|)) (-15 -2322 (|#1| (-1277 |#2|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1|)) (-15 -1463 ((-777))) (-15 -4068 ((-839 (-928)))) (-15 -3079 ((-839 (-928)) |#1|)) (-15 -2739 ((-112) |#1|)) (-15 -3857 ((-112) |#1|)) (-15 -2517 ((-135)))) (-333 |#2|) (-368)) (T -332))
+((-2517 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-135)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-4068 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-839 (-928))) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-1463 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-4068 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-928)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))) (-3513 (*1 *2) (-12 (-4 *4 (-368)) (-5 *2 (-777)) (-5 *1 (-332 *3 *4)) (-4 *3 (-333 *4)))))
+(-10 -8 (-15 -3132 ((-3 |#1| "failed") |#1|)) (-15 -3513 ((-777))) (-15 -3132 (|#1| |#1|)) (-15 -1672 ((-3 (-1182 |#2|) "failed") |#1| |#1|)) (-15 -1672 ((-1182 |#2|) |#1|)) (-15 -2665 ((-1182 |#2|) |#1|)) (-15 -3113 (|#1| |#1| (-1182 |#2|))) (-15 -4073 ((-112) |#1|)) (-15 -3667 (|#1|)) (-15 -3211 (|#1| |#1| (-928))) (-15 -4399 (|#1| |#1| (-928))) (-15 -3043 ((-1182 |#1|) |#1| (-928))) (-15 -3211 (|#2| |#1|)) (-15 -4399 (|#2| |#1|)) (-15 -3079 ((-928) |#1|)) (-15 -4068 ((-928))) (-15 -3043 ((-1182 |#2|) |#1|)) (-15 -2322 (|#1| (-1277 |#2|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1|)) (-15 -1463 ((-777))) (-15 -4068 ((-839 (-928)))) (-15 -3079 ((-839 (-928)) |#1|)) (-15 -2739 ((-112) |#1|)) (-15 -3857 ((-112) |#1|)) (-15 -2517 ((-135))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-2739 (((-112) $) 104)) (-1463 (((-777)) 100)) (-3211 ((|#1| $) 150) (($ $ (-928)) 147 (|has| |#1| (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) 132 (|has| |#1| (-373)))) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3765 (((-112) $ $) 65)) (-3513 (((-777)) 122 (|has| |#1| (-373)))) (-3195 (($) 18 T CONST)) (-4383 (((-3 |#1| "failed") $) 111)) (-3220 ((|#1| $) 112)) (-2322 (($ (-1277 |#1|)) 156)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 138 (|has| |#1| (-373)))) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-3449 (($) 119 (|has| |#1| (-373)))) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-3511 (($) 134 (|has| |#1| (-373)))) (-1843 (((-112) $) 135 (|has| |#1| (-373)))) (-3599 (($ $ (-777)) 97 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) 96 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1336 (((-112) $) 79)) (-3941 (((-928) $) 137 (|has| |#1| (-373))) (((-839 (-928)) $) 94 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4139 (((-112) $) 35)) (-1977 (($) 145 (|has| |#1| (-373)))) (-4073 (((-112) $) 144 (|has| |#1| (-373)))) (-4399 ((|#1| $) 151) (($ $ (-928)) 148 (|has| |#1| (-373)))) (-4369 (((-3 $ "failed") $) 123 (|has| |#1| (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3043 (((-1182 |#1|) $) 155) (((-1182 $) $ (-928)) 149 (|has| |#1| (-373)))) (-2400 (((-928) $) 120 (|has| |#1| (-373)))) (-2665 (((-1182 |#1|) $) 141 (|has| |#1| (-373)))) (-1672 (((-1182 |#1|) $) 140 (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) 139 (|has| |#1| (-373)))) (-3113 (($ $ (-1182 |#1|)) 142 (|has| |#1| (-373)))) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-2439 (($) 124 (|has| |#1| (-373)) CONST)) (-2267 (($ (-928)) 121 (|has| |#1| (-373)))) (-3315 (((-112) $) 103)) (-3580 (((-1129) $) 11)) (-2467 (($) 143 (|has| |#1| (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 131 (|has| |#1| (-373)))) (-3804 (((-424 $) $) 82)) (-4068 (((-839 (-928))) 101) (((-928)) 153)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-4080 (((-777) $) 136 (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) 95 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2517 (((-135)) 109)) (-3550 (($ $) 128 (|has| |#1| (-373))) (($ $ (-777)) 126 (|has| |#1| (-373)))) (-3079 (((-839 (-928)) $) 102) (((-928) $) 152)) (-2075 (((-1182 |#1|)) 154)) (-3924 (($) 133 (|has| |#1| (-373)))) (-3667 (($) 146 (|has| |#1| (-373)))) (-3314 (((-1277 |#1|) $) 158) (((-695 |#1|) (-1277 $)) 157)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 130 (|has| |#1| (-373)))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 110)) (-3132 (($ $) 129 (|has| |#1| (-373))) (((-3 $ "failed") $) 93 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3827 (((-1277 $)) 160) (((-1277 $) (-928)) 159)) (-3228 (((-112) $ $) 45)) (-3857 (((-112) $) 105)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-1427 (($ $) 99 (|has| |#1| (-373))) (($ $ (-777)) 98 (|has| |#1| (-373)))) (-2945 (($ $) 127 (|has| |#1| (-373))) (($ $ (-777)) 125 (|has| |#1| (-373)))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 73) (($ $ |#1|) 108)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1972 (*1 *2) (-12 (-4 *3 (-368)) (-5 *2 (-1277 *1)) (-4 *1 (-333 *3)))) (-1972 (*1 *2 *3) (-12 (-5 *3 (-928)) (-4 *4 (-368)) (-5 *2 (-1277 *1)) (-4 *1 (-333 *4)))) (-3424 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1277 *3)))) (-3424 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-333 *4)) (-4 *4 (-368)) (-5 *2 (-695 *4)))) (-3243 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-368)) (-4 *1 (-333 *3)))) (-3521 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3)))) (-2755 (*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3)))) (-2587 (*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928)))) (-2130 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928)))) (-2959 (*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368)))) (-3207 (*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368)))) (-3521 (*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-4 *4 (-373)) (-4 *4 (-368)) (-5 *2 (-1182 *1)) (-4 *1 (-333 *4)))) (-2959 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)))) (-3207 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)))) (-4426 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-2881 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-4019 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-112)))) (-2466 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-4171 (*1 *1 *1 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-373)) (-4 *1 (-333 *3)) (-4 *3 (-368)))) (-1779 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))) (-2991 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))) (-2991 (*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 -1972 ((-1277 $))) (-15 -1972 ((-1277 $) (-928))) (-15 -3424 ((-1277 |t#1|) $)) (-15 -3424 ((-695 |t#1|) (-1277 $))) (-15 -3243 ($ (-1277 |t#1|))) (-15 -3521 ((-1182 |t#1|) $)) (-15 -2755 ((-1182 |t#1|))) (-15 -2587 ((-928))) (-15 -2130 ((-928) $)) (-15 -2959 (|t#1| $)) (-15 -3207 (|t#1| $)) (IF (|has| |t#1| (-373)) (PROGN (-6 (-354)) (-15 -3521 ((-1182 $) $ (-928))) (-15 -2959 ($ $ (-928))) (-15 -3207 ($ $ (-928))) (-15 -4426 ($)) (-15 -2881 ($)) (-15 -4019 ((-112) $)) (-15 -2466 ($)) (-15 -4171 ($ $ (-1182 |t#1|))) (-15 -1779 ((-1182 |t#1|) $)) (-15 -2991 ((-1182 |t#1|) $)) (-15 -2991 ((-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) -2892 (|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) -2892 (|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))
-((-2558 (((-112) $ $) NIL)) (-3933 (($ (-1185) $) 100)) (-4144 (($) 89)) (-3671 (((-1129) (-1129)) 9)) (-1812 (($) 90)) (-2528 (($) 104) (($ (-320 (-705))) 112) (($ (-320 (-707))) 108) (($ (-320 (-700))) 116) (($ (-320 (-384))) 123) (($ (-320 (-570))) 119) (($ (-320 (-171 (-384)))) 127)) (-4041 (($ (-1185) $) 101)) (-1572 (($ (-650 (-868))) 91)) (-2894 (((-1282) $) 87)) (-3082 (((-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)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-4175 (($ (-1129)) 58)) (-1419 (((-1113) $) 30)) (-1819 (($ (-1101 (-959 (-570))) $) 97) (($ (-1101 (-959 (-570))) (-959 (-570)) $) 98)) (-3392 (($ (-1129)) 99)) (-1336 (($ (-1185) $) 129) (($ (-1185) $ $) 130)) (-3426 (($ (-1186) (-650 (-1186))) 88)) (-3782 (($ (-1168)) 94) (($ (-650 (-1168))) 92)) (-3799 (((-868) $) 132)) (-3261 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2017 (-112)) (|:| -2308 (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -2521 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3613 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3613 $))) (|:| |commonBranch| (-2 (|:| -3600 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $) 50)) (-2392 (($ (-1168)) 202)) (-2687 (($ (-650 $)) 128)) (-2335 (((-112) $ $) NIL)) (-3929 (($ (-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)) (-3022 (((-112) $ $) NIL)))
-(((-334) (-13 (-1109) (-10 -8 (-15 -1819 ($ (-1101 (-959 (-570))) $)) (-15 -1819 ($ (-1101 (-959 (-570))) (-959 (-570)) $)) (-15 -3933 ($ (-1185) $)) (-15 -4041 ($ (-1185) $)) (-15 -4175 ($ (-1129))) (-15 -3392 ($ (-1129))) (-15 -3782 ($ (-1168))) (-15 -3782 ($ (-650 (-1168)))) (-15 -2392 ($ (-1168))) (-15 -2528 ($)) (-15 -2528 ($ (-320 (-705)))) (-15 -2528 ($ (-320 (-707)))) (-15 -2528 ($ (-320 (-700)))) (-15 -2528 ($ (-320 (-384)))) (-15 -2528 ($ (-320 (-570)))) (-15 -2528 ($ (-320 (-171 (-384))))) (-15 -1336 ($ (-1185) $)) (-15 -1336 ($ (-1185) $ $)) (-15 -3929 ($ (-1186) (-1168))) (-15 -3929 ($ (-1186) (-320 (-707)))) (-15 -3929 ($ (-1186) (-320 (-705)))) (-15 -3929 ($ (-1186) (-320 (-700)))) (-15 -3929 ($ (-1186) (-695 (-707)))) (-15 -3929 ($ (-1186) (-695 (-705)))) (-15 -3929 ($ (-1186) (-695 (-700)))) (-15 -3929 ($ (-1186) (-1277 (-707)))) (-15 -3929 ($ (-1186) (-1277 (-705)))) (-15 -3929 ($ (-1186) (-1277 (-700)))) (-15 -3929 ($ (-1186) (-695 (-320 (-707))))) (-15 -3929 ($ (-1186) (-695 (-320 (-705))))) (-15 -3929 ($ (-1186) (-695 (-320 (-700))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-707))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-705))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-700))))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-707)))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-705)))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-700)))) (-15 -3929 ($ (-1186) (-320 (-570)))) (-15 -3929 ($ (-1186) (-320 (-384)))) (-15 -3929 ($ (-1186) (-320 (-171 (-384))))) (-15 -3929 ($ (-1186) (-695 (-320 (-570))))) (-15 -3929 ($ (-1186) (-695 (-320 (-384))))) (-15 -3929 ($ (-1186) (-695 (-320 (-171 (-384)))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-570))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-384))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-171 (-384)))))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-570)))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-384)))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384))))) (-15 -2687 ($ (-650 $))) (-15 -4144 ($)) (-15 -1812 ($)) (-15 -1572 ($ (-650 (-868)))) (-15 -3426 ($ (-1186) (-650 (-1186)))) (-15 -3082 ((-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 -3261 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2017 (-112)) (|:| -2308 (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -2521 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3613 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3613 $))) (|:| |commonBranch| (-2 (|:| -3600 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $)) (-15 -2894 ((-1282) $)) (-15 -1419 ((-1113) $)) (-15 -3671 ((-1129) (-1129)))))) (T -334))
-((-1819 (*1 *1 *2 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *1 (-334)))) (-1819 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *3 (-959 (-570))) (-5 *1 (-334)))) (-3933 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-4041 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-4175 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))) (-3392 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))) (-3782 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))) (-3782 (*1 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-334)))) (-2392 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))) (-2528 (*1 *1) (-5 *1 (-334))) (-2528 (*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-334)))) (-2528 (*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-334)))) (-2528 (*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-334)))) (-2528 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-334)))) (-2528 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-334)))) (-2528 (*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)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-707))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-705))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-700))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-707))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-705))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-700))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-707))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-705))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-700))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-707)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-705)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-700)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-707)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-705)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-700)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-707))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-705))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-700))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-570))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-384))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-570)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-384)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-171 (-384))))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-570)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-384)))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-171 (-384))))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-570))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-384))) (-5 *1 (-334)))) (-3929 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-2687 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-334)))) (-4144 (*1 *1) (-5 *1 (-334))) (-1812 (*1 *1) (-5 *1 (-334))) (-1572 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-334)))) (-3426 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-334)))) (-3082 (*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)))) (-3261 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| (-334)) (|:| |elseClause| (-334)))) (|:| |returnBranch| (-2 (|:| -2017 (-112)) (|:| -2308 (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868)))))) (|:| |blockBranch| (-650 (-334))) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -2521 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3613 (-334)))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3613 (-334)))) (|:| |commonBranch| (-2 (|:| -3600 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868))))) (-5 *1 (-334)))) (-2894 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-334)))) (-1419 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-334)))) (-3671 (*1 *2 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
-(-13 (-1109) (-10 -8 (-15 -1819 ($ (-1101 (-959 (-570))) $)) (-15 -1819 ($ (-1101 (-959 (-570))) (-959 (-570)) $)) (-15 -3933 ($ (-1185) $)) (-15 -4041 ($ (-1185) $)) (-15 -4175 ($ (-1129))) (-15 -3392 ($ (-1129))) (-15 -3782 ($ (-1168))) (-15 -3782 ($ (-650 (-1168)))) (-15 -2392 ($ (-1168))) (-15 -2528 ($)) (-15 -2528 ($ (-320 (-705)))) (-15 -2528 ($ (-320 (-707)))) (-15 -2528 ($ (-320 (-700)))) (-15 -2528 ($ (-320 (-384)))) (-15 -2528 ($ (-320 (-570)))) (-15 -2528 ($ (-320 (-171 (-384))))) (-15 -1336 ($ (-1185) $)) (-15 -1336 ($ (-1185) $ $)) (-15 -3929 ($ (-1186) (-1168))) (-15 -3929 ($ (-1186) (-320 (-707)))) (-15 -3929 ($ (-1186) (-320 (-705)))) (-15 -3929 ($ (-1186) (-320 (-700)))) (-15 -3929 ($ (-1186) (-695 (-707)))) (-15 -3929 ($ (-1186) (-695 (-705)))) (-15 -3929 ($ (-1186) (-695 (-700)))) (-15 -3929 ($ (-1186) (-1277 (-707)))) (-15 -3929 ($ (-1186) (-1277 (-705)))) (-15 -3929 ($ (-1186) (-1277 (-700)))) (-15 -3929 ($ (-1186) (-695 (-320 (-707))))) (-15 -3929 ($ (-1186) (-695 (-320 (-705))))) (-15 -3929 ($ (-1186) (-695 (-320 (-700))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-707))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-705))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-700))))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-707)))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-705)))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-700)))) (-15 -3929 ($ (-1186) (-320 (-570)))) (-15 -3929 ($ (-1186) (-320 (-384)))) (-15 -3929 ($ (-1186) (-320 (-171 (-384))))) (-15 -3929 ($ (-1186) (-695 (-320 (-570))))) (-15 -3929 ($ (-1186) (-695 (-320 (-384))))) (-15 -3929 ($ (-1186) (-695 (-320 (-171 (-384)))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-570))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-384))))) (-15 -3929 ($ (-1186) (-1277 (-320 (-171 (-384)))))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-570)))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-384)))) (-15 -3929 ($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384))))) (-15 -2687 ($ (-650 $))) (-15 -4144 ($)) (-15 -1812 ($)) (-15 -1572 ($ (-650 (-868)))) (-15 -3426 ($ (-1186) (-650 (-1186)))) (-15 -3082 ((-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 -3261 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -2017 (-112)) (|:| -2308 (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -2521 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3613 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3613 $))) (|:| |commonBranch| (-2 (|:| -3600 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $)) (-15 -2894 ((-1282) $)) (-15 -1419 ((-1113) $)) (-15 -3671 ((-1129) (-1129)))))
-((-2558 (((-112) $ $) NIL)) (-2169 (((-112) $) 13)) (-2733 (($ |#1|) 10)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2740 (($ |#1|) 12)) (-3799 (((-868) $) 19)) (-2335 (((-112) $ $) NIL)) (-1905 ((|#1| $) 14)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 21)))
-(((-335 |#1|) (-13 (-856) (-10 -8 (-15 -2733 ($ |#1|)) (-15 -2740 ($ |#1|)) (-15 -2169 ((-112) $)) (-15 -1905 (|#1| $)))) (-856)) (T -335))
-((-2733 (*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))) (-2740 (*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))) (-2169 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-335 *3)) (-4 *3 (-856)))) (-1905 (*1 *2 *1) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))))
-(-13 (-856) (-10 -8 (-15 -2733 ($ |#1|)) (-15 -2740 ($ |#1|)) (-15 -2169 ((-112) $)) (-15 -1905 (|#1| $))))
-((-4341 (((-334) (-1186) (-959 (-570))) 23)) (-1464 (((-334) (-1186) (-959 (-570))) 27)) (-1674 (((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570)))) 26) (((-334) (-1186) (-959 (-570)) (-959 (-570))) 24)) (-2998 (((-334) (-1186) (-959 (-570))) 31)))
-(((-336) (-10 -7 (-15 -4341 ((-334) (-1186) (-959 (-570)))) (-15 -1674 ((-334) (-1186) (-959 (-570)) (-959 (-570)))) (-15 -1674 ((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570))))) (-15 -1464 ((-334) (-1186) (-959 (-570)))) (-15 -2998 ((-334) (-1186) (-959 (-570)))))) (T -336))
-((-2998 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-1464 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-1674 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-1101 (-959 (-570)))) (-5 *2 (-334)) (-5 *1 (-336)))) (-1674 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-4341 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))))
-(-10 -7 (-15 -4341 ((-334) (-1186) (-959 (-570)))) (-15 -1674 ((-334) (-1186) (-959 (-570)) (-959 (-570)))) (-15 -1674 ((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570))))) (-15 -1464 ((-334) (-1186) (-959 (-570)))) (-15 -2998 ((-334) (-1186) (-959 (-570)))))
-((-2558 (((-112) $ $) NIL)) (-4233 (((-512) $) 20)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3098 (((-965 (-777)) $) 18)) (-2244 (((-252) $) 7)) (-3799 (((-868) $) 26)) (-2019 (((-965 (-185 (-140))) $) 16)) (-2335 (((-112) $ $) NIL)) (-2447 (((-650 (-879 (-1191) (-777))) $) 12)) (-3022 (((-112) $ $) 22)))
-(((-337) (-13 (-1109) (-10 -8 (-15 -2244 ((-252) $)) (-15 -2447 ((-650 (-879 (-1191) (-777))) $)) (-15 -3098 ((-965 (-777)) $)) (-15 -2019 ((-965 (-185 (-140))) $)) (-15 -4233 ((-512) $))))) (T -337))
-((-2244 (*1 *2 *1) (-12 (-5 *2 (-252)) (-5 *1 (-337)))) (-2447 (*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-1191) (-777)))) (-5 *1 (-337)))) (-3098 (*1 *2 *1) (-12 (-5 *2 (-965 (-777))) (-5 *1 (-337)))) (-2019 (*1 *2 *1) (-12 (-5 *2 (-965 (-185 (-140)))) (-5 *1 (-337)))) (-4233 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-337)))))
-(-13 (-1109) (-10 -8 (-15 -2244 ((-252) $)) (-15 -2447 ((-650 (-879 (-1191) (-777))) $)) (-15 -3098 ((-965 (-777)) $)) (-15 -2019 ((-965 (-185 (-140))) $)) (-15 -4233 ((-512) $))))
-((-1356 (((-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 -1356 ((-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))
-((-1356 (*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 -1356 ((-341 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-341 |#1| |#2| |#3| |#4|))))
-((-4354 (((-112) $) 14)))
-(((-339 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4354 ((-112) |#1|))) (-340 |#2| |#3| |#4| |#5|) (-368) (-1253 |#2|) (-1253 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -339))
-NIL
-(-10 -8 (-15 -4354 ((-112) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-3624 (($ $) 29)) (-4354 (((-112) $) 28)) (-1988 (((-1168) $) 10)) (-2956 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 35)) (-3577 (((-1129) $) 11)) (-2466 (((-3 |#4| "failed") $) 27)) (-1562 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 34) (($ |#4|) 33) (($ |#1| |#1|) 32) (($ |#1| |#1| (-570)) 31) (($ |#4| |#2| |#2| |#2| |#1|) 26)) (-4226 (((-2 (|:| -4260 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 30)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24)))
+((-3827 (*1 *2) (-12 (-4 *3 (-368)) (-5 *2 (-1277 *1)) (-4 *1 (-333 *3)))) (-3827 (*1 *2 *3) (-12 (-5 *3 (-928)) (-4 *4 (-368)) (-5 *2 (-1277 *1)) (-4 *1 (-333 *4)))) (-3314 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1277 *3)))) (-3314 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-333 *4)) (-4 *4 (-368)) (-5 *2 (-695 *4)))) (-2322 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-368)) (-4 *1 (-333 *3)))) (-3043 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3)))) (-2075 (*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-1182 *3)))) (-4068 (*1 *2) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928)))) (-3079 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-5 *2 (-928)))) (-4399 (*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368)))) (-3211 (*1 *2 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-368)))) (-3043 (*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-4 *4 (-373)) (-4 *4 (-368)) (-5 *2 (-1182 *1)) (-4 *1 (-333 *4)))) (-4399 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)))) (-3211 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)))) (-3667 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-1977 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-4073 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-112)))) (-2467 (*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))) (-3113 (*1 *1 *1 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-373)) (-4 *1 (-333 *3)) (-4 *3 (-368)))) (-2665 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))) (-1672 (*1 *2 *1) (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-1182 *3)))) (-1672 (*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 -3827 ((-1277 $))) (-15 -3827 ((-1277 $) (-928))) (-15 -3314 ((-1277 |t#1|) $)) (-15 -3314 ((-695 |t#1|) (-1277 $))) (-15 -2322 ($ (-1277 |t#1|))) (-15 -3043 ((-1182 |t#1|) $)) (-15 -2075 ((-1182 |t#1|))) (-15 -4068 ((-928))) (-15 -3079 ((-928) $)) (-15 -4399 (|t#1| $)) (-15 -3211 (|t#1| $)) (IF (|has| |t#1| (-373)) (PROGN (-6 (-354)) (-15 -3043 ((-1182 $) $ (-928))) (-15 -4399 ($ $ (-928))) (-15 -3211 ($ $ (-928))) (-15 -3667 ($)) (-15 -1977 ($)) (-15 -4073 ((-112) $)) (-15 -2467 ($)) (-15 -3113 ($ $ (-1182 |t#1|))) (-15 -2665 ((-1182 |t#1|) $)) (-15 -1672 ((-1182 |t#1|) $)) (-15 -1672 ((-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) -2895 (|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) -2895 (|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))
+((-2560 (((-112) $ $) NIL)) (-2605 (($ (-1185) $) 100)) (-4147 (($) 89)) (-1970 (((-1129) (-1129)) 9)) (-1813 (($) 90)) (-1673 (($) 104) (($ (-320 (-705))) 112) (($ (-320 (-707))) 108) (($ (-320 (-700))) 116) (($ (-320 (-384))) 123) (($ (-320 (-570))) 119) (($ (-320 (-171 (-384)))) 127)) (-4272 (($ (-1185) $) 101)) (-2478 (($ (-650 (-868))) 91)) (-1979 (((-1282) $) 87)) (-3085 (((-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)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3153 (($ (-1129)) 58)) (-1329 (((-1113) $) 30)) (-3010 (($ (-1101 (-959 (-570))) $) 97) (($ (-1101 (-959 (-570))) (-959 (-570)) $) 98)) (-3395 (($ (-1129)) 99)) (-1337 (($ (-1185) $) 129) (($ (-1185) $ $) 130)) (-3429 (($ (-1186) (-650 (-1186))) 88)) (-3785 (($ (-1168)) 94) (($ (-650 (-1168))) 92)) (-3802 (((-868) $) 132)) (-3265 (((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -4283 (-112)) (|:| -2308 (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -1600 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3616 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3616 $))) (|:| |commonBranch| (-2 (|:| -3602 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $) 50)) (-2393 (($ (-1168)) 202)) (-2662 (($ (-650 $)) 128)) (-3359 (((-112) $ $) NIL)) (-2575 (($ (-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)) (-3025 (((-112) $ $) NIL)))
+(((-334) (-13 (-1109) (-10 -8 (-15 -3010 ($ (-1101 (-959 (-570))) $)) (-15 -3010 ($ (-1101 (-959 (-570))) (-959 (-570)) $)) (-15 -2605 ($ (-1185) $)) (-15 -4272 ($ (-1185) $)) (-15 -3153 ($ (-1129))) (-15 -3395 ($ (-1129))) (-15 -3785 ($ (-1168))) (-15 -3785 ($ (-650 (-1168)))) (-15 -2393 ($ (-1168))) (-15 -1673 ($)) (-15 -1673 ($ (-320 (-705)))) (-15 -1673 ($ (-320 (-707)))) (-15 -1673 ($ (-320 (-700)))) (-15 -1673 ($ (-320 (-384)))) (-15 -1673 ($ (-320 (-570)))) (-15 -1673 ($ (-320 (-171 (-384))))) (-15 -1337 ($ (-1185) $)) (-15 -1337 ($ (-1185) $ $)) (-15 -2575 ($ (-1186) (-1168))) (-15 -2575 ($ (-1186) (-320 (-707)))) (-15 -2575 ($ (-1186) (-320 (-705)))) (-15 -2575 ($ (-1186) (-320 (-700)))) (-15 -2575 ($ (-1186) (-695 (-707)))) (-15 -2575 ($ (-1186) (-695 (-705)))) (-15 -2575 ($ (-1186) (-695 (-700)))) (-15 -2575 ($ (-1186) (-1277 (-707)))) (-15 -2575 ($ (-1186) (-1277 (-705)))) (-15 -2575 ($ (-1186) (-1277 (-700)))) (-15 -2575 ($ (-1186) (-695 (-320 (-707))))) (-15 -2575 ($ (-1186) (-695 (-320 (-705))))) (-15 -2575 ($ (-1186) (-695 (-320 (-700))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-707))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-705))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-700))))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-707)))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-705)))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-700)))) (-15 -2575 ($ (-1186) (-320 (-570)))) (-15 -2575 ($ (-1186) (-320 (-384)))) (-15 -2575 ($ (-1186) (-320 (-171 (-384))))) (-15 -2575 ($ (-1186) (-695 (-320 (-570))))) (-15 -2575 ($ (-1186) (-695 (-320 (-384))))) (-15 -2575 ($ (-1186) (-695 (-320 (-171 (-384)))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-570))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-384))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-171 (-384)))))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-570)))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-384)))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384))))) (-15 -2662 ($ (-650 $))) (-15 -4147 ($)) (-15 -1813 ($)) (-15 -2478 ($ (-650 (-868)))) (-15 -3429 ($ (-1186) (-650 (-1186)))) (-15 -3085 ((-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 -3265 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -4283 (-112)) (|:| -2308 (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -1600 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3616 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3616 $))) (|:| |commonBranch| (-2 (|:| -3602 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $)) (-15 -1979 ((-1282) $)) (-15 -1329 ((-1113) $)) (-15 -1970 ((-1129) (-1129)))))) (T -334))
+((-3010 (*1 *1 *2 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *1 (-334)))) (-3010 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-1101 (-959 (-570)))) (-5 *3 (-959 (-570))) (-5 *1 (-334)))) (-2605 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-4272 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-3153 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))) (-3395 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))) (-3785 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))) (-3785 (*1 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-334)))) (-2393 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))) (-1673 (*1 *1) (-5 *1 (-334))) (-1673 (*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-334)))) (-1673 (*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-334)))) (-1673 (*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-334)))) (-1673 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-334)))) (-1673 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-334)))) (-1673 (*1 *1 *2) (-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-1337 (*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-1337 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-707))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-705))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-700))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-707))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-705))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-700))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-707))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-705))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-700))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-707)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-705)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-700)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-707)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-705)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-700)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-707))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-705))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-700))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-570))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-384))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-570)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-384)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-695 (-320 (-171 (-384))))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-570)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-384)))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1277 (-320 (-171 (-384))))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-570))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-384))) (-5 *1 (-334)))) (-2575 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-320 (-171 (-384)))) (-5 *1 (-334)))) (-2662 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-334)))) (-4147 (*1 *1) (-5 *1 (-334))) (-1813 (*1 *1) (-5 *1 (-334))) (-2478 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-334)))) (-3429 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-334)))) (-3085 (*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)))) (-3265 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| (-334)) (|:| |elseClause| (-334)))) (|:| |returnBranch| (-2 (|:| -4283 (-112)) (|:| -2308 (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868)))))) (|:| |blockBranch| (-650 (-334))) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -1600 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3616 (-334)))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3616 (-334)))) (|:| |commonBranch| (-2 (|:| -3602 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868))))) (-5 *1 (-334)))) (-1979 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-334)))) (-1329 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-334)))) (-1970 (*1 *2 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
+(-13 (-1109) (-10 -8 (-15 -3010 ($ (-1101 (-959 (-570))) $)) (-15 -3010 ($ (-1101 (-959 (-570))) (-959 (-570)) $)) (-15 -2605 ($ (-1185) $)) (-15 -4272 ($ (-1185) $)) (-15 -3153 ($ (-1129))) (-15 -3395 ($ (-1129))) (-15 -3785 ($ (-1168))) (-15 -3785 ($ (-650 (-1168)))) (-15 -2393 ($ (-1168))) (-15 -1673 ($)) (-15 -1673 ($ (-320 (-705)))) (-15 -1673 ($ (-320 (-707)))) (-15 -1673 ($ (-320 (-700)))) (-15 -1673 ($ (-320 (-384)))) (-15 -1673 ($ (-320 (-570)))) (-15 -1673 ($ (-320 (-171 (-384))))) (-15 -1337 ($ (-1185) $)) (-15 -1337 ($ (-1185) $ $)) (-15 -2575 ($ (-1186) (-1168))) (-15 -2575 ($ (-1186) (-320 (-707)))) (-15 -2575 ($ (-1186) (-320 (-705)))) (-15 -2575 ($ (-1186) (-320 (-700)))) (-15 -2575 ($ (-1186) (-695 (-707)))) (-15 -2575 ($ (-1186) (-695 (-705)))) (-15 -2575 ($ (-1186) (-695 (-700)))) (-15 -2575 ($ (-1186) (-1277 (-707)))) (-15 -2575 ($ (-1186) (-1277 (-705)))) (-15 -2575 ($ (-1186) (-1277 (-700)))) (-15 -2575 ($ (-1186) (-695 (-320 (-707))))) (-15 -2575 ($ (-1186) (-695 (-320 (-705))))) (-15 -2575 ($ (-1186) (-695 (-320 (-700))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-707))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-705))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-700))))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-707)))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-705)))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-700)))) (-15 -2575 ($ (-1186) (-320 (-570)))) (-15 -2575 ($ (-1186) (-320 (-384)))) (-15 -2575 ($ (-1186) (-320 (-171 (-384))))) (-15 -2575 ($ (-1186) (-695 (-320 (-570))))) (-15 -2575 ($ (-1186) (-695 (-320 (-384))))) (-15 -2575 ($ (-1186) (-695 (-320 (-171 (-384)))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-570))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-384))))) (-15 -2575 ($ (-1186) (-1277 (-320 (-171 (-384)))))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-570)))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-384)))) (-15 -2575 ($ (-1186) (-650 (-959 (-570))) (-320 (-171 (-384))))) (-15 -2662 ($ (-650 $))) (-15 -4147 ($)) (-15 -1813 ($)) (-15 -2478 ($ (-650 (-868)))) (-15 -3429 ($ (-1186) (-650 (-1186)))) (-15 -3085 ((-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 -3265 ((-3 (|:| |nullBranch| "null") (|:| |assignmentBranch| (-2 (|:| |var| (-1186)) (|:| |arrayIndex| (-650 (-959 (-570)))) (|:| |rand| (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868)))))) (|:| |arrayAssignmentBranch| (-2 (|:| |var| (-1186)) (|:| |rand| (-868)) (|:| |ints2Floats?| (-112)))) (|:| |conditionalBranch| (-2 (|:| |switch| (-1185)) (|:| |thenClause| $) (|:| |elseClause| $))) (|:| |returnBranch| (-2 (|:| -4283 (-112)) (|:| -2308 (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868)))))) (|:| |blockBranch| (-650 $)) (|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168)) (|:| |forBranch| (-2 (|:| -1600 (-1101 (-959 (-570)))) (|:| |span| (-959 (-570))) (|:| -3616 $))) (|:| |labelBranch| (-1129)) (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3616 $))) (|:| |commonBranch| (-2 (|:| -3602 (-1186)) (|:| |contents| (-650 (-1186))))) (|:| |printBranch| (-650 (-868)))) $)) (-15 -1979 ((-1282) $)) (-15 -1329 ((-1113) $)) (-15 -1970 ((-1129) (-1129)))))
+((-2560 (((-112) $ $) NIL)) (-2279 (((-112) $) 13)) (-2736 (($ |#1|) 10)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2743 (($ |#1|) 12)) (-3802 (((-868) $) 19)) (-3359 (((-112) $ $) NIL)) (-4385 ((|#1| $) 14)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 21)))
+(((-335 |#1|) (-13 (-856) (-10 -8 (-15 -2736 ($ |#1|)) (-15 -2743 ($ |#1|)) (-15 -2279 ((-112) $)) (-15 -4385 (|#1| $)))) (-856)) (T -335))
+((-2736 (*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))) (-2743 (*1 *1 *2) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))) (-2279 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-335 *3)) (-4 *3 (-856)))) (-4385 (*1 *2 *1) (-12 (-5 *1 (-335 *2)) (-4 *2 (-856)))))
+(-13 (-856) (-10 -8 (-15 -2736 ($ |#1|)) (-15 -2743 ($ |#1|)) (-15 -2279 ((-112) $)) (-15 -4385 (|#1| $))))
+((-4087 (((-334) (-1186) (-959 (-570))) 23)) (-2641 (((-334) (-1186) (-959 (-570))) 27)) (-4060 (((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570)))) 26) (((-334) (-1186) (-959 (-570)) (-959 (-570))) 24)) (-1759 (((-334) (-1186) (-959 (-570))) 31)))
+(((-336) (-10 -7 (-15 -4087 ((-334) (-1186) (-959 (-570)))) (-15 -4060 ((-334) (-1186) (-959 (-570)) (-959 (-570)))) (-15 -4060 ((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570))))) (-15 -2641 ((-334) (-1186) (-959 (-570)))) (-15 -1759 ((-334) (-1186) (-959 (-570)))))) (T -336))
+((-1759 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-2641 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-4060 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-1101 (-959 (-570)))) (-5 *2 (-334)) (-5 *1 (-336)))) (-4060 (*1 *2 *3 *4 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))) (-4087 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334)) (-5 *1 (-336)))))
+(-10 -7 (-15 -4087 ((-334) (-1186) (-959 (-570)))) (-15 -4060 ((-334) (-1186) (-959 (-570)) (-959 (-570)))) (-15 -4060 ((-334) (-1186) (-1101 (-959 (-570))) (-1101 (-959 (-570))))) (-15 -2641 ((-334) (-1186) (-959 (-570)))) (-15 -1759 ((-334) (-1186) (-959 (-570)))))
+((-2560 (((-112) $ $) NIL)) (-2531 (((-512) $) 20)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3351 (((-965 (-777)) $) 18)) (-1792 (((-252) $) 7)) (-3802 (((-868) $) 26)) (-2019 (((-965 (-185 (-140))) $) 16)) (-3359 (((-112) $ $) NIL)) (-2134 (((-650 (-879 (-1191) (-777))) $) 12)) (-3025 (((-112) $ $) 22)))
+(((-337) (-13 (-1109) (-10 -8 (-15 -1792 ((-252) $)) (-15 -2134 ((-650 (-879 (-1191) (-777))) $)) (-15 -3351 ((-965 (-777)) $)) (-15 -2019 ((-965 (-185 (-140))) $)) (-15 -2531 ((-512) $))))) (T -337))
+((-1792 (*1 *2 *1) (-12 (-5 *2 (-252)) (-5 *1 (-337)))) (-2134 (*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-1191) (-777)))) (-5 *1 (-337)))) (-3351 (*1 *2 *1) (-12 (-5 *2 (-965 (-777))) (-5 *1 (-337)))) (-2019 (*1 *2 *1) (-12 (-5 *2 (-965 (-185 (-140)))) (-5 *1 (-337)))) (-2531 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-337)))))
+(-13 (-1109) (-10 -8 (-15 -1792 ((-252) $)) (-15 -2134 ((-650 (-879 (-1191) (-777))) $)) (-15 -3351 ((-965 (-777)) $)) (-15 -2019 ((-965 (-185 (-140))) $)) (-15 -2531 ((-512) $))))
+((-1357 (((-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 -1357 ((-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))
+((-1357 (*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 -1357 ((-341 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-341 |#1| |#2| |#3| |#4|))))
+((-4226 (((-112) $) 14)))
+(((-339 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4226 ((-112) |#1|))) (-340 |#2| |#3| |#4| |#5|) (-368) (-1253 |#2|) (-1253 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -339))
+NIL
+(-10 -8 (-15 -4226 ((-112) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3627 (($ $) 29)) (-4226 (((-112) $) 28)) (-3989 (((-1168) $) 10)) (-4366 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 35)) (-3580 (((-1129) $) 11)) (-2467 (((-3 |#4| "failed") $) 27)) (-2383 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 34) (($ |#4|) 33) (($ |#1| |#1|) 32) (($ |#1| |#1| (-570)) 31) (($ |#4| |#2| |#2| |#2| |#1|) 26)) (-2456 (((-2 (|:| -4263 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 30)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2956 (*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)))) (-1562 (*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)))) (-1562 (*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)))) (-1562 (*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)))) (-1562 (*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)))) (-4226 (*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 (|:| -4260 (-419 *4 (-413 *4) *5 *6)) (|:| |principalPart| *6))))) (-3624 (*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)))) (-4354 (*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)))) (-2466 (*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)))) (-1562 (*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 -2956 ((-419 |t#2| (-413 |t#2|) |t#3| |t#4|) $)) (-15 -1562 ($ (-419 |t#2| (-413 |t#2|) |t#3| |t#4|))) (-15 -1562 ($ |t#4|)) (-15 -1562 ($ |t#1| |t#1|)) (-15 -1562 ($ |t#1| |t#1| (-570))) (-15 -4226 ((-2 (|:| -4260 (-419 |t#2| (-413 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -3624 ($ $)) (-15 -4354 ((-112) $)) (-15 -2466 ((-3 |t#4| "failed") $)) (-15 -1562 ($ |t#4| |t#2| |t#2| |t#2| |t#1|))))
+((-4366 (*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)))) (-2383 (*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)))) (-2383 (*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)))) (-2383 (*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)))) (-2383 (*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)))) (-2456 (*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 (|:| -4263 (-419 *4 (-413 *4) *5 *6)) (|:| |principalPart| *6))))) (-3627 (*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)))) (-4226 (*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)))) (-2467 (*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)))) (-2383 (*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 -4366 ((-419 |t#2| (-413 |t#2|) |t#3| |t#4|) $)) (-15 -2383 ($ (-419 |t#2| (-413 |t#2|) |t#3| |t#4|))) (-15 -2383 ($ |t#4|)) (-15 -2383 ($ |t#1| |t#1|)) (-15 -2383 ($ |t#1| |t#1| (-570))) (-15 -2456 ((-2 (|:| -4263 (-419 |t#2| (-413 |t#2|) |t#3| |t#4|)) (|:| |principalPart| |t#4|)) $)) (-15 -3627 ($ $)) (-15 -4226 ((-112) $)) (-15 -2467 ((-3 |t#4| "failed") $)) (-15 -2383 ($ |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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-3624 (($ $) 33)) (-4354 (((-112) $) NIL)) (-1988 (((-1168) $) NIL)) (-2591 (((-1277 |#4|) $) 134)) (-2956 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 31)) (-3577 (((-1129) $) NIL)) (-2466 (((-3 |#4| "failed") $) 36)) (-2947 (((-1277 |#4|) $) 126)) (-1562 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-570)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-4226 (((-2 (|:| -4260 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3799 (((-868) $) 17)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 14 T CONST)) (-3022 (((-112) $ $) 20)) (-3111 (($ $) 27) (($ $ $) NIL)) (-3101 (($ $ $) 25)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 23)))
-(((-341 |#1| |#2| |#3| |#4|) (-13 (-340 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2947 ((-1277 |#4|) $)) (-15 -2591 ((-1277 |#4|) $)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -341))
-((-2947 (*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)))) (-2591 (*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 -2947 ((-1277 |#4|) $)) (-15 -2591 ((-1277 |#4|) $))))
-((-1770 (($ $ (-1186) |#2|) NIL) (($ $ (-650 (-1186)) (-650 |#2|)) 20) (($ $ (-650 (-298 |#2|))) 15) (($ $ (-298 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-650 |#2|) (-650 |#2|)) NIL)) (-1941 (($ $ |#2|) 11)))
-(((-342 |#1| |#2|) (-10 -8 (-15 -1941 (|#1| |#1| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#2| |#2|)) (-15 -1770 (|#1| |#1| (-298 |#2|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 |#2|))) (-15 -1770 (|#1| |#1| (-1186) |#2|))) (-343 |#2|) (-1109)) (T -342))
-NIL
-(-10 -8 (-15 -1941 (|#1| |#1| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#2| |#2|)) (-15 -1770 (|#1| |#1| (-298 |#2|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 |#2|))) (-15 -1770 (|#1| |#1| (-1186) |#2|)))
-((-1356 (($ (-1 |#1| |#1|) $) 6)) (-1770 (($ $ (-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|)))) (-1941 (($ $ |#1|) 11 (|has| |#1| (-290 |#1| |#1|)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-3627 (($ $) 33)) (-4226 (((-112) $) NIL)) (-3989 (((-1168) $) NIL)) (-4104 (((-1277 |#4|) $) 134)) (-4366 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 31)) (-3580 (((-1129) $) NIL)) (-2467 (((-3 |#4| "failed") $) 36)) (-2473 (((-1277 |#4|) $) 126)) (-2383 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 41) (($ |#4|) 43) (($ |#1| |#1|) 45) (($ |#1| |#1| (-570)) 47) (($ |#4| |#2| |#2| |#2| |#1|) 49)) (-2456 (((-2 (|:| -4263 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 39)) (-3802 (((-868) $) 17)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 14 T CONST)) (-3025 (((-112) $ $) 20)) (-3114 (($ $) 27) (($ $ $) NIL)) (-3104 (($ $ $) 25)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 23)))
+(((-341 |#1| |#2| |#3| |#4|) (-13 (-340 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2473 ((-1277 |#4|) $)) (-15 -4104 ((-1277 |#4|) $)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -341))
+((-2473 (*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)))) (-4104 (*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 -2473 ((-1277 |#4|) $)) (-15 -4104 ((-1277 |#4|) $))))
+((-1771 (($ $ (-1186) |#2|) NIL) (($ $ (-650 (-1186)) (-650 |#2|)) 20) (($ $ (-650 (-298 |#2|))) 15) (($ $ (-298 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-650 |#2|) (-650 |#2|)) NIL)) (-1942 (($ $ |#2|) 11)))
+(((-342 |#1| |#2|) (-10 -8 (-15 -1942 (|#1| |#1| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#2| |#2|)) (-15 -1771 (|#1| |#1| (-298 |#2|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 |#2|))) (-15 -1771 (|#1| |#1| (-1186) |#2|))) (-343 |#2|) (-1109)) (T -342))
+NIL
+(-10 -8 (-15 -1942 (|#1| |#1| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#2| |#2|)) (-15 -1771 (|#1| |#1| (-298 |#2|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 |#2|))) (-15 -1771 (|#1| |#1| (-1186) |#2|)))
+((-1357 (($ (-1 |#1| |#1|) $) 6)) (-1771 (($ $ (-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|)))) (-1942 (($ $ |#1|) 11 (|has| |#1| (-290 |#1| |#1|)))))
(((-343 |#1|) (-141) (-1109)) (T -343))
-((-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-343 *3)) (-4 *3 (-1109)))))
-(-13 (-10 -8 (-15 -1356 ($ (-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|)))
+((-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-343 *3)) (-4 *3 (-1109)))))
+(-13 (-10 -8 (-15 -1357 ($ (-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|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-1186)) $) NIL)) (-2286 (((-112)) 96) (((-112) (-112)) 97)) (-3684 (((-650 (-618 $)) $) NIL)) (-2887 (($ $) NIL)) (-2751 (($ $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-3814 (($ $) NIL)) (-2866 (($ $) NIL)) (-2733 (($ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-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))))) (-2875 (((-3 $ "failed") $) NIL)) (-1315 (($) 101)) (-2481 (($ $) NIL) (($ (-650 $)) NIL)) (-2856 (((-650 (-115)) $) NIL)) (-3756 (((-115) (-115)) NIL)) (-4346 (((-112) $) NIL)) (-2110 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4032 (((-1182 $) (-618 $)) NIL (|has| $ (-1058)))) (-1356 (($ (-1 $ $) (-618 $)) NIL)) (-4143 (((-3 (-618 $) "failed") $) NIL)) (-1350 (($ $) 99)) (-2789 (($ $) NIL)) (-1988 (((-1168) $) NIL)) (-3748 (((-650 (-618 $)) $) NIL)) (-1365 (($ (-115) $) 98) (($ (-115) (-650 $)) NIL)) (-3190 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1444 (((-777) $) NIL)) (-3577 (((-1129) $) NIL)) (-2603 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-4387 (($ $) NIL)) (-3273 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1770 (($ $ (-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)) (-1941 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-3444 (($ $) NIL) (($ $ $) NIL)) (-3547 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL)) (-2755 (($ $) NIL (|has| $ (-1058)))) (-2876 (($ $) NIL)) (-2740 (($ $) NIL)) (-3799 (((-868) $) NIL) (($ (-618 $)) NIL) (($ |#3|) NIL) (($ (-570)) NIL) (((-320 |#3|) $) 102)) (-3499 (((-777)) NIL T CONST)) (-4244 (($ $) NIL) (($ (-650 $)) NIL)) (-1388 (((-112) (-115)) NIL)) (-2335 (((-112) $ $) NIL)) (-2825 (($ $) NIL)) (-2801 (($ $) NIL)) (-2814 (($ $) NIL)) (-2622 (($ $) NIL)) (-1861 (($) 100 T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $ $) NIL) (($ $) NIL)) (-3101 (($ $ $) 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 -3216 ($ (-320 |#3|))) (-15 -4380 ((-3 $ "failed") (-320 |#3|))) (-15 -3216 ($ (-1186))) (-15 -4380 ((-3 $ "failed") (-1186))) (-15 -3799 ((-320 |#3|) $)) (IF (|has| |#3| (-1047 (-570))) (PROGN (-15 -3216 ($ (-320 (-570)))) (-15 -4380 ((-3 $ "failed") (-320 (-570)))) (-15 -3216 ($ (-413 (-959 (-570))))) (-15 -4380 ((-3 $ "failed") (-413 (-959 (-570))))) (-15 -3216 ($ (-959 (-570)))) (-15 -4380 ((-3 $ "failed") (-959 (-570))))) |%noBranch|) (IF (|has| |#3| (-1047 (-384))) (PROGN (-15 -3216 ($ (-320 (-384)))) (-15 -4380 ((-3 $ "failed") (-320 (-384)))) (-15 -3216 ($ (-413 (-959 (-384))))) (-15 -4380 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3216 ($ (-959 (-384)))) (-15 -4380 ((-3 $ "failed") (-959 (-384))))) |%noBranch|) (-15 -2622 ($ $)) (-15 -3814 ($ $)) (-15 -4387 ($ $)) (-15 -2789 ($ $)) (-15 -1350 ($ $)) (-15 -2733 ($ $)) (-15 -2740 ($ $)) (-15 -2751 ($ $)) (-15 -2801 ($ $)) (-15 -2814 ($ $)) (-15 -2825 ($ $)) (-15 -2866 ($ $)) (-15 -2876 ($ $)) (-15 -2887 ($ $)) (-15 -1315 ($)) (-15 -1755 ((-650 (-1186)) $)) (-15 -2286 ((-112))) (-15 -2286 ((-112) (-112))))) (-650 (-1186)) (-650 (-1186)) (-393)) (T -344))
-((-3216 (*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))))) (-4380 (*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))))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 *2)) (-14 *4 (-650 *2)) (-4 *5 (-393)))) (-4380 (*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)))) (-3799 (*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)))) (-3216 (*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)))) (-4380 (*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)))) (-3216 (*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)))) (-4380 (*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)))) (-3216 (*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)))) (-4380 (*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)))) (-3216 (*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)))) (-4380 (*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)))) (-3216 (*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)))) (-4380 (*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)))) (-3216 (*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)))) (-4380 (*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)))) (-2622 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-3814 (*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)))) (-2789 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-1350 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2733 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2740 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2751 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2801 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2814 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2825 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2866 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2876 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2887 (*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)))) (-1755 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-344 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-393)))) (-2286 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-2286 (*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 -3216 ($ (-320 |#3|))) (-15 -4380 ((-3 $ "failed") (-320 |#3|))) (-15 -3216 ($ (-1186))) (-15 -4380 ((-3 $ "failed") (-1186))) (-15 -3799 ((-320 |#3|) $)) (IF (|has| |#3| (-1047 (-570))) (PROGN (-15 -3216 ($ (-320 (-570)))) (-15 -4380 ((-3 $ "failed") (-320 (-570)))) (-15 -3216 ($ (-413 (-959 (-570))))) (-15 -4380 ((-3 $ "failed") (-413 (-959 (-570))))) (-15 -3216 ($ (-959 (-570)))) (-15 -4380 ((-3 $ "failed") (-959 (-570))))) |%noBranch|) (IF (|has| |#3| (-1047 (-384))) (PROGN (-15 -3216 ($ (-320 (-384)))) (-15 -4380 ((-3 $ "failed") (-320 (-384)))) (-15 -3216 ($ (-413 (-959 (-384))))) (-15 -4380 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3216 ($ (-959 (-384)))) (-15 -4380 ((-3 $ "failed") (-959 (-384))))) |%noBranch|) (-15 -2622 ($ $)) (-15 -3814 ($ $)) (-15 -4387 ($ $)) (-15 -2789 ($ $)) (-15 -1350 ($ $)) (-15 -2733 ($ $)) (-15 -2740 ($ $)) (-15 -2751 ($ $)) (-15 -2801 ($ $)) (-15 -2814 ($ $)) (-15 -2825 ($ $)) (-15 -2866 ($ $)) (-15 -2876 ($ $)) (-15 -2887 ($ $)) (-15 -1315 ($)) (-15 -1755 ((-650 (-1186)) $)) (-15 -2286 ((-112))) (-15 -2286 ((-112) (-112)))))
-((-1356 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
-(((-345 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1356 (|#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))
-((-1356 (*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 -1356 (|#8| (-1 |#5| |#1|) |#4|)))
-((-1437 (((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) $) 39)) (-3243 (($ (-1277 (-413 |#3|)) (-1277 $)) NIL) (($ (-1277 (-413 |#3|))) NIL) (($ (-1277 |#3|) |#3|) 173)) (-1726 (((-1277 $) (-1277 $)) 156)) (-3040 (((-650 (-650 |#2|))) 126)) (-2792 (((-112) |#2| |#2|) 76)) (-3988 (($ $) 148)) (-2279 (((-777)) 172)) (-2871 (((-1277 $) (-1277 $)) 218)) (-3652 (((-650 (-959 |#2|)) (-1186)) 115)) (-1992 (((-112) $) 169)) (-2480 (((-112) $) 27) (((-112) $ |#2|) 31) (((-112) $ |#3|) 222)) (-2962 (((-3 |#3| "failed")) 52)) (-1663 (((-777)) 184)) (-1941 ((|#2| $ |#2| |#2|) 140)) (-2915 (((-3 |#3| "failed")) 71)) (-3547 (($ $ (-1 (-413 |#3|) (-413 |#3|)) (-777)) NIL) (($ $ (-1 (-413 |#3|) (-413 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 226) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-2709 (((-1277 $) (-1277 $)) 162)) (-1719 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 68)) (-2245 (((-112)) 34)))
-(((-346 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3040 ((-650 (-650 |#2|)))) (-15 -3652 ((-650 (-959 |#2|)) (-1186))) (-15 -1719 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2962 ((-3 |#3| "failed"))) (-15 -2915 ((-3 |#3| "failed"))) (-15 -1941 (|#2| |#1| |#2| |#2|)) (-15 -3988 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2480 ((-112) |#1| |#3|)) (-15 -2480 ((-112) |#1| |#2|)) (-15 -3243 (|#1| (-1277 |#3|) |#3|)) (-15 -1437 ((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -1726 ((-1277 |#1|) (-1277 |#1|))) (-15 -2871 ((-1277 |#1|) (-1277 |#1|))) (-15 -2709 ((-1277 |#1|) (-1277 |#1|))) (-15 -2480 ((-112) |#1|)) (-15 -1992 ((-112) |#1|)) (-15 -2792 ((-112) |#2| |#2|)) (-15 -2245 ((-112))) (-15 -1663 ((-777))) (-15 -2279 ((-777))) (-15 -3547 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)))) (-15 -3547 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)) (-777))) (-15 -3243 (|#1| (-1277 (-413 |#3|)))) (-15 -3243 (|#1| (-1277 (-413 |#3|)) (-1277 |#1|)))) (-347 |#2| |#3| |#4|) (-1231) (-1253 |#2|) (-1253 (-413 |#3|))) (T -346))
-((-2279 (*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)))) (-1663 (*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)))) (-2245 (*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)))) (-2792 (*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)))) (-2915 (*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)))) (-2962 (*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)))) (-3652 (*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)))) (-3040 (*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 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3040 ((-650 (-650 |#2|)))) (-15 -3652 ((-650 (-959 |#2|)) (-1186))) (-15 -1719 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -2962 ((-3 |#3| "failed"))) (-15 -2915 ((-3 |#3| "failed"))) (-15 -1941 (|#2| |#1| |#2| |#2|)) (-15 -3988 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2480 ((-112) |#1| |#3|)) (-15 -2480 ((-112) |#1| |#2|)) (-15 -3243 (|#1| (-1277 |#3|) |#3|)) (-15 -1437 ((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -1726 ((-1277 |#1|) (-1277 |#1|))) (-15 -2871 ((-1277 |#1|) (-1277 |#1|))) (-15 -2709 ((-1277 |#1|) (-1277 |#1|))) (-15 -2480 ((-112) |#1|)) (-15 -1992 ((-112) |#1|)) (-15 -2792 ((-112) |#2| |#2|)) (-15 -2245 ((-112))) (-15 -1663 ((-777))) (-15 -2279 ((-777))) (-15 -3547 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)))) (-15 -3547 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)) (-777))) (-15 -3243 (|#1| (-1277 (-413 |#3|)))) (-15 -3243 (|#1| (-1277 (-413 |#3|)) (-1277 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1437 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 204)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 102 (|has| (-413 |#2|) (-368)))) (-3074 (($ $) 103 (|has| (-413 |#2|) (-368)))) (-3475 (((-112) $) 105 (|has| (-413 |#2|) (-368)))) (-1806 (((-695 (-413 |#2|)) (-1277 $)) 53) (((-695 (-413 |#2|))) 68)) (-3207 (((-413 |#2|) $) 59)) (-2640 (((-1199 (-928) (-777)) (-570)) 155 (|has| (-413 |#2|) (-354)))) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 122 (|has| (-413 |#2|) (-368)))) (-1652 (((-424 $) $) 123 (|has| (-413 |#2|) (-368)))) (-3473 (((-112) $ $) 113 (|has| (-413 |#2|) (-368)))) (-3510 (((-777)) 96 (|has| (-413 |#2|) (-373)))) (-3757 (((-112)) 221)) (-3673 (((-112) |#1|) 220) (((-112) |#2|) 219)) (-1705 (($) 18 T CONST)) (-4380 (((-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)) (-3216 (((-570) $) 177 (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) 174)) (-3243 (($ (-1277 (-413 |#2|)) (-1277 $)) 55) (($ (-1277 (-413 |#2|))) 71) (($ (-1277 |#2|) |#2|) 203)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| (-413 |#2|) (-354)))) (-2506 (($ $ $) 117 (|has| (-413 |#2|) (-368)))) (-2818 (((-695 (-413 |#2|)) $ (-1277 $)) 60) (((-695 (-413 |#2|)) $) 66)) (-4196 (((-695 (-570)) (-695 $)) 172 (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) 170) (((-695 (-413 |#2|)) (-695 $)) 169)) (-1726 (((-1277 $) (-1277 $)) 209)) (-3624 (($ |#3|) 166) (((-3 $ "failed") (-413 |#3|)) 163 (|has| (-413 |#2|) (-368)))) (-2875 (((-3 $ "failed") $) 37)) (-3040 (((-650 (-650 |#1|))) 190 (|has| |#1| (-373)))) (-2792 (((-112) |#1| |#1|) 225)) (-4006 (((-928)) 61)) (-3446 (($) 99 (|has| (-413 |#2|) (-373)))) (-1370 (((-112)) 218)) (-1625 (((-112) |#1|) 217) (((-112) |#2|) 216)) (-2518 (($ $ $) 116 (|has| (-413 |#2|) (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 111 (|has| (-413 |#2|) (-368)))) (-3988 (($ $) 196)) (-2652 (($) 157 (|has| (-413 |#2|) (-354)))) (-2542 (((-112) $) 158 (|has| (-413 |#2|) (-354)))) (-2063 (($ $ (-777)) 149 (|has| (-413 |#2|) (-354))) (($ $) 148 (|has| (-413 |#2|) (-354)))) (-3618 (((-112) $) 124 (|has| (-413 |#2|) (-368)))) (-4323 (((-928) $) 160 (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) 146 (|has| (-413 |#2|) (-354)))) (-4346 (((-112) $) 35)) (-2279 (((-777)) 228)) (-2871 (((-1277 $) (-1277 $)) 210)) (-2959 (((-413 |#2|) $) 58)) (-3652 (((-650 (-959 |#1|)) (-1186)) 191 (|has| |#1| (-368)))) (-2619 (((-3 $ "failed") $) 150 (|has| (-413 |#2|) (-354)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| (-413 |#2|) (-368)))) (-3521 ((|#3| $) 51 (|has| (-413 |#2|) (-368)))) (-1884 (((-928) $) 98 (|has| (-413 |#2|) (-373)))) (-3612 ((|#3| $) 164)) (-1899 (($ (-650 $)) 109 (|has| (-413 |#2|) (-368))) (($ $ $) 108 (|has| (-413 |#2|) (-368)))) (-1988 (((-1168) $) 10)) (-2541 (((-695 (-413 |#2|))) 205)) (-4138 (((-695 (-413 |#2|))) 207)) (-1877 (($ $) 125 (|has| (-413 |#2|) (-368)))) (-1549 (($ (-1277 |#2|) |#2|) 201)) (-3865 (((-695 (-413 |#2|))) 206)) (-2707 (((-695 (-413 |#2|))) 208)) (-3796 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 200)) (-3186 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 202)) (-1603 (((-1277 $)) 214)) (-2673 (((-1277 $)) 215)) (-1992 (((-112) $) 213)) (-2480 (((-112) $) 212) (((-112) $ |#1|) 199) (((-112) $ |#2|) 198)) (-2438 (($) 151 (|has| (-413 |#2|) (-354)) CONST)) (-2268 (($ (-928)) 97 (|has| (-413 |#2|) (-373)))) (-2962 (((-3 |#2| "failed")) 193)) (-3577 (((-1129) $) 11)) (-1663 (((-777)) 227)) (-2466 (($) 168)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 110 (|has| (-413 |#2|) (-368)))) (-1942 (($ (-650 $)) 107 (|has| (-413 |#2|) (-368))) (($ $ $) 106 (|has| (-413 |#2|) (-368)))) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 154 (|has| (-413 |#2|) (-354)))) (-3801 (((-424 $) $) 121 (|has| (-413 |#2|) (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 118 (|has| (-413 |#2|) (-368)))) (-2547 (((-3 $ "failed") $ $) 101 (|has| (-413 |#2|) (-368)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| (-413 |#2|) (-368)))) (-2142 (((-777) $) 114 (|has| (-413 |#2|) (-368)))) (-1941 ((|#1| $ |#1| |#1|) 195)) (-2915 (((-3 |#2| "failed")) 194)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 115 (|has| (-413 |#2|) (-368)))) (-3570 (((-413 |#2|) (-1277 $)) 54) (((-413 |#2|)) 67)) (-2289 (((-777) $) 159 (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) 147 (|has| (-413 |#2|) (-354)))) (-3547 (($ $ (-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 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1809 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186) (-777)) 139 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1809 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-650 (-1186))) 140 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1809 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186)) 141 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1809 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-777)) 143 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1809 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) 145 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1809 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-1998 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) 162 (|has| (-413 |#2|) (-368)))) (-2755 ((|#3|) 167)) (-4003 (($) 156 (|has| (-413 |#2|) (-354)))) (-3424 (((-1277 (-413 |#2|)) $ (-1277 $)) 57) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) 56) (((-1277 (-413 |#2|)) $) 73) (((-695 (-413 |#2|)) (-1277 $)) 72)) (-1425 (((-1277 (-413 |#2|)) $) 70) (($ (-1277 (-413 |#2|))) 69) ((|#3| $) 179) (($ |#3|) 165)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 153 (|has| (-413 |#2|) (-354)))) (-2709 (((-1277 $) (-1277 $)) 211)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 |#2|)) 44) (($ (-413 (-570))) 95 (-2892 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-1047 (-413 (-570)))))) (($ $) 100 (|has| (-413 |#2|) (-368)))) (-3532 (($ $) 152 (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) 50 (|has| (-413 |#2|) (-146)))) (-3553 ((|#3| $) 52)) (-3499 (((-777)) 32 T CONST)) (-3129 (((-112)) 224)) (-2965 (((-112) |#1|) 223) (((-112) |#2|) 222)) (-2335 (((-112) $ $) 9)) (-1972 (((-1277 $)) 74)) (-2029 (((-112) $ $) 104 (|has| (-413 |#2|) (-368)))) (-1719 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 192)) (-2245 (((-112)) 226)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1809 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186) (-777)) 135 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1809 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-650 (-1186))) 136 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1809 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186)) 137 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1809 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-777)) 142 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1809 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) 144 (-2892 (-1809 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1809 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 129 (|has| (-413 |#2|) (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-1186)) $) NIL)) (-4061 (((-112)) 96) (((-112) (-112)) 97)) (-3687 (((-650 (-618 $)) $) NIL)) (-2890 (($ $) NIL)) (-2755 (($ $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4338 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-3817 (($ $) NIL)) (-2869 (($ $) NIL)) (-2736 (($ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-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))))) (-1929 (((-3 $ "failed") $) NIL)) (-1315 (($) 101)) (-2486 (($ $) NIL) (($ (-650 $)) NIL)) (-1705 (((-650 (-115)) $) NIL)) (-3759 (((-115) (-115)) NIL)) (-4139 (((-112) $) NIL)) (-2888 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4189 (((-1182 $) (-618 $)) NIL (|has| $ (-1058)))) (-1357 (($ (-1 $ $) (-618 $)) NIL)) (-2907 (((-3 (-618 $) "failed") $) NIL)) (-1351 (($ $) 99)) (-2792 (($ $) NIL)) (-3989 (((-1168) $) NIL)) (-3751 (((-650 (-618 $)) $) NIL)) (-1366 (($ (-115) $) 98) (($ (-115) (-650 $)) NIL)) (-3006 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1445 (((-777) $) NIL)) (-3580 (((-1129) $) NIL)) (-4224 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-4389 (($ $) NIL)) (-4418 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1771 (($ $ (-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)) (-1942 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-3515 (($ $) NIL) (($ $ $) NIL)) (-3550 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL)) (-2075 (($ $) NIL (|has| $ (-1058)))) (-2879 (($ $) NIL)) (-2743 (($ $) NIL)) (-3802 (((-868) $) NIL) (($ (-618 $)) NIL) (($ |#3|) NIL) (($ (-570)) NIL) (((-320 |#3|) $) 102)) (-2851 (((-777)) NIL T CONST)) (-4246 (($ $) NIL) (($ (-650 $)) NIL)) (-3200 (((-112) (-115)) NIL)) (-3359 (((-112) $ $) NIL)) (-2828 (($ $) NIL)) (-2804 (($ $) NIL)) (-2817 (($ $) NIL)) (-3231 (($ $) NIL)) (-1862 (($) 100 T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $ $) NIL) (($ $) NIL)) (-3104 (($ $ $) 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 -3220 ($ (-320 |#3|))) (-15 -4383 ((-3 $ "failed") (-320 |#3|))) (-15 -3220 ($ (-1186))) (-15 -4383 ((-3 $ "failed") (-1186))) (-15 -3802 ((-320 |#3|) $)) (IF (|has| |#3| (-1047 (-570))) (PROGN (-15 -3220 ($ (-320 (-570)))) (-15 -4383 ((-3 $ "failed") (-320 (-570)))) (-15 -3220 ($ (-413 (-959 (-570))))) (-15 -4383 ((-3 $ "failed") (-413 (-959 (-570))))) (-15 -3220 ($ (-959 (-570)))) (-15 -4383 ((-3 $ "failed") (-959 (-570))))) |%noBranch|) (IF (|has| |#3| (-1047 (-384))) (PROGN (-15 -3220 ($ (-320 (-384)))) (-15 -4383 ((-3 $ "failed") (-320 (-384)))) (-15 -3220 ($ (-413 (-959 (-384))))) (-15 -4383 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3220 ($ (-959 (-384)))) (-15 -4383 ((-3 $ "failed") (-959 (-384))))) |%noBranch|) (-15 -3231 ($ $)) (-15 -3817 ($ $)) (-15 -4389 ($ $)) (-15 -2792 ($ $)) (-15 -1351 ($ $)) (-15 -2736 ($ $)) (-15 -2743 ($ $)) (-15 -2755 ($ $)) (-15 -2804 ($ $)) (-15 -2817 ($ $)) (-15 -2828 ($ $)) (-15 -2869 ($ $)) (-15 -2879 ($ $)) (-15 -2890 ($ $)) (-15 -1315 ($)) (-15 -1755 ((-650 (-1186)) $)) (-15 -4061 ((-112))) (-15 -4061 ((-112) (-112))))) (-650 (-1186)) (-650 (-1186)) (-393)) (T -344))
+((-3220 (*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))))) (-4383 (*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))))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 *2)) (-14 *4 (-650 *2)) (-4 *5 (-393)))) (-4383 (*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)))) (-3802 (*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)))) (-3220 (*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)))) (-4383 (*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)))) (-3220 (*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)))) (-4383 (*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)))) (-3220 (*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)))) (-4383 (*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)))) (-3220 (*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)))) (-4383 (*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)))) (-3220 (*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)))) (-4383 (*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)))) (-3220 (*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)))) (-4383 (*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)))) (-3231 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-3817 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-4389 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2792 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-1351 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2736 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2743 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2755 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2804 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2817 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2828 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2869 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2879 (*1 *1 *1) (-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186))) (-14 *3 (-650 (-1186))) (-4 *4 (-393)))) (-2890 (*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)))) (-1755 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-344 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-393)))) (-4061 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-344 *3 *4 *5)) (-14 *3 (-650 (-1186))) (-14 *4 (-650 (-1186))) (-4 *5 (-393)))) (-4061 (*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 -3220 ($ (-320 |#3|))) (-15 -4383 ((-3 $ "failed") (-320 |#3|))) (-15 -3220 ($ (-1186))) (-15 -4383 ((-3 $ "failed") (-1186))) (-15 -3802 ((-320 |#3|) $)) (IF (|has| |#3| (-1047 (-570))) (PROGN (-15 -3220 ($ (-320 (-570)))) (-15 -4383 ((-3 $ "failed") (-320 (-570)))) (-15 -3220 ($ (-413 (-959 (-570))))) (-15 -4383 ((-3 $ "failed") (-413 (-959 (-570))))) (-15 -3220 ($ (-959 (-570)))) (-15 -4383 ((-3 $ "failed") (-959 (-570))))) |%noBranch|) (IF (|has| |#3| (-1047 (-384))) (PROGN (-15 -3220 ($ (-320 (-384)))) (-15 -4383 ((-3 $ "failed") (-320 (-384)))) (-15 -3220 ($ (-413 (-959 (-384))))) (-15 -4383 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3220 ($ (-959 (-384)))) (-15 -4383 ((-3 $ "failed") (-959 (-384))))) |%noBranch|) (-15 -3231 ($ $)) (-15 -3817 ($ $)) (-15 -4389 ($ $)) (-15 -2792 ($ $)) (-15 -1351 ($ $)) (-15 -2736 ($ $)) (-15 -2743 ($ $)) (-15 -2755 ($ $)) (-15 -2804 ($ $)) (-15 -2817 ($ $)) (-15 -2828 ($ $)) (-15 -2869 ($ $)) (-15 -2879 ($ $)) (-15 -2890 ($ $)) (-15 -1315 ($)) (-15 -1755 ((-650 (-1186)) $)) (-15 -4061 ((-112))) (-15 -4061 ((-112) (-112)))))
+((-1357 ((|#8| (-1 |#5| |#1|) |#4|) 19)))
+(((-345 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -1357 (|#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))
+((-1357 (*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 -1357 (|#8| (-1 |#5| |#1|) |#4|)))
+((-1504 (((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) $) 39)) (-2322 (($ (-1277 (-413 |#3|)) (-1277 $)) NIL) (($ (-1277 (-413 |#3|))) NIL) (($ (-1277 |#3|) |#3|) 173)) (-3383 (((-1277 $) (-1277 $)) 156)) (-3997 (((-650 (-650 |#2|))) 126)) (-2397 (((-112) |#2| |#2|) 76)) (-1944 (($ $) 148)) (-3995 (((-777)) 172)) (-1874 (((-1277 $) (-1277 $)) 218)) (-1747 (((-650 (-959 |#2|)) (-1186)) 115)) (-4026 (((-112) $) 169)) (-2475 (((-112) $) 27) (((-112) $ |#2|) 31) (((-112) $ |#3|) 222)) (-1311 (((-3 |#3| "failed")) 52)) (-3973 (((-777)) 184)) (-1942 ((|#2| $ |#2| |#2|) 140)) (-2175 (((-3 |#3| "failed")) 71)) (-3550 (($ $ (-1 (-413 |#3|) (-413 |#3|)) (-777)) NIL) (($ $ (-1 (-413 |#3|) (-413 |#3|))) NIL) (($ $ (-1 |#3| |#3|)) 226) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-2864 (((-1277 $) (-1277 $)) 162)) (-3302 (((-2 (|:| |num| $) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) $ (-1 |#3| |#3|)) 68)) (-1807 (((-112)) 34)))
+(((-346 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3997 ((-650 (-650 |#2|)))) (-15 -1747 ((-650 (-959 |#2|)) (-1186))) (-15 -3302 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -1311 ((-3 |#3| "failed"))) (-15 -2175 ((-3 |#3| "failed"))) (-15 -1942 (|#2| |#1| |#2| |#2|)) (-15 -1944 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2475 ((-112) |#1| |#3|)) (-15 -2475 ((-112) |#1| |#2|)) (-15 -2322 (|#1| (-1277 |#3|) |#3|)) (-15 -1504 ((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -3383 ((-1277 |#1|) (-1277 |#1|))) (-15 -1874 ((-1277 |#1|) (-1277 |#1|))) (-15 -2864 ((-1277 |#1|) (-1277 |#1|))) (-15 -2475 ((-112) |#1|)) (-15 -4026 ((-112) |#1|)) (-15 -2397 ((-112) |#2| |#2|)) (-15 -1807 ((-112))) (-15 -3973 ((-777))) (-15 -3995 ((-777))) (-15 -3550 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)))) (-15 -3550 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)) (-777))) (-15 -2322 (|#1| (-1277 (-413 |#3|)))) (-15 -2322 (|#1| (-1277 (-413 |#3|)) (-1277 |#1|)))) (-347 |#2| |#3| |#4|) (-1231) (-1253 |#2|) (-1253 (-413 |#3|))) (T -346))
+((-3995 (*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)))) (-3973 (*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)))) (-1807 (*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)))) (-2397 (*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)))) (-2175 (*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)))) (-1311 (*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)))) (-1747 (*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)))) (-3997 (*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 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3997 ((-650 (-650 |#2|)))) (-15 -1747 ((-650 (-959 |#2|)) (-1186))) (-15 -3302 ((-2 (|:| |num| |#1|) (|:| |den| |#3|) (|:| |derivden| |#3|) (|:| |gd| |#3|)) |#1| (-1 |#3| |#3|))) (-15 -1311 ((-3 |#3| "failed"))) (-15 -2175 ((-3 |#3| "failed"))) (-15 -1942 (|#2| |#1| |#2| |#2|)) (-15 -1944 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|))) (-15 -2475 ((-112) |#1| |#3|)) (-15 -2475 ((-112) |#1| |#2|)) (-15 -2322 (|#1| (-1277 |#3|) |#3|)) (-15 -1504 ((-2 (|:| |num| (-1277 |#3|)) (|:| |den| |#3|)) |#1|)) (-15 -3383 ((-1277 |#1|) (-1277 |#1|))) (-15 -1874 ((-1277 |#1|) (-1277 |#1|))) (-15 -2864 ((-1277 |#1|) (-1277 |#1|))) (-15 -2475 ((-112) |#1|)) (-15 -4026 ((-112) |#1|)) (-15 -2397 ((-112) |#2| |#2|)) (-15 -1807 ((-112))) (-15 -3973 ((-777))) (-15 -3995 ((-777))) (-15 -3550 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)))) (-15 -3550 (|#1| |#1| (-1 (-413 |#3|) (-413 |#3|)) (-777))) (-15 -2322 (|#1| (-1277 (-413 |#3|)))) (-15 -2322 (|#1| (-1277 (-413 |#3|)) (-1277 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1504 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 204)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 102 (|has| (-413 |#2|) (-368)))) (-4306 (($ $) 103 (|has| (-413 |#2|) (-368)))) (-2617 (((-112) $) 105 (|has| (-413 |#2|) (-368)))) (-2913 (((-695 (-413 |#2|)) (-1277 $)) 53) (((-695 (-413 |#2|))) 68)) (-3211 (((-413 |#2|) $) 59)) (-3379 (((-1199 (-928) (-777)) (-570)) 155 (|has| (-413 |#2|) (-354)))) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 122 (|has| (-413 |#2|) (-368)))) (-3871 (((-424 $) $) 123 (|has| (-413 |#2|) (-368)))) (-3765 (((-112) $ $) 113 (|has| (-413 |#2|) (-368)))) (-3513 (((-777)) 96 (|has| (-413 |#2|) (-373)))) (-3392 (((-112)) 221)) (-1992 (((-112) |#1|) 220) (((-112) |#2|) 219)) (-3195 (($) 18 T CONST)) (-4383 (((-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)) (-3220 (((-570) $) 177 (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) 174)) (-2322 (($ (-1277 (-413 |#2|)) (-1277 $)) 55) (($ (-1277 (-413 |#2|))) 71) (($ (-1277 |#2|) |#2|) 203)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| (-413 |#2|) (-354)))) (-2504 (($ $ $) 117 (|has| (-413 |#2|) (-368)))) (-2595 (((-695 (-413 |#2|)) $ (-1277 $)) 60) (((-695 (-413 |#2|)) $) 66)) (-2179 (((-695 (-570)) (-695 $)) 172 (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) 170) (((-695 (-413 |#2|)) (-695 $)) 169)) (-3383 (((-1277 $) (-1277 $)) 209)) (-3627 (($ |#3|) 166) (((-3 $ "failed") (-413 |#3|)) 163 (|has| (-413 |#2|) (-368)))) (-1929 (((-3 $ "failed") $) 37)) (-3997 (((-650 (-650 |#1|))) 190 (|has| |#1| (-373)))) (-2397 (((-112) |#1| |#1|) 225)) (-4009 (((-928)) 61)) (-3449 (($) 99 (|has| (-413 |#2|) (-373)))) (-3176 (((-112)) 218)) (-1738 (((-112) |#1|) 217) (((-112) |#2|) 216)) (-2519 (($ $ $) 116 (|has| (-413 |#2|) (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 111 (|has| (-413 |#2|) (-368)))) (-1944 (($ $) 196)) (-3511 (($) 157 (|has| (-413 |#2|) (-354)))) (-1843 (((-112) $) 158 (|has| (-413 |#2|) (-354)))) (-3599 (($ $ (-777)) 149 (|has| (-413 |#2|) (-354))) (($ $) 148 (|has| (-413 |#2|) (-354)))) (-1336 (((-112) $) 124 (|has| (-413 |#2|) (-368)))) (-3941 (((-928) $) 160 (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) 146 (|has| (-413 |#2|) (-354)))) (-4139 (((-112) $) 35)) (-3995 (((-777)) 228)) (-1874 (((-1277 $) (-1277 $)) 210)) (-4399 (((-413 |#2|) $) 58)) (-1747 (((-650 (-959 |#1|)) (-1186)) 191 (|has| |#1| (-368)))) (-4369 (((-3 $ "failed") $) 150 (|has| (-413 |#2|) (-354)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| (-413 |#2|) (-368)))) (-3043 ((|#3| $) 51 (|has| (-413 |#2|) (-368)))) (-2400 (((-928) $) 98 (|has| (-413 |#2|) (-373)))) (-3615 ((|#3| $) 164)) (-1901 (($ (-650 $)) 109 (|has| (-413 |#2|) (-368))) (($ $ $) 108 (|has| (-413 |#2|) (-368)))) (-3989 (((-1168) $) 10)) (-1831 (((-695 (-413 |#2|))) 205)) (-2873 (((-695 (-413 |#2|))) 207)) (-1878 (($ $) 125 (|has| (-413 |#2|) (-368)))) (-2246 (($ (-1277 |#2|) |#2|) 201)) (-3147 (((-695 (-413 |#2|))) 206)) (-2843 (((-695 (-413 |#2|))) 208)) (-3770 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 200)) (-2977 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 202)) (-1505 (((-1277 $)) 214)) (-3710 (((-1277 $)) 215)) (-4026 (((-112) $) 213)) (-2475 (((-112) $) 212) (((-112) $ |#1|) 199) (((-112) $ |#2|) 198)) (-2439 (($) 151 (|has| (-413 |#2|) (-354)) CONST)) (-2267 (($ (-928)) 97 (|has| (-413 |#2|) (-373)))) (-1311 (((-3 |#2| "failed")) 193)) (-3580 (((-1129) $) 11)) (-3973 (((-777)) 227)) (-2467 (($) 168)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 110 (|has| (-413 |#2|) (-368)))) (-1939 (($ (-650 $)) 107 (|has| (-413 |#2|) (-368))) (($ $ $) 106 (|has| (-413 |#2|) (-368)))) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 154 (|has| (-413 |#2|) (-354)))) (-3804 (((-424 $) $) 121 (|has| (-413 |#2|) (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 118 (|has| (-413 |#2|) (-368)))) (-2548 (((-3 $ "failed") $ $) 101 (|has| (-413 |#2|) (-368)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| (-413 |#2|) (-368)))) (-2006 (((-777) $) 114 (|has| (-413 |#2|) (-368)))) (-1942 ((|#1| $ |#1| |#1|) 195)) (-2175 (((-3 |#2| "failed")) 194)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 115 (|has| (-413 |#2|) (-368)))) (-2265 (((-413 |#2|) (-1277 $)) 54) (((-413 |#2|)) 67)) (-4080 (((-777) $) 159 (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) 147 (|has| (-413 |#2|) (-354)))) (-3550 (($ $ (-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 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1810 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186) (-777)) 139 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1810 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-650 (-1186))) 140 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1810 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186)) 141 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1810 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-777)) 143 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1810 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) 145 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1810 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-4083 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) 162 (|has| (-413 |#2|) (-368)))) (-2075 ((|#3|) 167)) (-3924 (($) 156 (|has| (-413 |#2|) (-354)))) (-3314 (((-1277 (-413 |#2|)) $ (-1277 $)) 57) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) 56) (((-1277 (-413 |#2|)) $) 73) (((-695 (-413 |#2|)) (-1277 $)) 72)) (-1426 (((-1277 (-413 |#2|)) $) 70) (($ (-1277 (-413 |#2|))) 69) ((|#3| $) 179) (($ |#3|) 165)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 153 (|has| (-413 |#2|) (-354)))) (-2864 (((-1277 $) (-1277 $)) 211)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 |#2|)) 44) (($ (-413 (-570))) 95 (-2895 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-1047 (-413 (-570)))))) (($ $) 100 (|has| (-413 |#2|) (-368)))) (-3132 (($ $) 152 (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) 50 (|has| (-413 |#2|) (-146)))) (-2124 ((|#3| $) 52)) (-2851 (((-777)) 32 T CONST)) (-3644 (((-112)) 224)) (-1345 (((-112) |#1|) 223) (((-112) |#2|) 222)) (-3359 (((-112) $ $) 9)) (-3827 (((-1277 $)) 74)) (-3228 (((-112) $ $) 104 (|has| (-413 |#2|) (-368)))) (-3302 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) 192)) (-1807 (((-112)) 226)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1810 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186) (-777)) 135 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1810 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-650 (-1186))) 136 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1810 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-1186)) 137 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-907 (-1186)))) (-1810 (|has| (-413 |#2|) (-907 (-1186))) (|has| (-413 |#2|) (-368))))) (($ $ (-777)) 142 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1810 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) 144 (-2895 (-1810 (|has| (-413 |#2|) (-368)) (|has| (-413 |#2|) (-235))) (-1810 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 129 (|has| (-413 |#2|) (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2279 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-777)))) (-1663 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-777)))) (-2245 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-2792 (*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)))) (-3129 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-2965 (*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)))) (-2965 (*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)))) (-3757 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-3673 (*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)))) (-3673 (*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)))) (-1370 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-1625 (*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)))) (-1625 (*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)))) (-2673 (*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)))) (-1603 (*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)))) (-1992 (*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)))) (-2480 (*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)))) (-2709 (*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))))) (-2871 (*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))))) (-1726 (*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))))) (-2707 (*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))))) (-4138 (*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))))) (-3865 (*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))))) (-2541 (*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))))) (-1437 (*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))))) (-3243 (*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))))) (-3186 (*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))))) (-1549 (*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))))) (-3796 (*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))))) (-2480 (*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)))) (-2480 (*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)))) (-3547 (*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))))) (-3988 (*1 *1 *1) (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1231)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3))))) (-1941 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1231)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3))))) (-2915 (*1 *2) (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1231)) (-4 *4 (-1253 (-413 *2))) (-4 *2 (-1253 *3)))) (-2962 (*1 *2) (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1231)) (-4 *4 (-1253 (-413 *2))) (-4 *2 (-1253 *3)))) (-1719 (*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)))) (-3652 (*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))))) (-3040 (*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 -2279 ((-777))) (-15 -1663 ((-777))) (-15 -2245 ((-112))) (-15 -2792 ((-112) |t#1| |t#1|)) (-15 -3129 ((-112))) (-15 -2965 ((-112) |t#1|)) (-15 -2965 ((-112) |t#2|)) (-15 -3757 ((-112))) (-15 -3673 ((-112) |t#1|)) (-15 -3673 ((-112) |t#2|)) (-15 -1370 ((-112))) (-15 -1625 ((-112) |t#1|)) (-15 -1625 ((-112) |t#2|)) (-15 -2673 ((-1277 $))) (-15 -1603 ((-1277 $))) (-15 -1992 ((-112) $)) (-15 -2480 ((-112) $)) (-15 -2709 ((-1277 $) (-1277 $))) (-15 -2871 ((-1277 $) (-1277 $))) (-15 -1726 ((-1277 $) (-1277 $))) (-15 -2707 ((-695 (-413 |t#2|)))) (-15 -4138 ((-695 (-413 |t#2|)))) (-15 -3865 ((-695 (-413 |t#2|)))) (-15 -2541 ((-695 (-413 |t#2|)))) (-15 -1437 ((-2 (|:| |num| (-1277 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -3243 ($ (-1277 |t#2|) |t#2|)) (-15 -3186 ((-2 (|:| |num| (-1277 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -1549 ($ (-1277 |t#2|) |t#2|)) (-15 -3796 ((-2 (|:| |num| (-695 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -2480 ((-112) $ |t#1|)) (-15 -2480 ((-112) $ |t#2|)) (-15 -3547 ($ $ (-1 |t#2| |t#2|))) (-15 -3988 ($ $)) (-15 -1941 (|t#1| $ |t#1| |t#1|)) (-15 -2915 ((-3 |t#2| "failed"))) (-15 -2962 ((-3 |t#2| "failed"))) (-15 -1719 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-368)) (-15 -3652 ((-650 (-959 |t#1|)) (-1186))) |%noBranch|) (IF (|has| |t#1| (-373)) (-15 -3040 ((-650 (-650 |t#1|)))) |%noBranch|)))
-(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-38 #1=(-413 |#2|)) . T) ((-38 $) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-102) . T) ((-111 #0# #0#) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-146))) ((-148) |has| (-413 |#2|) (-148)) ((-622 #0#) -2892 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-622 #1#) . T) ((-622 (-570)) . T) ((-622 $) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-619 (-868)) . T) ((-174) . T) ((-620 |#3|) . T) ((-233 #1#) |has| (-413 |#2|) (-368)) ((-235) -2892 (|has| (-413 |#2|) (-354)) (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368)))) ((-245) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-294) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-311) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-368) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-408) |has| (-413 |#2|) (-354)) ((-373) -2892 (|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) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-562) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-652 #0#) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-652 #1#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-654 #1#) . T) ((-654 $) . T) ((-646 #0#) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-646 #1#) . T) ((-646 $) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-645 #1#) . T) ((-645 (-570)) |has| (-413 |#2|) (-645 (-570))) ((-723 #0#) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-723 #1#) . T) ((-723 $) -2892 (|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) -2892 (|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#) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-1060 #1#) . T) ((-1060 $) . T) ((-1065 #0#) -2892 (|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) -2892 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-917 |#1|) "failed") $) NIL)) (-3216 (((-917 |#1|) $) NIL)) (-3243 (($ (-1277 (-917 |#1|))) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-917 |#1|) (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) NIL (|has| (-917 |#1|) (-373)))) (-2542 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) NIL (|has| (-917 |#1|) (-373)))) (-4019 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2959 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-1884 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-1779 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-2991 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-4171 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2268 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4064 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-1533 (((-965 (-1129))) NIL)) (-2466 (($) NIL (|has| (-917 |#1|) (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2755 (((-1182 (-917 |#1|))) NIL)) (-4003 (($) NIL (|has| (-917 |#1|) (-373)))) (-4426 (($) NIL (|has| (-917 |#1|) (-373)))) (-3424 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3532 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3944 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2942 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1533 ((-965 (-1129)))))) (-928) (-928)) (T -348))
-((-1533 (*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 -1533 ((-965 (-1129))))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 58)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) 56 (|has| |#1| (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL (|has| |#1| (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) 142)) (-3216 ((|#1| $) 113)) (-3243 (($ (-1277 |#1|)) 130)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 121 (|has| |#1| (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) 124 (|has| |#1| (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) 160 (|has| |#1| (-373)))) (-2542 (((-112) $) 66 (|has| |#1| (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) 60 (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4346 (((-112) $) 62)) (-2881 (($) 162 (|has| |#1| (-373)))) (-4019 (((-112) $) NIL (|has| |#1| (-373)))) (-2959 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 |#1|) $) 117) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-1884 (((-928) $) 171 (|has| |#1| (-373)))) (-1779 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2991 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4171 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 178)) (-2438 (($) NIL (|has| |#1| (-373)) CONST)) (-2268 (($ (-928)) 96 (|has| |#1| (-373)))) (-4064 (((-112) $) 147)) (-3577 (((-1129) $) NIL)) (-1533 (((-965 (-1129))) 57)) (-2466 (($) 158 (|has| |#1| (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 119 (|has| |#1| (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) 90) (((-928)) 91)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) 161 (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) 154 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2755 (((-1182 |#1|)) 122)) (-4003 (($) 159 (|has| |#1| (-373)))) (-4426 (($) 167 (|has| |#1| (-373)))) (-3424 (((-1277 |#1|) $) 77) (((-695 |#1|) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3799 (((-868) $) 174) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 100)) (-3532 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3499 (((-777)) 155 T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) 144) (((-1277 $) (-928)) 98)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) 67 T CONST)) (-1875 (($) 103 T CONST)) (-3944 (($ $) 107 (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2942 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3022 (((-112) $ $) 65)) (-3122 (($ $ $) 176) (($ $ |#1|) 177)) (-3111 (($ $) 157) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1533 ((-965 (-1129)))))) (-354) (-1182 |#1|)) (T -349))
-((-1533 (*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 -1533 ((-965 (-1129))))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL (|has| |#1| (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-3243 (($ (-1277 |#1|)) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| |#1| (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) NIL (|has| |#1| (-373)))) (-2542 (((-112) $) NIL (|has| |#1| (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) NIL (|has| |#1| (-373)))) (-4019 (((-112) $) NIL (|has| |#1| (-373)))) (-2959 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-1884 (((-928) $) NIL (|has| |#1| (-373)))) (-1779 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2991 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4171 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| |#1| (-373)) CONST)) (-2268 (($ (-928)) NIL (|has| |#1| (-373)))) (-4064 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-1533 (((-965 (-1129))) NIL)) (-2466 (($) NIL (|has| |#1| (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| |#1| (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2755 (((-1182 |#1|)) NIL)) (-4003 (($) NIL (|has| |#1| (-373)))) (-4426 (($) NIL (|has| |#1| (-373)))) (-3424 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3532 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3944 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2942 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1533 ((-965 (-1129)))))) (-354) (-928)) (T -350))
-((-1533 (*1 *2) (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-350 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
-(-13 (-333 |#1|) (-10 -7 (-15 -1533 ((-965 (-1129))))))
-((-2428 (((-777) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129)))))) 61)) (-3472 (((-965 (-1129)) (-1182 |#1|)) 112)) (-4295 (((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) (-1182 |#1|)) 103)) (-3695 (((-695 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129)))))) 113)) (-2116 (((-3 (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) "failed") (-928)) 13)) (-4259 (((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129)))))) (-928)) 18)))
-(((-351 |#1|) (-10 -7 (-15 -3472 ((-965 (-1129)) (-1182 |#1|))) (-15 -4295 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) (-1182 |#1|))) (-15 -3695 ((-695 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (-15 -2428 ((-777) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (-15 -2116 ((-3 (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) "failed") (-928))) (-15 -4259 ((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129)))))) (-928)))) (-354)) (T -351))
-((-4259 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-3 (-1182 *4) (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129))))))) (-5 *1 (-351 *4)) (-4 *4 (-354)))) (-2116 (*1 *2 *3) (|partial| -12 (-5 *3 (-928)) (-5 *2 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129)))))) (-5 *1 (-351 *4)) (-4 *4 (-354)))) (-2428 (*1 *2 *3) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-777)) (-5 *1 (-351 *4)))) (-3695 (*1 *2 *3) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-695 *4)) (-5 *1 (-351 *4)))) (-4295 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129)))))) (-5 *1 (-351 *4)))) (-3472 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-965 (-1129))) (-5 *1 (-351 *4)))))
-(-10 -7 (-15 -3472 ((-965 (-1129)) (-1182 |#1|))) (-15 -4295 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) (-1182 |#1|))) (-15 -3695 ((-695 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (-15 -2428 ((-777) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (-15 -2116 ((-3 (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) "failed") (-928))) (-15 -4259 ((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129)))))) (-928))))
-((-3799 ((|#1| |#3|) 104) ((|#3| |#1|) 87)))
-(((-352 |#1| |#2| |#3|) (-10 -7 (-15 -3799 (|#3| |#1|)) (-15 -3799 (|#1| |#3|))) (-333 |#2|) (-354) (-333 |#2|)) (T -352))
-((-3799 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *2 (-333 *4)) (-5 *1 (-352 *2 *4 *3)) (-4 *3 (-333 *4)))) (-3799 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *2 (-333 *4)) (-5 *1 (-352 *3 *4 *2)) (-4 *3 (-333 *4)))))
-(-10 -7 (-15 -3799 (|#3| |#1|)) (-15 -3799 (|#1| |#3|)))
-((-2542 (((-112) $) 60)) (-4323 (((-839 (-928)) $) 23) (((-928) $) 64)) (-2619 (((-3 $ "failed") $) 18)) (-2438 (($) 9)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 114)) (-2289 (((-3 (-777) "failed") $ $) 92) (((-777) $) 79)) (-3547 (($ $ (-777)) NIL) (($ $) 8)) (-4003 (($) 53)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 38)) (-3532 (((-3 $ "failed") $) 45) (($ $) 44)))
-(((-353 |#1|) (-10 -8 (-15 -4323 ((-928) |#1|)) (-15 -2289 ((-777) |#1|)) (-15 -2542 ((-112) |#1|)) (-15 -4003 (|#1|)) (-15 -4428 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -3532 (|#1| |#1|)) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -2438 (|#1|)) (-15 -2619 ((-3 |#1| "failed") |#1|)) (-15 -2289 ((-3 (-777) "failed") |#1| |#1|)) (-15 -4323 ((-839 (-928)) |#1|)) (-15 -3532 ((-3 |#1| "failed") |#1|)) (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|)))) (-354)) (T -353))
-NIL
-(-10 -8 (-15 -4323 ((-928) |#1|)) (-15 -2289 ((-777) |#1|)) (-15 -2542 ((-112) |#1|)) (-15 -4003 (|#1|)) (-15 -4428 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -3532 (|#1| |#1|)) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -2438 (|#1|)) (-15 -2619 ((-3 |#1| "failed") |#1|)) (-15 -2289 ((-3 (-777) "failed") |#1| |#1|)) (-15 -4323 ((-839 (-928)) |#1|)) (-15 -3532 ((-3 |#1| "failed") |#1|)) (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-2640 (((-1199 (-928) (-777)) (-570)) 101)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3473 (((-112) $ $) 65)) (-3510 (((-777)) 111)) (-1705 (($) 18 T CONST)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 95)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-3446 (($) 114)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-2652 (($) 99)) (-2542 (((-112) $) 98)) (-2063 (($ $) 87) (($ $ (-777)) 86)) (-3618 (((-112) $) 79)) (-4323 (((-839 (-928)) $) 89) (((-928) $) 96)) (-4346 (((-112) $) 35)) (-2619 (((-3 $ "failed") $) 110)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1884 (((-928) $) 113)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-2438 (($) 109 T CONST)) (-2268 (($ (-928)) 112)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 102)) (-3801 (((-424 $) $) 82)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-2289 (((-3 (-777) "failed") $ $) 88) (((-777) $) 97)) (-3547 (($ $ (-777)) 107) (($ $) 105)) (-4003 (($) 100)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 103)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-3532 (((-3 $ "failed") $) 90) (($ $) 104)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-777)) 108) (($ $) 106)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 73)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+((-3995 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-777)))) (-3973 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-777)))) (-1807 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-2397 (*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)))) (-3644 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-1345 (*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)))) (-1345 (*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)))) (-3392 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-1992 (*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)))) (-1992 (*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)))) (-3176 (*1 *2) (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))) (-1738 (*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)))) (-1738 (*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)))) (-3710 (*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)))) (-1505 (*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)))) (-4026 (*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)))) (-2475 (*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)))) (-2864 (*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))))) (-1874 (*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))))) (-3383 (*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))))) (-2843 (*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))))) (-2873 (*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))))) (-3147 (*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))))) (-1831 (*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))))) (-1504 (*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))))) (-2322 (*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))))) (-2977 (*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))))) (-2246 (*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))))) (-3770 (*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))))) (-2475 (*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)))) (-2475 (*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)))) (-3550 (*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))))) (-1944 (*1 *1 *1) (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1231)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3))))) (-1942 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-347 *2 *3 *4)) (-4 *2 (-1231)) (-4 *3 (-1253 *2)) (-4 *4 (-1253 (-413 *3))))) (-2175 (*1 *2) (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1231)) (-4 *4 (-1253 (-413 *2))) (-4 *2 (-1253 *3)))) (-1311 (*1 *2) (|partial| -12 (-4 *1 (-347 *3 *2 *4)) (-4 *3 (-1231)) (-4 *4 (-1253 (-413 *2))) (-4 *2 (-1253 *3)))) (-3302 (*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)))) (-1747 (*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))))) (-3997 (*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 -3995 ((-777))) (-15 -3973 ((-777))) (-15 -1807 ((-112))) (-15 -2397 ((-112) |t#1| |t#1|)) (-15 -3644 ((-112))) (-15 -1345 ((-112) |t#1|)) (-15 -1345 ((-112) |t#2|)) (-15 -3392 ((-112))) (-15 -1992 ((-112) |t#1|)) (-15 -1992 ((-112) |t#2|)) (-15 -3176 ((-112))) (-15 -1738 ((-112) |t#1|)) (-15 -1738 ((-112) |t#2|)) (-15 -3710 ((-1277 $))) (-15 -1505 ((-1277 $))) (-15 -4026 ((-112) $)) (-15 -2475 ((-112) $)) (-15 -2864 ((-1277 $) (-1277 $))) (-15 -1874 ((-1277 $) (-1277 $))) (-15 -3383 ((-1277 $) (-1277 $))) (-15 -2843 ((-695 (-413 |t#2|)))) (-15 -2873 ((-695 (-413 |t#2|)))) (-15 -3147 ((-695 (-413 |t#2|)))) (-15 -1831 ((-695 (-413 |t#2|)))) (-15 -1504 ((-2 (|:| |num| (-1277 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2322 ($ (-1277 |t#2|) |t#2|)) (-15 -2977 ((-2 (|:| |num| (-1277 |t#2|)) (|:| |den| |t#2|)) $)) (-15 -2246 ($ (-1277 |t#2|) |t#2|)) (-15 -3770 ((-2 (|:| |num| (-695 |t#2|)) (|:| |den| |t#2|)) (-1 |t#2| |t#2|))) (-15 -2475 ((-112) $ |t#1|)) (-15 -2475 ((-112) $ |t#2|)) (-15 -3550 ($ $ (-1 |t#2| |t#2|))) (-15 -1944 ($ $)) (-15 -1942 (|t#1| $ |t#1| |t#1|)) (-15 -2175 ((-3 |t#2| "failed"))) (-15 -1311 ((-3 |t#2| "failed"))) (-15 -3302 ((-2 (|:| |num| $) (|:| |den| |t#2|) (|:| |derivden| |t#2|) (|:| |gd| |t#2|)) $ (-1 |t#2| |t#2|))) (IF (|has| |t#1| (-368)) (-15 -1747 ((-650 (-959 |t#1|)) (-1186))) |%noBranch|) (IF (|has| |t#1| (-373)) (-15 -3997 ((-650 (-650 |t#1|)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-38 #0=(-413 (-570))) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-38 #1=(-413 |#2|)) . T) ((-38 $) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-102) . T) ((-111 #0# #0#) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-111 #1# #1#) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-146))) ((-148) |has| (-413 |#2|) (-148)) ((-622 #0#) -2895 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-622 #1#) . T) ((-622 (-570)) . T) ((-622 $) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-619 (-868)) . T) ((-174) . T) ((-620 |#3|) . T) ((-233 #1#) |has| (-413 |#2|) (-368)) ((-235) -2895 (|has| (-413 |#2|) (-354)) (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368)))) ((-245) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-294) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-311) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-368) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-408) |has| (-413 |#2|) (-354)) ((-373) -2895 (|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) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-562) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-652 #0#) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-652 #1#) . T) ((-652 (-570)) . T) ((-652 $) . T) ((-654 #0#) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-654 #1#) . T) ((-654 $) . T) ((-646 #0#) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-646 #1#) . T) ((-646 $) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-645 #1#) . T) ((-645 (-570)) |has| (-413 |#2|) (-645 (-570))) ((-723 #0#) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-723 #1#) . T) ((-723 $) -2895 (|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) -2895 (|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#) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))) ((-1060 #1#) . T) ((-1060 $) . T) ((-1065 #0#) -2895 (|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) -2895 (|has| (-413 |#2|) (-354)) (|has| (-413 |#2|) (-368))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-917 |#1|) "failed") $) NIL)) (-3220 (((-917 |#1|) $) NIL)) (-2322 (($ (-1277 (-917 |#1|))) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-917 |#1|) (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) NIL (|has| (-917 |#1|) (-373)))) (-1843 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) NIL (|has| (-917 |#1|) (-373)))) (-4073 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-4399 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2400 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-2665 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-1672 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-3113 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2267 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3315 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-2081 (((-965 (-1129))) NIL)) (-2467 (($) NIL (|has| (-917 |#1|) (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2075 (((-1182 (-917 |#1|))) NIL)) (-3924 (($) NIL (|has| (-917 |#1|) (-373)))) (-3667 (($) NIL (|has| (-917 |#1|) (-373)))) (-3314 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3132 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-1427 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2945 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -2081 ((-965 (-1129)))))) (-928) (-928)) (T -348))
+((-2081 (*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 -2081 ((-965 (-1129))))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 58)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) 56 (|has| |#1| (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL (|has| |#1| (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) 142)) (-3220 ((|#1| $) 113)) (-2322 (($ (-1277 |#1|)) 130)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 121 (|has| |#1| (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) 124 (|has| |#1| (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) 160 (|has| |#1| (-373)))) (-1843 (((-112) $) 66 (|has| |#1| (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) 60 (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4139 (((-112) $) 62)) (-1977 (($) 162 (|has| |#1| (-373)))) (-4073 (((-112) $) NIL (|has| |#1| (-373)))) (-4399 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 |#1|) $) 117) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2400 (((-928) $) 171 (|has| |#1| (-373)))) (-2665 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1672 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3113 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 178)) (-2439 (($) NIL (|has| |#1| (-373)) CONST)) (-2267 (($ (-928)) 96 (|has| |#1| (-373)))) (-3315 (((-112) $) 147)) (-3580 (((-1129) $) NIL)) (-2081 (((-965 (-1129))) 57)) (-2467 (($) 158 (|has| |#1| (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 119 (|has| |#1| (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) 90) (((-928)) 91)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) 161 (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) 154 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2075 (((-1182 |#1|)) 122)) (-3924 (($) 159 (|has| |#1| (-373)))) (-3667 (($) 167 (|has| |#1| (-373)))) (-3314 (((-1277 |#1|) $) 77) (((-695 |#1|) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3802 (((-868) $) 174) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 100)) (-3132 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2851 (((-777)) 155 T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) 144) (((-1277 $) (-928)) 98)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) 67 T CONST)) (-1876 (($) 103 T CONST)) (-1427 (($ $) 107 (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2945 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3025 (((-112) $ $) 65)) (-3125 (($ $ $) 176) (($ $ |#1|) 177)) (-3114 (($ $) 157) (($ $ $) NIL)) (-3104 (($ $ $) 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 -2081 ((-965 (-1129)))))) (-354) (-1182 |#1|)) (T -349))
+((-2081 (*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 -2081 ((-965 (-1129))))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL (|has| |#1| (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-2322 (($ (-1277 |#1|)) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| |#1| (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) NIL (|has| |#1| (-373)))) (-1843 (((-112) $) NIL (|has| |#1| (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) NIL (|has| |#1| (-373)))) (-4073 (((-112) $) NIL (|has| |#1| (-373)))) (-4399 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2400 (((-928) $) NIL (|has| |#1| (-373)))) (-2665 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1672 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3113 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| |#1| (-373)) CONST)) (-2267 (($ (-928)) NIL (|has| |#1| (-373)))) (-3315 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-2081 (((-965 (-1129))) NIL)) (-2467 (($) NIL (|has| |#1| (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| |#1| (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2075 (((-1182 |#1|)) NIL)) (-3924 (($) NIL (|has| |#1| (-373)))) (-3667 (($) NIL (|has| |#1| (-373)))) (-3314 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3132 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-1427 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2945 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -2081 ((-965 (-1129)))))) (-354) (-928)) (T -350))
+((-2081 (*1 *2) (-12 (-5 *2 (-965 (-1129))) (-5 *1 (-350 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
+(-13 (-333 |#1|) (-10 -7 (-15 -2081 ((-965 (-1129))))))
+((-3122 (((-777) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129)))))) 61)) (-3756 (((-965 (-1129)) (-1182 |#1|)) 112)) (-1859 (((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) (-1182 |#1|)) 103)) (-4006 (((-695 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129)))))) 113)) (-2950 (((-3 (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) "failed") (-928)) 13)) (-1476 (((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129)))))) (-928)) 18)))
+(((-351 |#1|) (-10 -7 (-15 -3756 ((-965 (-1129)) (-1182 |#1|))) (-15 -1859 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) (-1182 |#1|))) (-15 -4006 ((-695 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (-15 -3122 ((-777) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (-15 -2950 ((-3 (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) "failed") (-928))) (-15 -1476 ((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129)))))) (-928)))) (-354)) (T -351))
+((-1476 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-3 (-1182 *4) (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129))))))) (-5 *1 (-351 *4)) (-4 *4 (-354)))) (-2950 (*1 *2 *3) (|partial| -12 (-5 *3 (-928)) (-5 *2 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129)))))) (-5 *1 (-351 *4)) (-4 *4 (-354)))) (-3122 (*1 *2 *3) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-777)) (-5 *1 (-351 *4)))) (-4006 (*1 *2 *3) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-695 *4)) (-5 *1 (-351 *4)))) (-1859 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129)))))) (-5 *1 (-351 *4)))) (-3756 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-965 (-1129))) (-5 *1 (-351 *4)))))
+(-10 -7 (-15 -3756 ((-965 (-1129)) (-1182 |#1|))) (-15 -1859 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) (-1182 |#1|))) (-15 -4006 ((-695 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (-15 -3122 ((-777) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (-15 -2950 ((-3 (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) "failed") (-928))) (-15 -1476 ((-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129)))))) (-928))))
+((-3802 ((|#1| |#3|) 104) ((|#3| |#1|) 87)))
+(((-352 |#1| |#2| |#3|) (-10 -7 (-15 -3802 (|#3| |#1|)) (-15 -3802 (|#1| |#3|))) (-333 |#2|) (-354) (-333 |#2|)) (T -352))
+((-3802 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *2 (-333 *4)) (-5 *1 (-352 *2 *4 *3)) (-4 *3 (-333 *4)))) (-3802 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *2 (-333 *4)) (-5 *1 (-352 *3 *4 *2)) (-4 *3 (-333 *4)))))
+(-10 -7 (-15 -3802 (|#3| |#1|)) (-15 -3802 (|#1| |#3|)))
+((-1843 (((-112) $) 60)) (-3941 (((-839 (-928)) $) 23) (((-928) $) 64)) (-4369 (((-3 $ "failed") $) 18)) (-2439 (($) 9)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 114)) (-4080 (((-3 (-777) "failed") $ $) 92) (((-777) $) 79)) (-3550 (($ $ (-777)) NIL) (($ $) 8)) (-3924 (($) 53)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 38)) (-3132 (((-3 $ "failed") $) 45) (($ $) 44)))
+(((-353 |#1|) (-10 -8 (-15 -3941 ((-928) |#1|)) (-15 -4080 ((-777) |#1|)) (-15 -1843 ((-112) |#1|)) (-15 -3924 (|#1|)) (-15 -3692 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -3132 (|#1| |#1|)) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -2439 (|#1|)) (-15 -4369 ((-3 |#1| "failed") |#1|)) (-15 -4080 ((-3 (-777) "failed") |#1| |#1|)) (-15 -3941 ((-839 (-928)) |#1|)) (-15 -3132 ((-3 |#1| "failed") |#1|)) (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|)))) (-354)) (T -353))
+NIL
+(-10 -8 (-15 -3941 ((-928) |#1|)) (-15 -4080 ((-777) |#1|)) (-15 -1843 ((-112) |#1|)) (-15 -3924 (|#1|)) (-15 -3692 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -3132 (|#1| |#1|)) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -2439 (|#1|)) (-15 -4369 ((-3 |#1| "failed") |#1|)) (-15 -4080 ((-3 (-777) "failed") |#1| |#1|)) (-15 -3941 ((-839 (-928)) |#1|)) (-15 -3132 ((-3 |#1| "failed") |#1|)) (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-3379 (((-1199 (-928) (-777)) (-570)) 101)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3765 (((-112) $ $) 65)) (-3513 (((-777)) 111)) (-3195 (($) 18 T CONST)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 95)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-3449 (($) 114)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-3511 (($) 99)) (-1843 (((-112) $) 98)) (-3599 (($ $) 87) (($ $ (-777)) 86)) (-1336 (((-112) $) 79)) (-3941 (((-839 (-928)) $) 89) (((-928) $) 96)) (-4139 (((-112) $) 35)) (-4369 (((-3 $ "failed") $) 110)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-2400 (((-928) $) 113)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-2439 (($) 109 T CONST)) (-2267 (($ (-928)) 112)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 102)) (-3804 (((-424 $) $) 82)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-4080 (((-3 (-777) "failed") $ $) 88) (((-777) $) 97)) (-3550 (($ $ (-777)) 107) (($ $) 105)) (-3924 (($) 100)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 103)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-3132 (((-3 $ "failed") $) 90) (($ $) 104)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-777)) 108) (($ $) 106)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 73)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-354) (-141)) (T -354))
-((-3532 (*1 *1 *1) (-4 *1 (-354))) (-4428 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-354)) (-5 *2 (-1277 *1)))) (-2432 (*1 *2) (-12 (-4 *1 (-354)) (-5 *2 (-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))))) (-2640 (*1 *2 *3) (-12 (-4 *1 (-354)) (-5 *3 (-570)) (-5 *2 (-1199 (-928) (-777))))) (-4003 (*1 *1) (-4 *1 (-354))) (-2652 (*1 *1) (-4 *1 (-354))) (-2542 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-112)))) (-2289 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-777)))) (-4323 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-928)))) (-2366 (*1 *2) (-12 (-4 *1 (-354)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(-13 (-408) (-373) (-1161) (-235) (-10 -8 (-15 -3532 ($ $)) (-15 -4428 ((-3 (-1277 $) "failed") (-695 $))) (-15 -2432 ((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570)))))) (-15 -2640 ((-1199 (-928) (-777)) (-570))) (-15 -4003 ($)) (-15 -2652 ($)) (-15 -2542 ((-112) $)) (-15 -2289 ((-777) $)) (-15 -4323 ((-928) $)) (-15 -2366 ((-3 "prime" "polynomial" "normal" "cyclic")))))
+((-3132 (*1 *1 *1) (-4 *1 (-354))) (-3692 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-354)) (-5 *2 (-1277 *1)))) (-3158 (*1 *2) (-12 (-4 *1 (-354)) (-5 *2 (-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))))) (-3379 (*1 *2 *3) (-12 (-4 *1 (-354)) (-5 *3 (-570)) (-5 *2 (-1199 (-928) (-777))))) (-3924 (*1 *1) (-4 *1 (-354))) (-3511 (*1 *1) (-4 *1 (-354))) (-1843 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-112)))) (-4080 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-777)))) (-3941 (*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-928)))) (-3704 (*1 *2) (-12 (-4 *1 (-354)) (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(-13 (-408) (-373) (-1161) (-235) (-10 -8 (-15 -3132 ($ $)) (-15 -3692 ((-3 (-1277 $) "failed") (-695 $))) (-15 -3158 ((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570)))))) (-15 -3379 ((-1199 (-928) (-777)) (-570))) (-15 -3924 ($)) (-15 -3511 ($)) (-15 -1843 ((-112) $)) (-15 -4080 ((-777) $)) (-15 -3941 ((-928) $)) (-15 -3704 ((-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))
-((-4396 (((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|) 55)) (-2673 (((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))) 53)))
-(((-355 |#1| |#2| |#3|) (-10 -7 (-15 -2673 ((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))) (-15 -4396 ((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|))) (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $)))) (-1253 |#1|) (-415 |#1| |#2|)) (T -355))
-((-4396 (*1 *2 *3) (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -1972 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2673 (*1 *2) (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -1972 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
-(-10 -7 (-15 -2673 ((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))) (-15 -4396 ((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2428 (((-777)) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-917 |#1|) "failed") $) NIL)) (-3216 (((-917 |#1|) $) NIL)) (-3243 (($ (-1277 (-917 |#1|))) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-917 |#1|) (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) NIL (|has| (-917 |#1|) (-373)))) (-2542 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) NIL (|has| (-917 |#1|) (-373)))) (-4019 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2959 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-1884 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-1779 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-2991 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-4171 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2268 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4064 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-2973 (((-1277 (-650 (-2 (|:| -2308 (-917 |#1|)) (|:| -2268 (-1129)))))) NIL)) (-3224 (((-695 (-917 |#1|))) NIL)) (-2466 (($) NIL (|has| (-917 |#1|) (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2755 (((-1182 (-917 |#1|))) NIL)) (-4003 (($) NIL (|has| (-917 |#1|) (-373)))) (-4426 (($) NIL (|has| (-917 |#1|) (-373)))) (-3424 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3532 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3944 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2942 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2973 ((-1277 (-650 (-2 (|:| -2308 (-917 |#1|)) (|:| -2268 (-1129))))))) (-15 -3224 ((-695 (-917 |#1|)))) (-15 -2428 ((-777))))) (-928) (-928)) (T -356))
-((-2973 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 (-917 *3)) (|:| -2268 (-1129)))))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-3224 (*1 *2) (-12 (-5 *2 (-695 (-917 *3))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-2428 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))))
-(-13 (-333 (-917 |#1|)) (-10 -7 (-15 -2973 ((-1277 (-650 (-2 (|:| -2308 (-917 |#1|)) (|:| -2268 (-1129))))))) (-15 -3224 ((-695 (-917 |#1|)))) (-15 -2428 ((-777)))))
-((-2558 (((-112) $ $) 73)) (-3467 (((-112) $) 88)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 ((|#1| $) 106) (($ $ (-928)) 104 (|has| |#1| (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) 170 (|has| |#1| (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2428 (((-777)) 103)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) 187 (|has| |#1| (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) 127)) (-3216 ((|#1| $) 105)) (-3243 (($ (-1277 |#1|)) 71)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 213 (|has| |#1| (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) 182 (|has| |#1| (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) 171 (|has| |#1| (-373)))) (-2542 (((-112) $) NIL (|has| |#1| (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) 113 (|has| |#1| (-373)))) (-4019 (((-112) $) 200 (|has| |#1| (-373)))) (-2959 ((|#1| $) 108) (($ $ (-928)) 107 (|has| |#1| (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 |#1|) $) 214) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-1884 (((-928) $) 148 (|has| |#1| (-373)))) (-1779 (((-1182 |#1|) $) 87 (|has| |#1| (-373)))) (-2991 (((-1182 |#1|) $) 84 (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) 96 (|has| |#1| (-373)))) (-4171 (($ $ (-1182 |#1|)) 83 (|has| |#1| (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 218)) (-2438 (($) NIL (|has| |#1| (-373)) CONST)) (-2268 (($ (-928)) 150 (|has| |#1| (-373)))) (-4064 (((-112) $) 123)) (-3577 (((-1129) $) NIL)) (-2973 (((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129)))))) 97)) (-3224 (((-695 |#1|)) 101)) (-2466 (($) 110 (|has| |#1| (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 173 (|has| |#1| (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) 174)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) 75)) (-2755 (((-1182 |#1|)) 175)) (-4003 (($) 147 (|has| |#1| (-373)))) (-4426 (($) NIL (|has| |#1| (-373)))) (-3424 (((-1277 |#1|) $) 121) (((-695 |#1|) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3799 (((-868) $) 140) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 70)) (-3532 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3499 (((-777)) 180 T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) 197) (((-1277 $) (-928)) 116)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) 186 T CONST)) (-1875 (($) 161 T CONST)) (-3944 (($ $) 122 (|has| |#1| (-373))) (($ $ (-777)) 114 (|has| |#1| (-373)))) (-2942 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3022 (((-112) $ $) 208)) (-3122 (($ $ $) 119) (($ $ |#1|) 120)) (-3111 (($ $) 202) (($ $ $) 206)) (-3101 (($ $ $) 204)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 153)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 211) (($ $ $) 164) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 118)))
-(((-357 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -2973 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (-15 -3224 ((-695 |#1|))) (-15 -2428 ((-777))))) (-354) (-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (T -357))
-((-2973 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2268 (-1129)))))) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) *2)))) (-3224 (*1 *2) (-12 (-5 *2 (-695 *3)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2268 (-1129))))))))) (-2428 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2268 (-1129))))))))))
-(-13 (-333 |#1|) (-10 -7 (-15 -2973 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (-15 -3224 ((-695 |#1|))) (-15 -2428 ((-777)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2428 (((-777)) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL (|has| |#1| (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-3243 (($ (-1277 |#1|)) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| |#1| (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) NIL (|has| |#1| (-373)))) (-2542 (((-112) $) NIL (|has| |#1| (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) NIL (|has| |#1| (-373)))) (-4019 (((-112) $) NIL (|has| |#1| (-373)))) (-2959 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-1884 (((-928) $) NIL (|has| |#1| (-373)))) (-1779 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2991 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4171 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| |#1| (-373)) CONST)) (-2268 (($ (-928)) NIL (|has| |#1| (-373)))) (-4064 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-2973 (((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129)))))) NIL)) (-3224 (((-695 |#1|)) NIL)) (-2466 (($) NIL (|has| |#1| (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| |#1| (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2755 (((-1182 |#1|)) NIL)) (-4003 (($) NIL (|has| |#1| (-373)))) (-4426 (($) NIL (|has| |#1| (-373)))) (-3424 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3532 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3944 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2942 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2973 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (-15 -3224 ((-695 |#1|))) (-15 -2428 ((-777))))) (-354) (-928)) (T -358))
-((-2973 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2268 (-1129)))))) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))) (-3224 (*1 *2) (-12 (-5 *2 (-695 *3)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))) (-2428 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
-(-13 (-333 |#1|) (-10 -7 (-15 -2973 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))))) (-15 -3224 ((-695 |#1|))) (-15 -2428 ((-777)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-917 |#1|) "failed") $) NIL)) (-3216 (((-917 |#1|) $) NIL)) (-3243 (($ (-1277 (-917 |#1|))) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-917 |#1|) (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) NIL (|has| (-917 |#1|) (-373)))) (-2542 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) NIL (|has| (-917 |#1|) (-373)))) (-4019 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-2959 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-1884 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-1779 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-2991 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-4171 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2268 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4064 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-2466 (($) NIL (|has| (-917 |#1|) (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2755 (((-1182 (-917 |#1|))) NIL)) (-4003 (($) NIL (|has| (-917 |#1|) (-373)))) (-4426 (($) NIL (|has| (-917 |#1|) (-373)))) (-3424 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3532 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3944 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2942 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))
+((-3422 (((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|) 55)) (-3710 (((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))) 53)))
+(((-355 |#1| |#2| |#3|) (-10 -7 (-15 -3710 ((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))) (-15 -3422 ((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|))) (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $)))) (-1253 |#1|) (-415 |#1| |#2|)) (T -355))
+((-3422 (*1 *2 *3) (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -3827 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3710 (*1 *2) (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -3827 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-355 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+(-10 -7 (-15 -3710 ((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))) (-15 -3422 ((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3122 (((-777)) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-917 |#1|) "failed") $) NIL)) (-3220 (((-917 |#1|) $) NIL)) (-2322 (($ (-1277 (-917 |#1|))) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-917 |#1|) (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) NIL (|has| (-917 |#1|) (-373)))) (-1843 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) NIL (|has| (-917 |#1|) (-373)))) (-4073 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-4399 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2400 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-2665 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-1672 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-3113 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2267 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3315 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-1460 (((-1277 (-650 (-2 (|:| -2308 (-917 |#1|)) (|:| -2267 (-1129)))))) NIL)) (-2127 (((-695 (-917 |#1|))) NIL)) (-2467 (($) NIL (|has| (-917 |#1|) (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2075 (((-1182 (-917 |#1|))) NIL)) (-3924 (($) NIL (|has| (-917 |#1|) (-373)))) (-3667 (($) NIL (|has| (-917 |#1|) (-373)))) (-3314 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3132 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-1427 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2945 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1460 ((-1277 (-650 (-2 (|:| -2308 (-917 |#1|)) (|:| -2267 (-1129))))))) (-15 -2127 ((-695 (-917 |#1|)))) (-15 -3122 ((-777))))) (-928) (-928)) (T -356))
+((-1460 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 (-917 *3)) (|:| -2267 (-1129)))))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-2127 (*1 *2) (-12 (-5 *2 (-695 (-917 *3))) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-3122 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))))
+(-13 (-333 (-917 |#1|)) (-10 -7 (-15 -1460 ((-1277 (-650 (-2 (|:| -2308 (-917 |#1|)) (|:| -2267 (-1129))))))) (-15 -2127 ((-695 (-917 |#1|)))) (-15 -3122 ((-777)))))
+((-2560 (((-112) $ $) 73)) (-3721 (((-112) $) 88)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 ((|#1| $) 106) (($ $ (-928)) 104 (|has| |#1| (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) 170 (|has| |#1| (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3122 (((-777)) 103)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) 187 (|has| |#1| (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) 127)) (-3220 ((|#1| $) 105)) (-2322 (($ (-1277 |#1|)) 71)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 213 (|has| |#1| (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) 182 (|has| |#1| (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) 171 (|has| |#1| (-373)))) (-1843 (((-112) $) NIL (|has| |#1| (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) 113 (|has| |#1| (-373)))) (-4073 (((-112) $) 200 (|has| |#1| (-373)))) (-4399 ((|#1| $) 108) (($ $ (-928)) 107 (|has| |#1| (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 |#1|) $) 214) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2400 (((-928) $) 148 (|has| |#1| (-373)))) (-2665 (((-1182 |#1|) $) 87 (|has| |#1| (-373)))) (-1672 (((-1182 |#1|) $) 84 (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) 96 (|has| |#1| (-373)))) (-3113 (($ $ (-1182 |#1|)) 83 (|has| |#1| (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 218)) (-2439 (($) NIL (|has| |#1| (-373)) CONST)) (-2267 (($ (-928)) 150 (|has| |#1| (-373)))) (-3315 (((-112) $) 123)) (-3580 (((-1129) $) NIL)) (-1460 (((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129)))))) 97)) (-2127 (((-695 |#1|)) 101)) (-2467 (($) 110 (|has| |#1| (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 173 (|has| |#1| (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) 174)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) 75)) (-2075 (((-1182 |#1|)) 175)) (-3924 (($) 147 (|has| |#1| (-373)))) (-3667 (($) NIL (|has| |#1| (-373)))) (-3314 (((-1277 |#1|) $) 121) (((-695 |#1|) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3802 (((-868) $) 140) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 70)) (-3132 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2851 (((-777)) 180 T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) 197) (((-1277 $) (-928)) 116)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) 186 T CONST)) (-1876 (($) 161 T CONST)) (-1427 (($ $) 122 (|has| |#1| (-373))) (($ $ (-777)) 114 (|has| |#1| (-373)))) (-2945 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3025 (((-112) $ $) 208)) (-3125 (($ $ $) 119) (($ $ |#1|) 120)) (-3114 (($ $) 202) (($ $ $) 206)) (-3104 (($ $ $) 204)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 153)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 211) (($ $ $) 164) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 118)))
+(((-357 |#1| |#2|) (-13 (-333 |#1|) (-10 -7 (-15 -1460 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (-15 -2127 ((-695 |#1|))) (-15 -3122 ((-777))))) (-354) (-3 (-1182 |#1|) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (T -357))
+((-1460 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2267 (-1129)))))) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) *2)))) (-2127 (*1 *2) (-12 (-5 *2 (-695 *3)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2267 (-1129))))))))) (-3122 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2267 (-1129))))))))))
+(-13 (-333 |#1|) (-10 -7 (-15 -1460 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (-15 -2127 ((-695 |#1|))) (-15 -3122 ((-777)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3122 (((-777)) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL (|has| |#1| (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-2322 (($ (-1277 |#1|)) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| |#1| (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) NIL (|has| |#1| (-373)))) (-1843 (((-112) $) NIL (|has| |#1| (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) NIL (|has| |#1| (-373)))) (-4073 (((-112) $) NIL (|has| |#1| (-373)))) (-4399 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2400 (((-928) $) NIL (|has| |#1| (-373)))) (-2665 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1672 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3113 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| |#1| (-373)) CONST)) (-2267 (($ (-928)) NIL (|has| |#1| (-373)))) (-3315 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-1460 (((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129)))))) NIL)) (-2127 (((-695 |#1|)) NIL)) (-2467 (($) NIL (|has| |#1| (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| |#1| (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2075 (((-1182 |#1|)) NIL)) (-3924 (($) NIL (|has| |#1| (-373)))) (-3667 (($) NIL (|has| |#1| (-373)))) (-3314 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3132 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-1427 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2945 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1460 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (-15 -2127 ((-695 |#1|))) (-15 -3122 ((-777))))) (-354) (-928)) (T -358))
+((-1460 (*1 *2) (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2267 (-1129)))))) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))) (-2127 (*1 *2) (-12 (-5 *2 (-695 *3)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))) (-3122 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
+(-13 (-333 |#1|) (-10 -7 (-15 -1460 ((-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))))) (-15 -2127 ((-695 |#1|))) (-15 -3122 ((-777)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-917 |#1|) (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL (|has| (-917 |#1|) (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-917 |#1|) "failed") $) NIL)) (-3220 (((-917 |#1|) $) NIL)) (-2322 (($ (-1277 (-917 |#1|))) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-917 |#1|) (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-917 |#1|) (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) NIL (|has| (-917 |#1|) (-373)))) (-1843 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373)))) (($ $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| (-917 |#1|) (-373))) (((-839 (-928)) $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) NIL (|has| (-917 |#1|) (-373)))) (-4073 (((-112) $) NIL (|has| (-917 |#1|) (-373)))) (-4399 (((-917 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| (-917 |#1|) (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 (-917 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-2400 (((-928) $) NIL (|has| (-917 |#1|) (-373)))) (-2665 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373)))) (-1672 (((-1182 (-917 |#1|)) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-1182 (-917 |#1|)) "failed") $ $) NIL (|has| (-917 |#1|) (-373)))) (-3113 (($ $ (-1182 (-917 |#1|))) NIL (|has| (-917 |#1|) (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-917 |#1|) (-373)) CONST)) (-2267 (($ (-928)) NIL (|has| (-917 |#1|) (-373)))) (-3315 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-2467 (($) NIL (|has| (-917 |#1|) (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| (-917 |#1|) (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| (-917 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2075 (((-1182 (-917 |#1|))) NIL)) (-3924 (($) NIL (|has| (-917 |#1|) (-373)))) (-3667 (($) NIL (|has| (-917 |#1|) (-373)))) (-3314 (((-1277 (-917 |#1|)) $) NIL) (((-695 (-917 |#1|)) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-917 |#1|) (-373)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-917 |#1|)) NIL)) (-3132 (($ $) NIL (|has| (-917 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| (-917 |#1|) (-146)) (|has| (-917 |#1|) (-373))))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-1427 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-2945 (($ $) NIL (|has| (-917 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-917 |#1|) (-373)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL) (($ $ (-917 |#1|)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) 129 (|has| |#1| (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) 155 (|has| |#1| (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) 103)) (-3216 ((|#1| $) 100)) (-3243 (($ (-1277 |#1|)) 95)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 126 (|has| |#1| (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) 92 (|has| |#1| (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) 51 (|has| |#1| (-373)))) (-2542 (((-112) $) NIL (|has| |#1| (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) 130 (|has| |#1| (-373)))) (-4019 (((-112) $) 84 (|has| |#1| (-373)))) (-2959 ((|#1| $) 47) (($ $ (-928)) 52 (|has| |#1| (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 |#1|) $) 75) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-1884 (((-928) $) 107 (|has| |#1| (-373)))) (-1779 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2991 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4171 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| |#1| (-373)) CONST)) (-2268 (($ (-928)) 105 (|has| |#1| (-373)))) (-4064 (((-112) $) 157)) (-3577 (((-1129) $) NIL)) (-2466 (($) 44 (|has| |#1| (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 124 (|has| |#1| (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) 154)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) 67)) (-2755 (((-1182 |#1|)) 98)) (-4003 (($) 135 (|has| |#1| (-373)))) (-4426 (($) NIL (|has| |#1| (-373)))) (-3424 (((-1277 |#1|) $) 63) (((-695 |#1|) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3799 (((-868) $) 153) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 97)) (-3532 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3499 (((-777)) 159 T CONST)) (-2335 (((-112) $ $) 161)) (-1972 (((-1277 $)) 119) (((-1277 $) (-928)) 58)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) 121 T CONST)) (-1875 (($) 40 T CONST)) (-3944 (($ $) 78 (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2942 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3022 (((-112) $ $) 117)) (-3122 (($ $ $) 109) (($ $ |#1|) 110)) (-3111 (($ $) 90) (($ $ $) 115)) (-3101 (($ $ $) 113)) (** (($ $ (-928)) NIL) (($ $ (-777)) 53) (($ $ (-570)) 138)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 88) (($ $ $) 65) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 86)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) 129 (|has| |#1| (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) 155 (|has| |#1| (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) 103)) (-3220 ((|#1| $) 100)) (-2322 (($ (-1277 |#1|)) 95)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 126 (|has| |#1| (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) 92 (|has| |#1| (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) 51 (|has| |#1| (-373)))) (-1843 (((-112) $) NIL (|has| |#1| (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) 130 (|has| |#1| (-373)))) (-4073 (((-112) $) 84 (|has| |#1| (-373)))) (-4399 ((|#1| $) 47) (($ $ (-928)) 52 (|has| |#1| (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 |#1|) $) 75) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2400 (((-928) $) 107 (|has| |#1| (-373)))) (-2665 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1672 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3113 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| |#1| (-373)) CONST)) (-2267 (($ (-928)) 105 (|has| |#1| (-373)))) (-3315 (((-112) $) 157)) (-3580 (((-1129) $) NIL)) (-2467 (($) 44 (|has| |#1| (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 124 (|has| |#1| (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) 154)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) 67)) (-2075 (((-1182 |#1|)) 98)) (-3924 (($) 135 (|has| |#1| (-373)))) (-3667 (($) NIL (|has| |#1| (-373)))) (-3314 (((-1277 |#1|) $) 63) (((-695 |#1|) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3802 (((-868) $) 153) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 97)) (-3132 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2851 (((-777)) 159 T CONST)) (-3359 (((-112) $ $) 161)) (-3827 (((-1277 $)) 119) (((-1277 $) (-928)) 58)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) 121 T CONST)) (-1876 (($) 40 T CONST)) (-1427 (($ $) 78 (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2945 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3025 (((-112) $ $) 117)) (-3125 (($ $ $) 109) (($ $ |#1|) 110)) (-3114 (($ $) 90) (($ $ $) 115)) (-3104 (($ $ $) 113)) (** (($ $ (-928)) NIL) (($ $ (-777)) 53) (($ $ (-570)) 138)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 88) (($ $ $) 65) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) 86)))
(((-360 |#1| |#2|) (-333 |#1|) (-354) (-1182 |#1|)) (T -360))
NIL
(-333 |#1|)
-((-1503 ((|#1| (-1182 |#2|)) 59)))
-(((-361 |#1| |#2|) (-10 -7 (-15 -1503 (|#1| (-1182 |#2|)))) (-13 (-408) (-10 -7 (-15 -3799 (|#1| |#2|)) (-15 -1884 ((-928) |#1|)) (-15 -1972 ((-1277 |#1|) (-928))) (-15 -3944 (|#1| |#1|)))) (-354)) (T -361))
-((-1503 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-4 *2 (-13 (-408) (-10 -7 (-15 -3799 (*2 *4)) (-15 -1884 ((-928) *2)) (-15 -1972 ((-1277 *2) (-928))) (-15 -3944 (*2 *2))))) (-5 *1 (-361 *2 *4)))))
-(-10 -7 (-15 -1503 (|#1| (-1182 |#2|))))
-((-4097 (((-965 (-1182 |#1|)) (-1182 |#1|)) 49)) (-3446 (((-1182 |#1|) (-928) (-928)) 154) (((-1182 |#1|) (-928)) 150)) (-2542 (((-112) (-1182 |#1|)) 107)) (-3749 (((-928) (-928)) 85)) (-2443 (((-928) (-928)) 92)) (-1921 (((-928) (-928)) 83)) (-4019 (((-112) (-1182 |#1|)) 111)) (-1702 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 135)) (-3387 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 140)) (-2648 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 139)) (-2900 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 138)) (-1746 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 131)) (-3202 (((-1182 |#1|) (-1182 |#1|)) 71)) (-3462 (((-1182 |#1|) (-928)) 145)) (-3754 (((-1182 |#1|) (-928)) 148)) (-2861 (((-1182 |#1|) (-928)) 147)) (-2562 (((-1182 |#1|) (-928)) 146)) (-1710 (((-1182 |#1|) (-928)) 143)))
-(((-362 |#1|) (-10 -7 (-15 -2542 ((-112) (-1182 |#1|))) (-15 -4019 ((-112) (-1182 |#1|))) (-15 -1921 ((-928) (-928))) (-15 -3749 ((-928) (-928))) (-15 -2443 ((-928) (-928))) (-15 -1710 ((-1182 |#1|) (-928))) (-15 -3462 ((-1182 |#1|) (-928))) (-15 -2562 ((-1182 |#1|) (-928))) (-15 -2861 ((-1182 |#1|) (-928))) (-15 -3754 ((-1182 |#1|) (-928))) (-15 -1746 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -1702 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2900 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2648 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3387 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3446 ((-1182 |#1|) (-928))) (-15 -3446 ((-1182 |#1|) (-928) (-928))) (-15 -3202 ((-1182 |#1|) (-1182 |#1|))) (-15 -4097 ((-965 (-1182 |#1|)) (-1182 |#1|)))) (-354)) (T -362))
-((-4097 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-965 (-1182 *4))) (-5 *1 (-362 *4)) (-5 *3 (-1182 *4)))) (-3202 (*1 *2 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3446 (*1 *2 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3446 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3387 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-2648 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-2900 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-1702 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-1746 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3754 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-2861 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-2562 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3462 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-1710 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-2443 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-3749 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-1921 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-4019 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-362 *4)))) (-2542 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-362 *4)))))
-(-10 -7 (-15 -2542 ((-112) (-1182 |#1|))) (-15 -4019 ((-112) (-1182 |#1|))) (-15 -1921 ((-928) (-928))) (-15 -3749 ((-928) (-928))) (-15 -2443 ((-928) (-928))) (-15 -1710 ((-1182 |#1|) (-928))) (-15 -3462 ((-1182 |#1|) (-928))) (-15 -2562 ((-1182 |#1|) (-928))) (-15 -2861 ((-1182 |#1|) (-928))) (-15 -3754 ((-1182 |#1|) (-928))) (-15 -1746 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -1702 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2900 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2648 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3387 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3446 ((-1182 |#1|) (-928))) (-15 -3446 ((-1182 |#1|) (-928) (-928))) (-15 -3202 ((-1182 |#1|) (-1182 |#1|))) (-15 -4097 ((-965 (-1182 |#1|)) (-1182 |#1|))))
-((-2355 (((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|) 38)))
-(((-363 |#1| |#2| |#3|) (-10 -7 (-15 -2355 ((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|))) (-354) (-1253 |#1|) (-1253 |#2|)) (T -363))
-((-2355 (*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 -2355 ((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL (|has| |#1| (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-3243 (($ (-1277 |#1|)) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| |#1| (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) NIL (|has| |#1| (-373)))) (-2542 (((-112) $) NIL (|has| |#1| (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) NIL (|has| |#1| (-373)))) (-4019 (((-112) $) NIL (|has| |#1| (-373)))) (-2959 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-1884 (((-928) $) NIL (|has| |#1| (-373)))) (-1779 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-2991 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-4171 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| |#1| (-373)) CONST)) (-2268 (($ (-928)) NIL (|has| |#1| (-373)))) (-4064 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-2466 (($) NIL (|has| |#1| (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| |#1| (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2755 (((-1182 |#1|)) NIL)) (-4003 (($) NIL (|has| |#1| (-373)))) (-4426 (($) NIL (|has| |#1| (-373)))) (-3424 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3532 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3944 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2942 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-3004 ((|#1| (-1182 |#2|)) 59)))
+(((-361 |#1| |#2|) (-10 -7 (-15 -3004 (|#1| (-1182 |#2|)))) (-13 (-408) (-10 -7 (-15 -3802 (|#1| |#2|)) (-15 -2400 ((-928) |#1|)) (-15 -3827 ((-1277 |#1|) (-928))) (-15 -1427 (|#1| |#1|)))) (-354)) (T -361))
+((-3004 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-4 *2 (-13 (-408) (-10 -7 (-15 -3802 (*2 *4)) (-15 -2400 ((-928) *2)) (-15 -3827 ((-1277 *2) (-928))) (-15 -1427 (*2 *2))))) (-5 *1 (-361 *2 *4)))))
+(-10 -7 (-15 -3004 (|#1| (-1182 |#2|))))
+((-3685 (((-965 (-1182 |#1|)) (-1182 |#1|)) 49)) (-3449 (((-1182 |#1|) (-928) (-928)) 154) (((-1182 |#1|) (-928)) 150)) (-1843 (((-112) (-1182 |#1|)) 107)) (-3308 (((-928) (-928)) 85)) (-2090 (((-928) (-928)) 92)) (-1461 (((-928) (-928)) 83)) (-4073 (((-112) (-1182 |#1|)) 111)) (-3167 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 135)) (-4187 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 140)) (-3465 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 139)) (-2033 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 138)) (-3583 (((-3 (-1182 |#1|) "failed") (-1182 |#1|)) 131)) (-3117 (((-1182 |#1|) (-1182 |#1|)) 71)) (-3683 (((-1182 |#1|) (-928)) 145)) (-3365 (((-1182 |#1|) (-928)) 148)) (-1749 (((-1182 |#1|) (-928)) 147)) (-3868 (((-1182 |#1|) (-928)) 146)) (-3223 (((-1182 |#1|) (-928)) 143)))
+(((-362 |#1|) (-10 -7 (-15 -1843 ((-112) (-1182 |#1|))) (-15 -4073 ((-112) (-1182 |#1|))) (-15 -1461 ((-928) (-928))) (-15 -3308 ((-928) (-928))) (-15 -2090 ((-928) (-928))) (-15 -3223 ((-1182 |#1|) (-928))) (-15 -3683 ((-1182 |#1|) (-928))) (-15 -3868 ((-1182 |#1|) (-928))) (-15 -1749 ((-1182 |#1|) (-928))) (-15 -3365 ((-1182 |#1|) (-928))) (-15 -3583 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3167 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2033 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3465 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -4187 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3449 ((-1182 |#1|) (-928))) (-15 -3449 ((-1182 |#1|) (-928) (-928))) (-15 -3117 ((-1182 |#1|) (-1182 |#1|))) (-15 -3685 ((-965 (-1182 |#1|)) (-1182 |#1|)))) (-354)) (T -362))
+((-3685 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-965 (-1182 *4))) (-5 *1 (-362 *4)) (-5 *3 (-1182 *4)))) (-3117 (*1 *2 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3449 (*1 *2 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3449 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-4187 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3465 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-2033 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3167 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3583 (*1 *2 *2) (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))) (-3365 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-1749 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3868 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3683 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-3223 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4)) (-4 *4 (-354)))) (-2090 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-3308 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-1461 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))) (-4073 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-362 *4)))) (-1843 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-362 *4)))))
+(-10 -7 (-15 -1843 ((-112) (-1182 |#1|))) (-15 -4073 ((-112) (-1182 |#1|))) (-15 -1461 ((-928) (-928))) (-15 -3308 ((-928) (-928))) (-15 -2090 ((-928) (-928))) (-15 -3223 ((-1182 |#1|) (-928))) (-15 -3683 ((-1182 |#1|) (-928))) (-15 -3868 ((-1182 |#1|) (-928))) (-15 -1749 ((-1182 |#1|) (-928))) (-15 -3365 ((-1182 |#1|) (-928))) (-15 -3583 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3167 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -2033 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3465 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -4187 ((-3 (-1182 |#1|) "failed") (-1182 |#1|))) (-15 -3449 ((-1182 |#1|) (-928))) (-15 -3449 ((-1182 |#1|) (-928) (-928))) (-15 -3117 ((-1182 |#1|) (-1182 |#1|))) (-15 -3685 ((-965 (-1182 |#1|)) (-1182 |#1|))))
+((-3585 (((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|) 38)))
+(((-363 |#1| |#2| |#3|) (-10 -7 (-15 -3585 ((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|))) (-354) (-1253 |#1|) (-1253 |#2|)) (T -363))
+((-3585 (*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 -3585 ((-3 (-650 |#3|) "failed") (-650 |#3|) |#3|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL (|has| |#1| (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-2322 (($ (-1277 |#1|)) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| |#1| (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) NIL (|has| |#1| (-373)))) (-1843 (((-112) $) NIL (|has| |#1| (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| |#1| (-373))) (((-839 (-928)) $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) NIL (|has| |#1| (-373)))) (-4073 (((-112) $) NIL (|has| |#1| (-373)))) (-4399 ((|#1| $) NIL) (($ $ (-928)) NIL (|has| |#1| (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 |#1|) $) NIL) (((-1182 $) $ (-928)) NIL (|has| |#1| (-373)))) (-2400 (((-928) $) NIL (|has| |#1| (-373)))) (-2665 (((-1182 |#1|) $) NIL (|has| |#1| (-373)))) (-1672 (((-1182 |#1|) $) NIL (|has| |#1| (-373))) (((-3 (-1182 |#1|) "failed") $ $) NIL (|has| |#1| (-373)))) (-3113 (($ $ (-1182 |#1|)) NIL (|has| |#1| (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| |#1| (-373)) CONST)) (-2267 (($ (-928)) NIL (|has| |#1| (-373)))) (-3315 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-2467 (($) NIL (|has| |#1| (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| |#1| (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| |#1| (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2075 (((-1182 |#1|)) NIL)) (-3924 (($) NIL (|has| |#1| (-373)))) (-3667 (($) NIL (|has| |#1| (-373)))) (-3314 (((-1277 |#1|) $) NIL) (((-695 |#1|) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-373)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) NIL)) (-3132 (($ $) NIL (|has| |#1| (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-1427 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-2945 (($ $) NIL (|has| |#1| (-373))) (($ $ (-777)) NIL (|has| |#1| (-373)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL) (($ $ |#1|) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)
-((-2669 (((-112) (-650 (-959 |#1|))) 41)) (-1857 (((-650 (-959 |#1|)) (-650 (-959 |#1|))) 53)) (-3938 (((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|))) 48)))
-(((-365 |#1| |#2|) (-10 -7 (-15 -2669 ((-112) (-650 (-959 |#1|)))) (-15 -3938 ((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|)))) (-15 -1857 ((-650 (-959 |#1|)) (-650 (-959 |#1|))))) (-458) (-650 (-1186))) (T -365))
-((-1857 (*1 *2 *2) (-12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186))))) (-3938 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186))))) (-2669 (*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 -2669 ((-112) (-650 (-959 |#1|)))) (-15 -3938 ((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|)))) (-15 -1857 ((-650 (-959 |#1|)) (-650 (-959 |#1|)))))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777) $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) 17)) (-2610 ((|#1| $ (-570)) NIL)) (-2517 (((-570) $ (-570)) NIL)) (-2131 (($ (-1 |#1| |#1|) $) 34)) (-2453 (($ (-1 (-570) (-570)) $) 26)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 28)) (-3577 (((-1129) $) NIL)) (-3477 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-570)))) $) 30)) (-2020 (($ $ $) NIL)) (-4391 (($ $ $) NIL)) (-3799 (((-868) $) 40) (($ |#1|) NIL)) (-2335 (((-112) $ $) NIL)) (-1875 (($) 11 T CONST)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) 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 -3510 ((-777) $)) (-15 -2517 ((-570) $ (-570))) (-15 -2610 (|#1| $ (-570))) (-15 -2453 ($ (-1 (-570) (-570)) $)) (-15 -2131 ($ (-1 |#1| |#1|) $)) (-15 -3477 ((-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)))) (-3510 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-2517 (*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-2610 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (-2453 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-570) (-570))) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-2131 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-366 *3)))) (-3477 (*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 -3510 ((-777) $)) (-15 -2517 ((-570) $ (-570))) (-15 -2610 (|#1| $ (-570))) (-15 -2453 ($ (-1 (-570) (-570)) $)) (-15 -2131 ($ (-1 |#1| |#1|) $)) (-15 -3477 ((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-570)))) $))))
-((-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 13)) (-3074 (($ $) 14)) (-1652 (((-424 $) $) 34)) (-3618 (((-112) $) 30)) (-1877 (($ $) 19)) (-1942 (($ $ $) 25) (($ (-650 $)) NIL)) (-3801 (((-424 $) $) 35)) (-2547 (((-3 $ "failed") $ $) 24)) (-2142 (((-777) $) 28)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 39)) (-2029 (((-112) $ $) 16)) (-3122 (($ $ $) 37)))
-(((-367 |#1|) (-10 -8 (-15 -3122 (|#1| |#1| |#1|)) (-15 -1877 (|#1| |#1|)) (-15 -3618 ((-112) |#1|)) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -2384 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2142 ((-777) |#1|)) (-15 -1942 (|#1| (-650 |#1|))) (-15 -1942 (|#1| |#1| |#1|)) (-15 -2029 ((-112) |#1| |#1|)) (-15 -3074 (|#1| |#1|)) (-15 -2034 ((-2 (|:| -3128 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#1|))) (-368)) (T -367))
-NIL
-(-10 -8 (-15 -3122 (|#1| |#1| |#1|)) (-15 -1877 (|#1| |#1|)) (-15 -3618 ((-112) |#1|)) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -2384 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2142 ((-777) |#1|)) (-15 -1942 (|#1| (-650 |#1|))) (-15 -1942 (|#1| |#1| |#1|)) (-15 -2029 ((-112) |#1| |#1|)) (-15 -3074 (|#1| |#1|)) (-15 -2034 ((-2 (|:| -3128 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3473 (((-112) $ $) 65)) (-1705 (($) 18 T CONST)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-3618 (((-112) $) 79)) (-4346 (((-112) $) 35)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-3801 (((-424 $) $) 82)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 73)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+((-3665 (((-112) (-650 (-959 |#1|))) 41)) (-2154 (((-650 (-959 |#1|)) (-650 (-959 |#1|))) 53)) (-1343 (((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|))) 48)))
+(((-365 |#1| |#2|) (-10 -7 (-15 -3665 ((-112) (-650 (-959 |#1|)))) (-15 -1343 ((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|)))) (-15 -2154 ((-650 (-959 |#1|)) (-650 (-959 |#1|))))) (-458) (-650 (-1186))) (T -365))
+((-2154 (*1 *2 *2) (-12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186))))) (-1343 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-959 *3))) (-4 *3 (-458)) (-5 *1 (-365 *3 *4)) (-14 *4 (-650 (-1186))))) (-3665 (*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 -3665 ((-112) (-650 (-959 |#1|)))) (-15 -1343 ((-3 (-650 (-959 |#1|)) "failed") (-650 (-959 |#1|)))) (-15 -2154 ((-650 (-959 |#1|)) (-650 (-959 |#1|)))))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777) $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) 17)) (-4275 ((|#1| $ (-570)) NIL)) (-1564 (((-570) $ (-570)) NIL)) (-3088 (($ (-1 |#1| |#1|) $) 34)) (-2196 (($ (-1 (-570) (-570)) $) 26)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 28)) (-3580 (((-1129) $) NIL)) (-2638 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 (-570)))) $) 30)) (-4307 (($ $ $) NIL)) (-3381 (($ $ $) NIL)) (-3802 (((-868) $) 40) (($ |#1|) NIL)) (-3359 (((-112) $ $) NIL)) (-1876 (($) 11 T CONST)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) 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 -3513 ((-777) $)) (-15 -1564 ((-570) $ (-570))) (-15 -4275 (|#1| $ (-570))) (-15 -2196 ($ (-1 (-570) (-570)) $)) (-15 -3088 ($ (-1 |#1| |#1|) $)) (-15 -2638 ((-650 (-2 (|:| |gen| |#1|) (|:| -4389 (-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)))) (-3513 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-1564 (*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-4275 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-366 *2)) (-4 *2 (-1109)))) (-2196 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-570) (-570))) (-5 *1 (-366 *3)) (-4 *3 (-1109)))) (-3088 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1109)) (-5 *1 (-366 *3)))) (-2638 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 (-570))))) (-5 *1 (-366 *3)) (-4 *3 (-1109)))))
+(-13 (-479) (-1047 |#1|) (-10 -8 (-15 * ($ |#1| $)) (-15 * ($ $ |#1|)) (-15 ** ($ |#1| (-570))) (-15 -3513 ((-777) $)) (-15 -1564 ((-570) $ (-570))) (-15 -4275 (|#1| $ (-570))) (-15 -2196 ($ (-1 (-570) (-570)) $)) (-15 -3088 ($ (-1 |#1| |#1|) $)) (-15 -2638 ((-650 (-2 (|:| |gen| |#1|) (|:| -4389 (-570)))) $))))
+((-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 13)) (-4306 (($ $) 14)) (-3871 (((-424 $) $) 34)) (-1336 (((-112) $) 30)) (-1878 (($ $) 19)) (-1939 (($ $ $) 25) (($ (-650 $)) NIL)) (-3804 (((-424 $) $) 35)) (-2548 (((-3 $ "failed") $ $) 24)) (-2006 (((-777) $) 28)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 39)) (-3228 (((-112) $ $) 16)) (-3125 (($ $ $) 37)))
+(((-367 |#1|) (-10 -8 (-15 -3125 (|#1| |#1| |#1|)) (-15 -1878 (|#1| |#1|)) (-15 -1336 ((-112) |#1|)) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -2696 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2006 ((-777) |#1|)) (-15 -1939 (|#1| (-650 |#1|))) (-15 -1939 (|#1| |#1| |#1|)) (-15 -3228 ((-112) |#1| |#1|)) (-15 -4306 (|#1| |#1|)) (-15 -3270 ((-2 (|:| -3635 |#1|) (|:| -4439 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#1|))) (-368)) (T -367))
+NIL
+(-10 -8 (-15 -3125 (|#1| |#1| |#1|)) (-15 -1878 (|#1| |#1|)) (-15 -1336 ((-112) |#1|)) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -2696 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2006 ((-777) |#1|)) (-15 -1939 (|#1| (-650 |#1|))) (-15 -1939 (|#1| |#1| |#1|)) (-15 -3228 ((-112) |#1| |#1|)) (-15 -4306 (|#1| |#1|)) (-15 -3270 ((-2 (|:| -3635 |#1|) (|:| -4439 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3765 (((-112) $ $) 65)) (-3195 (($) 18 T CONST)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-1336 (((-112) $) 79)) (-4139 (((-112) $) 35)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3804 (((-424 $) $) 82)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 73)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-368) (-141)) (T -368))
-((-3122 (*1 *1 *1 *1) (-4 *1 (-368))))
-(-13 (-311) (-1231) (-245) (-10 -8 (-15 -3122 ($ $ $)) (-6 -4447) (-6 -4441)))
+((-3125 (*1 *1 *1 *1) (-4 *1 (-368))))
+(-13 (-311) (-1231) (-245) (-10 -8 (-15 -3125 ($ $ $)) (-6 -4450) (-6 -4444)))
(((-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))
-((-2558 (((-112) $ $) 7)) (-2391 ((|#2| $ |#2|) 14)) (-2117 (($ $ (-1168)) 19)) (-2080 ((|#2| $) 15)) (-1762 (($ |#1|) 21) (($ |#1| (-1168)) 20)) (-3600 ((|#1| $) 17)) (-1988 (((-1168) $) 10)) (-3767 (((-1168) $) 16)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-3107 (($ $) 18)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) 7)) (-2771 ((|#2| $ |#2|) 14)) (-2960 (($ $ (-1168)) 19)) (-2582 ((|#2| $) 15)) (-1765 (($ |#1|) 21) (($ |#1| (-1168)) 20)) (-3602 ((|#1| $) 17)) (-3989 (((-1168) $) 10)) (-3499 (((-1168) $) 16)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3443 (($ $) 18)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-369 |#1| |#2|) (-141) (-1109) (-1109)) (T -369))
-((-1762 (*1 *1 *2) (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-1762 (*1 *1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *1 (-369 *2 *4)) (-4 *2 (-1109)) (-4 *4 (-1109)))) (-2117 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3107 (*1 *1 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3600 (*1 *2 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-3767 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-1168)))) (-2080 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-2391 (*1 *2 *1 *2) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -1762 ($ |t#1|)) (-15 -1762 ($ |t#1| (-1168))) (-15 -2117 ($ $ (-1168))) (-15 -3107 ($ $)) (-15 -3600 (|t#1| $)) (-15 -3767 ((-1168) $)) (-15 -2080 (|t#2| $)) (-15 -2391 (|t#2| $ |t#2|))))
+((-1765 (*1 *1 *2) (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-1765 (*1 *1 *2 *3) (-12 (-5 *3 (-1168)) (-4 *1 (-369 *2 *4)) (-4 *2 (-1109)) (-4 *4 (-1109)))) (-2960 (*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3443 (*1 *1 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3602 (*1 *2 *1) (-12 (-4 *1 (-369 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-3499 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-1168)))) (-2582 (*1 *2 *1) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-2771 (*1 *2 *1 *2) (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -1765 ($ |t#1|)) (-15 -1765 ($ |t#1| (-1168))) (-15 -2960 ($ $ (-1168))) (-15 -3443 ($ $)) (-15 -3602 (|t#1| $)) (-15 -3499 ((-1168) $)) (-15 -2582 (|t#2| $)) (-15 -2771 (|t#2| $ |t#2|))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-2391 ((|#1| $ |#1|) 31)) (-2117 (($ $ (-1168)) 23)) (-2732 (((-3 |#1| "failed") $) 30)) (-2080 ((|#1| $) 28)) (-1762 (($ (-394)) 22) (($ (-394) (-1168)) 21)) (-3600 (((-394) $) 25)) (-1988 (((-1168) $) NIL)) (-3767 (((-1168) $) 26)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 20)) (-3107 (($ $) 24)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 19)))
-(((-370 |#1|) (-13 (-369 (-394) |#1|) (-10 -8 (-15 -2732 ((-3 |#1| "failed") $)))) (-1109)) (T -370))
-((-2732 (*1 *2 *1) (|partial| -12 (-5 *1 (-370 *2)) (-4 *2 (-1109)))))
-(-13 (-369 (-394) |#1|) (-10 -8 (-15 -2732 ((-3 |#1| "failed") $))))
-((-4299 (((-1277 (-695 |#2|)) (-1277 $)) 67)) (-3919 (((-695 |#2|) (-1277 $)) 139)) (-3677 ((|#2| $) 36)) (-1666 (((-695 |#2|) $ (-1277 $)) 142)) (-2054 (((-3 $ "failed") $) 89)) (-3637 ((|#2| $) 39)) (-2036 (((-1182 |#2|) $) 98)) (-1684 ((|#2| (-1277 $)) 122)) (-3595 (((-1182 |#2|) $) 32)) (-1763 (((-112)) 116)) (-3243 (($ (-1277 |#2|) (-1277 $)) 132)) (-2875 (((-3 $ "failed") $) 93)) (-2680 (((-112)) 111)) (-1950 (((-112)) 106)) (-1907 (((-112)) 58)) (-3267 (((-695 |#2|) (-1277 $)) 137)) (-2339 ((|#2| $) 35)) (-1738 (((-695 |#2|) $ (-1277 $)) 141)) (-3259 (((-3 $ "failed") $) 87)) (-3680 ((|#2| $) 38)) (-2018 (((-1182 |#2|) $) 97)) (-2374 ((|#2| (-1277 $)) 120)) (-1542 (((-1182 |#2|) $) 30)) (-1830 (((-112)) 115)) (-4013 (((-112)) 108)) (-3196 (((-112)) 56)) (-2601 (((-112)) 103)) (-3832 (((-112)) 117)) (-3424 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) 128)) (-3795 (((-112)) 113)) (-3871 (((-650 (-1277 |#2|))) 102)) (-2433 (((-112)) 114)) (-2826 (((-112)) 112)) (-4363 (((-112)) 51)) (-1764 (((-112)) 118)))
-(((-371 |#1| |#2|) (-10 -8 (-15 -2036 ((-1182 |#2|) |#1|)) (-15 -2018 ((-1182 |#2|) |#1|)) (-15 -3871 ((-650 (-1277 |#2|)))) (-15 -2054 ((-3 |#1| "failed") |#1|)) (-15 -3259 ((-3 |#1| "failed") |#1|)) (-15 -2875 ((-3 |#1| "failed") |#1|)) (-15 -1950 ((-112))) (-15 -4013 ((-112))) (-15 -2680 ((-112))) (-15 -3196 ((-112))) (-15 -1907 ((-112))) (-15 -2601 ((-112))) (-15 -1764 ((-112))) (-15 -3832 ((-112))) (-15 -1763 ((-112))) (-15 -1830 ((-112))) (-15 -4363 ((-112))) (-15 -2433 ((-112))) (-15 -2826 ((-112))) (-15 -3795 ((-112))) (-15 -3595 ((-1182 |#2|) |#1|)) (-15 -1542 ((-1182 |#2|) |#1|)) (-15 -3919 ((-695 |#2|) (-1277 |#1|))) (-15 -3267 ((-695 |#2|) (-1277 |#1|))) (-15 -1684 (|#2| (-1277 |#1|))) (-15 -2374 (|#2| (-1277 |#1|))) (-15 -3243 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -3637 (|#2| |#1|)) (-15 -3680 (|#2| |#1|)) (-15 -3677 (|#2| |#1|)) (-15 -2339 (|#2| |#1|)) (-15 -1666 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1738 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -4299 ((-1277 (-695 |#2|)) (-1277 |#1|)))) (-372 |#2|) (-174)) (T -371))
-((-3795 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2826 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2433 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4363 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1830 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1763 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3832 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1764 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2601 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1907 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3196 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2680 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4013 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1950 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3871 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-650 (-1277 *4))) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))))
-(-10 -8 (-15 -2036 ((-1182 |#2|) |#1|)) (-15 -2018 ((-1182 |#2|) |#1|)) (-15 -3871 ((-650 (-1277 |#2|)))) (-15 -2054 ((-3 |#1| "failed") |#1|)) (-15 -3259 ((-3 |#1| "failed") |#1|)) (-15 -2875 ((-3 |#1| "failed") |#1|)) (-15 -1950 ((-112))) (-15 -4013 ((-112))) (-15 -2680 ((-112))) (-15 -3196 ((-112))) (-15 -1907 ((-112))) (-15 -2601 ((-112))) (-15 -1764 ((-112))) (-15 -3832 ((-112))) (-15 -1763 ((-112))) (-15 -1830 ((-112))) (-15 -4363 ((-112))) (-15 -2433 ((-112))) (-15 -2826 ((-112))) (-15 -3795 ((-112))) (-15 -3595 ((-1182 |#2|) |#1|)) (-15 -1542 ((-1182 |#2|) |#1|)) (-15 -3919 ((-695 |#2|) (-1277 |#1|))) (-15 -3267 ((-695 |#2|) (-1277 |#1|))) (-15 -1684 (|#2| (-1277 |#1|))) (-15 -2374 (|#2| (-1277 |#1|))) (-15 -3243 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -3637 (|#2| |#1|)) (-15 -3680 (|#2| |#1|)) (-15 -3677 (|#2| |#1|)) (-15 -2339 (|#2| |#1|)) (-15 -1666 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1738 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -4299 ((-1277 (-695 |#2|)) (-1277 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3128 (((-3 $ "failed")) 42 (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) 20)) (-4299 (((-1277 (-695 |#1|)) (-1277 $)) 83)) (-4221 (((-1277 $)) 86)) (-1705 (($) 18 T CONST)) (-2983 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) 45 (|has| |#1| (-562)))) (-2476 (((-3 $ "failed")) 43 (|has| |#1| (-562)))) (-3919 (((-695 |#1|) (-1277 $)) 70)) (-3677 ((|#1| $) 79)) (-1666 (((-695 |#1|) $ (-1277 $)) 81)) (-2054 (((-3 $ "failed") $) 50 (|has| |#1| (-562)))) (-2705 (($ $ (-928)) 31)) (-3637 ((|#1| $) 77)) (-2036 (((-1182 |#1|) $) 47 (|has| |#1| (-562)))) (-1684 ((|#1| (-1277 $)) 72)) (-3595 (((-1182 |#1|) $) 68)) (-1763 (((-112)) 62)) (-3243 (($ (-1277 |#1|) (-1277 $)) 74)) (-2875 (((-3 $ "failed") $) 52 (|has| |#1| (-562)))) (-4006 (((-928)) 85)) (-4034 (((-112)) 59)) (-2604 (($ $ (-928)) 38)) (-2680 (((-112)) 55)) (-1950 (((-112)) 53)) (-1907 (((-112)) 57)) (-2615 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) 46 (|has| |#1| (-562)))) (-3089 (((-3 $ "failed")) 44 (|has| |#1| (-562)))) (-3267 (((-695 |#1|) (-1277 $)) 71)) (-2339 ((|#1| $) 80)) (-1738 (((-695 |#1|) $ (-1277 $)) 82)) (-3259 (((-3 $ "failed") $) 51 (|has| |#1| (-562)))) (-1575 (($ $ (-928)) 32)) (-3680 ((|#1| $) 78)) (-2018 (((-1182 |#1|) $) 48 (|has| |#1| (-562)))) (-2374 ((|#1| (-1277 $)) 73)) (-1542 (((-1182 |#1|) $) 69)) (-1830 (((-112)) 63)) (-1988 (((-1168) $) 10)) (-4013 (((-112)) 54)) (-3196 (((-112)) 56)) (-2601 (((-112)) 58)) (-3577 (((-1129) $) 11)) (-3832 (((-112)) 61)) (-3424 (((-1277 |#1|) $ (-1277 $)) 76) (((-695 |#1|) (-1277 $) (-1277 $)) 75)) (-1987 (((-650 (-959 |#1|)) (-1277 $)) 84)) (-4391 (($ $ $) 28)) (-3795 (((-112)) 67)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3871 (((-650 (-1277 |#1|))) 49 (|has| |#1| (-562)))) (-3764 (($ $ $ $) 29)) (-2433 (((-112)) 65)) (-3858 (($ $ $) 27)) (-2826 (((-112)) 66)) (-4363 (((-112)) 64)) (-1764 (((-112)) 60)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-2560 (((-112) $ $) NIL)) (-2771 ((|#1| $ |#1|) 31)) (-2960 (($ $ (-1168)) 23)) (-3071 (((-3 |#1| "failed") $) 30)) (-2582 ((|#1| $) 28)) (-1765 (($ (-394)) 22) (($ (-394) (-1168)) 21)) (-3602 (((-394) $) 25)) (-3989 (((-1168) $) NIL)) (-3499 (((-1168) $) 26)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 20)) (-3443 (($ $) 24)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 19)))
+(((-370 |#1|) (-13 (-369 (-394) |#1|) (-10 -8 (-15 -3071 ((-3 |#1| "failed") $)))) (-1109)) (T -370))
+((-3071 (*1 *2 *1) (|partial| -12 (-5 *1 (-370 *2)) (-4 *2 (-1109)))))
+(-13 (-369 (-394) |#1|) (-10 -8 (-15 -3071 ((-3 |#1| "failed") $))))
+((-1896 (((-1277 (-695 |#2|)) (-1277 $)) 67)) (-2491 (((-695 |#2|) (-1277 $)) 139)) (-3850 ((|#2| $) 36)) (-3993 (((-695 |#2|) $ (-1277 $)) 142)) (-3498 (((-3 $ "failed") $) 89)) (-1563 ((|#2| $) 39)) (-3286 (((-1182 |#2|) $) 98)) (-4154 ((|#2| (-1277 $)) 122)) (-2476 (((-1182 |#2|) $) 32)) (-2546 (((-112)) 116)) (-2322 (($ (-1277 |#2|) (-1277 $)) 132)) (-1929 (((-3 $ "failed") $) 93)) (-3772 (((-112)) 111)) (-1745 (((-112)) 106)) (-4407 (((-112)) 58)) (-2553 (((-695 |#2|) (-1277 $)) 137)) (-3412 ((|#2| $) 35)) (-3524 (((-695 |#2|) $ (-1277 $)) 141)) (-2480 (((-3 $ "failed") $) 87)) (-3879 ((|#2| $) 38)) (-4292 (((-1182 |#2|) $) 97)) (-3775 ((|#2| (-1277 $)) 120)) (-2170 (((-1182 |#2|) $) 30)) (-3100 (((-112)) 115)) (-4015 (((-112)) 108)) (-3058 (((-112)) 56)) (-4203 (((-112)) 103)) (-2876 (((-112)) 117)) (-3314 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) 128)) (-3762 (((-112)) 113)) (-3203 (((-650 (-1277 |#2|))) 102)) (-3169 (((-112)) 114)) (-1352 (((-112)) 112)) (-4298 (((-112)) 51)) (-2557 (((-112)) 118)))
+(((-371 |#1| |#2|) (-10 -8 (-15 -3286 ((-1182 |#2|) |#1|)) (-15 -4292 ((-1182 |#2|) |#1|)) (-15 -3203 ((-650 (-1277 |#2|)))) (-15 -3498 ((-3 |#1| "failed") |#1|)) (-15 -2480 ((-3 |#1| "failed") |#1|)) (-15 -1929 ((-3 |#1| "failed") |#1|)) (-15 -1745 ((-112))) (-15 -4015 ((-112))) (-15 -3772 ((-112))) (-15 -3058 ((-112))) (-15 -4407 ((-112))) (-15 -4203 ((-112))) (-15 -2557 ((-112))) (-15 -2876 ((-112))) (-15 -2546 ((-112))) (-15 -3100 ((-112))) (-15 -4298 ((-112))) (-15 -3169 ((-112))) (-15 -1352 ((-112))) (-15 -3762 ((-112))) (-15 -2476 ((-1182 |#2|) |#1|)) (-15 -2170 ((-1182 |#2|) |#1|)) (-15 -2491 ((-695 |#2|) (-1277 |#1|))) (-15 -2553 ((-695 |#2|) (-1277 |#1|))) (-15 -4154 (|#2| (-1277 |#1|))) (-15 -3775 (|#2| (-1277 |#1|))) (-15 -2322 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -1563 (|#2| |#1|)) (-15 -3879 (|#2| |#1|)) (-15 -3850 (|#2| |#1|)) (-15 -3412 (|#2| |#1|)) (-15 -3993 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -3524 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1896 ((-1277 (-695 |#2|)) (-1277 |#1|)))) (-372 |#2|) (-174)) (T -371))
+((-3762 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-1352 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3169 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4298 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3100 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2546 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2876 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-2557 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4203 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-4407 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3058 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3772 (*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)))) (-1745 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))) (-3203 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-650 (-1277 *4))) (-5 *1 (-371 *3 *4)) (-4 *3 (-372 *4)))))
+(-10 -8 (-15 -3286 ((-1182 |#2|) |#1|)) (-15 -4292 ((-1182 |#2|) |#1|)) (-15 -3203 ((-650 (-1277 |#2|)))) (-15 -3498 ((-3 |#1| "failed") |#1|)) (-15 -2480 ((-3 |#1| "failed") |#1|)) (-15 -1929 ((-3 |#1| "failed") |#1|)) (-15 -1745 ((-112))) (-15 -4015 ((-112))) (-15 -3772 ((-112))) (-15 -3058 ((-112))) (-15 -4407 ((-112))) (-15 -4203 ((-112))) (-15 -2557 ((-112))) (-15 -2876 ((-112))) (-15 -2546 ((-112))) (-15 -3100 ((-112))) (-15 -4298 ((-112))) (-15 -3169 ((-112))) (-15 -1352 ((-112))) (-15 -3762 ((-112))) (-15 -2476 ((-1182 |#2|) |#1|)) (-15 -2170 ((-1182 |#2|) |#1|)) (-15 -2491 ((-695 |#2|) (-1277 |#1|))) (-15 -2553 ((-695 |#2|) (-1277 |#1|))) (-15 -4154 (|#2| (-1277 |#1|))) (-15 -3775 (|#2| (-1277 |#1|))) (-15 -2322 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -1563 (|#2| |#1|)) (-15 -3879 (|#2| |#1|)) (-15 -3850 (|#2| |#1|)) (-15 -3412 (|#2| |#1|)) (-15 -3993 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -3524 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1896 ((-1277 (-695 |#2|)) (-1277 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3635 (((-3 $ "failed")) 42 (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) 20)) (-1896 (((-1277 (-695 |#1|)) (-1277 $)) 83)) (-2403 (((-1277 $)) 86)) (-3195 (($) 18 T CONST)) (-1587 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) 45 (|has| |#1| (-562)))) (-2434 (((-3 $ "failed")) 43 (|has| |#1| (-562)))) (-2491 (((-695 |#1|) (-1277 $)) 70)) (-3850 ((|#1| $) 79)) (-3993 (((-695 |#1|) $ (-1277 $)) 81)) (-3498 (((-3 $ "failed") $) 50 (|has| |#1| (-562)))) (-2827 (($ $ (-928)) 31)) (-1563 ((|#1| $) 77)) (-3286 (((-1182 |#1|) $) 47 (|has| |#1| (-562)))) (-4154 ((|#1| (-1277 $)) 72)) (-2476 (((-1182 |#1|) $) 68)) (-2546 (((-112)) 62)) (-2322 (($ (-1277 |#1|) (-1277 $)) 74)) (-1929 (((-3 $ "failed") $) 52 (|has| |#1| (-562)))) (-4009 (((-928)) 85)) (-4211 (((-112)) 59)) (-4234 (($ $ (-928)) 38)) (-3772 (((-112)) 55)) (-1745 (((-112)) 53)) (-4407 (((-112)) 57)) (-4329 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) 46 (|has| |#1| (-562)))) (-3269 (((-3 $ "failed")) 44 (|has| |#1| (-562)))) (-2553 (((-695 |#1|) (-1277 $)) 71)) (-3412 ((|#1| $) 80)) (-3524 (((-695 |#1|) $ (-1277 $)) 82)) (-2480 (((-3 $ "failed") $) 51 (|has| |#1| (-562)))) (-4311 (($ $ (-928)) 32)) (-3879 ((|#1| $) 78)) (-4292 (((-1182 |#1|) $) 48 (|has| |#1| (-562)))) (-3775 ((|#1| (-1277 $)) 73)) (-2170 (((-1182 |#1|) $) 69)) (-3100 (((-112)) 63)) (-3989 (((-1168) $) 10)) (-4015 (((-112)) 54)) (-3058 (((-112)) 56)) (-4203 (((-112)) 58)) (-3580 (((-1129) $) 11)) (-2876 (((-112)) 61)) (-3314 (((-1277 |#1|) $ (-1277 $)) 76) (((-695 |#1|) (-1277 $) (-1277 $)) 75)) (-3978 (((-650 (-959 |#1|)) (-1277 $)) 84)) (-3381 (($ $ $) 28)) (-3762 (((-112)) 67)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3203 (((-650 (-1277 |#1|))) 49 (|has| |#1| (-562)))) (-3468 (($ $ $ $) 29)) (-3169 (((-112)) 65)) (-3107 (($ $ $) 27)) (-1352 (((-112)) 66)) (-4298 (((-112)) 64)) (-2557 (((-112)) 60)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-372 |#1|) (-141) (-174)) (T -372))
-((-4221 (*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-372 *3)))) (-4006 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-928)))) (-1987 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))))) (-4299 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-1277 (-695 *4))))) (-1738 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-1666 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2339 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3677 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3680 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3637 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3424 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-1277 *4)))) (-3424 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-3243 (*1 *1 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1277 *1)) (-4 *4 (-174)) (-4 *1 (-372 *4)))) (-2374 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-1684 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3267 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-3919 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-1542 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))) (-3595 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))) (-3795 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2826 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2433 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4363 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1830 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1763 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3832 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1764 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4034 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2601 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1907 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3196 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2680 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4013 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1950 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2875 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-3259 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-2054 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-3871 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-650 (-1277 *3))))) (-2018 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-1182 *3)))) (-2036 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-1182 *3)))) (-2615 (*1 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-5 *2 (-2 (|:| |particular| *1) (|:| -1972 (-650 *1)))) (-4 *1 (-372 *3)))) (-2983 (*1 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-5 *2 (-2 (|:| |particular| *1) (|:| -1972 (-650 *1)))) (-4 *1 (-372 *3)))) (-3089 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))) (-2476 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))) (-3128 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
-(-13 (-750 |t#1|) (-10 -8 (-15 -4221 ((-1277 $))) (-15 -4006 ((-928))) (-15 -1987 ((-650 (-959 |t#1|)) (-1277 $))) (-15 -4299 ((-1277 (-695 |t#1|)) (-1277 $))) (-15 -1738 ((-695 |t#1|) $ (-1277 $))) (-15 -1666 ((-695 |t#1|) $ (-1277 $))) (-15 -2339 (|t#1| $)) (-15 -3677 (|t#1| $)) (-15 -3680 (|t#1| $)) (-15 -3637 (|t#1| $)) (-15 -3424 ((-1277 |t#1|) $ (-1277 $))) (-15 -3424 ((-695 |t#1|) (-1277 $) (-1277 $))) (-15 -3243 ($ (-1277 |t#1|) (-1277 $))) (-15 -2374 (|t#1| (-1277 $))) (-15 -1684 (|t#1| (-1277 $))) (-15 -3267 ((-695 |t#1|) (-1277 $))) (-15 -3919 ((-695 |t#1|) (-1277 $))) (-15 -1542 ((-1182 |t#1|) $)) (-15 -3595 ((-1182 |t#1|) $)) (-15 -3795 ((-112))) (-15 -2826 ((-112))) (-15 -2433 ((-112))) (-15 -4363 ((-112))) (-15 -1830 ((-112))) (-15 -1763 ((-112))) (-15 -3832 ((-112))) (-15 -1764 ((-112))) (-15 -4034 ((-112))) (-15 -2601 ((-112))) (-15 -1907 ((-112))) (-15 -3196 ((-112))) (-15 -2680 ((-112))) (-15 -4013 ((-112))) (-15 -1950 ((-112))) (IF (|has| |t#1| (-562)) (PROGN (-15 -2875 ((-3 $ "failed") $)) (-15 -3259 ((-3 $ "failed") $)) (-15 -2054 ((-3 $ "failed") $)) (-15 -3871 ((-650 (-1277 |t#1|)))) (-15 -2018 ((-1182 |t#1|) $)) (-15 -2036 ((-1182 |t#1|) $)) (-15 -2615 ((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed"))) (-15 -2983 ((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed"))) (-15 -3089 ((-3 $ "failed"))) (-15 -2476 ((-3 $ "failed"))) (-15 -3128 ((-3 $ "failed"))) (-6 -4446)) |%noBranch|)))
+((-2403 (*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-372 *3)))) (-4009 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-928)))) (-3978 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))))) (-1896 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-1277 (-695 *4))))) (-3524 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-3993 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-3412 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3850 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3879 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-1563 (*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-3314 (*1 *2 *1 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-1277 *4)))) (-3314 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2322 (*1 *1 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1277 *1)) (-4 *4 (-174)) (-4 *1 (-372 *4)))) (-3775 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-4154 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *2)) (-4 *2 (-174)))) (-2553 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2491 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-372 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-2170 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))) (-2476 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))) (-3762 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1352 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3169 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4298 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3100 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2546 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2876 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-2557 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4211 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4203 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-4407 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3058 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-3772 (*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)))) (-1745 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))) (-1929 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-2480 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-3498 (*1 *1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562)))) (-3203 (*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-650 (-1277 *3))))) (-4292 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-1182 *3)))) (-3286 (*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562)) (-5 *2 (-1182 *3)))) (-4329 (*1 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-5 *2 (-2 (|:| |particular| *1) (|:| -3827 (-650 *1)))) (-4 *1 (-372 *3)))) (-1587 (*1 *2) (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174)) (-5 *2 (-2 (|:| |particular| *1) (|:| -3827 (-650 *1)))) (-4 *1 (-372 *3)))) (-3269 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))) (-2434 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))) (-3635 (*1 *1) (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
+(-13 (-750 |t#1|) (-10 -8 (-15 -2403 ((-1277 $))) (-15 -4009 ((-928))) (-15 -3978 ((-650 (-959 |t#1|)) (-1277 $))) (-15 -1896 ((-1277 (-695 |t#1|)) (-1277 $))) (-15 -3524 ((-695 |t#1|) $ (-1277 $))) (-15 -3993 ((-695 |t#1|) $ (-1277 $))) (-15 -3412 (|t#1| $)) (-15 -3850 (|t#1| $)) (-15 -3879 (|t#1| $)) (-15 -1563 (|t#1| $)) (-15 -3314 ((-1277 |t#1|) $ (-1277 $))) (-15 -3314 ((-695 |t#1|) (-1277 $) (-1277 $))) (-15 -2322 ($ (-1277 |t#1|) (-1277 $))) (-15 -3775 (|t#1| (-1277 $))) (-15 -4154 (|t#1| (-1277 $))) (-15 -2553 ((-695 |t#1|) (-1277 $))) (-15 -2491 ((-695 |t#1|) (-1277 $))) (-15 -2170 ((-1182 |t#1|) $)) (-15 -2476 ((-1182 |t#1|) $)) (-15 -3762 ((-112))) (-15 -1352 ((-112))) (-15 -3169 ((-112))) (-15 -4298 ((-112))) (-15 -3100 ((-112))) (-15 -2546 ((-112))) (-15 -2876 ((-112))) (-15 -2557 ((-112))) (-15 -4211 ((-112))) (-15 -4203 ((-112))) (-15 -4407 ((-112))) (-15 -3058 ((-112))) (-15 -3772 ((-112))) (-15 -4015 ((-112))) (-15 -1745 ((-112))) (IF (|has| |t#1| (-562)) (PROGN (-15 -1929 ((-3 $ "failed") $)) (-15 -2480 ((-3 $ "failed") $)) (-15 -3498 ((-3 $ "failed") $)) (-15 -3203 ((-650 (-1277 |t#1|)))) (-15 -4292 ((-1182 |t#1|) $)) (-15 -3286 ((-1182 |t#1|) $)) (-15 -4329 ((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed"))) (-15 -1587 ((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed"))) (-15 -3269 ((-3 $ "failed"))) (-15 -2434 ((-3 $ "failed"))) (-15 -3635 ((-3 $ "failed"))) (-6 -4449)) |%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))
-((-2558 (((-112) $ $) 7)) (-3510 (((-777)) 17)) (-3446 (($) 14)) (-1884 (((-928) $) 15)) (-1988 (((-1168) $) 10)) (-2268 (($ (-928)) 16)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) 7)) (-3513 (((-777)) 17)) (-3449 (($) 14)) (-2400 (((-928) $) 15)) (-3989 (((-1168) $) 10)) (-2267 (($ (-928)) 16)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-373) (-141)) (T -373))
-((-3510 (*1 *2) (-12 (-4 *1 (-373)) (-5 *2 (-777)))) (-2268 (*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-373)))) (-1884 (*1 *2 *1) (-12 (-4 *1 (-373)) (-5 *2 (-928)))) (-3446 (*1 *1) (-4 *1 (-373))))
-(-13 (-1109) (-10 -8 (-15 -3510 ((-777))) (-15 -2268 ($ (-928))) (-15 -1884 ((-928) $)) (-15 -3446 ($))))
+((-3513 (*1 *2) (-12 (-4 *1 (-373)) (-5 *2 (-777)))) (-2267 (*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-373)))) (-2400 (*1 *2 *1) (-12 (-4 *1 (-373)) (-5 *2 (-928)))) (-3449 (*1 *1) (-4 *1 (-373))))
+(-13 (-1109) (-10 -8 (-15 -3513 ((-777))) (-15 -2267 ($ (-928))) (-15 -2400 ((-928) $)) (-15 -3449 ($))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-1806 (((-695 |#2|) (-1277 $)) 45)) (-3243 (($ (-1277 |#2|) (-1277 $)) 39)) (-2818 (((-695 |#2|) $ (-1277 $)) 47)) (-3570 ((|#2| (-1277 $)) 13)) (-3424 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) 27)))
-(((-374 |#1| |#2| |#3|) (-10 -8 (-15 -1806 ((-695 |#2|) (-1277 |#1|))) (-15 -3570 (|#2| (-1277 |#1|))) (-15 -3243 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2818 ((-695 |#2|) |#1| (-1277 |#1|)))) (-375 |#2| |#3|) (-174) (-1253 |#2|)) (T -374))
+((-2913 (((-695 |#2|) (-1277 $)) 45)) (-2322 (($ (-1277 |#2|) (-1277 $)) 39)) (-2595 (((-695 |#2|) $ (-1277 $)) 47)) (-2265 ((|#2| (-1277 $)) 13)) (-3314 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) 27)))
+(((-374 |#1| |#2| |#3|) (-10 -8 (-15 -2913 ((-695 |#2|) (-1277 |#1|))) (-15 -2265 (|#2| (-1277 |#1|))) (-15 -2322 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2595 ((-695 |#2|) |#1| (-1277 |#1|)))) (-375 |#2| |#3|) (-174) (-1253 |#2|)) (T -374))
NIL
-(-10 -8 (-15 -1806 ((-695 |#2|) (-1277 |#1|))) (-15 -3570 (|#2| (-1277 |#1|))) (-15 -3243 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2818 ((-695 |#2|) |#1| (-1277 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1806 (((-695 |#1|) (-1277 $)) 53)) (-3207 ((|#1| $) 59)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-3243 (($ (-1277 |#1|) (-1277 $)) 55)) (-2818 (((-695 |#1|) $ (-1277 $)) 60)) (-2875 (((-3 $ "failed") $) 37)) (-4006 (((-928)) 61)) (-4346 (((-112) $) 35)) (-2959 ((|#1| $) 58)) (-3521 ((|#2| $) 51 (|has| |#1| (-368)))) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3570 ((|#1| (-1277 $)) 54)) (-3424 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-3532 (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3553 ((|#2| $) 52)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+(-10 -8 (-15 -2913 ((-695 |#2|) (-1277 |#1|))) (-15 -2265 (|#2| (-1277 |#1|))) (-15 -2322 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2595 ((-695 |#2|) |#1| (-1277 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-2913 (((-695 |#1|) (-1277 $)) 53)) (-3211 ((|#1| $) 59)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-2322 (($ (-1277 |#1|) (-1277 $)) 55)) (-2595 (((-695 |#1|) $ (-1277 $)) 60)) (-1929 (((-3 $ "failed") $) 37)) (-4009 (((-928)) 61)) (-4139 (((-112) $) 35)) (-4399 ((|#1| $) 58)) (-3043 ((|#2| $) 51 (|has| |#1| (-368)))) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2265 ((|#1| (-1277 $)) 54)) (-3314 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-3132 (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-2124 ((|#2| $) 52)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-4006 (*1 *2) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-928)))) (-2818 (*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)))) (-3207 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-2959 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-3424 (*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)))) (-3424 (*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)))) (-3243 (*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)))) (-3570 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *2 *4)) (-4 *4 (-1253 *2)) (-4 *2 (-174)))) (-1806 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)))) (-3553 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-3521 (*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 -4006 ((-928))) (-15 -2818 ((-695 |t#1|) $ (-1277 $))) (-15 -3207 (|t#1| $)) (-15 -2959 (|t#1| $)) (-15 -3424 ((-1277 |t#1|) $ (-1277 $))) (-15 -3424 ((-695 |t#1|) (-1277 $) (-1277 $))) (-15 -3243 ($ (-1277 |t#1|) (-1277 $))) (-15 -3570 (|t#1| (-1277 $))) (-15 -1806 ((-695 |t#1|) (-1277 $))) (-15 -3553 (|t#2| $)) (IF (|has| |t#1| (-368)) (-15 -3521 (|t#2| $)) |%noBranch|) (IF (|has| |t#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |t#1| (-146)) (-6 (-146)) |%noBranch|)))
+((-4009 (*1 *2) (-12 (-4 *1 (-375 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-928)))) (-2595 (*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)))) (-3211 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-4399 (*1 *2 *1) (-12 (-4 *1 (-375 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-3314 (*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)))) (-3314 (*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)))) (-2322 (*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)))) (-2265 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *2 *4)) (-4 *4 (-1253 *2)) (-4 *2 (-174)))) (-2913 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)))) (-2124 (*1 *2 *1) (-12 (-4 *1 (-375 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-3043 (*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 -4009 ((-928))) (-15 -2595 ((-695 |t#1|) $ (-1277 $))) (-15 -3211 (|t#1| $)) (-15 -4399 (|t#1| $)) (-15 -3314 ((-1277 |t#1|) $ (-1277 $))) (-15 -3314 ((-695 |t#1|) (-1277 $) (-1277 $))) (-15 -2322 ($ (-1277 |t#1|) (-1277 $))) (-15 -2265 (|t#1| (-1277 $))) (-15 -2913 ((-695 |t#1|) (-1277 $))) (-15 -2124 (|t#2| $)) (IF (|has| |t#1| (-368)) (-15 -3043 (|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))
-((-3482 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 25)) (-3624 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 17)) (-1356 ((|#4| (-1 |#3| |#1|) |#2|) 23)))
-(((-376 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3624 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3482 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1227) (-378 |#1|) (-1227) (-378 |#3|)) (T -376))
-((-3482 (*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)))) (-3624 (*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)))) (-1356 (*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 -1356 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3624 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3482 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-4374 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-4004 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-3393 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-2377 (($ $) 25)) (-4027 (((-570) (-1 (-112) |#2|) $) NIL) (((-570) |#2| $) 11) (((-570) |#2| $ (-570)) NIL)) (-2024 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
-(((-377 |#1| |#2|) (-10 -8 (-15 -4004 (|#1| |#1|)) (-15 -4004 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4374 ((-112) |#1|)) (-15 -3393 (|#1| |#1|)) (-15 -2024 (|#1| |#1| |#1|)) (-15 -4027 ((-570) |#2| |#1| (-570))) (-15 -4027 ((-570) |#2| |#1|)) (-15 -4027 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4374 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3393 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2377 (|#1| |#1|)) (-15 -2024 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-378 |#2|) (-1227)) (T -377))
-NIL
-(-10 -8 (-15 -4004 (|#1| |#1|)) (-15 -4004 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4374 ((-112) |#1|)) (-15 -3393 (|#1| |#1|)) (-15 -2024 (|#1| |#1| |#1|)) (-15 -4027 ((-570) |#2| |#1| (-570))) (-15 -4027 ((-570) |#2| |#1|)) (-15 -4027 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4374 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3393 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2377 (|#1| |#1|)) (-15 -2024 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-2844 (($ $) 91 (|has| $ (-6 -4450)))) (-2377 (($ $) 101)) (-3579 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 52)) (-4027 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-4291 (($ (-777) |#1|) 70)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-3466 (($ $ $) 88 (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-2800 (($ $ $) 87 (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 43 (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2147 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4326 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2906 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 71)) (-2584 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) 85 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 84 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3062 (((-112) $ $) 86 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2677 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 25)) (-3627 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 17)) (-1357 ((|#4| (-1 |#3| |#1|) |#2|) 23)))
+(((-376 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3627 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2677 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1227) (-378 |#1|) (-1227) (-378 |#3|)) (T -376))
+((-2677 (*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)))) (-3627 (*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)))) (-1357 (*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 -1357 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3627 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2677 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-4414 (((-112) (-1 (-112) |#2| |#2|) $) NIL) (((-112) $) 18)) (-3936 (($ (-1 (-112) |#2| |#2|) $) NIL) (($ $) 28)) (-3396 (($ (-1 (-112) |#2| |#2|) $) 27) (($ $) 22)) (-2380 (($ $) 25)) (-4029 (((-570) (-1 (-112) |#2|) $) NIL) (((-570) |#2| $) 11) (((-570) |#2| $ (-570)) NIL)) (-3183 (($ (-1 (-112) |#2| |#2|) $ $) NIL) (($ $ $) 20)))
+(((-377 |#1| |#2|) (-10 -8 (-15 -3936 (|#1| |#1|)) (-15 -3936 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4414 ((-112) |#1|)) (-15 -3396 (|#1| |#1|)) (-15 -3183 (|#1| |#1| |#1|)) (-15 -4029 ((-570) |#2| |#1| (-570))) (-15 -4029 ((-570) |#2| |#1|)) (-15 -4029 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4414 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3396 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2380 (|#1| |#1|)) (-15 -3183 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|))) (-378 |#2|) (-1227)) (T -377))
+NIL
+(-10 -8 (-15 -3936 (|#1| |#1|)) (-15 -3936 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4414 ((-112) |#1|)) (-15 -3396 (|#1| |#1|)) (-15 -3183 (|#1| |#1| |#1|)) (-15 -4029 ((-570) |#2| |#1| (-570))) (-15 -4029 ((-570) |#2| |#1|)) (-15 -4029 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4414 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -3396 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -2380 (|#1| |#1|)) (-15 -3183 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4453))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4453))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-1582 (($ $) 91 (|has| $ (-6 -4453)))) (-2380 (($ $) 101)) (-3582 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 52)) (-4029 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-4294 (($ (-777) |#1|) 70)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-3469 (($ $ $) 88 (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-2472 (($ $ $) 87 (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 43 (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2061 (($ $ |#1|) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4330 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2087 (($ $ $ (-570)) 92 (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 71)) (-2585 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) 85 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 84 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3065 (((-112) $ $) 86 (|has| |#1| (-856)))) (-3045 (((-112) $ $) 83 (|has| |#1| (-856)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-378 |#1|) (-141) (-1227)) (T -378))
-((-2024 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-2377 (*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)))) (-3393 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-4374 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-378 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-4027 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-378 *4)) (-4 *4 (-1227)) (-5 *2 (-570)))) (-4027 (*1 *2 *3 *1) (-12 (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-570)))) (-4027 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)))) (-2024 (*1 *1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))) (-3393 (*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))) (-4374 (*1 *2 *1) (-12 (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-856)) (-5 *2 (-112)))) (-2906 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (|has| *1 (-6 -4450)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-2844 (*1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-378 *2)) (-4 *2 (-1227)))) (-4004 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4450)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-4004 (*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 -2024 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2377 ($ $)) (-15 -3393 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -4374 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -4027 ((-570) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -4027 ((-570) |t#1| $)) (-15 -4027 ((-570) |t#1| $ (-570)))) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-6 (-856)) (-15 -2024 ($ $ $)) (-15 -3393 ($ $)) (-15 -4374 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4450)) (PROGN (-15 -2906 ($ $ $ (-570))) (-15 -2844 ($ $)) (-15 -4004 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-856)) (-15 -4004 ($ $)) |%noBranch|)) |%noBranch|)))
-(((-34) . T) ((-102) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2892 (|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) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3179 (((-650 |#1|) $) 37)) (-4065 (($ $ (-777)) 38)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1745 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 41)) (-3264 (($ $) 39)) (-1761 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 42)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-1770 (($ $ |#1| $) 36) (($ $ (-650 |#1|) (-650 $)) 35)) (-2130 (((-777) $) 43)) (-3811 (($ $ $) 34)) (-3799 (((-868) $) 12) (($ |#1|) 46) (((-1292 |#1| |#2|) $) 45) (((-1301 |#1| |#2|) $) 44)) (-1452 ((|#2| (-1301 |#1| |#2|) $) 47)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1611 (($ (-678 |#1|)) 40)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#2|) 33 (|has| |#2| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#2| $) 27) (($ $ |#2|) 31)))
+((-3183 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-2380 (*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)))) (-3396 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-4414 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *1 (-378 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-4029 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (-4 *1 (-378 *4)) (-4 *4 (-1227)) (-5 *2 (-570)))) (-4029 (*1 *2 *3 *1) (-12 (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-570)))) (-4029 (*1 *2 *3 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)))) (-3183 (*1 *1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))) (-3396 (*1 *1 *1) (-12 (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))) (-4414 (*1 *2 *1) (-12 (-4 *1 (-378 *3)) (-4 *3 (-1227)) (-4 *3 (-856)) (-5 *2 (-112)))) (-2087 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (|has| *1 (-6 -4453)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-1582 (*1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-378 *2)) (-4 *2 (-1227)))) (-3936 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4453)) (-4 *1 (-378 *3)) (-4 *3 (-1227)))) (-3936 (*1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-378 *2)) (-4 *2 (-1227)) (-4 *2 (-856)))))
+(-13 (-657 |t#1|) (-10 -8 (-6 -4452) (-15 -3183 ($ (-1 (-112) |t#1| |t#1|) $ $)) (-15 -2380 ($ $)) (-15 -3396 ($ (-1 (-112) |t#1| |t#1|) $)) (-15 -4414 ((-112) (-1 (-112) |t#1| |t#1|) $)) (-15 -4029 ((-570) (-1 (-112) |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -4029 ((-570) |t#1| $)) (-15 -4029 ((-570) |t#1| $ (-570)))) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-6 (-856)) (-15 -3183 ($ $ $)) (-15 -3396 ($ $)) (-15 -4414 ((-112) $))) |%noBranch|) (IF (|has| $ (-6 -4453)) (PROGN (-15 -2087 ($ $ $ (-570))) (-15 -1582 ($ $)) (-15 -3936 ($ (-1 (-112) |t#1| |t#1|) $)) (IF (|has| |t#1| (-856)) (-15 -3936 ($ $)) |%noBranch|)) |%noBranch|)))
+(((-34) . T) ((-102) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2895 (|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) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3182 (((-650 |#1|) $) 37)) (-3327 (($ $ (-777)) 38)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3571 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 41)) (-2523 (($ $) 39)) (-3712 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 42)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-1771 (($ $ |#1| $) 36) (($ $ (-650 |#1|) (-650 $)) 35)) (-3079 (((-777) $) 43)) (-3814 (($ $ $) 34)) (-3802 (((-868) $) 12) (($ |#1|) 46) (((-1292 |#1| |#2|) $) 45) (((-1301 |#1| |#2|) $) 44)) (-1453 ((|#2| (-1301 |#1| |#2|) $) 47)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1581 (($ (-678 |#1|)) 40)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#2|) 33 (|has| |#2| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#2| $) 27) (($ $ |#2|) 31)))
(((-379 |#1| |#2|) (-141) (-856) (-174)) (T -379))
-((-1452 (*1 *2 *3 *1) (-12 (-5 *3 (-1301 *4 *2)) (-4 *1 (-379 *4 *2)) (-4 *4 (-856)) (-4 *2 (-174)))) (-3799 (*1 *1 *2) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3799 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-1292 *3 *4)))) (-3799 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-1301 *3 *4)))) (-2130 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-777)))) (-1761 (*1 *2 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-1745 (*1 *2 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-1611 (*1 *1 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-4 *1 (-379 *3 *4)) (-4 *4 (-174)))) (-3264 (*1 *1 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-4065 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3179 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-650 *3)))) (-1770 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-1770 (*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 -1452 (|t#2| (-1301 |t#1| |t#2|) $)) (-15 -3799 ($ |t#1|)) (-15 -3799 ((-1292 |t#1| |t#2|) $)) (-15 -3799 ((-1301 |t#1| |t#2|) $)) (-15 -2130 ((-777) $)) (-15 -1761 ((-1301 |t#1| |t#2|) (-1301 |t#1| |t#2|) $)) (-15 -1745 ((-1301 |t#1| |t#2|) (-1301 |t#1| |t#2|) $)) (-15 -1611 ($ (-678 |t#1|))) (-15 -3264 ($ $)) (-15 -4065 ($ $ (-777))) (-15 -3179 ((-650 |t#1|) $)) (-15 -1770 ($ $ |t#1| $)) (-15 -1770 ($ $ (-650 |t#1|) (-650 $)))))
+((-1453 (*1 *2 *3 *1) (-12 (-5 *3 (-1301 *4 *2)) (-4 *1 (-379 *4 *2)) (-4 *4 (-856)) (-4 *2 (-174)))) (-3802 (*1 *1 *2) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3802 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-1292 *3 *4)))) (-3802 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-1301 *3 *4)))) (-3079 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-777)))) (-3712 (*1 *2 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3571 (*1 *2 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-1581 (*1 *1 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-4 *1 (-379 *3 *4)) (-4 *4 (-174)))) (-2523 (*1 *1 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3327 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3182 (*1 *2 *1) (-12 (-4 *1 (-379 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *2 (-650 *3)))) (-1771 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174)))) (-1771 (*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 -1453 (|t#2| (-1301 |t#1| |t#2|) $)) (-15 -3802 ($ |t#1|)) (-15 -3802 ((-1292 |t#1| |t#2|) $)) (-15 -3802 ((-1301 |t#1| |t#2|) $)) (-15 -3079 ((-777) $)) (-15 -3712 ((-1301 |t#1| |t#2|) (-1301 |t#1| |t#2|) $)) (-15 -3571 ((-1301 |t#1| |t#2|) (-1301 |t#1| |t#2|) $)) (-15 -1581 ($ (-678 |t#1|))) (-15 -2523 ($ $)) (-15 -3327 ($ $ (-777))) (-15 -3182 ((-650 |t#1|) $)) (-15 -1771 ($ $ |t#1| $)) (-15 -1771 ($ $ (-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))
-((-1994 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 40)) (-1856 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-1748 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 33)))
-(((-380 |#1| |#2|) (-10 -7 (-15 -1856 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1748 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1994 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1227) (-13 (-378 |#1|) (-10 -7 (-6 -4450)))) (T -380))
-((-1994 (*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)))))) (-1748 (*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)))))) (-1856 (*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 -1856 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1748 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -1994 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
-((-4196 (((-695 |#2|) (-695 $)) NIL) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 22) (((-695 (-570)) (-695 $)) 14)))
-(((-381 |#1| |#2|) (-10 -8 (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 |#2|) (-695 |#1|)))) (-382 |#2|) (-1058)) (T -381))
-NIL
-(-10 -8 (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 |#2|) (-695 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-4196 (((-695 |#1|) (-695 $)) 40) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 39) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 47 (|has| |#1| (-645 (-570)))) (((-695 (-570)) (-695 $)) 46 (|has| |#1| (-645 (-570))))) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-4046 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 40)) (-2143 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 13)) (-3606 ((|#2| (-1 (-112) |#1| |#1|) |#2|) 33)))
+(((-380 |#1| |#2|) (-10 -7 (-15 -2143 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3606 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -4046 (|#2| (-1 (-112) |#1| |#1|) |#2|))) (-1227) (-13 (-378 |#1|) (-10 -7 (-6 -4453)))) (T -380))
+((-4046 (*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 -4453)))))) (-3606 (*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 -4453)))))) (-2143 (*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 -4453)))))))
+(-10 -7 (-15 -2143 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -3606 (|#2| (-1 (-112) |#1| |#1|) |#2|)) (-15 -4046 (|#2| (-1 (-112) |#1| |#1|) |#2|)))
+((-2179 (((-695 |#2|) (-695 $)) NIL) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 22) (((-695 (-570)) (-695 $)) 14)))
+(((-381 |#1| |#2|) (-10 -8 (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 |#2|) (-695 |#1|)))) (-382 |#2|) (-1058)) (T -381))
+NIL
+(-10 -8 (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 |#2|) (-695 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-2179 (((-695 |#1|) (-695 $)) 40) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 39) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 47 (|has| |#1| (-645 (-570)))) (((-695 (-570)) (-695 $)) 46 (|has| |#1| (-645 (-570))))) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1366 (((-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)) (-3205 (((-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 -1366 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -1366 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|)) (-15 -1366 ((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -1366 ((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3205 ((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3205 ((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|))) (-13 (-368) (-854))) (T -383))
-((-3205 (*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))))) (-3205 (*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))))) (-1366 (*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))))) (-1366 (*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))))) (-1366 (*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))))) (-1366 (*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 -1366 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -1366 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|)) (-15 -1366 ((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -1366 ((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3205 ((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3205 ((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 35)) (-1733 (((-570) $) 62)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1447 (($ $) 136)) (-2887 (($ $) 98)) (-2751 (($ $) 90)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3814 (($ $) 47)) (-3473 (((-112) $ $) NIL)) (-2866 (($ $) 96)) (-2733 (($ $) 85)) (-4395 (((-570) $) 78)) (-3160 (($ $ (-570)) 73)) (-4107 (($ $) NIL)) (-2774 (($ $) NIL)) (-1705 (($) NIL T CONST)) (-1529 (($ $) 138)) (-4380 (((-3 (-570) "failed") $) 231) (((-3 (-413 (-570)) "failed") $) 227)) (-3216 (((-570) $) 229) (((-413 (-570)) $) 225)) (-2506 (($ $ $) NIL)) (-2164 (((-570) $ $) 125)) (-2875 (((-3 $ "failed") $) 141)) (-4151 (((-413 (-570)) $ (-777)) 232) (((-413 (-570)) $ (-777) (-777)) 224)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4152 (((-928)) 121) (((-928) (-928)) 122 (|has| $ (-6 -4440)))) (-3903 (((-112) $) 130)) (-1315 (($) 41)) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-3081 (((-1282) (-777)) 191)) (-1842 (((-1282)) 196) (((-1282) (-777)) 197)) (-3037 (((-1282)) 198) (((-1282) (-777)) 199)) (-2613 (((-1282)) 194) (((-1282) (-777)) 195)) (-4323 (((-570) $) 68)) (-4346 (((-112) $) 40)) (-2923 (($ $ (-570)) NIL)) (-2478 (($ $) 51)) (-2959 (($ $) NIL)) (-1479 (((-112) $) 37)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL) (($) NIL (-12 (-1795 (|has| $ (-6 -4432))) (-1795 (|has| $ (-6 -4440)))))) (-2800 (($ $ $) NIL) (($) NIL (-12 (-1795 (|has| $ (-6 -4432))) (-1795 (|has| $ (-6 -4440)))))) (-3120 (((-570) $) 17)) (-1834 (($) 106) (($ $) 113)) (-1350 (($) 112) (($ $) 114)) (-2789 (($ $) 101)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 143)) (-2280 (((-928) (-570)) 46 (|has| $ (-6 -4440)))) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) 60)) (-3665 (($ $) 135)) (-2693 (($ (-570) (-570)) 131) (($ (-570) (-570) (-928)) 132)) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3357 (((-570) $) 19)) (-4338 (($) 115)) (-4387 (($ $) 95)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2737 (((-928)) 123) (((-928) (-928)) 124 (|has| $ (-6 -4440)))) (-3547 (($ $ (-777)) NIL) (($ $) 142)) (-2904 (((-928) (-570)) 50 (|has| $ (-6 -4440)))) (-4117 (($ $) NIL)) (-2788 (($ $) NIL)) (-2899 (($ $) NIL)) (-2766 (($ $) NIL)) (-2876 (($ $) 97)) (-2740 (($ $) 89)) (-1425 (((-384) $) 216) (((-227) $) 218) (((-899 (-384)) $) NIL) (((-1168) $) 202) (((-542) $) 214) (($ (-227)) 223)) (-3799 (((-868) $) 206) (($ (-570)) 228) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-570)) 228) (($ (-413 (-570))) NIL) (((-227) $) 219)) (-3499 (((-777)) NIL T CONST)) (-1313 (($ $) 137)) (-1660 (((-928)) 61) (((-928) (-928)) 80 (|has| $ (-6 -4440)))) (-2335 (((-112) $ $) NIL)) (-4406 (((-928)) 126)) (-4154 (($ $) 104)) (-2825 (($ $) 49) (($ $ $) 59)) (-2029 (((-112) $ $) NIL)) (-4129 (($ $) 102)) (-2801 (($ $) 39)) (-4176 (($ $) NIL)) (-2845 (($ $) NIL)) (-1578 (($ $) NIL)) (-2855 (($ $) NIL)) (-4163 (($ $) NIL)) (-2835 (($ $) NIL)) (-4140 (($ $) 103)) (-2814 (($ $) 52)) (-2622 (($ $) 58)) (-1861 (($) 36 T CONST)) (-1875 (($) 43 T CONST)) (-2831 (((-1168) $) 27) (((-1168) $ (-112)) 29) (((-1282) (-828) $) 30) (((-1282) (-828) $ (-112)) 31)) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3072 (((-112) $ $) 203)) (-3052 (((-112) $ $) 45)) (-3022 (((-112) $ $) 56)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 57)) (-3122 (($ $ $) 48) (($ $ (-570)) 42)) (-3111 (($ $) 38) (($ $ $) 53)) (-3101 (($ $ $) 72)) (** (($ $ (-928)) 83) (($ $ (-777)) NIL) (($ $ (-570)) 107) (($ $ (-413 (-570))) 154) (($ $ $) 145)) (* (($ (-928) $) 79) (($ (-777) $) NIL) (($ (-570) $) 84) (($ $ $) 71) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
-(((-384) (-13 (-410) (-235) (-620 (-1168)) (-834) (-619 (-227)) (-1212) (-620 (-542)) (-624 (-227)) (-10 -8 (-15 -3122 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2478 ($ $)) (-15 -2164 ((-570) $ $)) (-15 -3160 ($ $ (-570))) (-15 -4151 ((-413 (-570)) $ (-777))) (-15 -4151 ((-413 (-570)) $ (-777) (-777))) (-15 -1834 ($)) (-15 -1350 ($)) (-15 -4338 ($)) (-15 -2825 ($ $ $)) (-15 -1834 ($ $)) (-15 -1350 ($ $)) (-15 -3037 ((-1282))) (-15 -3037 ((-1282) (-777))) (-15 -2613 ((-1282))) (-15 -2613 ((-1282) (-777))) (-15 -1842 ((-1282))) (-15 -1842 ((-1282) (-777))) (-15 -3081 ((-1282) (-777))) (-6 -4440) (-6 -4432)))) (T -384))
-((** (*1 *1 *1 *1) (-5 *1 (-384))) (-3122 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-2478 (*1 *1 *1) (-5 *1 (-384))) (-2164 (*1 *2 *1 *1) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-3160 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-4151 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))) (-4151 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))) (-1834 (*1 *1) (-5 *1 (-384))) (-1350 (*1 *1) (-5 *1 (-384))) (-4338 (*1 *1) (-5 *1 (-384))) (-2825 (*1 *1 *1 *1) (-5 *1 (-384))) (-1834 (*1 *1 *1) (-5 *1 (-384))) (-1350 (*1 *1 *1) (-5 *1 (-384))) (-3037 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-3037 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-2613 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-2613 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-1842 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-1842 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-3081 (*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 -3122 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2478 ($ $)) (-15 -2164 ((-570) $ $)) (-15 -3160 ($ $ (-570))) (-15 -4151 ((-413 (-570)) $ (-777))) (-15 -4151 ((-413 (-570)) $ (-777) (-777))) (-15 -1834 ($)) (-15 -1350 ($)) (-15 -4338 ($)) (-15 -2825 ($ $ $)) (-15 -1834 ($ $)) (-15 -1350 ($ $)) (-15 -3037 ((-1282))) (-15 -3037 ((-1282) (-777))) (-15 -2613 ((-1282))) (-15 -2613 ((-1282) (-777))) (-15 -1842 ((-1282))) (-15 -1842 ((-1282) (-777))) (-15 -3081 ((-1282) (-777))) (-6 -4440) (-6 -4432)))
-((-3476 (((-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)) (-2457 (((-650 |#1|) (-413 (-959 (-570))) |#1|) 20) (((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|) 30)))
-(((-385 |#1|) (-10 -7 (-15 -3476 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|)) (-15 -3476 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|)) (-15 -3476 ((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|)) (-15 -3476 ((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|)) (-15 -2457 ((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|)) (-15 -2457 ((-650 |#1|) (-413 (-959 (-570))) |#1|))) (-13 (-854) (-368))) (T -385))
-((-2457 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-2457 (*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))))) (-3476 (*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))))) (-3476 (*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))))) (-3476 (*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))))) (-3476 (*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 -3476 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|)) (-15 -3476 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|)) (-15 -3476 ((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|)) (-15 -3476 ((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|)) (-15 -2457 ((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|)) (-15 -2457 ((-650 |#1|) (-413 (-959 (-570))) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#2| "failed") $) 30)) (-3216 ((|#2| $) 32)) (-1956 (($ $) NIL)) (-3173 (((-777) $) 11)) (-4008 (((-650 $) $) 23)) (-2359 (((-112) $) NIL)) (-3384 (($ |#2| |#1|) 21)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-2492 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 17)) (-1915 ((|#2| $) 18)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 51) (($ |#2|) 31)) (-2186 (((-650 |#1|) $) 20)) (-2249 ((|#1| $ |#2|) 55)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 33 T CONST)) (-4141 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 14)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#1| $) 36) (($ $ |#1|) 37) (($ |#1| |#2|) 39) (($ |#2| |#1|) 40)))
+((-3410 (((-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)) (-3145 (((-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 -3410 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3410 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|)) (-15 -3410 ((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3410 ((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3145 ((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3145 ((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|))) (-13 (-368) (-854))) (T -383))
+((-3145 (*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))))) (-3145 (*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))))) (-3410 (*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))))) (-3410 (*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))))) (-3410 (*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))))) (-3410 (*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 -3410 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3410 ((-650 (-650 (-298 (-959 (-171 |#1|))))) (-650 (-298 (-413 (-959 (-171 (-570)))))) |#1|)) (-15 -3410 ((-650 (-298 (-959 (-171 |#1|)))) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3410 ((-650 (-298 (-959 (-171 |#1|)))) (-298 (-413 (-959 (-171 (-570))))) |#1|)) (-15 -3145 ((-650 (-171 |#1|)) (-413 (-959 (-171 (-570)))) |#1|)) (-15 -3145 ((-650 (-650 (-171 |#1|))) (-650 (-413 (-959 (-171 (-570))))) (-650 (-1186)) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 35)) (-3472 (((-570) $) 62)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1622 (($ $) 136)) (-2890 (($ $) 98)) (-2755 (($ $) 90)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3817 (($ $) 47)) (-3765 (((-112) $ $) NIL)) (-2869 (($ $) 96)) (-2736 (($ $) 85)) (-3408 (((-570) $) 78)) (-3163 (($ $ (-570)) 73)) (-4109 (($ $) NIL)) (-2777 (($ $) NIL)) (-3195 (($) NIL T CONST)) (-2048 (($ $) 138)) (-4383 (((-3 (-570) "failed") $) 231) (((-3 (-413 (-570)) "failed") $) 227)) (-3220 (((-570) $) 229) (((-413 (-570)) $) 225)) (-2504 (($ $ $) NIL)) (-2223 (((-570) $ $) 125)) (-1929 (((-3 $ "failed") $) 141)) (-2957 (((-413 (-570)) $ (-777)) 232) (((-413 (-570)) $ (-777) (-777)) 224)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-4156 (((-928)) 121) (((-928) (-928)) 122 (|has| $ (-6 -4443)))) (-2346 (((-112) $) 130)) (-1315 (($) 41)) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-3208 (((-1282) (-777)) 191)) (-2022 (((-1282)) 196) (((-1282) (-777)) 197)) (-3977 (((-1282)) 198) (((-1282) (-777)) 199)) (-4305 (((-1282)) 194) (((-1282) (-777)) 195)) (-3941 (((-570) $) 68)) (-4139 (((-112) $) 40)) (-2252 (($ $ (-570)) NIL)) (-2454 (($ $) 51)) (-4399 (($ $) NIL)) (-2788 (((-112) $) 37)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL) (($) NIL (-12 (-1796 (|has| $ (-6 -4435))) (-1796 (|has| $ (-6 -4443)))))) (-2472 (($ $ $) NIL) (($) NIL (-12 (-1796 (|has| $ (-6 -4435))) (-1796 (|has| $ (-6 -4443)))))) (-3123 (((-570) $) 17)) (-1959 (($) 106) (($ $) 113)) (-1351 (($) 112) (($ $) 114)) (-2792 (($ $) 101)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 143)) (-4004 (((-928) (-570)) 46 (|has| $ (-6 -4443)))) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) 60)) (-1920 (($ $) 135)) (-2695 (($ (-570) (-570)) 131) (($ (-570) (-570) (-928)) 132)) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3994 (((-570) $) 19)) (-4059 (($) 115)) (-4389 (($ $) 95)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3098 (((-928)) 123) (((-928) (-928)) 124 (|has| $ (-6 -4443)))) (-3550 (($ $ (-777)) NIL) (($ $) 142)) (-2064 (((-928) (-570)) 50 (|has| $ (-6 -4443)))) (-4120 (($ $) NIL)) (-2791 (($ $) NIL)) (-2902 (($ $) NIL)) (-2768 (($ $) NIL)) (-2879 (($ $) 97)) (-2743 (($ $) 89)) (-1426 (((-384) $) 216) (((-227) $) 218) (((-899 (-384)) $) NIL) (((-1168) $) 202) (((-542) $) 214) (($ (-227)) 223)) (-3802 (((-868) $) 206) (($ (-570)) 228) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-570)) 228) (($ (-413 (-570))) NIL) (((-227) $) 219)) (-2851 (((-777)) NIL T CONST)) (-1918 (($ $) 137)) (-3942 (((-928)) 61) (((-928) (-928)) 80 (|has| $ (-6 -4443)))) (-3359 (((-112) $ $) NIL)) (-4409 (((-928)) 126)) (-4157 (($ $) 104)) (-2828 (($ $) 49) (($ $ $) 59)) (-3228 (((-112) $ $) NIL)) (-4129 (($ $) 102)) (-2804 (($ $) 39)) (-4179 (($ $) NIL)) (-2848 (($ $) NIL)) (-1579 (($ $) NIL)) (-2858 (($ $) NIL)) (-4166 (($ $) NIL)) (-2838 (($ $) NIL)) (-4144 (($ $) 103)) (-2817 (($ $) 52)) (-3231 (($ $) 58)) (-1862 (($) 36 T CONST)) (-1876 (($) 43 T CONST)) (-1423 (((-1168) $) 27) (((-1168) $ (-112)) 29) (((-1282) (-828) $) 30) (((-1282) (-828) $ (-112)) 31)) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3075 (((-112) $ $) 203)) (-3055 (((-112) $ $) 45)) (-3025 (((-112) $ $) 56)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 57)) (-3125 (($ $ $) 48) (($ $ (-570)) 42)) (-3114 (($ $) 38) (($ $ $) 53)) (-3104 (($ $ $) 72)) (** (($ $ (-928)) 83) (($ $ (-777)) NIL) (($ $ (-570)) 107) (($ $ (-413 (-570))) 154) (($ $ $) 145)) (* (($ (-928) $) 79) (($ (-777) $) NIL) (($ (-570) $) 84) (($ $ $) 71) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+(((-384) (-13 (-410) (-235) (-620 (-1168)) (-834) (-619 (-227)) (-1212) (-620 (-542)) (-624 (-227)) (-10 -8 (-15 -3125 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2454 ($ $)) (-15 -2223 ((-570) $ $)) (-15 -3163 ($ $ (-570))) (-15 -2957 ((-413 (-570)) $ (-777))) (-15 -2957 ((-413 (-570)) $ (-777) (-777))) (-15 -1959 ($)) (-15 -1351 ($)) (-15 -4059 ($)) (-15 -2828 ($ $ $)) (-15 -1959 ($ $)) (-15 -1351 ($ $)) (-15 -3977 ((-1282))) (-15 -3977 ((-1282) (-777))) (-15 -4305 ((-1282))) (-15 -4305 ((-1282) (-777))) (-15 -2022 ((-1282))) (-15 -2022 ((-1282) (-777))) (-15 -3208 ((-1282) (-777))) (-6 -4443) (-6 -4435)))) (T -384))
+((** (*1 *1 *1 *1) (-5 *1 (-384))) (-3125 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-2454 (*1 *1 *1) (-5 *1 (-384))) (-2223 (*1 *2 *1 *1) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-3163 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-384)))) (-2957 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))) (-2957 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-413 (-570))) (-5 *1 (-384)))) (-1959 (*1 *1) (-5 *1 (-384))) (-1351 (*1 *1) (-5 *1 (-384))) (-4059 (*1 *1) (-5 *1 (-384))) (-2828 (*1 *1 *1 *1) (-5 *1 (-384))) (-1959 (*1 *1 *1) (-5 *1 (-384))) (-1351 (*1 *1 *1) (-5 *1 (-384))) (-3977 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-3977 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-4305 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-4305 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-2022 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))) (-2022 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))) (-3208 (*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 -3125 ($ $ (-570))) (-15 ** ($ $ $)) (-15 -2454 ($ $)) (-15 -2223 ((-570) $ $)) (-15 -3163 ($ $ (-570))) (-15 -2957 ((-413 (-570)) $ (-777))) (-15 -2957 ((-413 (-570)) $ (-777) (-777))) (-15 -1959 ($)) (-15 -1351 ($)) (-15 -4059 ($)) (-15 -2828 ($ $ $)) (-15 -1959 ($ $)) (-15 -1351 ($ $)) (-15 -3977 ((-1282))) (-15 -3977 ((-1282) (-777))) (-15 -4305 ((-1282))) (-15 -4305 ((-1282) (-777))) (-15 -2022 ((-1282))) (-15 -2022 ((-1282) (-777))) (-15 -3208 ((-1282) (-777))) (-6 -4443) (-6 -4435)))
+((-2627 (((-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)) (-2243 (((-650 |#1|) (-413 (-959 (-570))) |#1|) 20) (((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|) 30)))
+(((-385 |#1|) (-10 -7 (-15 -2627 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|)) (-15 -2627 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|)) (-15 -2627 ((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|)) (-15 -2627 ((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|)) (-15 -2243 ((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|)) (-15 -2243 ((-650 |#1|) (-413 (-959 (-570))) |#1|))) (-13 (-854) (-368))) (T -385))
+((-2243 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-385 *4)) (-4 *4 (-13 (-854) (-368))))) (-2243 (*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))))) (-2627 (*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))))) (-2627 (*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))))) (-2627 (*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))))) (-2627 (*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 -2627 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-413 (-959 (-570)))) |#1|)) (-15 -2627 ((-650 (-650 (-298 (-959 |#1|)))) (-650 (-298 (-413 (-959 (-570))))) |#1|)) (-15 -2627 ((-650 (-298 (-959 |#1|))) (-413 (-959 (-570))) |#1|)) (-15 -2627 ((-650 (-298 (-959 |#1|))) (-298 (-413 (-959 (-570)))) |#1|)) (-15 -2243 ((-650 (-650 |#1|)) (-650 (-413 (-959 (-570)))) (-650 (-1186)) |#1|)) (-15 -2243 ((-650 |#1|) (-413 (-959 (-570))) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#2| "failed") $) 30)) (-3220 ((|#2| $) 32)) (-1954 (($ $) NIL)) (-2867 (((-777) $) 11)) (-3967 (((-650 $) $) 23)) (-3633 (((-112) $) NIL)) (-3387 (($ |#2| |#1|) 21)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2598 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 17)) (-1914 ((|#2| $) 18)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 51) (($ |#2|) 31)) (-2459 (((-650 |#1|) $) 20)) (-1864 ((|#1| $ |#2|) 55)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 33 T CONST)) (-2884 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 14)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-4380 (((-3 |#2| "failed") $) 49)) (-3216 ((|#2| $) 50)) (-1956 (($ $) 35)) (-3173 (((-777) $) 39)) (-4008 (((-650 $) $) 40)) (-2359 (((-112) $) 43)) (-3384 (($ |#2| |#1|) 44)) (-1356 (($ (-1 |#1| |#1|) $) 45)) (-2492 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 36)) (-1915 ((|#2| $) 38)) (-1927 ((|#1| $) 37)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ |#2|) 48)) (-2186 (((-650 |#1|) $) 41)) (-2249 ((|#1| $ |#2|) 46)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-4141 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 42)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31) (($ |#1| |#2|) 47)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-4383 (((-3 |#2| "failed") $) 49)) (-3220 ((|#2| $) 50)) (-1954 (($ $) 35)) (-2867 (((-777) $) 39)) (-3967 (((-650 $) $) 40)) (-3633 (((-112) $) 43)) (-3387 (($ |#2| |#1|) 44)) (-1357 (($ (-1 |#1| |#1|) $) 45)) (-2598 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) 36)) (-1914 ((|#2| $) 38)) (-1928 ((|#1| $) 37)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ |#2|) 48)) (-2459 (((-650 |#1|) $) 41)) (-1864 ((|#1| $ |#2|) 46)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-2884 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 42)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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)))) (-2249 (*1 *2 *1 *3) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058)))) (-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)))) (-3384 (*1 *1 *2 *3) (-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109)))) (-2359 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-112)))) (-4141 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2186 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *3)))) (-4008 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-387 *3 *4)))) (-3173 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-777)))) (-1915 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109)))) (-1927 (*1 *2 *1) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058)))) (-2492 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-1956 (*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 -2249 (|t#1| $ |t#2|)) (-15 -1356 ($ (-1 |t#1| |t#1|) $)) (-15 -3384 ($ |t#2| |t#1|)) (-15 -2359 ((-112) $)) (-15 -4141 ((-650 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2186 ((-650 |t#1|) $)) (-15 -4008 ((-650 $) $)) (-15 -3173 ((-777) $)) (-15 -1915 (|t#2| $)) (-15 -1927 (|t#1| $)) (-15 -2492 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -1956 ($ $)) (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)))) (-1864 (*1 *2 *1 *3) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058)))) (-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)))) (-3387 (*1 *1 *2 *3) (-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109)))) (-3633 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-112)))) (-2884 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-2459 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *3)))) (-3967 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-387 *3 *4)))) (-2867 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-777)))) (-1914 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1109)))) (-1928 (*1 *2 *1) (-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058)))) (-2598 (*1 *2 *1) (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))) (-1954 (*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 -1864 (|t#1| $ |t#2|)) (-15 -1357 ($ (-1 |t#1| |t#1|) $)) (-15 -3387 ($ |t#2| |t#1|)) (-15 -3633 ((-112) $)) (-15 -2884 ((-650 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -2459 ((-650 |t#1|) $)) (-15 -3967 ((-650 $) $)) (-15 -2867 ((-777) $)) (-15 -1914 (|t#2| $)) (-15 -1928 (|t#1| $)) (-15 -2598 ((-2 (|:| |k| |t#2|) (|:| |c| |t#1|)) $)) (-15 -1954 ($ $)) (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))
-((-3396 (((-1282) $) 7)) (-3799 (((-868) $) 8) (($ (-695 (-705))) 14) (($ (-650 (-334))) 13) (($ (-334)) 12) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 11)))
+((-3400 (((-1282) $) 7)) (-3802 (((-868) $) 8) (($ (-695 (-705))) 14) (($ (-650 (-334))) 13) (($ (-334)) 12) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 11)))
(((-388) (-141)) (T -388))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-695 (-705))) (-4 *1 (-388)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-388)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-388)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) (-4 *1 (-388)))))
-(-13 (-401) (-10 -8 (-15 -3799 ($ (-695 (-705)))) (-15 -3799 ($ (-650 (-334)))) (-15 -3799 ($ (-334))) (-15 -3799 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))))))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-695 (-705))) (-4 *1 (-388)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-388)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-388)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) (-4 *1 (-388)))))
+(-13 (-401) (-10 -8 (-15 -3802 ($ (-695 (-705)))) (-15 -3802 ($ (-650 (-334)))) (-15 -3802 ($ (-334))) (-15 -3802 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))))))
(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 7)) (-3799 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 23)))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 7)) (-3802 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 23)))
(((-389) (-141)) (T -389))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-389)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-389)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) (-4 *1 (-389)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-695 (-320 (-384)))) (-4 *1 (-389)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-320 (-384)))) (-4 *1 (-389)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-4 *1 (-389)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-320 (-570)))) (-4 *1 (-389)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-695 (-959 (-384)))) (-4 *1 (-389)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-959 (-384)))) (-4 *1 (-389)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-695 (-959 (-570)))) (-4 *1 (-389)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-959 (-570)))) (-4 *1 (-389)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-695 (-413 (-959 (-384))))) (-4 *1 (-389)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-413 (-959 (-384))))) (-4 *1 (-389)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-695 (-413 (-959 (-570))))) (-4 *1 (-389)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-413 (-959 (-570))))) (-4 *1 (-389)))))
-(-13 (-401) (-10 -8 (-15 -3799 ($ (-650 (-334)))) (-15 -3799 ($ (-334))) (-15 -3799 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))) (-15 -3216 ($ (-695 (-320 (-384))))) (-15 -4380 ((-3 $ "failed") (-695 (-320 (-384))))) (-15 -3216 ($ (-695 (-320 (-570))))) (-15 -4380 ((-3 $ "failed") (-695 (-320 (-570))))) (-15 -3216 ($ (-695 (-959 (-384))))) (-15 -4380 ((-3 $ "failed") (-695 (-959 (-384))))) (-15 -3216 ($ (-695 (-959 (-570))))) (-15 -4380 ((-3 $ "failed") (-695 (-959 (-570))))) (-15 -3216 ($ (-695 (-413 (-959 (-384)))))) (-15 -4380 ((-3 $ "failed") (-695 (-413 (-959 (-384)))))) (-15 -3216 ($ (-695 (-413 (-959 (-570)))))) (-15 -4380 ((-3 $ "failed") (-695 (-413 (-959 (-570))))))))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-389)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-389)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) (-4 *1 (-389)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-695 (-320 (-384)))) (-4 *1 (-389)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-320 (-384)))) (-4 *1 (-389)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-4 *1 (-389)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-320 (-570)))) (-4 *1 (-389)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-695 (-959 (-384)))) (-4 *1 (-389)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-959 (-384)))) (-4 *1 (-389)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-695 (-959 (-570)))) (-4 *1 (-389)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-959 (-570)))) (-4 *1 (-389)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-695 (-413 (-959 (-384))))) (-4 *1 (-389)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-413 (-959 (-384))))) (-4 *1 (-389)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-695 (-413 (-959 (-570))))) (-4 *1 (-389)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-695 (-413 (-959 (-570))))) (-4 *1 (-389)))))
+(-13 (-401) (-10 -8 (-15 -3802 ($ (-650 (-334)))) (-15 -3802 ($ (-334))) (-15 -3802 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))) (-15 -3220 ($ (-695 (-320 (-384))))) (-15 -4383 ((-3 $ "failed") (-695 (-320 (-384))))) (-15 -3220 ($ (-695 (-320 (-570))))) (-15 -4383 ((-3 $ "failed") (-695 (-320 (-570))))) (-15 -3220 ($ (-695 (-959 (-384))))) (-15 -4383 ((-3 $ "failed") (-695 (-959 (-384))))) (-15 -3220 ($ (-695 (-959 (-570))))) (-15 -4383 ((-3 $ "failed") (-695 (-959 (-570))))) (-15 -3220 ($ (-695 (-413 (-959 (-384)))))) (-15 -4383 ((-3 $ "failed") (-695 (-413 (-959 (-384)))))) (-15 -3220 ($ (-695 (-413 (-959 (-570)))))) (-15 -4383 ((-3 $ "failed") (-695 (-413 (-959 (-570))))))))
(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-3912 (($ |#1| |#2|) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-4038 ((|#2| $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 33)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 12 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#1| $) 15) (($ $ |#1|) 18)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-3915 (($ |#1| |#2|) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4240 ((|#2| $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 33)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 12 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)))
-((-2558 (((-112) $ $) 7)) (-3510 (((-777) $) 34)) (-1705 (($) 19 T CONST)) (-1745 (((-3 $ "failed") $ $) 37)) (-4380 (((-3 |#1| "failed") $) 45)) (-3216 ((|#1| $) 46)) (-2875 (((-3 $ "failed") $) 16)) (-3813 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 35)) (-4346 (((-112) $) 18)) (-2610 ((|#1| $ (-570)) 31)) (-2517 (((-777) $ (-570)) 32)) (-3466 (($ $ $) 28 (|has| |#1| (-856)))) (-2800 (($ $ $) 27 (|has| |#1| (-856)))) (-2131 (($ (-1 |#1| |#1|) $) 29)) (-2453 (($ (-1 (-777) (-777)) $) 30)) (-1761 (((-3 $ "failed") $ $) 38)) (-1988 (((-1168) $) 10)) (-2003 (($ $ $) 39)) (-2397 (($ $ $) 40)) (-3577 (((-1129) $) 11)) (-3477 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-777)))) $) 33)) (-2384 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 36)) (-3799 (((-868) $) 12) (($ |#1|) 44)) (-2335 (((-112) $ $) 9)) (-1875 (($) 20 T CONST)) (-3072 (((-112) $ $) 25 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 24 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 26 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 23 (|has| |#1| (-856)))) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ |#1| (-777)) 41)) (* (($ $ $) 15) (($ |#1| $) 43) (($ $ |#1|) 42)))
+((-2560 (((-112) $ $) 7)) (-3513 (((-777) $) 34)) (-3195 (($) 19 T CONST)) (-3571 (((-3 $ "failed") $ $) 37)) (-4383 (((-3 |#1| "failed") $) 45)) (-3220 ((|#1| $) 46)) (-1929 (((-3 $ "failed") $) 16)) (-2732 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 35)) (-4139 (((-112) $) 18)) (-4275 ((|#1| $ (-570)) 31)) (-1564 (((-777) $ (-570)) 32)) (-3469 (($ $ $) 28 (|has| |#1| (-856)))) (-2472 (($ $ $) 27 (|has| |#1| (-856)))) (-3088 (($ (-1 |#1| |#1|) $) 29)) (-2196 (($ (-1 (-777) (-777)) $) 30)) (-3712 (((-3 $ "failed") $ $) 38)) (-3989 (((-1168) $) 10)) (-4135 (($ $ $) 39)) (-2830 (($ $ $) 40)) (-3580 (((-1129) $) 11)) (-2638 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 (-777)))) $) 33)) (-2696 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 36)) (-3802 (((-868) $) 12) (($ |#1|) 44)) (-3359 (((-112) $ $) 9)) (-1876 (($) 20 T CONST)) (-3075 (((-112) $ $) 25 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 24 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 26 (|has| |#1| (-856)))) (-3045 (((-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)))) (-2397 (*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-2003 (*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-1761 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-1745 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-2384 (*1 *2 *1 *1) (|partial| -12 (-4 *3 (-1109)) (-5 *2 (-2 (|:| |lm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3)))) (-3813 (*1 *2 *1 *1) (-12 (-4 *3 (-1109)) (-5 *2 (-2 (|:| |lm| *1) (|:| |mm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3)))) (-3510 (*1 *2 *1) (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-3477 (*1 *2 *1) (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4387 (-777))))))) (-2517 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *4)) (-4 *4 (-1109)) (-5 *2 (-777)))) (-2610 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-2453 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-777) (-777))) (-4 *1 (-391 *3)) (-4 *3 (-1109)))) (-2131 (*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 -2397 ($ $ $)) (-15 -2003 ($ $ $)) (-15 -1761 ((-3 $ "failed") $ $)) (-15 -1745 ((-3 $ "failed") $ $)) (-15 -2384 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -3813 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3510 ((-777) $)) (-15 -3477 ((-650 (-2 (|:| |gen| |t#1|) (|:| -4387 (-777)))) $)) (-15 -2517 ((-777) $ (-570))) (-15 -2610 (|t#1| $ (-570))) (-15 -2453 ($ (-1 (-777) (-777)) $)) (-15 -2131 ($ (-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)))) (-2830 (*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-4135 (*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-3712 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-3571 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-2696 (*1 *2 *1 *1) (|partial| -12 (-4 *3 (-1109)) (-5 *2 (-2 (|:| |lm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3)))) (-2732 (*1 *2 *1 *1) (-12 (-4 *3 (-1109)) (-5 *2 (-2 (|:| |lm| *1) (|:| |mm| *1) (|:| |rm| *1))) (-4 *1 (-391 *3)))) (-3513 (*1 *2 *1) (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-2638 (*1 *2 *1) (-12 (-4 *1 (-391 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 (-777))))))) (-1564 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *4)) (-4 *4 (-1109)) (-5 *2 (-777)))) (-4275 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-391 *2)) (-4 *2 (-1109)))) (-2196 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-777) (-777))) (-4 *1 (-391 *3)) (-4 *3 (-1109)))) (-3088 (*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 -2830 ($ $ $)) (-15 -4135 ($ $ $)) (-15 -3712 ((-3 $ "failed") $ $)) (-15 -3571 ((-3 $ "failed") $ $)) (-15 -2696 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -2732 ((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $)) (-15 -3513 ((-777) $)) (-15 -2638 ((-650 (-2 (|:| |gen| |t#1|) (|:| -4389 (-777)))) $)) (-15 -1564 ((-777) $ (-570))) (-15 -4275 (|t#1| $ (-570))) (-15 -2196 ($ (-1 (-777) (-777)) $)) (-15 -3088 ($ (-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))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777) $) 74)) (-1705 (($) NIL T CONST)) (-1745 (((-3 $ "failed") $ $) 77)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3813 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 64)) (-4346 (((-112) $) 17)) (-2610 ((|#1| $ (-570)) NIL)) (-2517 (((-777) $ (-570)) NIL)) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-2131 (($ (-1 |#1| |#1|) $) 40)) (-2453 (($ (-1 (-777) (-777)) $) 37)) (-1761 (((-3 $ "failed") $ $) 60)) (-1988 (((-1168) $) NIL)) (-2003 (($ $ $) 28)) (-2397 (($ $ $) 26)) (-3577 (((-1129) $) NIL)) (-3477 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-777)))) $) 34)) (-2384 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 70)) (-3799 (((-868) $) 24) (($ |#1|) NIL)) (-2335 (((-112) $ $) NIL)) (-1875 (($) 11 T CONST)) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) 84 (|has| |#1| (-856)))) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ |#1| (-777)) 42)) (* (($ $ $) 52) (($ |#1| $) 32) (($ $ |#1|) 30)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777) $) 74)) (-3195 (($) NIL T CONST)) (-3571 (((-3 $ "failed") $ $) 77)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2732 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) 64)) (-4139 (((-112) $) 17)) (-4275 ((|#1| $ (-570)) NIL)) (-1564 (((-777) $ (-570)) NIL)) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-3088 (($ (-1 |#1| |#1|) $) 40)) (-2196 (($ (-1 (-777) (-777)) $) 37)) (-3712 (((-3 $ "failed") $ $) 60)) (-3989 (((-1168) $) NIL)) (-4135 (($ $ $) 28)) (-2830 (($ $ $) 26)) (-3580 (((-1129) $) NIL)) (-2638 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 (-777)))) $) 34)) (-2696 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) 70)) (-3802 (((-868) $) 24) (($ |#1|) NIL)) (-3359 (((-112) $ $) NIL)) (-1876 (($) 11 T CONST)) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-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|)
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-4380 (((-3 (-570) "failed") $) 53)) (-3216 (((-570) $) 54)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-3466 (($ $ $) 60)) (-2800 (($ $ $) 59)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ $) 48)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 52)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3072 (((-112) $ $) 57)) (-3052 (((-112) $ $) 56)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 58)) (-3042 (((-112) $ $) 55)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-4383 (((-3 (-570) "failed") $) 53)) (-3220 (((-570) $) 54)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3469 (($ $ $) 60)) (-2472 (($ $ $) 59)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ $) 48)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 52)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3075 (((-112) $ $) 57)) (-3055 (((-112) $ $) 56)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 58)) (-3045 (((-112) $ $) 55)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2558 (((-112) $ $) NIL)) (-3596 (((-112) $) 25)) (-2597 (((-112) $) 22)) (-4291 (($ (-1168) (-1168) (-1168)) 26)) (-3600 (((-1168) $) 16)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2127 (($ (-1168) (-1168) (-1168)) 14)) (-3634 (((-1168) $) 17)) (-3438 (((-112) $) 18)) (-4361 (((-1168) $) 15)) (-3799 (((-868) $) 12) (($ (-1168)) 13) (((-1168) $) 9)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 7)))
+((-2560 (((-112) $ $) NIL)) (-2485 (((-112) $) 25)) (-4174 (((-112) $) 22)) (-4294 (($ (-1168) (-1168) (-1168)) 26)) (-3602 (((-1168) $) 16)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2128 (($ (-1168) (-1168) (-1168)) 14)) (-1528 (((-1168) $) 17)) (-3452 (((-112) $) 18)) (-4364 (((-1168) $) 15)) (-3802 (((-868) $) 12) (($ (-1168)) 13) (((-1168) $) 9)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 7)))
(((-394) (-395)) (T -394))
NIL
(-395)
-((-2558 (((-112) $ $) 7)) (-3596 (((-112) $) 17)) (-2597 (((-112) $) 18)) (-4291 (($ (-1168) (-1168) (-1168)) 16)) (-3600 (((-1168) $) 21)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2127 (($ (-1168) (-1168) (-1168)) 23)) (-3634 (((-1168) $) 20)) (-3438 (((-112) $) 19)) (-4361 (((-1168) $) 22)) (-3799 (((-868) $) 12) (($ (-1168)) 25) (((-1168) $) 24)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) 7)) (-2485 (((-112) $) 17)) (-4174 (((-112) $) 18)) (-4294 (($ (-1168) (-1168) (-1168)) 16)) (-3602 (((-1168) $) 21)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2128 (($ (-1168) (-1168) (-1168)) 23)) (-1528 (((-1168) $) 20)) (-3452 (((-112) $) 19)) (-4364 (((-1168) $) 22)) (-3802 (((-868) $) 12) (($ (-1168)) 25) (((-1168) $) 24)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-395) (-141)) (T -395))
-((-2127 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))) (-4361 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-3600 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-3634 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-3438 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-2597 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-3596 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-4291 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))))
-(-13 (-1109) (-496 (-1168)) (-10 -8 (-15 -2127 ($ (-1168) (-1168) (-1168))) (-15 -4361 ((-1168) $)) (-15 -3600 ((-1168) $)) (-15 -3634 ((-1168) $)) (-15 -3438 ((-112) $)) (-15 -2597 ((-112) $)) (-15 -3596 ((-112) $)) (-15 -4291 ($ (-1168) (-1168) (-1168)))))
+((-2128 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))) (-4364 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-3602 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-1528 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))) (-3452 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-4174 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-2485 (*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))) (-4294 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))))
+(-13 (-1109) (-496 (-1168)) (-10 -8 (-15 -2128 ($ (-1168) (-1168) (-1168))) (-15 -4364 ((-1168) $)) (-15 -3602 ((-1168) $)) (-15 -1528 ((-1168) $)) (-15 -3452 ((-112) $)) (-15 -4174 ((-112) $)) (-15 -2485 ((-112) $)) (-15 -4294 ($ (-1168) (-1168) (-1168)))))
(((-102) . T) ((-622 #0=(-1168)) . T) ((-619 (-868)) . T) ((-619 #0#) . T) ((-496 #0#) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-2490 (((-868) $) 63)) (-1705 (($) NIL T CONST)) (-2705 (($ $ (-928)) NIL)) (-2604 (($ $ (-928)) NIL)) (-1575 (($ $ (-928)) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2466 (($ (-777)) 38)) (-2951 (((-777)) 18)) (-2208 (((-868) $) 65)) (-4391 (($ $ $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3764 (($ $ $ $) NIL)) (-3858 (($ $ $) NIL)) (-1861 (($) 24 T CONST)) (-3022 (((-112) $ $) 41)) (-3111 (($ $) 48) (($ $ $) 50)) (-3101 (($ $ $) 51)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 52) (($ $ |#3|) NIL) (($ |#3| $) 47)))
-(((-396 |#1| |#2| |#3|) (-13 (-750 |#3|) (-10 -8 (-15 -2951 ((-777))) (-15 -2208 ((-868) $)) (-15 -2490 ((-868) $)) (-15 -2466 ($ (-777))))) (-777) (-777) (-174)) (T -396))
-((-2951 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-174)))) (-2208 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2490 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2466 (*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 -2951 ((-777))) (-15 -2208 ((-868) $)) (-15 -2490 ((-868) $)) (-15 -2466 ($ (-777)))))
-((-1616 (((-1168)) 12)) (-1873 (((-1156 (-1168))) 30)) (-3365 (((-1282) (-1168)) 27) (((-1282) (-394)) 26)) (-3380 (((-1282)) 28)) (-3319 (((-1156 (-1168))) 29)))
-(((-397) (-10 -7 (-15 -3319 ((-1156 (-1168)))) (-15 -1873 ((-1156 (-1168)))) (-15 -3380 ((-1282))) (-15 -3365 ((-1282) (-394))) (-15 -3365 ((-1282) (-1168))) (-15 -1616 ((-1168))))) (T -397))
-((-1616 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-397)))) (-3365 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-397)))) (-3365 (*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1282)) (-5 *1 (-397)))) (-3380 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-397)))) (-1873 (*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))) (-3319 (*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
-(-10 -7 (-15 -3319 ((-1156 (-1168)))) (-15 -1873 ((-1156 (-1168)))) (-15 -3380 ((-1282))) (-15 -3365 ((-1282) (-394))) (-15 -3365 ((-1282) (-1168))) (-15 -1616 ((-1168))))
-((-4323 (((-777) (-341 |#1| |#2| |#3| |#4|)) 16)))
-(((-398 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4323 ((-777) (-341 |#1| |#2| |#3| |#4|)))) (-13 (-373) (-368)) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -398))
-((-4323 (*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 -4323 ((-777) (-341 |#1| |#2| |#3| |#4|))))
-((-3799 (((-400) |#1|) 11)))
-(((-399 |#1|) (-10 -7 (-15 -3799 ((-400) |#1|))) (-1109)) (T -399))
-((-3799 (*1 *2 *3) (-12 (-5 *2 (-400)) (-5 *1 (-399 *3)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -3799 ((-400) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-1430 (((-650 (-1168)) $ (-650 (-1168))) 42)) (-2012 (((-650 (-1168)) $ (-650 (-1168))) 43)) (-3076 (((-650 (-1168)) $ (-650 (-1168))) 44)) (-3419 (((-650 (-1168)) $) 39)) (-4291 (($) 30)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3274 (((-650 (-1168)) $) 40)) (-2328 (((-650 (-1168)) $) 41)) (-4147 (((-1282) $ (-570)) 37) (((-1282) $) 38)) (-1425 (($ (-868) (-570)) 35)) (-3799 (((-868) $) 49) (($ (-868)) 32)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-400) (-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1425 ($ (-868) (-570))) (-15 -4147 ((-1282) $ (-570))) (-15 -4147 ((-1282) $)) (-15 -2328 ((-650 (-1168)) $)) (-15 -3274 ((-650 (-1168)) $)) (-15 -4291 ($)) (-15 -3419 ((-650 (-1168)) $)) (-15 -3076 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2012 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1430 ((-650 (-1168)) $ (-650 (-1168))))))) (T -400))
-((-1425 (*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-400)))) (-4147 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-400)))) (-4147 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-400)))) (-2328 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-3274 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-4291 (*1 *1) (-5 *1 (-400))) (-3419 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-3076 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-2012 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-1430 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
-(-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1425 ($ (-868) (-570))) (-15 -4147 ((-1282) $ (-570))) (-15 -4147 ((-1282) $)) (-15 -2328 ((-650 (-1168)) $)) (-15 -3274 ((-650 (-1168)) $)) (-15 -4291 ($)) (-15 -3419 ((-650 (-1168)) $)) (-15 -3076 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2012 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1430 ((-650 (-1168)) $ (-650 (-1168))))))
-((-3396 (((-1282) $) 7)) (-3799 (((-868) $) 8)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2578 (((-868) $) 63)) (-3195 (($) NIL T CONST)) (-2827 (($ $ (-928)) NIL)) (-4234 (($ $ (-928)) NIL)) (-4311 (($ $ (-928)) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2467 (($ (-777)) 38)) (-2517 (((-777)) 18)) (-1354 (((-868) $) 65)) (-3381 (($ $ $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3468 (($ $ $ $) NIL)) (-3107 (($ $ $) NIL)) (-1862 (($) 24 T CONST)) (-3025 (((-112) $ $) 41)) (-3114 (($ $) 48) (($ $ $) 50)) (-3104 (($ $ $) 51)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 52) (($ $ |#3|) NIL) (($ |#3| $) 47)))
+(((-396 |#1| |#2| |#3|) (-13 (-750 |#3|) (-10 -8 (-15 -2517 ((-777))) (-15 -1354 ((-868) $)) (-15 -2578 ((-868) $)) (-15 -2467 ($ (-777))))) (-777) (-777) (-174)) (T -396))
+((-2517 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 *2) (-14 *4 *2) (-4 *5 (-174)))) (-1354 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2578 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777)) (-14 *4 (-777)) (-4 *5 (-174)))) (-2467 (*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 -2517 ((-777))) (-15 -1354 ((-868) $)) (-15 -2578 ((-868) $)) (-15 -2467 ($ (-777)))))
+((-1642 (((-1168)) 12)) (-2305 (((-1156 (-1168))) 30)) (-3369 (((-1282) (-1168)) 27) (((-1282) (-394)) 26)) (-3384 (((-1282)) 28)) (-1809 (((-1156 (-1168))) 29)))
+(((-397) (-10 -7 (-15 -1809 ((-1156 (-1168)))) (-15 -2305 ((-1156 (-1168)))) (-15 -3384 ((-1282))) (-15 -3369 ((-1282) (-394))) (-15 -3369 ((-1282) (-1168))) (-15 -1642 ((-1168))))) (T -397))
+((-1642 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-397)))) (-3369 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-397)))) (-3369 (*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1282)) (-5 *1 (-397)))) (-3384 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-397)))) (-2305 (*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))) (-1809 (*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
+(-10 -7 (-15 -1809 ((-1156 (-1168)))) (-15 -2305 ((-1156 (-1168)))) (-15 -3384 ((-1282))) (-15 -3369 ((-1282) (-394))) (-15 -3369 ((-1282) (-1168))) (-15 -1642 ((-1168))))
+((-3941 (((-777) (-341 |#1| |#2| |#3| |#4|)) 16)))
+(((-398 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3941 ((-777) (-341 |#1| |#2| |#3| |#4|)))) (-13 (-373) (-368)) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -398))
+((-3941 (*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 -3941 ((-777) (-341 |#1| |#2| |#3| |#4|))))
+((-3802 (((-400) |#1|) 11)))
+(((-399 |#1|) (-10 -7 (-15 -3802 ((-400) |#1|))) (-1109)) (T -399))
+((-3802 (*1 *2 *3) (-12 (-5 *2 (-400)) (-5 *1 (-399 *3)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -3802 ((-400) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-1459 (((-650 (-1168)) $ (-650 (-1168))) 42)) (-4231 (((-650 (-1168)) $ (-650 (-1168))) 43)) (-3161 (((-650 (-1168)) $ (-650 (-1168))) 44)) (-3275 (((-650 (-1168)) $) 39)) (-4294 (($) 30)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3277 (((-650 (-1168)) $) 40)) (-3284 (((-650 (-1168)) $) 41)) (-4150 (((-1282) $ (-570)) 37) (((-1282) $) 38)) (-1426 (($ (-868) (-570)) 35)) (-3802 (((-868) $) 49) (($ (-868)) 32)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-400) (-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1426 ($ (-868) (-570))) (-15 -4150 ((-1282) $ (-570))) (-15 -4150 ((-1282) $)) (-15 -3284 ((-650 (-1168)) $)) (-15 -3277 ((-650 (-1168)) $)) (-15 -4294 ($)) (-15 -3275 ((-650 (-1168)) $)) (-15 -3161 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -4231 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1459 ((-650 (-1168)) $ (-650 (-1168))))))) (T -400))
+((-1426 (*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-400)))) (-4150 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-400)))) (-4150 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-400)))) (-3284 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-3277 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-4294 (*1 *1) (-5 *1 (-400))) (-3275 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-3161 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-4231 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))) (-1459 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
+(-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1426 ($ (-868) (-570))) (-15 -4150 ((-1282) $ (-570))) (-15 -4150 ((-1282) $)) (-15 -3284 ((-650 (-1168)) $)) (-15 -3277 ((-650 (-1168)) $)) (-15 -4294 ($)) (-15 -3275 ((-650 (-1168)) $)) (-15 -3161 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -4231 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1459 ((-650 (-1168)) $ (-650 (-1168))))))
+((-3400 (((-1282) $) 7)) (-3802 (((-868) $) 8)))
(((-401) (-141)) (T -401))
-((-3396 (*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-1282)))))
-(-13 (-1227) (-619 (-868)) (-10 -8 (-15 -3396 ((-1282) $))))
+((-3400 (*1 *2 *1) (-12 (-4 *1 (-401)) (-5 *2 (-1282)))))
+(-13 (-1227) (-619 (-868)) (-10 -8 (-15 -3400 ((-1282) $))))
(((-619 (-868)) . T) ((-1227) . T))
-((-4380 (((-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)) (-3216 (($ (-320 (-384))) 22) (($ (-320 (-570))) 20) (($ (-959 (-384))) 18) (($ (-959 (-570))) 16) (($ (-413 (-959 (-384)))) 14) (($ (-413 (-959 (-570)))) 12)) (-3396 (((-1282) $) 7)) (-3799 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 23)))
+((-4383 (((-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)) (-3220 (($ (-320 (-384))) 22) (($ (-320 (-570))) 20) (($ (-959 (-384))) 18) (($ (-959 (-570))) 16) (($ (-413 (-959 (-384)))) 14) (($ (-413 (-959 (-570)))) 12)) (-3400 (((-1282) $) 7)) (-3802 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 23)))
(((-402) (-141)) (T -402))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-402)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-402)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) (-4 *1 (-402)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-4 *1 (-402)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-384))) (-4 *1 (-402)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-4 *1 (-402)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-570))) (-4 *1 (-402)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-959 (-384))) (-4 *1 (-402)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-384))) (-4 *1 (-402)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-402)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-570))) (-4 *1 (-402)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-384)))) (-4 *1 (-402)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-384)))) (-4 *1 (-402)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-570)))) (-4 *1 (-402)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-570)))) (-4 *1 (-402)))))
-(-13 (-401) (-10 -8 (-15 -3799 ($ (-650 (-334)))) (-15 -3799 ($ (-334))) (-15 -3799 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))) (-15 -3216 ($ (-320 (-384)))) (-15 -4380 ((-3 $ "failed") (-320 (-384)))) (-15 -3216 ($ (-320 (-570)))) (-15 -4380 ((-3 $ "failed") (-320 (-570)))) (-15 -3216 ($ (-959 (-384)))) (-15 -4380 ((-3 $ "failed") (-959 (-384)))) (-15 -3216 ($ (-959 (-570)))) (-15 -4380 ((-3 $ "failed") (-959 (-570)))) (-15 -3216 ($ (-413 (-959 (-384))))) (-15 -4380 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3216 ($ (-413 (-959 (-570))))) (-15 -4380 ((-3 $ "failed") (-413 (-959 (-570)))))))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-402)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-402)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) (-4 *1 (-402)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-4 *1 (-402)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-384))) (-4 *1 (-402)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-4 *1 (-402)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-320 (-570))) (-4 *1 (-402)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-959 (-384))) (-4 *1 (-402)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-384))) (-4 *1 (-402)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-959 (-570))) (-4 *1 (-402)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-959 (-570))) (-4 *1 (-402)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-384)))) (-4 *1 (-402)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-384)))) (-4 *1 (-402)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-570)))) (-4 *1 (-402)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 (-959 (-570)))) (-4 *1 (-402)))))
+(-13 (-401) (-10 -8 (-15 -3802 ($ (-650 (-334)))) (-15 -3802 ($ (-334))) (-15 -3802 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))) (-15 -3220 ($ (-320 (-384)))) (-15 -4383 ((-3 $ "failed") (-320 (-384)))) (-15 -3220 ($ (-320 (-570)))) (-15 -4383 ((-3 $ "failed") (-320 (-570)))) (-15 -3220 ($ (-959 (-384)))) (-15 -4383 ((-3 $ "failed") (-959 (-384)))) (-15 -3220 ($ (-959 (-570)))) (-15 -4383 ((-3 $ "failed") (-959 (-570)))) (-15 -3220 ($ (-413 (-959 (-384))))) (-15 -4383 ((-3 $ "failed") (-413 (-959 (-384))))) (-15 -3220 ($ (-413 (-959 (-570))))) (-15 -4383 ((-3 $ "failed") (-413 (-959 (-570)))))))
(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
-((-3069 (((-650 (-1168)) (-650 (-1168))) 9)) (-3396 (((-1282) (-394)) 26)) (-2091 (((-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 -2091 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)))) (-15 -2091 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186))) (-15 -2091 ((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186)))) (-15 -3396 ((-1282) (-394))) (-15 -3069 ((-650 (-1168)) (-650 (-1168)))))) (T -403))
-((-3069 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-403)))) (-3396 (*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1282)) (-5 *1 (-403)))) (-2091 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *5 (-1189)) (-5 *3 (-1186)) (-5 *2 (-1113)) (-5 *1 (-403)))) (-2091 (*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)))) (-2091 (*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 -2091 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)))) (-15 -2091 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186))) (-15 -2091 ((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186)))) (-15 -3396 ((-1282) (-394))) (-15 -3069 ((-650 (-1168)) (-650 (-1168)))))
-((-3396 (((-1282) $) 35)) (-3799 (((-868) $) 97) (($ (-334)) 99) (($ (-650 (-334))) 98) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-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 -3799 ($ (-334))) (-15 -3799 ($ (-650 (-334)))) (-15 -3799 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))) (-15 -3799 ($ (-320 (-707)))) (-15 -3799 ($ (-320 (-705)))) (-15 -3799 ($ (-320 (-700)))) (-15 -3799 ($ (-298 (-320 (-707))))) (-15 -3799 ($ (-298 (-320 (-705))))) (-15 -3799 ($ (-298 (-320 (-700))))) (-15 -3799 ($ (-320 (-570)))) (-15 -3799 ($ (-320 (-384)))) (-15 -3799 ($ (-320 (-171 (-384))))) (-15 -3799 ($ (-298 (-320 (-570))))) (-15 -3799 ($ (-298 (-320 (-384))))) (-15 -3799 ($ (-298 (-320 (-171 (-384)))))))) (-1186) (-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-650 (-1186)) (-1190)) (T -404))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-334)) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-707)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-705)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-700)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-570)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-384)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3799 (*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)) (|:| -2713 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))))
-(-13 (-401) (-10 -8 (-15 -3799 ($ (-334))) (-15 -3799 ($ (-650 (-334)))) (-15 -3799 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))) (-15 -3799 ($ (-320 (-707)))) (-15 -3799 ($ (-320 (-705)))) (-15 -3799 ($ (-320 (-700)))) (-15 -3799 ($ (-298 (-320 (-707))))) (-15 -3799 ($ (-298 (-320 (-705))))) (-15 -3799 ($ (-298 (-320 (-700))))) (-15 -3799 ($ (-320 (-570)))) (-15 -3799 ($ (-320 (-384)))) (-15 -3799 ($ (-320 (-171 (-384))))) (-15 -3799 ($ (-298 (-320 (-570))))) (-15 -3799 ($ (-298 (-320 (-384))))) (-15 -3799 ($ (-298 (-320 (-171 (-384))))))))
-((-2558 (((-112) $ $) NIL)) (-4288 ((|#2| $) 38)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3142 (($ (-413 |#2|)) 93)) (-1338 (((-650 (-2 (|:| -3357 (-777)) (|:| -2288 |#2|) (|:| |num| |#2|))) $) 39)) (-3547 (($ $) 34) (($ $ (-777)) 36)) (-1425 (((-413 |#2|) $) 49)) (-3811 (($ (-650 (-2 (|:| -3357 (-777)) (|:| -2288 |#2|) (|:| |num| |#2|)))) 33)) (-3799 (((-868) $) 131)) (-2335 (((-112) $ $) NIL)) (-2942 (($ $) 35) (($ $ (-777)) 37)) (-3022 (((-112) $ $) NIL)) (-3101 (($ |#2| $) 41)))
-(((-405 |#1| |#2|) (-13 (-1109) (-620 (-413 |#2|)) (-10 -8 (-15 -3101 ($ |#2| $)) (-15 -3142 ($ (-413 |#2|))) (-15 -4288 (|#2| $)) (-15 -1338 ((-650 (-2 (|:| -3357 (-777)) (|:| -2288 |#2|) (|:| |num| |#2|))) $)) (-15 -3811 ($ (-650 (-2 (|:| -3357 (-777)) (|:| -2288 |#2|) (|:| |num| |#2|))))) (-15 -3547 ($ $)) (-15 -2942 ($ $)) (-15 -3547 ($ $ (-777))) (-15 -2942 ($ $ (-777))))) (-13 (-368) (-148)) (-1253 |#1|)) (T -405))
-((-3101 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *2)) (-4 *2 (-1253 *3)))) (-3142 (*1 *1 *2) (-12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)))) (-4288 (*1 *2 *1) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-405 *3 *2)) (-4 *3 (-13 (-368) (-148))))) (-1338 (*1 *2 *1) (-12 (-4 *3 (-13 (-368) (-148))) (-5 *2 (-650 (-2 (|:| -3357 (-777)) (|:| -2288 *4) (|:| |num| *4)))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))) (-3811 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -3357 (-777)) (|:| -2288 *4) (|:| |num| *4)))) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)))) (-3547 (*1 *1 *1) (-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3)) (-4 *3 (-1253 *2)))) (-2942 (*1 *1 *1) (-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3)) (-4 *3 (-1253 *2)))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))) (-2942 (*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 -3101 ($ |#2| $)) (-15 -3142 ($ (-413 |#2|))) (-15 -4288 (|#2| $)) (-15 -1338 ((-650 (-2 (|:| -3357 (-777)) (|:| -2288 |#2|) (|:| |num| |#2|))) $)) (-15 -3811 ($ (-650 (-2 (|:| -3357 (-777)) (|:| -2288 |#2|) (|:| |num| |#2|))))) (-15 -3547 ($ $)) (-15 -2942 ($ $)) (-15 -3547 ($ $ (-777))) (-15 -2942 ($ $ (-777)))))
-((-2558 (((-112) $ $) 9 (-2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 16 (|has| |#1| (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 15 (|has| |#1| (-893 (-570))))) (-1988 (((-1168) $) 13 (-2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3577 (((-1129) $) 12 (-2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3799 (((-868) $) 11 (-2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-2335 (((-112) $ $) 14 (-2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3022 (((-112) $ $) 10 (-2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))))
+((-4262 (((-650 (-1168)) (-650 (-1168))) 9)) (-3400 (((-1282) (-394)) 26)) (-2689 (((-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 -2689 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)))) (-15 -2689 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186))) (-15 -2689 ((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186)))) (-15 -3400 ((-1282) (-394))) (-15 -4262 ((-650 (-1168)) (-650 (-1168)))))) (T -403))
+((-4262 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-403)))) (-3400 (*1 *2 *3) (-12 (-5 *3 (-394)) (-5 *2 (-1282)) (-5 *1 (-403)))) (-2689 (*1 *2 *3 *4 *5 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *5 (-1189)) (-5 *3 (-1186)) (-5 *2 (-1113)) (-5 *1 (-403)))) (-2689 (*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)))) (-2689 (*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 -2689 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)))) (-15 -2689 ((-1113) (-1186) (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186)))) (-650 (-650 (-3 (|:| |array| (-650 (-1186))) (|:| |scalar| (-1186))))) (-650 (-1186)) (-1186))) (-15 -2689 ((-1113) (-1186) (-650 (-1186)) (-1189) (-650 (-1186)))) (-15 -3400 ((-1282) (-394))) (-15 -4262 ((-650 (-1168)) (-650 (-1168)))))
+((-3400 (((-1282) $) 35)) (-3802 (((-868) $) 97) (($ (-334)) 99) (($ (-650 (-334))) 98) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-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 -3802 ($ (-334))) (-15 -3802 ($ (-650 (-334)))) (-15 -3802 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))) (-15 -3802 ($ (-320 (-707)))) (-15 -3802 ($ (-320 (-705)))) (-15 -3802 ($ (-320 (-700)))) (-15 -3802 ($ (-298 (-320 (-707))))) (-15 -3802 ($ (-298 (-320 (-705))))) (-15 -3802 ($ (-298 (-320 (-700))))) (-15 -3802 ($ (-320 (-570)))) (-15 -3802 ($ (-320 (-384)))) (-15 -3802 ($ (-320 (-171 (-384))))) (-15 -3802 ($ (-298 (-320 (-570))))) (-15 -3802 ($ (-298 (-320 (-384))))) (-15 -3802 ($ (-298 (-320 (-171 (-384)))))))) (-1186) (-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-650 (-1186)) (-1190)) (T -404))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-334)) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-320 (-707))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-320 (-705))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-320 (-700))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-707)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-705)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-700)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-320 (-570))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-320 (-384))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-570)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-298 (-320 (-384)))) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))) (-3802 (*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)) (|:| -2716 "void"))) (-14 *5 (-650 (-1186))) (-14 *6 (-1190)))))
+(-13 (-401) (-10 -8 (-15 -3802 ($ (-334))) (-15 -3802 ($ (-650 (-334)))) (-15 -3802 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))) (-15 -3802 ($ (-320 (-707)))) (-15 -3802 ($ (-320 (-705)))) (-15 -3802 ($ (-320 (-700)))) (-15 -3802 ($ (-298 (-320 (-707))))) (-15 -3802 ($ (-298 (-320 (-705))))) (-15 -3802 ($ (-298 (-320 (-700))))) (-15 -3802 ($ (-320 (-570)))) (-15 -3802 ($ (-320 (-384)))) (-15 -3802 ($ (-320 (-171 (-384))))) (-15 -3802 ($ (-298 (-320 (-570))))) (-15 -3802 ($ (-298 (-320 (-384))))) (-15 -3802 ($ (-298 (-320 (-171 (-384))))))))
+((-2560 (((-112) $ $) NIL)) (-1791 ((|#2| $) 38)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2584 (($ (-413 |#2|)) 93)) (-1922 (((-650 (-2 (|:| -3994 (-777)) (|:| -2289 |#2|) (|:| |num| |#2|))) $) 39)) (-3550 (($ $) 34) (($ $ (-777)) 36)) (-1426 (((-413 |#2|) $) 49)) (-3814 (($ (-650 (-2 (|:| -3994 (-777)) (|:| -2289 |#2|) (|:| |num| |#2|)))) 33)) (-3802 (((-868) $) 131)) (-3359 (((-112) $ $) NIL)) (-2945 (($ $) 35) (($ $ (-777)) 37)) (-3025 (((-112) $ $) NIL)) (-3104 (($ |#2| $) 41)))
+(((-405 |#1| |#2|) (-13 (-1109) (-620 (-413 |#2|)) (-10 -8 (-15 -3104 ($ |#2| $)) (-15 -2584 ($ (-413 |#2|))) (-15 -1791 (|#2| $)) (-15 -1922 ((-650 (-2 (|:| -3994 (-777)) (|:| -2289 |#2|) (|:| |num| |#2|))) $)) (-15 -3814 ($ (-650 (-2 (|:| -3994 (-777)) (|:| -2289 |#2|) (|:| |num| |#2|))))) (-15 -3550 ($ $)) (-15 -2945 ($ $)) (-15 -3550 ($ $ (-777))) (-15 -2945 ($ $ (-777))))) (-13 (-368) (-148)) (-1253 |#1|)) (T -405))
+((-3104 (*1 *1 *2 *1) (-12 (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *2)) (-4 *2 (-1253 *3)))) (-2584 (*1 *1 *2) (-12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)))) (-1791 (*1 *2 *1) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-405 *3 *2)) (-4 *3 (-13 (-368) (-148))))) (-1922 (*1 *2 *1) (-12 (-4 *3 (-13 (-368) (-148))) (-5 *2 (-650 (-2 (|:| -3994 (-777)) (|:| -2289 *4) (|:| |num| *4)))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))) (-3814 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -3994 (-777)) (|:| -2289 *4) (|:| |num| *4)))) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)))) (-3550 (*1 *1 *1) (-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3)) (-4 *3 (-1253 *2)))) (-2945 (*1 *1 *1) (-12 (-4 *2 (-13 (-368) (-148))) (-5 *1 (-405 *2 *3)) (-4 *3 (-1253 *2)))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-368) (-148))) (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))) (-2945 (*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 -3104 ($ |#2| $)) (-15 -2584 ($ (-413 |#2|))) (-15 -1791 (|#2| $)) (-15 -1922 ((-650 (-2 (|:| -3994 (-777)) (|:| -2289 |#2|) (|:| |num| |#2|))) $)) (-15 -3814 ($ (-650 (-2 (|:| -3994 (-777)) (|:| -2289 |#2|) (|:| |num| |#2|))))) (-15 -3550 ($ $)) (-15 -2945 ($ $)) (-15 -3550 ($ $ (-777))) (-15 -2945 ($ $ (-777)))))
+((-2560 (((-112) $ $) 9 (-2895 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 16 (|has| |#1| (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 15 (|has| |#1| (-893 (-570))))) (-3989 (((-1168) $) 13 (-2895 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3580 (((-1129) $) 12 (-2895 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3802 (((-868) $) 11 (-2895 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3359 (((-112) $ $) 14 (-2895 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))))) (-3025 (((-112) $ $) 10 (-2895 (|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) -2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-619 (-868)) -2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-1109) -2892 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-1227) . T))
-((-2063 (($ $) 10) (($ $ (-777)) 12)))
-(((-407 |#1|) (-10 -8 (-15 -2063 (|#1| |#1| (-777))) (-15 -2063 (|#1| |#1|))) (-408)) (T -407))
+(((-102) -2895 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-619 (-868)) -2895 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-893 (-384)) |has| |#1| (-893 (-384))) ((-893 (-570)) |has| |#1| (-893 (-570))) ((-1109) -2895 (|has| |#1| (-893 (-570))) (|has| |#1| (-893 (-384)))) ((-1227) . T))
+((-3599 (($ $) 10) (($ $ (-777)) 12)))
+(((-407 |#1|) (-10 -8 (-15 -3599 (|#1| |#1| (-777))) (-15 -3599 (|#1| |#1|))) (-408)) (T -407))
NIL
-(-10 -8 (-15 -2063 (|#1| |#1| (-777))) (-15 -2063 (|#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3473 (((-112) $ $) 65)) (-1705 (($) 18 T CONST)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-2063 (($ $) 87) (($ $ (-777)) 86)) (-3618 (((-112) $) 79)) (-4323 (((-839 (-928)) $) 89)) (-4346 (((-112) $) 35)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-3801 (((-424 $) $) 82)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-2289 (((-3 (-777) "failed") $ $) 88)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-3532 (((-3 $ "failed") $) 90)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 73)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+(-10 -8 (-15 -3599 (|#1| |#1| (-777))) (-15 -3599 (|#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3765 (((-112) $ $) 65)) (-3195 (($) 18 T CONST)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-3599 (($ $) 87) (($ $ (-777)) 86)) (-1336 (((-112) $) 79)) (-3941 (((-839 (-928)) $) 89)) (-4139 (((-112) $) 35)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3804 (((-424 $) $) 82)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-4080 (((-3 (-777) "failed") $ $) 88)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74)) (-3132 (((-3 $ "failed") $) 90)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 73)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
(((-408) (-141)) (T -408))
-((-4323 (*1 *2 *1) (-12 (-4 *1 (-408)) (-5 *2 (-839 (-928))))) (-2289 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-408)) (-5 *2 (-777)))) (-2063 (*1 *1 *1) (-4 *1 (-408))) (-2063 (*1 *1 *1 *2) (-12 (-4 *1 (-408)) (-5 *2 (-777)))))
-(-13 (-368) (-146) (-10 -8 (-15 -4323 ((-839 (-928)) $)) (-15 -2289 ((-3 (-777) "failed") $ $)) (-15 -2063 ($ $)) (-15 -2063 ($ $ (-777)))))
+((-3941 (*1 *2 *1) (-12 (-4 *1 (-408)) (-5 *2 (-839 (-928))))) (-4080 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-408)) (-5 *2 (-777)))) (-3599 (*1 *1 *1) (-4 *1 (-408))) (-3599 (*1 *1 *1 *2) (-12 (-4 *1 (-408)) (-5 *2 (-777)))))
+(-13 (-368) (-146) (-10 -8 (-15 -3941 ((-839 (-928)) $)) (-15 -4080 ((-3 (-777) "failed") $ $)) (-15 -3599 ($ $)) (-15 -3599 ($ $ (-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))
-((-2693 (($ (-570) (-570)) 11) (($ (-570) (-570) (-928)) NIL)) (-2737 (((-928)) 19) (((-928) (-928)) NIL)))
-(((-409 |#1|) (-10 -8 (-15 -2737 ((-928) (-928))) (-15 -2737 ((-928))) (-15 -2693 (|#1| (-570) (-570) (-928))) (-15 -2693 (|#1| (-570) (-570)))) (-410)) (T -409))
-((-2737 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410)))) (-2737 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410)))))
-(-10 -8 (-15 -2737 ((-928) (-928))) (-15 -2737 ((-928))) (-15 -2693 (|#1| (-570) (-570) (-928))) (-15 -2693 (|#1| (-570) (-570))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1733 (((-570) $) 97)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-1447 (($ $) 95)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3814 (($ $) 105)) (-3473 (((-112) $ $) 65)) (-4395 (((-570) $) 122)) (-1705 (($) 18 T CONST)) (-1529 (($ $) 94)) (-4380 (((-3 (-570) "failed") $) 110) (((-3 (-413 (-570)) "failed") $) 107)) (-3216 (((-570) $) 111) (((-413 (-570)) $) 108)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-3618 (((-112) $) 79)) (-4152 (((-928)) 138) (((-928) (-928)) 135 (|has| $ (-6 -4440)))) (-3903 (((-112) $) 120)) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 101)) (-4323 (((-570) $) 144)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 104)) (-2959 (($ $) 100)) (-1479 (((-112) $) 121)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3466 (($ $ $) 119) (($) 132 (-12 (-1795 (|has| $ (-6 -4440))) (-1795 (|has| $ (-6 -4432)))))) (-2800 (($ $ $) 118) (($) 131 (-12 (-1795 (|has| $ (-6 -4440))) (-1795 (|has| $ (-6 -4432)))))) (-3120 (((-570) $) 141)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-2280 (((-928) (-570)) 134 (|has| $ (-6 -4440)))) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2564 (($ $) 96)) (-3665 (($ $) 98)) (-2693 (($ (-570) (-570)) 146) (($ (-570) (-570) (-928)) 145)) (-3801 (((-424 $) $) 82)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-3357 (((-570) $) 142)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-2737 (((-928)) 139) (((-928) (-928)) 136 (|has| $ (-6 -4440)))) (-2904 (((-928) (-570)) 133 (|has| $ (-6 -4440)))) (-1425 (((-384) $) 113) (((-227) $) 112) (((-899 (-384)) $) 102)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-570)) 109) (($ (-413 (-570))) 106)) (-3499 (((-777)) 32 T CONST)) (-1313 (($ $) 99)) (-1660 (((-928)) 140) (((-928) (-928)) 137 (|has| $ (-6 -4440)))) (-2335 (((-112) $ $) 9)) (-4406 (((-928)) 143)) (-2029 (((-112) $ $) 45)) (-2622 (($ $) 123)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3072 (((-112) $ $) 116)) (-3052 (((-112) $ $) 115)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 117)) (-3042 (((-112) $ $) 114)) (-3122 (($ $ $) 73)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 103)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+((-2695 (($ (-570) (-570)) 11) (($ (-570) (-570) (-928)) NIL)) (-3098 (((-928)) 19) (((-928) (-928)) NIL)))
+(((-409 |#1|) (-10 -8 (-15 -3098 ((-928) (-928))) (-15 -3098 ((-928))) (-15 -2695 (|#1| (-570) (-570) (-928))) (-15 -2695 (|#1| (-570) (-570)))) (-410)) (T -409))
+((-3098 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410)))) (-3098 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-409 *3)) (-4 *3 (-410)))))
+(-10 -8 (-15 -3098 ((-928) (-928))) (-15 -3098 ((-928))) (-15 -2695 (|#1| (-570) (-570) (-928))) (-15 -2695 (|#1| (-570) (-570))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3472 (((-570) $) 97)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1622 (($ $) 95)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3817 (($ $) 105)) (-3765 (((-112) $ $) 65)) (-3408 (((-570) $) 122)) (-3195 (($) 18 T CONST)) (-2048 (($ $) 94)) (-4383 (((-3 (-570) "failed") $) 110) (((-3 (-413 (-570)) "failed") $) 107)) (-3220 (((-570) $) 111) (((-413 (-570)) $) 108)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-1336 (((-112) $) 79)) (-4156 (((-928)) 138) (((-928) (-928)) 135 (|has| $ (-6 -4443)))) (-2346 (((-112) $) 120)) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 101)) (-3941 (((-570) $) 144)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 104)) (-4399 (($ $) 100)) (-2788 (((-112) $) 121)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3469 (($ $ $) 119) (($) 132 (-12 (-1796 (|has| $ (-6 -4443))) (-1796 (|has| $ (-6 -4435)))))) (-2472 (($ $ $) 118) (($) 131 (-12 (-1796 (|has| $ (-6 -4443))) (-1796 (|has| $ (-6 -4435)))))) (-3123 (((-570) $) 141)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-4004 (((-928) (-570)) 134 (|has| $ (-6 -4443)))) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3889 (($ $) 96)) (-1920 (($ $) 98)) (-2695 (($ (-570) (-570)) 146) (($ (-570) (-570) (-928)) 145)) (-3804 (((-424 $) $) 82)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-3994 (((-570) $) 142)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-3098 (((-928)) 139) (((-928) (-928)) 136 (|has| $ (-6 -4443)))) (-2064 (((-928) (-570)) 133 (|has| $ (-6 -4443)))) (-1426 (((-384) $) 113) (((-227) $) 112) (((-899 (-384)) $) 102)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-570)) 109) (($ (-413 (-570))) 106)) (-2851 (((-777)) 32 T CONST)) (-1918 (($ $) 99)) (-3942 (((-928)) 140) (((-928) (-928)) 137 (|has| $ (-6 -4443)))) (-3359 (((-112) $ $) 9)) (-4409 (((-928)) 143)) (-3228 (((-112) $ $) 45)) (-3231 (($ $) 123)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3075 (((-112) $ $) 116)) (-3055 (((-112) $ $) 115)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 117)) (-3045 (((-112) $ $) 114)) (-3125 (($ $ $) 73)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2693 (*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-410)))) (-2693 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-4 *1 (-410)))) (-4323 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-4406 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3357 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-3120 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-1660 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-2737 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-4152 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-1660 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410)))) (-2737 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410)))) (-4152 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410)))) (-2280 (*1 *2 *3) (-12 (-5 *3 (-570)) (|has| *1 (-6 -4440)) (-4 *1 (-410)) (-5 *2 (-928)))) (-2904 (*1 *2 *3) (-12 (-5 *3 (-570)) (|has| *1 (-6 -4440)) (-4 *1 (-410)) (-5 *2 (-928)))) (-3466 (*1 *1) (-12 (-4 *1 (-410)) (-1795 (|has| *1 (-6 -4440))) (-1795 (|has| *1 (-6 -4432))))) (-2800 (*1 *1) (-12 (-4 *1 (-410)) (-1795 (|has| *1 (-6 -4440))) (-1795 (|has| *1 (-6 -4432))))))
-(-13 (-1069) (-10 -8 (-6 -3167) (-15 -2693 ($ (-570) (-570))) (-15 -2693 ($ (-570) (-570) (-928))) (-15 -4323 ((-570) $)) (-15 -4406 ((-928))) (-15 -3357 ((-570) $)) (-15 -3120 ((-570) $)) (-15 -1660 ((-928))) (-15 -2737 ((-928))) (-15 -4152 ((-928))) (IF (|has| $ (-6 -4440)) (PROGN (-15 -1660 ((-928) (-928))) (-15 -2737 ((-928) (-928))) (-15 -4152 ((-928) (-928))) (-15 -2280 ((-928) (-570))) (-15 -2904 ((-928) (-570)))) |%noBranch|) (IF (|has| $ (-6 -4432)) |%noBranch| (IF (|has| $ (-6 -4440)) |%noBranch| (PROGN (-15 -3466 ($)) (-15 -2800 ($)))))))
+((-2695 (*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-4 *1 (-410)))) (-2695 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-928)) (-4 *1 (-410)))) (-3941 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-4409 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3994 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-3123 (*1 *2 *1) (-12 (-4 *1 (-410)) (-5 *2 (-570)))) (-3942 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3098 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-4156 (*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) (-3942 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4443)) (-4 *1 (-410)))) (-3098 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4443)) (-4 *1 (-410)))) (-4156 (*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4443)) (-4 *1 (-410)))) (-4004 (*1 *2 *3) (-12 (-5 *3 (-570)) (|has| *1 (-6 -4443)) (-4 *1 (-410)) (-5 *2 (-928)))) (-2064 (*1 *2 *3) (-12 (-5 *3 (-570)) (|has| *1 (-6 -4443)) (-4 *1 (-410)) (-5 *2 (-928)))) (-3469 (*1 *1) (-12 (-4 *1 (-410)) (-1796 (|has| *1 (-6 -4443))) (-1796 (|has| *1 (-6 -4435))))) (-2472 (*1 *1) (-12 (-4 *1 (-410)) (-1796 (|has| *1 (-6 -4443))) (-1796 (|has| *1 (-6 -4435))))))
+(-13 (-1069) (-10 -8 (-6 -3170) (-15 -2695 ($ (-570) (-570))) (-15 -2695 ($ (-570) (-570) (-928))) (-15 -3941 ((-570) $)) (-15 -4409 ((-928))) (-15 -3994 ((-570) $)) (-15 -3123 ((-570) $)) (-15 -3942 ((-928))) (-15 -3098 ((-928))) (-15 -4156 ((-928))) (IF (|has| $ (-6 -4443)) (PROGN (-15 -3942 ((-928) (-928))) (-15 -3098 ((-928) (-928))) (-15 -4156 ((-928) (-928))) (-15 -4004 ((-928) (-570))) (-15 -2064 ((-928) (-570)))) |%noBranch|) (IF (|has| $ (-6 -4435)) |%noBranch| (IF (|has| $ (-6 -4443)) |%noBranch| (PROGN (-15 -3469 ($)) (-15 -2472 ($)))))))
(((-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))
-((-1356 (((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|)) 20)))
-(((-411 |#1| |#2|) (-10 -7 (-15 -1356 ((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|)))) (-562) (-562)) (T -411))
-((-1356 (*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 -1356 ((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|))))
-((-1356 (((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|)) 13)))
-(((-412 |#1| |#2|) (-10 -7 (-15 -1356 ((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|)))) (-562) (-562)) (T -412))
-((-1356 (*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 -1356 ((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 13)) (-1733 ((|#1| $) 21 (|has| |#1| (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| |#1| (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 ((|#1| $) 15) (((-1186) $) NIL (|has| |#1| (-1047 (-1186)))) (((-413 (-570)) $) 69 (|has| |#1| (-1047 (-570)))) (((-570) $) NIL (|has| |#1| (-1047 (-570))))) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) 51)) (-3446 (($) NIL (|has| |#1| (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) NIL (|has| |#1| (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#1| (-893 (-384))))) (-4346 (((-112) $) 57)) (-1330 (($ $) NIL)) (-4399 ((|#1| $) 73)) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1479 (((-112) $) NIL (|has| |#1| (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| |#1| (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 100)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| |#1| (-311)))) (-3665 ((|#1| $) 28 (|has| |#1| (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) 145 (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) 138 (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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|)))) (-2142 (((-777) $) NIL)) (-1941 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 ((|#1| $) 75)) (-1425 (((-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)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 122 (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 10) (($ (-1186)) NIL (|has| |#1| (-1047 (-1186))))) (-3532 (((-3 $ "failed") $) 102 (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) 103 T CONST)) (-1313 ((|#1| $) 26 (|has| |#1| (-551)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-2622 (($ $) NIL (|has| |#1| (-826)))) (-1861 (($) 22 T CONST)) (-1875 (($) 8 T CONST)) (-2831 (((-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))))) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) 66)) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) 24 (|has| |#1| (-856)))) (-3122 (($ $ $) 133) (($ |#1| |#1|) 53)) (-3111 (($ $) 25) (($ $ $) 56)) (-3101 (($ $ $) 54)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 132)) (* (($ (-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|)))
-((-1806 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 18)) (-3243 (($ (-1277 |#2|) (-1277 $)) NIL) (($ (-1277 |#2|)) 24)) (-2818 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 40)) (-3521 ((|#3| $) 69)) (-3570 ((|#2| (-1277 $)) NIL) ((|#2|) 20)) (-3424 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 22) (((-695 |#2|) (-1277 $)) 38)) (-1425 (((-1277 |#2|) $) 11) (($ (-1277 |#2|)) 13)) (-3553 ((|#3| $) 55)))
-(((-414 |#1| |#2| |#3|) (-10 -8 (-15 -2818 ((-695 |#2|) |#1|)) (-15 -3570 (|#2|)) (-15 -1806 ((-695 |#2|))) (-15 -1425 (|#1| (-1277 |#2|))) (-15 -1425 ((-1277 |#2|) |#1|)) (-15 -3243 (|#1| (-1277 |#2|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1|)) (-15 -3521 (|#3| |#1|)) (-15 -3553 (|#3| |#1|)) (-15 -1806 ((-695 |#2|) (-1277 |#1|))) (-15 -3570 (|#2| (-1277 |#1|))) (-15 -3243 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2818 ((-695 |#2|) |#1| (-1277 |#1|)))) (-415 |#2| |#3|) (-174) (-1253 |#2|)) (T -414))
-((-1806 (*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)))) (-3570 (*1 *2) (-12 (-4 *4 (-1253 *2)) (-4 *2 (-174)) (-5 *1 (-414 *3 *2 *4)) (-4 *3 (-415 *2 *4)))))
-(-10 -8 (-15 -2818 ((-695 |#2|) |#1|)) (-15 -3570 (|#2|)) (-15 -1806 ((-695 |#2|))) (-15 -1425 (|#1| (-1277 |#2|))) (-15 -1425 ((-1277 |#2|) |#1|)) (-15 -3243 (|#1| (-1277 |#2|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1|)) (-15 -3521 (|#3| |#1|)) (-15 -3553 (|#3| |#1|)) (-15 -1806 ((-695 |#2|) (-1277 |#1|))) (-15 -3570 (|#2| (-1277 |#1|))) (-15 -3243 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2818 ((-695 |#2|) |#1| (-1277 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1806 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3207 ((|#1| $) 59)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-3243 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-2818 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-2875 (((-3 $ "failed") $) 37)) (-4006 (((-928)) 61)) (-4346 (((-112) $) 35)) (-2959 ((|#1| $) 58)) (-3521 ((|#2| $) 51 (|has| |#1| (-368)))) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3570 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-3424 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1425 (((-1277 |#1|) $) 70) (($ (-1277 |#1|)) 69)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-3532 (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3553 ((|#2| $) 52)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1972 (((-1277 $)) 74)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-1357 (((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|)) 20)))
+(((-411 |#1| |#2|) (-10 -7 (-15 -1357 ((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|)))) (-562) (-562)) (T -411))
+((-1357 (*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 -1357 ((-424 |#2|) (-1 |#2| |#1|) (-424 |#1|))))
+((-1357 (((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|)) 13)))
+(((-412 |#1| |#2|) (-10 -7 (-15 -1357 ((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|)))) (-562) (-562)) (T -412))
+((-1357 (*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 -1357 ((-413 |#2|) (-1 |#2| |#1|) (-413 |#1|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 13)) (-3472 ((|#1| $) 21 (|has| |#1| (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| |#1| (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 ((|#1| $) 15) (((-1186) $) NIL (|has| |#1| (-1047 (-1186)))) (((-413 (-570)) $) 69 (|has| |#1| (-1047 (-570)))) (((-570) $) NIL (|has| |#1| (-1047 (-570))))) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) 51)) (-3449 (($) NIL (|has| |#1| (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) NIL (|has| |#1| (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#1| (-893 (-384))))) (-4139 (((-112) $) 57)) (-1834 (($ $) NIL)) (-4402 ((|#1| $) 73)) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-2788 (((-112) $) NIL (|has| |#1| (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| |#1| (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 100)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| |#1| (-311)))) (-1920 ((|#1| $) 28 (|has| |#1| (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) 145 (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) 138 (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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|)))) (-2006 (((-777) $) NIL)) (-1942 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 ((|#1| $) 75)) (-1426 (((-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)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 122 (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 10) (($ (-1186)) NIL (|has| |#1| (-1047 (-1186))))) (-3132 (((-3 $ "failed") $) 102 (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) 103 T CONST)) (-1918 ((|#1| $) 26 (|has| |#1| (-551)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3231 (($ $) NIL (|has| |#1| (-826)))) (-1862 (($) 22 T CONST)) (-1876 (($) 8 T CONST)) (-1423 (((-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))))) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) 66)) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) 24 (|has| |#1| (-856)))) (-3125 (($ $ $) 133) (($ |#1| |#1|) 53)) (-3114 (($ $) 25) (($ $ $) 56)) (-3104 (($ $ $) 54)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 132)) (* (($ (-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 -4439)) (IF (|has| |#1| (-458)) (IF (|has| |#1| (-6 -4450)) (-6 -4439) |%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 -4439)) (IF (|has| |#1| (-458)) (IF (|has| |#1| (-6 -4450)) (-6 -4439) |%noBranch|) |%noBranch|) |%noBranch|)))
+((-2913 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 18)) (-2322 (($ (-1277 |#2|) (-1277 $)) NIL) (($ (-1277 |#2|)) 24)) (-2595 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 40)) (-3043 ((|#3| $) 69)) (-2265 ((|#2| (-1277 $)) NIL) ((|#2|) 20)) (-3314 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 22) (((-695 |#2|) (-1277 $)) 38)) (-1426 (((-1277 |#2|) $) 11) (($ (-1277 |#2|)) 13)) (-2124 ((|#3| $) 55)))
+(((-414 |#1| |#2| |#3|) (-10 -8 (-15 -2595 ((-695 |#2|) |#1|)) (-15 -2265 (|#2|)) (-15 -2913 ((-695 |#2|))) (-15 -1426 (|#1| (-1277 |#2|))) (-15 -1426 ((-1277 |#2|) |#1|)) (-15 -2322 (|#1| (-1277 |#2|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1|)) (-15 -3043 (|#3| |#1|)) (-15 -2124 (|#3| |#1|)) (-15 -2913 ((-695 |#2|) (-1277 |#1|))) (-15 -2265 (|#2| (-1277 |#1|))) (-15 -2322 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2595 ((-695 |#2|) |#1| (-1277 |#1|)))) (-415 |#2| |#3|) (-174) (-1253 |#2|)) (T -414))
+((-2913 (*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)))) (-2265 (*1 *2) (-12 (-4 *4 (-1253 *2)) (-4 *2 (-174)) (-5 *1 (-414 *3 *2 *4)) (-4 *3 (-415 *2 *4)))))
+(-10 -8 (-15 -2595 ((-695 |#2|) |#1|)) (-15 -2265 (|#2|)) (-15 -2913 ((-695 |#2|))) (-15 -1426 (|#1| (-1277 |#2|))) (-15 -1426 ((-1277 |#2|) |#1|)) (-15 -2322 (|#1| (-1277 |#2|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1|)) (-15 -3043 (|#3| |#1|)) (-15 -2124 (|#3| |#1|)) (-15 -2913 ((-695 |#2|) (-1277 |#1|))) (-15 -2265 (|#2| (-1277 |#1|))) (-15 -2322 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -2595 ((-695 |#2|) |#1| (-1277 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-2913 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3211 ((|#1| $) 59)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-2322 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-2595 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-1929 (((-3 $ "failed") $) 37)) (-4009 (((-928)) 61)) (-4139 (((-112) $) 35)) (-4399 ((|#1| $) 58)) (-3043 ((|#2| $) 51 (|has| |#1| (-368)))) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2265 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-3314 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1426 (((-1277 |#1|) $) 70) (($ (-1277 |#1|)) 69)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44)) (-3132 (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-2124 ((|#2| $) 52)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3827 (((-1277 $)) 74)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1972 (*1 *2) (-12 (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *1)) (-4 *1 (-415 *3 *4)))) (-3424 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *3)))) (-3424 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-415 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)))) (-3243 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4)) (-4 *4 (-1253 *3)))) (-1425 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *3)))) (-1425 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4)) (-4 *4 (-1253 *3)))) (-1806 (*1 *2) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-695 *3)))) (-3570 (*1 *2) (-12 (-4 *1 (-415 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-2818 (*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 -1972 ((-1277 $))) (-15 -3424 ((-1277 |t#1|) $)) (-15 -3424 ((-695 |t#1|) (-1277 $))) (-15 -3243 ($ (-1277 |t#1|))) (-15 -1425 ((-1277 |t#1|) $)) (-15 -1425 ($ (-1277 |t#1|))) (-15 -1806 ((-695 |t#1|))) (-15 -3570 (|t#1|)) (-15 -2818 ((-695 |t#1|) $))))
+((-3827 (*1 *2) (-12 (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *1)) (-4 *1 (-415 *3 *4)))) (-3314 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *3)))) (-3314 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-415 *4 *5)) (-4 *4 (-174)) (-4 *5 (-1253 *4)) (-5 *2 (-695 *4)))) (-2322 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4)) (-4 *4 (-1253 *3)))) (-1426 (*1 *2 *1) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-1277 *3)))) (-1426 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-415 *3 *4)) (-4 *4 (-1253 *3)))) (-2913 (*1 *2) (-12 (-4 *1 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3)) (-5 *2 (-695 *3)))) (-2265 (*1 *2) (-12 (-4 *1 (-415 *2 *3)) (-4 *3 (-1253 *2)) (-4 *2 (-174)))) (-2595 (*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 -3827 ((-1277 $))) (-15 -3314 ((-1277 |t#1|) $)) (-15 -3314 ((-695 |t#1|) (-1277 $))) (-15 -2322 ($ (-1277 |t#1|))) (-15 -1426 ((-1277 |t#1|) $)) (-15 -1426 ($ (-1277 |t#1|))) (-15 -2913 ((-695 |t#1|))) (-15 -2265 (|t#1|)) (-15 -2595 ((-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))
-((-4380 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) 27) (((-3 (-570) "failed") $) 19)) (-3216 ((|#2| $) NIL) (((-413 (-570)) $) 24) (((-570) $) 14)) (-3799 (($ |#2|) NIL) (($ (-413 (-570))) 22) (($ (-570)) 11)))
-(((-416 |#1| |#2|) (-10 -8 (-15 -3799 (|#1| (-570))) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3799 (|#1| |#2|))) (-417 |#2|) (-1227)) (T -416))
+((-4383 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) 27) (((-3 (-570) "failed") $) 19)) (-3220 ((|#2| $) NIL) (((-413 (-570)) $) 24) (((-570) $) 14)) (-3802 (($ |#2|) NIL) (($ (-413 (-570))) 22) (($ (-570)) 11)))
+(((-416 |#1| |#2|) (-10 -8 (-15 -3802 (|#1| (-570))) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3802 (|#1| |#2|))) (-417 |#2|) (-1227)) (T -416))
NIL
-(-10 -8 (-15 -3799 (|#1| (-570))) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3799 (|#1| |#2|)))
-((-4380 (((-3 |#1| "failed") $) 9) (((-3 (-413 (-570)) "failed") $) 16 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 13 (|has| |#1| (-1047 (-570))))) (-3216 ((|#1| $) 8) (((-413 (-570)) $) 17 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 14 (|has| |#1| (-1047 (-570))))) (-3799 (($ |#1|) 6) (($ (-413 (-570))) 15 (|has| |#1| (-1047 (-413 (-570))))) (($ (-570)) 12 (|has| |#1| (-1047 (-570))))))
+(-10 -8 (-15 -3802 (|#1| (-570))) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3802 (|#1| |#2|)))
+((-4383 (((-3 |#1| "failed") $) 9) (((-3 (-413 (-570)) "failed") $) 16 (|has| |#1| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) 13 (|has| |#1| (-1047 (-570))))) (-3220 ((|#1| $) 8) (((-413 (-570)) $) 17 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 14 (|has| |#1| (-1047 (-570))))) (-3802 (($ |#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))
-((-1356 (((-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 -1356 ((-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))
-((-1356 (*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 -1356 ((-419 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-419 |#1| |#2| |#3| |#4|))))
-((-2558 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-3641 ((|#4| (-777) (-1277 |#4|)) 55)) (-4346 (((-112) $) NIL)) (-4399 (((-1277 |#4|) $) 15)) (-2959 ((|#2| $) 53)) (-1459 (($ $) 157)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 103)) (-2956 (($ (-1277 |#4|)) 102)) (-3577 (((-1129) $) NIL)) (-4413 ((|#1| $) 16)) (-2020 (($ $ $) NIL)) (-4391 (($ $ $) NIL)) (-3799 (((-868) $) 148)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 |#4|) $) 141)) (-1875 (($) 11 T CONST)) (-3022 (((-112) $ $) 39)) (-3122 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 134)) (* (($ $ $) 130)))
-(((-419 |#1| |#2| |#3| |#4|) (-13 (-479) (-10 -8 (-15 -2956 ($ (-1277 |#4|))) (-15 -1972 ((-1277 |#4|) $)) (-15 -2959 (|#2| $)) (-15 -4399 ((-1277 |#4|) $)) (-15 -4413 (|#1| $)) (-15 -1459 ($ $)) (-15 -3641 (|#4| (-777) (-1277 |#4|))))) (-311) (-1001 |#1|) (-1253 |#2|) (-13 (-415 |#2| |#3|) (-1047 |#2|))) (T -419))
-((-2956 (*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)))) (-1972 (*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))))) (-2959 (*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))))) (-1459 (*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))))) (-3641 (*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 -2956 ($ (-1277 |#4|))) (-15 -1972 ((-1277 |#4|) $)) (-15 -2959 (|#2| $)) (-15 -4399 ((-1277 |#4|) $)) (-15 -4413 (|#1| $)) (-15 -1459 ($ $)) (-15 -3641 (|#4| (-777) (-1277 |#4|)))))
-((-2558 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-2959 ((|#2| $) 71)) (-4287 (($ (-1277 |#4|)) 27) (($ (-419 |#1| |#2| |#3| |#4|)) 85 (|has| |#4| (-1047 |#2|)))) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 37)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 |#4|) $) 28)) (-1875 (($) 25 T CONST)) (-3022 (((-112) $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ $ $) 82)))
-(((-420 |#1| |#2| |#3| |#4| |#5|) (-13 (-732) (-10 -8 (-15 -1972 ((-1277 |#4|) $)) (-15 -2959 (|#2| $)) (-15 -4287 ($ (-1277 |#4|))) (IF (|has| |#4| (-1047 |#2|)) (-15 -4287 ($ (-419 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-311) (-1001 |#1|) (-1253 |#2|) (-415 |#2| |#3|) (-1277 |#4|)) (T -420))
-((-1972 (*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))) (-2959 (*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)))) (-4287 (*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))) (-4287 (*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 -1972 ((-1277 |#4|) $)) (-15 -2959 (|#2| $)) (-15 -4287 ($ (-1277 |#4|))) (IF (|has| |#4| (-1047 |#2|)) (-15 -4287 ($ (-419 |#1| |#2| |#3| |#4|))) |%noBranch|)))
-((-1356 ((|#3| (-1 |#4| |#2|) |#1|) 29)))
-(((-421 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#3| (-1 |#4| |#2|) |#1|))) (-423 |#2|) (-174) (-423 |#4|) (-174)) (T -421))
-((-1356 (*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 -1356 (|#3| (-1 |#4| |#2|) |#1|)))
-((-3128 (((-3 $ "failed")) 98)) (-4299 (((-1277 (-695 |#2|)) (-1277 $)) NIL) (((-1277 (-695 |#2|))) 103)) (-2983 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) 96)) (-2476 (((-3 $ "failed")) 95)) (-3919 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 114)) (-1666 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 122)) (-4404 (((-1182 (-959 |#2|))) 63)) (-1684 ((|#2| (-1277 $)) NIL) ((|#2|) 118)) (-3243 (($ (-1277 |#2|) (-1277 $)) NIL) (($ (-1277 |#2|)) 124)) (-2615 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) 94)) (-3089 (((-3 $ "failed")) 86)) (-3267 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 112)) (-1738 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 120)) (-3454 (((-1182 (-959 |#2|))) 62)) (-2374 ((|#2| (-1277 $)) NIL) ((|#2|) 116)) (-3424 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 123) (((-695 |#2|) (-1277 $)) 132)) (-1425 (((-1277 |#2|) $) 108) (($ (-1277 |#2|)) 110)) (-1987 (((-650 (-959 |#2|)) (-1277 $)) NIL) (((-650 (-959 |#2|))) 106)) (-3489 (($ (-695 |#2|) $) 102)))
-(((-422 |#1| |#2|) (-10 -8 (-15 -3489 (|#1| (-695 |#2|) |#1|)) (-15 -4404 ((-1182 (-959 |#2|)))) (-15 -3454 ((-1182 (-959 |#2|)))) (-15 -1666 ((-695 |#2|) |#1|)) (-15 -1738 ((-695 |#2|) |#1|)) (-15 -3919 ((-695 |#2|))) (-15 -3267 ((-695 |#2|))) (-15 -1684 (|#2|)) (-15 -2374 (|#2|)) (-15 -1425 (|#1| (-1277 |#2|))) (-15 -1425 ((-1277 |#2|) |#1|)) (-15 -3243 (|#1| (-1277 |#2|))) (-15 -1987 ((-650 (-959 |#2|)))) (-15 -4299 ((-1277 (-695 |#2|)))) (-15 -3424 ((-695 |#2|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1|)) (-15 -3128 ((-3 |#1| "failed"))) (-15 -2476 ((-3 |#1| "failed"))) (-15 -3089 ((-3 |#1| "failed"))) (-15 -2983 ((-3 (-2 (|:| |particular| |#1|) (|:| -1972 (-650 |#1|))) "failed"))) (-15 -2615 ((-3 (-2 (|:| |particular| |#1|) (|:| -1972 (-650 |#1|))) "failed"))) (-15 -3919 ((-695 |#2|) (-1277 |#1|))) (-15 -3267 ((-695 |#2|) (-1277 |#1|))) (-15 -1684 (|#2| (-1277 |#1|))) (-15 -2374 (|#2| (-1277 |#1|))) (-15 -3243 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -1666 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1738 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -4299 ((-1277 (-695 |#2|)) (-1277 |#1|))) (-15 -1987 ((-650 (-959 |#2|)) (-1277 |#1|)))) (-423 |#2|) (-174)) (T -422))
-((-4299 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-1987 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-2374 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2)))) (-1684 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2)))) (-3267 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3919 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3454 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-4404 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))))
-(-10 -8 (-15 -3489 (|#1| (-695 |#2|) |#1|)) (-15 -4404 ((-1182 (-959 |#2|)))) (-15 -3454 ((-1182 (-959 |#2|)))) (-15 -1666 ((-695 |#2|) |#1|)) (-15 -1738 ((-695 |#2|) |#1|)) (-15 -3919 ((-695 |#2|))) (-15 -3267 ((-695 |#2|))) (-15 -1684 (|#2|)) (-15 -2374 (|#2|)) (-15 -1425 (|#1| (-1277 |#2|))) (-15 -1425 ((-1277 |#2|) |#1|)) (-15 -3243 (|#1| (-1277 |#2|))) (-15 -1987 ((-650 (-959 |#2|)))) (-15 -4299 ((-1277 (-695 |#2|)))) (-15 -3424 ((-695 |#2|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1|)) (-15 -3128 ((-3 |#1| "failed"))) (-15 -2476 ((-3 |#1| "failed"))) (-15 -3089 ((-3 |#1| "failed"))) (-15 -2983 ((-3 (-2 (|:| |particular| |#1|) (|:| -1972 (-650 |#1|))) "failed"))) (-15 -2615 ((-3 (-2 (|:| |particular| |#1|) (|:| -1972 (-650 |#1|))) "failed"))) (-15 -3919 ((-695 |#2|) (-1277 |#1|))) (-15 -3267 ((-695 |#2|) (-1277 |#1|))) (-15 -1684 (|#2| (-1277 |#1|))) (-15 -2374 (|#2| (-1277 |#1|))) (-15 -3243 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3424 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3424 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -1666 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1738 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -4299 ((-1277 (-695 |#2|)) (-1277 |#1|))) (-15 -1987 ((-650 (-959 |#2|)) (-1277 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3128 (((-3 $ "failed")) 42 (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) 20)) (-4299 (((-1277 (-695 |#1|)) (-1277 $)) 83) (((-1277 (-695 |#1|))) 105)) (-4221 (((-1277 $)) 86)) (-1705 (($) 18 T CONST)) (-2983 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) 45 (|has| |#1| (-562)))) (-2476 (((-3 $ "failed")) 43 (|has| |#1| (-562)))) (-3919 (((-695 |#1|) (-1277 $)) 70) (((-695 |#1|)) 97)) (-3677 ((|#1| $) 79)) (-1666 (((-695 |#1|) $ (-1277 $)) 81) (((-695 |#1|) $) 95)) (-2054 (((-3 $ "failed") $) 50 (|has| |#1| (-562)))) (-4404 (((-1182 (-959 |#1|))) 93 (|has| |#1| (-368)))) (-2705 (($ $ (-928)) 31)) (-3637 ((|#1| $) 77)) (-2036 (((-1182 |#1|) $) 47 (|has| |#1| (-562)))) (-1684 ((|#1| (-1277 $)) 72) ((|#1|) 99)) (-3595 (((-1182 |#1|) $) 68)) (-1763 (((-112)) 62)) (-3243 (($ (-1277 |#1|) (-1277 $)) 74) (($ (-1277 |#1|)) 103)) (-2875 (((-3 $ "failed") $) 52 (|has| |#1| (-562)))) (-4006 (((-928)) 85)) (-4034 (((-112)) 59)) (-2604 (($ $ (-928)) 38)) (-2680 (((-112)) 55)) (-1950 (((-112)) 53)) (-1907 (((-112)) 57)) (-2615 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) 46 (|has| |#1| (-562)))) (-3089 (((-3 $ "failed")) 44 (|has| |#1| (-562)))) (-3267 (((-695 |#1|) (-1277 $)) 71) (((-695 |#1|)) 98)) (-2339 ((|#1| $) 80)) (-1738 (((-695 |#1|) $ (-1277 $)) 82) (((-695 |#1|) $) 96)) (-3259 (((-3 $ "failed") $) 51 (|has| |#1| (-562)))) (-3454 (((-1182 (-959 |#1|))) 94 (|has| |#1| (-368)))) (-1575 (($ $ (-928)) 32)) (-3680 ((|#1| $) 78)) (-2018 (((-1182 |#1|) $) 48 (|has| |#1| (-562)))) (-2374 ((|#1| (-1277 $)) 73) ((|#1|) 100)) (-1542 (((-1182 |#1|) $) 69)) (-1830 (((-112)) 63)) (-1988 (((-1168) $) 10)) (-4013 (((-112)) 54)) (-3196 (((-112)) 56)) (-2601 (((-112)) 58)) (-3577 (((-1129) $) 11)) (-3832 (((-112)) 61)) (-1941 ((|#1| $ (-570)) 106)) (-3424 (((-1277 |#1|) $ (-1277 $)) 76) (((-695 |#1|) (-1277 $) (-1277 $)) 75) (((-1277 |#1|) $) 108) (((-695 |#1|) (-1277 $)) 107)) (-1425 (((-1277 |#1|) $) 102) (($ (-1277 |#1|)) 101)) (-1987 (((-650 (-959 |#1|)) (-1277 $)) 84) (((-650 (-959 |#1|))) 104)) (-4391 (($ $ $) 28)) (-3795 (((-112)) 67)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1972 (((-1277 $)) 109)) (-3871 (((-650 (-1277 |#1|))) 49 (|has| |#1| (-562)))) (-3764 (($ $ $ $) 29)) (-2433 (((-112)) 65)) (-3489 (($ (-695 |#1|) $) 92)) (-3858 (($ $ $) 27)) (-2826 (((-112)) 66)) (-4363 (((-112)) 64)) (-1764 (((-112)) 60)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-1357 (((-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 -1357 ((-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))
+((-1357 (*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 -1357 ((-419 |#5| |#6| |#7| |#8|) (-1 |#5| |#1|) (-419 |#1| |#2| |#3| |#4|))))
+((-2560 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-1614 ((|#4| (-777) (-1277 |#4|)) 55)) (-4139 (((-112) $) NIL)) (-4402 (((-1277 |#4|) $) 15)) (-4399 ((|#2| $) 53)) (-2592 (($ $) 157)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 103)) (-4366 (($ (-1277 |#4|)) 102)) (-3580 (((-1129) $) NIL)) (-4416 ((|#1| $) 16)) (-4307 (($ $ $) NIL)) (-3381 (($ $ $) NIL)) (-3802 (((-868) $) 148)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 |#4|) $) 141)) (-1876 (($) 11 T CONST)) (-3025 (((-112) $ $) 39)) (-3125 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 134)) (* (($ $ $) 130)))
+(((-419 |#1| |#2| |#3| |#4|) (-13 (-479) (-10 -8 (-15 -4366 ($ (-1277 |#4|))) (-15 -3827 ((-1277 |#4|) $)) (-15 -4399 (|#2| $)) (-15 -4402 ((-1277 |#4|) $)) (-15 -4416 (|#1| $)) (-15 -2592 ($ $)) (-15 -1614 (|#4| (-777) (-1277 |#4|))))) (-311) (-1001 |#1|) (-1253 |#2|) (-13 (-415 |#2| |#3|) (-1047 |#2|))) (T -419))
+((-4366 (*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)))) (-3827 (*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))))) (-4399 (*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))))) (-4402 (*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))))) (-4416 (*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))))) (-2592 (*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))))) (-1614 (*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 -4366 ($ (-1277 |#4|))) (-15 -3827 ((-1277 |#4|) $)) (-15 -4399 (|#2| $)) (-15 -4402 ((-1277 |#4|) $)) (-15 -4416 (|#1| $)) (-15 -2592 ($ $)) (-15 -1614 (|#4| (-777) (-1277 |#4|)))))
+((-2560 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-4399 ((|#2| $) 71)) (-1778 (($ (-1277 |#4|)) 27) (($ (-419 |#1| |#2| |#3| |#4|)) 85 (|has| |#4| (-1047 |#2|)))) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 37)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 |#4|) $) 28)) (-1876 (($) 25 T CONST)) (-3025 (((-112) $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ $ $) 82)))
+(((-420 |#1| |#2| |#3| |#4| |#5|) (-13 (-732) (-10 -8 (-15 -3827 ((-1277 |#4|) $)) (-15 -4399 (|#2| $)) (-15 -1778 ($ (-1277 |#4|))) (IF (|has| |#4| (-1047 |#2|)) (-15 -1778 ($ (-419 |#1| |#2| |#3| |#4|))) |%noBranch|))) (-311) (-1001 |#1|) (-1253 |#2|) (-415 |#2| |#3|) (-1277 |#4|)) (T -420))
+((-3827 (*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))) (-4399 (*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)))) (-1778 (*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))) (-1778 (*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 -3827 ((-1277 |#4|) $)) (-15 -4399 (|#2| $)) (-15 -1778 ($ (-1277 |#4|))) (IF (|has| |#4| (-1047 |#2|)) (-15 -1778 ($ (-419 |#1| |#2| |#3| |#4|))) |%noBranch|)))
+((-1357 ((|#3| (-1 |#4| |#2|) |#1|) 29)))
+(((-421 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#3| (-1 |#4| |#2|) |#1|))) (-423 |#2|) (-174) (-423 |#4|) (-174)) (T -421))
+((-1357 (*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 -1357 (|#3| (-1 |#4| |#2|) |#1|)))
+((-3635 (((-3 $ "failed")) 98)) (-1896 (((-1277 (-695 |#2|)) (-1277 $)) NIL) (((-1277 (-695 |#2|))) 103)) (-1587 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) 96)) (-2434 (((-3 $ "failed")) 95)) (-2491 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 114)) (-3993 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 122)) (-3490 (((-1182 (-959 |#2|))) 63)) (-4154 ((|#2| (-1277 $)) NIL) ((|#2|) 118)) (-2322 (($ (-1277 |#2|) (-1277 $)) NIL) (($ (-1277 |#2|)) 124)) (-4329 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) 94)) (-3269 (((-3 $ "failed")) 86)) (-2553 (((-695 |#2|) (-1277 $)) NIL) (((-695 |#2|)) 112)) (-3524 (((-695 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) $) 120)) (-3607 (((-1182 (-959 |#2|))) 62)) (-3775 ((|#2| (-1277 $)) NIL) ((|#2|) 116)) (-3314 (((-1277 |#2|) $ (-1277 $)) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $) 123) (((-695 |#2|) (-1277 $)) 132)) (-1426 (((-1277 |#2|) $) 108) (($ (-1277 |#2|)) 110)) (-3978 (((-650 (-959 |#2|)) (-1277 $)) NIL) (((-650 (-959 |#2|))) 106)) (-3492 (($ (-695 |#2|) $) 102)))
+(((-422 |#1| |#2|) (-10 -8 (-15 -3492 (|#1| (-695 |#2|) |#1|)) (-15 -3490 ((-1182 (-959 |#2|)))) (-15 -3607 ((-1182 (-959 |#2|)))) (-15 -3993 ((-695 |#2|) |#1|)) (-15 -3524 ((-695 |#2|) |#1|)) (-15 -2491 ((-695 |#2|))) (-15 -2553 ((-695 |#2|))) (-15 -4154 (|#2|)) (-15 -3775 (|#2|)) (-15 -1426 (|#1| (-1277 |#2|))) (-15 -1426 ((-1277 |#2|) |#1|)) (-15 -2322 (|#1| (-1277 |#2|))) (-15 -3978 ((-650 (-959 |#2|)))) (-15 -1896 ((-1277 (-695 |#2|)))) (-15 -3314 ((-695 |#2|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1|)) (-15 -3635 ((-3 |#1| "failed"))) (-15 -2434 ((-3 |#1| "failed"))) (-15 -3269 ((-3 |#1| "failed"))) (-15 -1587 ((-3 (-2 (|:| |particular| |#1|) (|:| -3827 (-650 |#1|))) "failed"))) (-15 -4329 ((-3 (-2 (|:| |particular| |#1|) (|:| -3827 (-650 |#1|))) "failed"))) (-15 -2491 ((-695 |#2|) (-1277 |#1|))) (-15 -2553 ((-695 |#2|) (-1277 |#1|))) (-15 -4154 (|#2| (-1277 |#1|))) (-15 -3775 (|#2| (-1277 |#1|))) (-15 -2322 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -3993 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -3524 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1896 ((-1277 (-695 |#2|)) (-1277 |#1|))) (-15 -3978 ((-650 (-959 |#2|)) (-1277 |#1|)))) (-423 |#2|) (-174)) (T -422))
+((-1896 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3978 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-650 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3775 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2)))) (-4154 (*1 *2) (-12 (-4 *2 (-174)) (-5 *1 (-422 *3 *2)) (-4 *3 (-423 *2)))) (-2553 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-2491 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-695 *4)) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3607 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))) (-3490 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4)) (-4 *3 (-423 *4)))))
+(-10 -8 (-15 -3492 (|#1| (-695 |#2|) |#1|)) (-15 -3490 ((-1182 (-959 |#2|)))) (-15 -3607 ((-1182 (-959 |#2|)))) (-15 -3993 ((-695 |#2|) |#1|)) (-15 -3524 ((-695 |#2|) |#1|)) (-15 -2491 ((-695 |#2|))) (-15 -2553 ((-695 |#2|))) (-15 -4154 (|#2|)) (-15 -3775 (|#2|)) (-15 -1426 (|#1| (-1277 |#2|))) (-15 -1426 ((-1277 |#2|) |#1|)) (-15 -2322 (|#1| (-1277 |#2|))) (-15 -3978 ((-650 (-959 |#2|)))) (-15 -1896 ((-1277 (-695 |#2|)))) (-15 -3314 ((-695 |#2|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1|)) (-15 -3635 ((-3 |#1| "failed"))) (-15 -2434 ((-3 |#1| "failed"))) (-15 -3269 ((-3 |#1| "failed"))) (-15 -1587 ((-3 (-2 (|:| |particular| |#1|) (|:| -3827 (-650 |#1|))) "failed"))) (-15 -4329 ((-3 (-2 (|:| |particular| |#1|) (|:| -3827 (-650 |#1|))) "failed"))) (-15 -2491 ((-695 |#2|) (-1277 |#1|))) (-15 -2553 ((-695 |#2|) (-1277 |#1|))) (-15 -4154 (|#2| (-1277 |#1|))) (-15 -3775 (|#2| (-1277 |#1|))) (-15 -2322 (|#1| (-1277 |#2|) (-1277 |#1|))) (-15 -3314 ((-695 |#2|) (-1277 |#1|) (-1277 |#1|))) (-15 -3314 ((-1277 |#2|) |#1| (-1277 |#1|))) (-15 -3993 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -3524 ((-695 |#2|) |#1| (-1277 |#1|))) (-15 -1896 ((-1277 (-695 |#2|)) (-1277 |#1|))) (-15 -3978 ((-650 (-959 |#2|)) (-1277 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3635 (((-3 $ "failed")) 42 (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) 20)) (-1896 (((-1277 (-695 |#1|)) (-1277 $)) 83) (((-1277 (-695 |#1|))) 105)) (-2403 (((-1277 $)) 86)) (-3195 (($) 18 T CONST)) (-1587 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) 45 (|has| |#1| (-562)))) (-2434 (((-3 $ "failed")) 43 (|has| |#1| (-562)))) (-2491 (((-695 |#1|) (-1277 $)) 70) (((-695 |#1|)) 97)) (-3850 ((|#1| $) 79)) (-3993 (((-695 |#1|) $ (-1277 $)) 81) (((-695 |#1|) $) 95)) (-3498 (((-3 $ "failed") $) 50 (|has| |#1| (-562)))) (-3490 (((-1182 (-959 |#1|))) 93 (|has| |#1| (-368)))) (-2827 (($ $ (-928)) 31)) (-1563 ((|#1| $) 77)) (-3286 (((-1182 |#1|) $) 47 (|has| |#1| (-562)))) (-4154 ((|#1| (-1277 $)) 72) ((|#1|) 99)) (-2476 (((-1182 |#1|) $) 68)) (-2546 (((-112)) 62)) (-2322 (($ (-1277 |#1|) (-1277 $)) 74) (($ (-1277 |#1|)) 103)) (-1929 (((-3 $ "failed") $) 52 (|has| |#1| (-562)))) (-4009 (((-928)) 85)) (-4211 (((-112)) 59)) (-4234 (($ $ (-928)) 38)) (-3772 (((-112)) 55)) (-1745 (((-112)) 53)) (-4407 (((-112)) 57)) (-4329 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) 46 (|has| |#1| (-562)))) (-3269 (((-3 $ "failed")) 44 (|has| |#1| (-562)))) (-2553 (((-695 |#1|) (-1277 $)) 71) (((-695 |#1|)) 98)) (-3412 ((|#1| $) 80)) (-3524 (((-695 |#1|) $ (-1277 $)) 82) (((-695 |#1|) $) 96)) (-2480 (((-3 $ "failed") $) 51 (|has| |#1| (-562)))) (-3607 (((-1182 (-959 |#1|))) 94 (|has| |#1| (-368)))) (-4311 (($ $ (-928)) 32)) (-3879 ((|#1| $) 78)) (-4292 (((-1182 |#1|) $) 48 (|has| |#1| (-562)))) (-3775 ((|#1| (-1277 $)) 73) ((|#1|) 100)) (-2170 (((-1182 |#1|) $) 69)) (-3100 (((-112)) 63)) (-3989 (((-1168) $) 10)) (-4015 (((-112)) 54)) (-3058 (((-112)) 56)) (-4203 (((-112)) 58)) (-3580 (((-1129) $) 11)) (-2876 (((-112)) 61)) (-1942 ((|#1| $ (-570)) 106)) (-3314 (((-1277 |#1|) $ (-1277 $)) 76) (((-695 |#1|) (-1277 $) (-1277 $)) 75) (((-1277 |#1|) $) 108) (((-695 |#1|) (-1277 $)) 107)) (-1426 (((-1277 |#1|) $) 102) (($ (-1277 |#1|)) 101)) (-3978 (((-650 (-959 |#1|)) (-1277 $)) 84) (((-650 (-959 |#1|))) 104)) (-3381 (($ $ $) 28)) (-3762 (((-112)) 67)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3827 (((-1277 $)) 109)) (-3203 (((-650 (-1277 |#1|))) 49 (|has| |#1| (-562)))) (-3468 (($ $ $ $) 29)) (-3169 (((-112)) 65)) (-3492 (($ (-695 |#1|) $) 92)) (-3107 (($ $ $) 27)) (-1352 (((-112)) 66)) (-4298 (((-112)) 64)) (-2557 (((-112)) 60)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-423 |#1|) (-141) (-174)) (T -423))
-((-1972 (*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-423 *3)))) (-3424 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 *3)))) (-3424 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-423 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-4299 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 (-695 *3))))) (-1987 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-650 (-959 *3))))) (-3243 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))) (-1425 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 *3)))) (-1425 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))) (-2374 (*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-1684 (*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-3267 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-3919 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-1738 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-1666 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-3454 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368)) (-5 *2 (-1182 (-959 *3))))) (-4404 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368)) (-5 *2 (-1182 (-959 *3))))) (-3489 (*1 *1 *2 *1) (-12 (-5 *2 (-695 *3)) (-4 *1 (-423 *3)) (-4 *3 (-174)))))
-(-13 (-372 |t#1|) (-10 -8 (-15 -1972 ((-1277 $))) (-15 -3424 ((-1277 |t#1|) $)) (-15 -3424 ((-695 |t#1|) (-1277 $))) (-15 -1941 (|t#1| $ (-570))) (-15 -4299 ((-1277 (-695 |t#1|)))) (-15 -1987 ((-650 (-959 |t#1|)))) (-15 -3243 ($ (-1277 |t#1|))) (-15 -1425 ((-1277 |t#1|) $)) (-15 -1425 ($ (-1277 |t#1|))) (-15 -2374 (|t#1|)) (-15 -1684 (|t#1|)) (-15 -3267 ((-695 |t#1|))) (-15 -3919 ((-695 |t#1|))) (-15 -1738 ((-695 |t#1|) $)) (-15 -1666 ((-695 |t#1|) $)) (IF (|has| |t#1| (-368)) (PROGN (-15 -3454 ((-1182 (-959 |t#1|)))) (-15 -4404 ((-1182 (-959 |t#1|))))) |%noBranch|) (-15 -3489 ($ (-695 |t#1|) $))))
+((-3827 (*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-423 *3)))) (-3314 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 *3)))) (-3314 (*1 *2 *3) (-12 (-5 *3 (-1277 *1)) (-4 *1 (-423 *4)) (-4 *4 (-174)) (-5 *2 (-695 *4)))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-1896 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 (-695 *3))))) (-3978 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-650 (-959 *3))))) (-2322 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))) (-1426 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-1277 *3)))) (-1426 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-174)) (-4 *1 (-423 *3)))) (-3775 (*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-4154 (*1 *2) (-12 (-4 *1 (-423 *2)) (-4 *2 (-174)))) (-2553 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-2491 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-3524 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-3993 (*1 *2 *1) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-5 *2 (-695 *3)))) (-3607 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368)) (-5 *2 (-1182 (-959 *3))))) (-3490 (*1 *2) (-12 (-4 *1 (-423 *3)) (-4 *3 (-174)) (-4 *3 (-368)) (-5 *2 (-1182 (-959 *3))))) (-3492 (*1 *1 *2 *1) (-12 (-5 *2 (-695 *3)) (-4 *1 (-423 *3)) (-4 *3 (-174)))))
+(-13 (-372 |t#1|) (-10 -8 (-15 -3827 ((-1277 $))) (-15 -3314 ((-1277 |t#1|) $)) (-15 -3314 ((-695 |t#1|) (-1277 $))) (-15 -1942 (|t#1| $ (-570))) (-15 -1896 ((-1277 (-695 |t#1|)))) (-15 -3978 ((-650 (-959 |t#1|)))) (-15 -2322 ($ (-1277 |t#1|))) (-15 -1426 ((-1277 |t#1|) $)) (-15 -1426 ($ (-1277 |t#1|))) (-15 -3775 (|t#1|)) (-15 -4154 (|t#1|)) (-15 -2553 ((-695 |t#1|))) (-15 -2491 ((-695 |t#1|))) (-15 -3524 ((-695 |t#1|) $)) (-15 -3993 ((-695 |t#1|) $)) (IF (|has| |t#1| (-368)) (PROGN (-15 -3607 ((-1182 (-959 |t#1|)))) (-15 -3490 ((-1182 (-959 |t#1|))))) |%noBranch|) (-15 -3492 ($ (-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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 60)) (-2545 (($ $) 78)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 191)) (-3074 (($ $) NIL)) (-3475 (((-112) $) 48)) (-3128 ((|#1| $) 16)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| |#1| (-1231)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-1231)))) (-2311 (($ |#1| (-570)) 42)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 148)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 74)) (-2875 (((-3 $ "failed") $) 164)) (-2805 (((-3 (-413 (-570)) "failed") $) 84 (|has| |#1| (-551)))) (-3242 (((-112) $) 80 (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) 91 (|has| |#1| (-551)))) (-2849 (($ |#1| (-570)) 44)) (-3618 (((-112) $) 211 (|has| |#1| (-1231)))) (-4346 (((-112) $) 62)) (-3044 (((-777) $) 51)) (-2946 (((-3 "nil" "sqfr" "irred" "prime") $ (-570)) 175)) (-2610 ((|#1| $ (-570)) 174)) (-3896 (((-570) $ (-570)) 173)) (-3388 (($ |#1| (-570)) 41)) (-1356 (($ (-1 |#1| |#1|) $) 183)) (-2389 (($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570))))) 79)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1988 (((-1168) $) NIL)) (-2201 (($ |#1| (-570)) 43)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) 192 (|has| |#1| (-458)))) (-2827 (($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime")) 40)) (-3477 (((-650 (-2 (|:| -3801 |#1|) (|:| -3357 (-570)))) $) 73)) (-3540 (((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $) 12)) (-3801 (((-424 $) $) NIL (|has| |#1| (-1231)))) (-2547 (((-3 $ "failed") $ $) 176)) (-3357 (((-570) $) 167)) (-1392 ((|#1| $) 75)) (-1770 (($ $ (-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 $)))) (-1941 (($ $ |#1|) 92 (|has| |#1| (-290 |#1| |#1|))) (($ $ $) 93 (|has| |#1| (-290 $ $)))) (-3547 (($ $) 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)) (-1425 (((-542) $) 39 (|has| |#1| (-620 (-542)))) (((-384) $) 113 (|has| |#1| (-1031))) (((-227) $) 119 (|has| |#1| (-1031)))) (-3799 (((-868) $) 146) (($ (-570)) 65) (($ $) NIL) (($ |#1|) 64) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570)))))) (-3499 (((-777)) 67 T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) 53 T CONST)) (-1875 (($) 52 T CONST)) (-2942 (($ $) 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)) (-3022 (((-112) $ $) 159)) (-3111 (($ $) 161) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1392 (|#1| $)) (-15 -3357 ((-570) $)) (-15 -2389 ($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))))) (-15 -3540 ((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $)) (-15 -3388 ($ |#1| (-570))) (-15 -3477 ((-650 (-2 (|:| -3801 |#1|) (|:| -3357 (-570)))) $)) (-15 -2201 ($ |#1| (-570))) (-15 -3896 ((-570) $ (-570))) (-15 -2610 (|#1| $ (-570))) (-15 -2946 ((-3 "nil" "sqfr" "irred" "prime") $ (-570))) (-15 -3044 ((-777) $)) (-15 -2849 ($ |#1| (-570))) (-15 -2311 ($ |#1| (-570))) (-15 -2827 ($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3128 (|#1| $)) (-15 -2545 ($ $)) (-15 -1356 ($ (-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 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-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))
-((-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-562)) (-5 *1 (-424 *3)))) (-1392 (*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3357 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-2389 (*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)))) (-3540 (*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)))) (-3388 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3477 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -3801 *3) (|:| -3357 (-570))))) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-2201 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3896 (*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-2610 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2946 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-424 *4)) (-4 *4 (-562)))) (-3044 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-2849 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2311 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2827 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3128 (*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2545 (*1 *1 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3242 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))) (-2068 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))) (-2805 (*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 -1392 (|#1| $)) (-15 -3357 ((-570) $)) (-15 -2389 ($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))))) (-15 -3540 ((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $)) (-15 -3388 ($ |#1| (-570))) (-15 -3477 ((-650 (-2 (|:| -3801 |#1|) (|:| -3357 (-570)))) $)) (-15 -2201 ($ |#1| (-570))) (-15 -3896 ((-570) $ (-570))) (-15 -2610 (|#1| $ (-570))) (-15 -2946 ((-3 "nil" "sqfr" "irred" "prime") $ (-570))) (-15 -3044 ((-777) $)) (-15 -2849 ($ |#1| (-570))) (-15 -2311 ($ |#1| (-570))) (-15 -2827 ($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3128 (|#1| $)) (-15 -2545 ($ $)) (-15 -1356 ($ (-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 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-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|)))
-((-1401 (((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|)) 28)) (-1636 (((-424 |#1|) (-424 |#1|) (-424 |#1|)) 17)))
-(((-425 |#1|) (-10 -7 (-15 -1401 ((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|))) (-15 -1636 ((-424 |#1|) (-424 |#1|) (-424 |#1|)))) (-562)) (T -425))
-((-1636 (*1 *2 *2 *2) (-12 (-5 *2 (-424 *3)) (-4 *3 (-562)) (-5 *1 (-425 *3)))) (-1401 (*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 -1401 ((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|))) (-15 -1636 ((-424 |#1|) (-424 |#1|) (-424 |#1|))))
-((-2995 ((|#2| |#2|) 183)) (-1504 (((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112)) 60)))
-(((-426 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1504 ((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112))) (-15 -2995 (|#2| |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|)) (-1186) |#2|) (T -426))
-((-2995 (*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))) (-1504 (*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 -1504 ((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112))) (-15 -2995 (|#2| |#2|)))
-((-1356 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
-(((-427 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#4| (-1 |#3| |#1|) |#2|))) (-1058) (-436 |#1|) (-1058) (-436 |#3|)) (T -427))
-((-1356 (*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 -1356 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2995 ((|#2| |#2|) 106)) (-3131 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168)) 52)) (-4267 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168)) 170)))
-(((-428 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3131 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -4267 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -2995 (|#2| |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|) (-10 -8 (-15 -3799 ($ |#3|)))) (-854) (-13 (-1255 |#2| |#3|) (-368) (-1212) (-10 -8 (-15 -3547 ($ $)) (-15 -2898 ($ $)))) (-992 |#4|) (-1186)) (T -428))
-((-2995 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *2 (-13 (-27) (-1212) (-436 *3) (-10 -8 (-15 -3799 ($ *4))))) (-4 *4 (-854)) (-4 *5 (-13 (-1255 *2 *4) (-368) (-1212) (-10 -8 (-15 -3547 ($ $)) (-15 -2898 ($ $))))) (-5 *1 (-428 *3 *2 *4 *5 *6 *7)) (-4 *6 (-992 *5)) (-14 *7 (-1186)))) (-4267 (*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 -3799 ($ *7))))) (-4 *7 (-854)) (-4 *8 (-13 (-1255 *3 *7) (-368) (-1212) (-10 -8 (-15 -3547 ($ $)) (-15 -2898 ($ $))))) (-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)))) (-3131 (*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 -3799 ($ *7))))) (-4 *7 (-854)) (-4 *8 (-13 (-1255 *3 *7) (-368) (-1212) (-10 -8 (-15 -3547 ($ $)) (-15 -2898 ($ $))))) (-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 -3131 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -4267 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -2995 (|#2| |#2|)))
-((-3482 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-3624 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-1356 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
-(((-429 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3624 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3482 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1109) (-431 |#1|) (-1109) (-431 |#3|)) (T -429))
-((-3482 (*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)))) (-3624 (*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)))) (-1356 (*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 -1356 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3624 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -3482 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
-((-4427 (($) 50)) (-3959 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 46)) (-3886 (($ $ $) 45)) (-4165 (((-112) $ $) 34)) (-3510 (((-777)) 54)) (-4249 (($ (-650 |#2|)) 23) (($) NIL)) (-3446 (($) 65)) (-2192 (((-112) $ $) 15)) (-3466 ((|#2| $) 76)) (-2800 ((|#2| $) 74)) (-1884 (((-928) $) 69)) (-2730 (($ $ $) 41)) (-2268 (($ (-928)) 59)) (-4031 (($ $ |#2|) NIL) (($ $ $) 44)) (-3584 (((-777) (-1 (-112) |#2|) $) NIL) (((-777) |#2| $) 31)) (-3811 (($ (-650 |#2|)) 27)) (-1486 (($ $) 52)) (-3799 (((-868) $) 39)) (-3143 (((-777) $) 24)) (-3861 (($ (-650 |#2|)) 22) (($) NIL)) (-3022 (((-112) $ $) 19)))
-(((-430 |#1| |#2|) (-10 -8 (-15 -3510 ((-777))) (-15 -2268 (|#1| (-928))) (-15 -1884 ((-928) |#1|)) (-15 -3446 (|#1|)) (-15 -3466 (|#2| |#1|)) (-15 -2800 (|#2| |#1|)) (-15 -4427 (|#1|)) (-15 -1486 (|#1| |#1|)) (-15 -3143 ((-777) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -2192 ((-112) |#1| |#1|)) (-15 -3861 (|#1|)) (-15 -3861 (|#1| (-650 |#2|))) (-15 -4249 (|#1|)) (-15 -4249 (|#1| (-650 |#2|))) (-15 -2730 (|#1| |#1| |#1|)) (-15 -4031 (|#1| |#1| |#1|)) (-15 -4031 (|#1| |#1| |#2|)) (-15 -3886 (|#1| |#1| |#1|)) (-15 -4165 ((-112) |#1| |#1|)) (-15 -3959 (|#1| |#1| |#1|)) (-15 -3959 (|#1| |#1| |#2|)) (-15 -3959 (|#1| |#2| |#1|)) (-15 -3811 (|#1| (-650 |#2|))) (-15 -3584 ((-777) |#2| |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|))) (-431 |#2|) (-1109)) (T -430))
-((-3510 (*1 *2) (-12 (-4 *4 (-1109)) (-5 *2 (-777)) (-5 *1 (-430 *3 *4)) (-4 *3 (-431 *4)))))
-(-10 -8 (-15 -3510 ((-777))) (-15 -2268 (|#1| (-928))) (-15 -1884 ((-928) |#1|)) (-15 -3446 (|#1|)) (-15 -3466 (|#2| |#1|)) (-15 -2800 (|#2| |#1|)) (-15 -4427 (|#1|)) (-15 -1486 (|#1| |#1|)) (-15 -3143 ((-777) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -2192 ((-112) |#1| |#1|)) (-15 -3861 (|#1|)) (-15 -3861 (|#1| (-650 |#2|))) (-15 -4249 (|#1|)) (-15 -4249 (|#1| (-650 |#2|))) (-15 -2730 (|#1| |#1| |#1|)) (-15 -4031 (|#1| |#1| |#1|)) (-15 -4031 (|#1| |#1| |#2|)) (-15 -3886 (|#1| |#1| |#1|)) (-15 -4165 ((-112) |#1| |#1|)) (-15 -3959 (|#1| |#1| |#1|)) (-15 -3959 (|#1| |#1| |#2|)) (-15 -3959 (|#1| |#2| |#1|)) (-15 -3811 (|#1| (-650 |#2|))) (-15 -3584 ((-777) |#2| |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)))
-((-2558 (((-112) $ $) 19)) (-4427 (($) 68 (|has| |#1| (-373)))) (-3959 (($ |#1| $) 83) (($ $ |#1|) 82) (($ $ $) 81)) (-3886 (($ $ $) 79)) (-4165 (((-112) $ $) 80)) (-4302 (((-112) $ (-777)) 8)) (-3510 (((-777)) 62 (|has| |#1| (-373)))) (-4249 (($ (-650 |#1|)) 75) (($) 74)) (-3753 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3579 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1741 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3446 (($) 65 (|has| |#1| (-373)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2192 (((-112) $ $) 71)) (-2929 (((-112) $ (-777)) 9)) (-3466 ((|#1| $) 66 (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2800 ((|#1| $) 67 (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-1884 (((-928) $) 64 (|has| |#1| (-373)))) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22)) (-2730 (($ $ $) 76)) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41)) (-2268 (($ (-928)) 63 (|has| |#1| (-373)))) (-3577 (((-1129) $) 21)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-4031 (($ $ |#1|) 78) (($ $ $) 77)) (-2178 (($) 50) (($ (-650 |#1|)) 49)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 51)) (-1486 (($ $) 69 (|has| |#1| (-373)))) (-3799 (((-868) $) 18)) (-3143 (((-777) $) 70)) (-3861 (($ (-650 |#1|)) 73) (($) 72)) (-2335 (((-112) $ $) 23)) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20)) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 60)) (-1882 (($ $) 78)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 191)) (-4306 (($ $) NIL)) (-2617 (((-112) $) 48)) (-3635 ((|#1| $) 16)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| |#1| (-1231)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-1231)))) (-4289 (($ |#1| (-570)) 42)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 148)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 74)) (-1929 (((-3 $ "failed") $) 164)) (-2502 (((-3 (-413 (-570)) "failed") $) 84 (|has| |#1| (-551)))) (-2313 (((-112) $) 80 (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) 91 (|has| |#1| (-551)))) (-1630 (($ |#1| (-570)) 44)) (-1336 (((-112) $) 211 (|has| |#1| (-1231)))) (-4139 (((-112) $) 62)) (-4027 (((-777) $) 51)) (-2462 (((-3 "nil" "sqfr" "irred" "prime") $ (-570)) 175)) (-4275 ((|#1| $ (-570)) 174)) (-2281 (((-570) $ (-570)) 173)) (-4195 (($ |#1| (-570)) 41)) (-1357 (($ (-1 |#1| |#1|) $) 183)) (-2750 (($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570))))) 79)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3989 (((-1168) $) NIL)) (-4393 (($ |#1| (-570)) 43)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) 192 (|has| |#1| (-458)))) (-1371 (($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime")) 40)) (-2638 (((-650 (-2 (|:| -3804 |#1|) (|:| -3994 (-570)))) $) 73)) (-2013 (((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $) 12)) (-3804 (((-424 $) $) NIL (|has| |#1| (-1231)))) (-2548 (((-3 $ "failed") $ $) 176)) (-3994 (((-570) $) 167)) (-1393 ((|#1| $) 75)) (-1771 (($ $ (-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 $)))) (-1942 (($ $ |#1|) 92 (|has| |#1| (-290 |#1| |#1|))) (($ $ $) 93 (|has| |#1| (-290 $ $)))) (-3550 (($ $) 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)) (-1426 (((-542) $) 39 (|has| |#1| (-620 (-542)))) (((-384) $) 113 (|has| |#1| (-1031))) (((-227) $) 119 (|has| |#1| (-1031)))) (-3802 (((-868) $) 146) (($ (-570)) 65) (($ $) NIL) (($ |#1|) 64) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570)))))) (-2851 (((-777)) 67 T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) 53 T CONST)) (-1876 (($) 52 T CONST)) (-2945 (($ $) 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)) (-3025 (((-112) $ $) 159)) (-3114 (($ $) 161) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1393 (|#1| $)) (-15 -3994 ((-570) $)) (-15 -2750 ($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))))) (-15 -2013 ((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $)) (-15 -4195 ($ |#1| (-570))) (-15 -2638 ((-650 (-2 (|:| -3804 |#1|) (|:| -3994 (-570)))) $)) (-15 -4393 ($ |#1| (-570))) (-15 -2281 ((-570) $ (-570))) (-15 -4275 (|#1| $ (-570))) (-15 -2462 ((-3 "nil" "sqfr" "irred" "prime") $ (-570))) (-15 -4027 ((-777) $)) (-15 -1630 ($ |#1| (-570))) (-15 -4289 ($ |#1| (-570))) (-15 -1371 ($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3635 (|#1| $)) (-15 -1882 ($ $)) (-15 -1357 ($ (-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 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-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))
+((-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-562)) (-5 *1 (-424 *3)))) (-1393 (*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3994 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-2750 (*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)))) (-2013 (*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)))) (-4195 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2638 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -3804 *3) (|:| -3994 (-570))))) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-4393 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2281 (*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-4275 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2462 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-424 *4)) (-4 *4 (-562)))) (-4027 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-424 *3)) (-4 *3 (-562)))) (-1630 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-4289 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-1371 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime")) (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-3635 (*1 *2 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-1882 (*1 *1 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))) (-2313 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))) (-3645 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-424 *3)) (-4 *3 (-551)) (-4 *3 (-562)))) (-2502 (*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 -1393 (|#1| $)) (-15 -3994 ((-570) $)) (-15 -2750 ($ |#1| (-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))))) (-15 -2013 ((-650 (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#1|) (|:| |xpnt| (-570)))) $)) (-15 -4195 ($ |#1| (-570))) (-15 -2638 ((-650 (-2 (|:| -3804 |#1|) (|:| -3994 (-570)))) $)) (-15 -4393 ($ |#1| (-570))) (-15 -2281 ((-570) $ (-570))) (-15 -4275 (|#1| $ (-570))) (-15 -2462 ((-3 "nil" "sqfr" "irred" "prime") $ (-570))) (-15 -4027 ((-777) $)) (-15 -1630 ($ |#1| (-570))) (-15 -4289 ($ |#1| (-570))) (-15 -1371 ($ |#1| (-570) (-3 "nil" "sqfr" "irred" "prime"))) (-15 -3635 (|#1| $)) (-15 -1882 ($ $)) (-15 -1357 ($ (-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 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-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|)))
+((-3963 (((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|)) 28)) (-1861 (((-424 |#1|) (-424 |#1|) (-424 |#1|)) 17)))
+(((-425 |#1|) (-10 -7 (-15 -3963 ((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|))) (-15 -1861 ((-424 |#1|) (-424 |#1|) (-424 |#1|)))) (-562)) (T -425))
+((-1861 (*1 *2 *2 *2) (-12 (-5 *2 (-424 *3)) (-4 *3 (-562)) (-5 *1 (-425 *3)))) (-3963 (*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 -3963 ((-424 |#1|) (-424 |#1|) (-1 (-424 |#1|) |#1|))) (-15 -1861 ((-424 |#1|) (-424 |#1|) (-424 |#1|))))
+((-1720 ((|#2| |#2|) 183)) (-3015 (((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112)) 60)))
+(((-426 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3015 ((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112))) (-15 -1720 (|#2| |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|)) (-1186) |#2|) (T -426))
+((-1720 (*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))) (-3015 (*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 -3015 ((-3 (|:| |%expansion| (-317 |#1| |#2| |#3| |#4|)) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112))) (-15 -1720 (|#2| |#2|)))
+((-1357 ((|#4| (-1 |#3| |#1|) |#2|) 11)))
+(((-427 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#4| (-1 |#3| |#1|) |#2|))) (-1058) (-436 |#1|) (-1058) (-436 |#3|)) (T -427))
+((-1357 (*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 -1357 (|#4| (-1 |#3| |#1|) |#2|)))
+((-1720 ((|#2| |#2|) 106)) (-3663 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168)) 52)) (-1565 (((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168)) 170)))
+(((-428 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3663 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -1565 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -1720 (|#2| |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|) (-10 -8 (-15 -3802 ($ |#3|)))) (-854) (-13 (-1255 |#2| |#3|) (-368) (-1212) (-10 -8 (-15 -3550 ($ $)) (-15 -2023 ($ $)))) (-992 |#4|) (-1186)) (T -428))
+((-1720 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-4 *2 (-13 (-27) (-1212) (-436 *3) (-10 -8 (-15 -3802 ($ *4))))) (-4 *4 (-854)) (-4 *5 (-13 (-1255 *2 *4) (-368) (-1212) (-10 -8 (-15 -3550 ($ $)) (-15 -2023 ($ $))))) (-5 *1 (-428 *3 *2 *4 *5 *6 *7)) (-4 *6 (-992 *5)) (-14 *7 (-1186)))) (-1565 (*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 -3802 ($ *7))))) (-4 *7 (-854)) (-4 *8 (-13 (-1255 *3 *7) (-368) (-1212) (-10 -8 (-15 -3550 ($ $)) (-15 -2023 ($ $))))) (-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)))) (-3663 (*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 -3802 ($ *7))))) (-4 *7 (-854)) (-4 *8 (-13 (-1255 *3 *7) (-368) (-1212) (-10 -8 (-15 -3550 ($ $)) (-15 -2023 ($ $))))) (-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 -3663 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -1565 ((-3 (|:| |%series| |#4|) (|:| |%problem| (-2 (|:| |func| (-1168)) (|:| |prob| (-1168))))) |#2| (-112) (-1168))) (-15 -1720 (|#2| |#2|)))
+((-2677 ((|#4| (-1 |#3| |#1| |#3|) |#2| |#3|) 22)) (-3627 ((|#3| (-1 |#3| |#1| |#3|) |#2| |#3|) 20)) (-1357 ((|#4| (-1 |#3| |#1|) |#2|) 17)))
+(((-429 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3627 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2677 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|))) (-1109) (-431 |#1|) (-1109) (-431 |#3|)) (T -429))
+((-2677 (*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)))) (-3627 (*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)))) (-1357 (*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 -1357 (|#4| (-1 |#3| |#1|) |#2|)) (-15 -3627 (|#3| (-1 |#3| |#1| |#3|) |#2| |#3|)) (-15 -2677 (|#4| (-1 |#3| |#1| |#3|) |#2| |#3|)))
+((-3681 (($) 50)) (-3962 (($ |#2| $) NIL) (($ $ |#2|) NIL) (($ $ $) 46)) (-2184 (($ $ $) 45)) (-3056 (((-112) $ $) 34)) (-3513 (((-777)) 54)) (-4253 (($ (-650 |#2|)) 23) (($) NIL)) (-3449 (($) 65)) (-2511 (((-112) $ $) 15)) (-3469 ((|#2| $) 76)) (-2472 ((|#2| $) 74)) (-2400 (((-928) $) 69)) (-3051 (($ $ $) 41)) (-2267 (($ (-928)) 59)) (-4180 (($ $ |#2|) NIL) (($ $ $) 44)) (-3587 (((-777) (-1 (-112) |#2|) $) NIL) (((-777) |#2| $) 31)) (-3814 (($ (-650 |#2|)) 27)) (-2854 (($ $) 52)) (-3802 (((-868) $) 39)) (-2593 (((-777) $) 24)) (-3864 (($ (-650 |#2|)) 22) (($) NIL)) (-3025 (((-112) $ $) 19)))
+(((-430 |#1| |#2|) (-10 -8 (-15 -3513 ((-777))) (-15 -2267 (|#1| (-928))) (-15 -2400 ((-928) |#1|)) (-15 -3449 (|#1|)) (-15 -3469 (|#2| |#1|)) (-15 -2472 (|#2| |#1|)) (-15 -3681 (|#1|)) (-15 -2854 (|#1| |#1|)) (-15 -2593 ((-777) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -2511 ((-112) |#1| |#1|)) (-15 -3864 (|#1|)) (-15 -3864 (|#1| (-650 |#2|))) (-15 -4253 (|#1|)) (-15 -4253 (|#1| (-650 |#2|))) (-15 -3051 (|#1| |#1| |#1|)) (-15 -4180 (|#1| |#1| |#1|)) (-15 -4180 (|#1| |#1| |#2|)) (-15 -2184 (|#1| |#1| |#1|)) (-15 -3056 ((-112) |#1| |#1|)) (-15 -3962 (|#1| |#1| |#1|)) (-15 -3962 (|#1| |#1| |#2|)) (-15 -3962 (|#1| |#2| |#1|)) (-15 -3814 (|#1| (-650 |#2|))) (-15 -3587 ((-777) |#2| |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|))) (-431 |#2|) (-1109)) (T -430))
+((-3513 (*1 *2) (-12 (-4 *4 (-1109)) (-5 *2 (-777)) (-5 *1 (-430 *3 *4)) (-4 *3 (-431 *4)))))
+(-10 -8 (-15 -3513 ((-777))) (-15 -2267 (|#1| (-928))) (-15 -2400 ((-928) |#1|)) (-15 -3449 (|#1|)) (-15 -3469 (|#2| |#1|)) (-15 -2472 (|#2| |#1|)) (-15 -3681 (|#1|)) (-15 -2854 (|#1| |#1|)) (-15 -2593 ((-777) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -2511 ((-112) |#1| |#1|)) (-15 -3864 (|#1|)) (-15 -3864 (|#1| (-650 |#2|))) (-15 -4253 (|#1|)) (-15 -4253 (|#1| (-650 |#2|))) (-15 -3051 (|#1| |#1| |#1|)) (-15 -4180 (|#1| |#1| |#1|)) (-15 -4180 (|#1| |#1| |#2|)) (-15 -2184 (|#1| |#1| |#1|)) (-15 -3056 ((-112) |#1| |#1|)) (-15 -3962 (|#1| |#1| |#1|)) (-15 -3962 (|#1| |#1| |#2|)) (-15 -3962 (|#1| |#2| |#1|)) (-15 -3814 (|#1| (-650 |#2|))) (-15 -3587 ((-777) |#2| |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)))
+((-2560 (((-112) $ $) 19)) (-3681 (($) 68 (|has| |#1| (-373)))) (-3962 (($ |#1| $) 83) (($ $ |#1|) 82) (($ $ $) 81)) (-2184 (($ $ $) 79)) (-3056 (((-112) $ $) 80)) (-1932 (((-112) $ (-777)) 8)) (-3513 (((-777)) 62 (|has| |#1| (-373)))) (-4253 (($ (-650 |#1|)) 75) (($) 74)) (-3353 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3582 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ |#1| $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4452)))) (-1742 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4452)))) (-3449 (($) 65 (|has| |#1| (-373)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2511 (((-112) $ $) 71)) (-2317 (((-112) $ (-777)) 9)) (-3469 ((|#1| $) 66 (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2472 ((|#1| $) 67 (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2400 (((-928) $) 64 (|has| |#1| (-373)))) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22)) (-3051 (($ $ $) 76)) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41)) (-2267 (($ (-928)) 63 (|has| |#1| (-373)))) (-3580 (((-1129) $) 21)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-4180 (($ $ |#1|) 78) (($ $ $) 77)) (-2374 (($) 50) (($ (-650 |#1|)) 49)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 51)) (-2854 (($ $) 69 (|has| |#1| (-373)))) (-3802 (((-868) $) 18)) (-2593 (((-777) $) 70)) (-3864 (($ (-650 |#1|)) 73) (($) 72)) (-3359 (((-112) $ $) 23)) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20)) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-431 |#1|) (-141) (-1109)) (T -431))
-((-3143 (*1 *2 *1) (-12 (-4 *1 (-431 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-1486 (*1 *1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-373)))) (-4427 (*1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-373)) (-4 *2 (-1109)))) (-2800 (*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3466 (*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 -3143 ((-777) $)) (IF (|has| |t#1| (-373)) (PROGN (-6 (-373)) (-15 -1486 ($ $)) (-15 -4427 ($))) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-15 -2800 (|t#1| $)) (-15 -3466 (|t#1| $))) |%noBranch|)))
+((-2593 (*1 *2 *1) (-12 (-4 *1 (-431 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-2854 (*1 *1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-373)))) (-3681 (*1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-373)) (-4 *2 (-1109)))) (-2472 (*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3469 (*1 *2 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-856)))))
+(-13 (-231 |t#1|) (-1107 |t#1|) (-10 -8 (-6 -4452) (-15 -2593 ((-777) $)) (IF (|has| |t#1| (-373)) (PROGN (-6 (-373)) (-15 -2854 ($ $)) (-15 -3681 ($))) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-15 -2472 (|t#1| $)) (-15 -3469 (|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))
-((-2014 (((-592 |#2|) |#2| (-1186)) 36)) (-3874 (((-592 |#2|) |#2| (-1186)) 21)) (-1864 ((|#2| |#2| (-1186)) 26)))
-(((-432 |#1| |#2|) (-10 -7 (-15 -3874 ((-592 |#2|) |#2| (-1186))) (-15 -2014 ((-592 |#2|) |#2| (-1186))) (-15 -1864 (|#2| |#2| (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-29 |#1|))) (T -432))
-((-1864 (*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))))) (-2014 (*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))))) (-3874 (*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 -3874 ((-592 |#2|) |#2| (-1186))) (-15 -2014 ((-592 |#2|) |#2| (-1186))) (-15 -1864 (|#2| |#2| (-1186))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-2299 (($ |#2| |#1|) 37)) (-1893 (($ |#2| |#1|) 35)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-335 |#2|)) 25)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 10 T CONST)) (-1875 (($) 16 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3799 ($ |#1|)) (-15 -3799 ($ (-335 |#2|))) (-15 -2299 ($ |#2| |#1|)) (-15 -1893 ($ |#2| |#1|)))) (-13 (-174) (-38 (-413 (-570)))) (-13 (-856) (-21))) (T -433))
-((-3799 (*1 *1 *2) (-12 (-5 *1 (-433 *2 *3)) (-4 *2 (-13 (-174) (-38 (-413 (-570))))) (-4 *3 (-13 (-856) (-21))))) (-3799 (*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))))))) (-2299 (*1 *1 *2 *3) (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570))))) (-4 *2 (-13 (-856) (-21))))) (-1893 (*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 -3799 ($ |#1|)) (-15 -3799 ($ (-335 |#2|))) (-15 -2299 ($ |#2| |#1|)) (-15 -1893 ($ |#2| |#1|))))
-((-2898 (((-3 |#2| (-650 |#2|)) |#2| (-1186)) 115)))
-(((-434 |#1| |#2|) (-10 -7 (-15 -2898 ((-3 |#2| (-650 |#2|)) |#2| (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-29 |#1|))) (T -434))
-((-2898 (*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 -2898 ((-3 |#2| (-650 |#2|)) |#2| (-1186))))
-((-1755 (((-650 (-1186)) $) 81)) (-3775 (((-413 (-1182 $)) $ (-618 $)) 312)) (-4335 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) 276)) (-4380 (((-3 (-618 $) "failed") $) NIL) (((-3 (-1186) "failed") $) 84) (((-3 (-570) "failed") $) NIL) (((-3 |#2| "failed") $) 272) (((-3 (-413 (-959 |#2|)) "failed") $) 362) (((-3 (-959 |#2|) "failed") $) 274) (((-3 (-413 (-570)) "failed") $) NIL)) (-3216 (((-618 $) $) NIL) (((-1186) $) 28) (((-570) $) NIL) ((|#2| $) 270) (((-413 (-959 |#2|)) $) 344) (((-959 |#2|) $) 271) (((-413 (-570)) $) NIL)) (-3756 (((-115) (-115)) 47)) (-1330 (($ $) 99)) (-4143 (((-3 (-618 $) "failed") $) 267)) (-3748 (((-650 (-618 $)) $) 268)) (-2209 (((-3 (-650 $) "failed") $) 286)) (-3352 (((-3 (-2 (|:| |val| $) (|:| -3357 (-570))) "failed") $) 293)) (-3654 (((-3 (-650 $) "failed") $) 284)) (-2778 (((-3 (-2 (|:| -1452 (-570)) (|:| |var| (-618 $))) "failed") $) 303)) (-1895 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $) 290) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-115)) 254) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-1186)) 256)) (-1886 (((-112) $) 17)) (-1898 ((|#2| $) 19)) (-1770 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) 275) (($ $ (-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))) 279) (($ $) 280) (($ $ (-115) $ (-1186)) 65) (($ $ (-650 (-115)) (-650 $) (-1186)) 72) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) 120) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) 281) (($ $ (-1186) (-777) (-1 $ (-650 $))) 105) (($ $ (-1186) (-777) (-1 $ $)) 104)) (-1941 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) 119)) (-3547 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) 277)) (-2978 (($ $) 323)) (-1425 (((-899 (-570)) $) 296) (((-899 (-384)) $) 300) (($ (-424 $)) 358) (((-542) $) NIL)) (-3799 (((-868) $) 278) (($ (-618 $)) 93) (($ (-1186)) 24) (($ |#2|) NIL) (($ (-1134 |#2| (-618 $))) NIL) (($ (-413 |#2|)) 328) (($ (-959 (-413 |#2|))) 367) (($ (-413 (-959 (-413 |#2|)))) 340) (($ (-413 (-959 |#2|))) 334) (($ $) NIL) (($ (-959 |#2|)) 216) (($ (-413 (-570))) 372) (($ (-570)) NIL)) (-3499 (((-777)) 88)) (-1388 (((-112) (-115)) 42)) (-4205 (($ (-1186) $) 31) (($ (-1186) $ $) 32) (($ (-1186) $ $ $) 33) (($ (-1186) $ $ $ $) 34) (($ (-1186) (-650 $)) 39)) (* (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ |#2| $) 305) (($ $ |#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 -3799 (|#1| (-570))) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-413 (-570)))) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -3799 (|#1| (-959 |#2|))) (-15 -4380 ((-3 (-959 |#2|) "failed") |#1|)) (-15 -3216 ((-959 |#2|) |#1|)) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3799 (|#1| |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3799 (|#1| (-413 (-959 |#2|)))) (-15 -4380 ((-3 (-413 (-959 |#2|)) "failed") |#1|)) (-15 -3216 ((-413 (-959 |#2|)) |#1|)) (-15 -3775 ((-413 (-1182 |#1|)) |#1| (-618 |#1|))) (-15 -3799 (|#1| (-413 (-959 (-413 |#2|))))) (-15 -3799 (|#1| (-959 (-413 |#2|)))) (-15 -3799 (|#1| (-413 |#2|))) (-15 -2978 (|#1| |#1|)) (-15 -1425 (|#1| (-424 |#1|))) (-15 -1770 (|#1| |#1| (-1186) (-777) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-1186) (-777) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| |#1|)))) (-15 -3352 ((-3 (-2 (|:| |val| |#1|) (|:| -3357 (-570))) "failed") |#1|)) (-15 -1895 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3357 (-570))) "failed") |#1| (-1186))) (-15 -1895 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3357 (-570))) "failed") |#1| (-115))) (-15 -1330 (|#1| |#1|)) (-15 -3799 (|#1| (-1134 |#2| (-618 |#1|)))) (-15 -2778 ((-3 (-2 (|:| -1452 (-570)) (|:| |var| (-618 |#1|))) "failed") |#1|)) (-15 -3654 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1895 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3357 (-570))) "failed") |#1|)) (-15 -2209 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 |#1|) (-1186))) (-15 -1770 (|#1| |#1| (-115) |#1| (-1186))) (-15 -1770 (|#1| |#1|)) (-15 -1770 (|#1| |#1| (-650 (-1186)))) (-15 -1770 (|#1| |#1| (-1186))) (-15 -4205 (|#1| (-1186) (-650 |#1|))) (-15 -4205 (|#1| (-1186) |#1| |#1| |#1| |#1|)) (-15 -4205 (|#1| (-1186) |#1| |#1| |#1|)) (-15 -4205 (|#1| (-1186) |#1| |#1|)) (-15 -4205 (|#1| (-1186) |#1|)) (-15 -1755 ((-650 (-1186)) |#1|)) (-15 -1898 (|#2| |#1|)) (-15 -1886 ((-112) |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -3799 (|#1| (-1186))) (-15 -4380 ((-3 (-1186) "failed") |#1|)) (-15 -3216 ((-1186) |#1|)) (-15 -1770 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1770 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -3748 ((-650 (-618 |#1|)) |#1|)) (-15 -4143 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -4335 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4335 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4335 (|#1| |#1| (-298 |#1|))) (-15 -1941 (|#1| (-115) (-650 |#1|))) (-15 -1941 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1770 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -3799 (|#1| (-618 |#1|))) (-15 -4380 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3216 ((-618 |#1|) |#1|)) (-15 -3799 ((-868) |#1|))) (-436 |#2|) (-1109)) (T -435))
-((-3756 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *4 (-1109)) (-5 *1 (-435 *3 *4)) (-4 *3 (-436 *4)))) (-1388 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-435 *4 *5)) (-4 *4 (-436 *5)))) (-3499 (*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 -3799 (|#1| (-570))) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-413 (-570)))) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -3799 (|#1| (-959 |#2|))) (-15 -4380 ((-3 (-959 |#2|) "failed") |#1|)) (-15 -3216 ((-959 |#2|) |#1|)) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3799 (|#1| |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3799 (|#1| (-413 (-959 |#2|)))) (-15 -4380 ((-3 (-413 (-959 |#2|)) "failed") |#1|)) (-15 -3216 ((-413 (-959 |#2|)) |#1|)) (-15 -3775 ((-413 (-1182 |#1|)) |#1| (-618 |#1|))) (-15 -3799 (|#1| (-413 (-959 (-413 |#2|))))) (-15 -3799 (|#1| (-959 (-413 |#2|)))) (-15 -3799 (|#1| (-413 |#2|))) (-15 -2978 (|#1| |#1|)) (-15 -1425 (|#1| (-424 |#1|))) (-15 -1770 (|#1| |#1| (-1186) (-777) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-1186) (-777) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| |#1|)))) (-15 -3352 ((-3 (-2 (|:| |val| |#1|) (|:| -3357 (-570))) "failed") |#1|)) (-15 -1895 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3357 (-570))) "failed") |#1| (-1186))) (-15 -1895 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3357 (-570))) "failed") |#1| (-115))) (-15 -1330 (|#1| |#1|)) (-15 -3799 (|#1| (-1134 |#2| (-618 |#1|)))) (-15 -2778 ((-3 (-2 (|:| -1452 (-570)) (|:| |var| (-618 |#1|))) "failed") |#1|)) (-15 -3654 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1895 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3357 (-570))) "failed") |#1|)) (-15 -2209 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 |#1|) (-1186))) (-15 -1770 (|#1| |#1| (-115) |#1| (-1186))) (-15 -1770 (|#1| |#1|)) (-15 -1770 (|#1| |#1| (-650 (-1186)))) (-15 -1770 (|#1| |#1| (-1186))) (-15 -4205 (|#1| (-1186) (-650 |#1|))) (-15 -4205 (|#1| (-1186) |#1| |#1| |#1| |#1|)) (-15 -4205 (|#1| (-1186) |#1| |#1| |#1|)) (-15 -4205 (|#1| (-1186) |#1| |#1|)) (-15 -4205 (|#1| (-1186) |#1|)) (-15 -1755 ((-650 (-1186)) |#1|)) (-15 -1898 (|#2| |#1|)) (-15 -1886 ((-112) |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -3799 (|#1| (-1186))) (-15 -4380 ((-3 (-1186) "failed") |#1|)) (-15 -3216 ((-1186) |#1|)) (-15 -1770 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1770 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1770 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1770 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -3748 ((-650 (-618 |#1|)) |#1|)) (-15 -4143 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -4335 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4335 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4335 (|#1| |#1| (-298 |#1|))) (-15 -1941 (|#1| (-115) (-650 |#1|))) (-15 -1941 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1| |#1|)) (-15 -1941 (|#1| (-115) |#1|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1770 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1770 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -3799 (|#1| (-618 |#1|))) (-15 -4380 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3216 ((-618 |#1|) |#1|)) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 116 (|has| |#1| (-25)))) (-1755 (((-650 (-1186)) $) 203)) (-3775 (((-413 (-1182 $)) $ (-618 $)) 171 (|has| |#1| (-562)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 143 (|has| |#1| (-562)))) (-3074 (($ $) 144 (|has| |#1| (-562)))) (-3475 (((-112) $) 146 (|has| |#1| (-562)))) (-3684 (((-650 (-618 $)) $) 39)) (-3990 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-4335 (($ $ (-298 $)) 51) (($ $ (-650 (-298 $))) 50) (($ $ (-650 (-618 $)) (-650 $)) 49)) (-4364 (($ $) 163 (|has| |#1| (-562)))) (-1652 (((-424 $) $) 164 (|has| |#1| (-562)))) (-3473 (((-112) $ $) 154 (|has| |#1| (-562)))) (-1705 (($) 104 (-2892 (|has| |#1| (-1121)) (|has| |#1| (-25))) CONST)) (-4380 (((-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 (-2892 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-3216 (((-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 (-2892 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-2506 (($ $ $) 158 (|has| |#1| (-562)))) (-4196 (((-695 (-570)) (-695 $)) 137 (-1809 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 136 (-1809 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 135 (|has| |#1| (-1058))) (((-695 |#1|) (-695 $)) 134 (|has| |#1| (-1058)))) (-2875 (((-3 $ "failed") $) 106 (|has| |#1| (-1121)))) (-2518 (($ $ $) 157 (|has| |#1| (-562)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 152 (|has| |#1| (-562)))) (-3618 (((-112) $) 165 (|has| |#1| (-562)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 212 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 211 (|has| |#1| (-893 (-384))))) (-2481 (($ $) 46) (($ (-650 $)) 45)) (-2856 (((-650 (-115)) $) 38)) (-3756 (((-115) (-115)) 37)) (-4346 (((-112) $) 105 (|has| |#1| (-1121)))) (-2110 (((-112) $) 17 (|has| $ (-1047 (-570))))) (-1330 (($ $) 186 (|has| |#1| (-1058)))) (-4399 (((-1134 |#1| (-618 $)) $) 187 (|has| |#1| (-1058)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 161 (|has| |#1| (-562)))) (-4032 (((-1182 $) (-618 $)) 20 (|has| $ (-1058)))) (-1356 (($ (-1 $ $) (-618 $)) 31)) (-4143 (((-3 (-618 $) "failed") $) 41)) (-1899 (($ (-650 $)) 150 (|has| |#1| (-562))) (($ $ $) 149 (|has| |#1| (-562)))) (-1988 (((-1168) $) 10)) (-3748 (((-650 (-618 $)) $) 40)) (-1365 (($ (-115) $) 33) (($ (-115) (-650 $)) 32)) (-2209 (((-3 (-650 $) "failed") $) 192 (|has| |#1| (-1121)))) (-3352 (((-3 (-2 (|:| |val| $) (|:| -3357 (-570))) "failed") $) 183 (|has| |#1| (-1058)))) (-3654 (((-3 (-650 $) "failed") $) 190 (|has| |#1| (-25)))) (-2778 (((-3 (-2 (|:| -1452 (-570)) (|:| |var| (-618 $))) "failed") $) 189 (|has| |#1| (-25)))) (-1895 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $) 191 (|has| |#1| (-1121))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-115)) 185 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-1186)) 184 (|has| |#1| (-1058)))) (-3190 (((-112) $ (-115)) 35) (((-112) $ (-1186)) 34)) (-1877 (($ $) 108 (-2892 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-1444 (((-777) $) 42)) (-3577 (((-1129) $) 11)) (-1886 (((-112) $) 205)) (-1898 ((|#1| $) 204)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 151 (|has| |#1| (-562)))) (-1942 (($ (-650 $)) 148 (|has| |#1| (-562))) (($ $ $) 147 (|has| |#1| (-562)))) (-2603 (((-112) $ $) 30) (((-112) $ (-1186)) 29)) (-3801 (((-424 $) $) 162 (|has| |#1| (-562)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-562))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 159 (|has| |#1| (-562)))) (-2547 (((-3 $ "failed") $ $) 142 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 153 (|has| |#1| (-562)))) (-3273 (((-112) $) 18 (|has| $ (-1047 (-570))))) (-1770 (($ $ (-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)))) (-2142 (((-777) $) 155 (|has| |#1| (-562)))) (-1941 (($ (-115) $) 56) (($ (-115) $ $) 55) (($ (-115) $ $ $) 54) (($ (-115) $ $ $ $) 53) (($ (-115) (-650 $)) 52)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 156 (|has| |#1| (-562)))) (-3444 (($ $) 44) (($ $ $) 43)) (-3547 (($ $ (-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)))) (-2978 (($ $) 176 (|has| |#1| (-562)))) (-4413 (((-1134 |#1| (-618 $)) $) 177 (|has| |#1| (-562)))) (-2755 (($ $) 19 (|has| $ (-1058)))) (-1425 (((-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))))) (-2020 (($ $ $) 111 (|has| |#1| (-479)))) (-4391 (($ $ $) 112 (|has| |#1| (-479)))) (-3799 (((-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 (-2892 (|has| |#1| (-562)) (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570)))))) (($ (-570)) 96 (-2892 (|has| |#1| (-1058)) (|has| |#1| (-1047 (-570)))))) (-3532 (((-3 $ "failed") $) 138 (|has| |#1| (-146)))) (-3499 (((-777)) 133 (|has| |#1| (-1058)) CONST)) (-4244 (($ $) 48) (($ (-650 $)) 47)) (-1388 (((-112) (-115)) 36)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 145 (|has| |#1| (-562)))) (-4205 (($ (-1186) $) 202) (($ (-1186) $ $) 201) (($ (-1186) $ $ $) 200) (($ (-1186) $ $ $ $) 199) (($ (-1186) (-650 $)) 198)) (-1861 (($) 115 (|has| |#1| (-25)) CONST)) (-1875 (($) 103 (|has| |#1| (-1121)) CONST)) (-2942 (($ $ (-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)))) (-3022 (((-112) $ $) 6)) (-3122 (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 175 (|has| |#1| (-562))) (($ $ $) 109 (-2892 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-3111 (($ $ $) 121 (|has| |#1| (-21))) (($ $) 120 (|has| |#1| (-21)))) (-3101 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-570)) 110 (-2892 (|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)))))
+((-4251 (((-592 |#2|) |#2| (-1186)) 36)) (-2051 (((-592 |#2|) |#2| (-1186)) 21)) (-2218 ((|#2| |#2| (-1186)) 26)))
+(((-432 |#1| |#2|) (-10 -7 (-15 -2051 ((-592 |#2|) |#2| (-1186))) (-15 -4251 ((-592 |#2|) |#2| (-1186))) (-15 -2218 (|#2| |#2| (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-29 |#1|))) (T -432))
+((-2218 (*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))))) (-4251 (*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))))) (-2051 (*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 -2051 ((-592 |#2|) |#2| (-1186))) (-15 -4251 ((-592 |#2|) |#2| (-1186))) (-15 -2218 (|#2| |#2| (-1186))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-4188 (($ |#2| |#1|) 37)) (-2483 (($ |#2| |#1|) 35)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-335 |#2|)) 25)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 10 T CONST)) (-1876 (($) 16 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -4439)) (IF (|has| |#1| (-6 -4439)) (-6 -4439) |%noBranch|) |%noBranch|) (-15 -3802 ($ |#1|)) (-15 -3802 ($ (-335 |#2|))) (-15 -4188 ($ |#2| |#1|)) (-15 -2483 ($ |#2| |#1|)))) (-13 (-174) (-38 (-413 (-570)))) (-13 (-856) (-21))) (T -433))
+((-3802 (*1 *1 *2) (-12 (-5 *1 (-433 *2 *3)) (-4 *2 (-13 (-174) (-38 (-413 (-570))))) (-4 *3 (-13 (-856) (-21))))) (-3802 (*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))))))) (-4188 (*1 *1 *2 *3) (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570))))) (-4 *2 (-13 (-856) (-21))))) (-2483 (*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 -4439)) (IF (|has| |#1| (-6 -4439)) (-6 -4439) |%noBranch|) |%noBranch|) (-15 -3802 ($ |#1|)) (-15 -3802 ($ (-335 |#2|))) (-15 -4188 ($ |#2| |#1|)) (-15 -2483 ($ |#2| |#1|))))
+((-2023 (((-3 |#2| (-650 |#2|)) |#2| (-1186)) 115)))
+(((-434 |#1| |#2|) (-10 -7 (-15 -2023 ((-3 |#2| (-650 |#2|)) |#2| (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-29 |#1|))) (T -434))
+((-2023 (*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 -2023 ((-3 |#2| (-650 |#2|)) |#2| (-1186))))
+((-1755 (((-650 (-1186)) $) 81)) (-3778 (((-413 (-1182 $)) $ (-618 $)) 312)) (-4338 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) 276)) (-4383 (((-3 (-618 $) "failed") $) NIL) (((-3 (-1186) "failed") $) 84) (((-3 (-570) "failed") $) NIL) (((-3 |#2| "failed") $) 272) (((-3 (-413 (-959 |#2|)) "failed") $) 362) (((-3 (-959 |#2|) "failed") $) 274) (((-3 (-413 (-570)) "failed") $) NIL)) (-3220 (((-618 $) $) NIL) (((-1186) $) 28) (((-570) $) NIL) ((|#2| $) 270) (((-413 (-959 |#2|)) $) 344) (((-959 |#2|) $) 271) (((-413 (-570)) $) NIL)) (-3759 (((-115) (-115)) 47)) (-1834 (($ $) 99)) (-2907 (((-3 (-618 $) "failed") $) 267)) (-3751 (((-650 (-618 $)) $) 268)) (-1369 (((-3 (-650 $) "failed") $) 286)) (-3952 (((-3 (-2 (|:| |val| $) (|:| -3994 (-570))) "failed") $) 293)) (-1777 (((-3 (-650 $) "failed") $) 284)) (-2292 (((-3 (-2 (|:| -1453 (-570)) (|:| |var| (-618 $))) "failed") $) 303)) (-2505 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $) 290) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-115)) 254) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-1186)) 256)) (-1887 (((-112) $) 17)) (-1900 ((|#2| $) 19)) (-1771 (($ $ (-618 $) $) NIL) (($ $ (-650 (-618 $)) (-650 $)) 275) (($ $ (-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))) 279) (($ $) 280) (($ $ (-115) $ (-1186)) 65) (($ $ (-650 (-115)) (-650 $) (-1186)) 72) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $))) 120) (($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $)))) 281) (($ $ (-1186) (-777) (-1 $ (-650 $))) 105) (($ $ (-1186) (-777) (-1 $ $)) 104)) (-1942 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) 119)) (-3550 (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) 277)) (-1526 (($ $) 323)) (-1426 (((-899 (-570)) $) 296) (((-899 (-384)) $) 300) (($ (-424 $)) 358) (((-542) $) NIL)) (-3802 (((-868) $) 278) (($ (-618 $)) 93) (($ (-1186)) 24) (($ |#2|) NIL) (($ (-1134 |#2| (-618 $))) NIL) (($ (-413 |#2|)) 328) (($ (-959 (-413 |#2|))) 367) (($ (-413 (-959 (-413 |#2|)))) 340) (($ (-413 (-959 |#2|))) 334) (($ $) NIL) (($ (-959 |#2|)) 216) (($ (-413 (-570))) 372) (($ (-570)) NIL)) (-2851 (((-777)) 88)) (-3200 (((-112) (-115)) 42)) (-4206 (($ (-1186) $) 31) (($ (-1186) $ $) 32) (($ (-1186) $ $ $) 33) (($ (-1186) $ $ $ $) 34) (($ (-1186) (-650 $)) 39)) (* (($ (-413 (-570)) $) NIL) (($ $ (-413 (-570))) NIL) (($ |#2| $) 305) (($ $ |#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 -3802 (|#1| (-570))) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-413 (-570)))) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -3802 (|#1| (-959 |#2|))) (-15 -4383 ((-3 (-959 |#2|) "failed") |#1|)) (-15 -3220 ((-959 |#2|) |#1|)) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3802 (|#1| |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3802 (|#1| (-413 (-959 |#2|)))) (-15 -4383 ((-3 (-413 (-959 |#2|)) "failed") |#1|)) (-15 -3220 ((-413 (-959 |#2|)) |#1|)) (-15 -3778 ((-413 (-1182 |#1|)) |#1| (-618 |#1|))) (-15 -3802 (|#1| (-413 (-959 (-413 |#2|))))) (-15 -3802 (|#1| (-959 (-413 |#2|)))) (-15 -3802 (|#1| (-413 |#2|))) (-15 -1526 (|#1| |#1|)) (-15 -1426 (|#1| (-424 |#1|))) (-15 -1771 (|#1| |#1| (-1186) (-777) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-1186) (-777) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| |#1|)))) (-15 -3952 ((-3 (-2 (|:| |val| |#1|) (|:| -3994 (-570))) "failed") |#1|)) (-15 -2505 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3994 (-570))) "failed") |#1| (-1186))) (-15 -2505 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3994 (-570))) "failed") |#1| (-115))) (-15 -1834 (|#1| |#1|)) (-15 -3802 (|#1| (-1134 |#2| (-618 |#1|)))) (-15 -2292 ((-3 (-2 (|:| -1453 (-570)) (|:| |var| (-618 |#1|))) "failed") |#1|)) (-15 -1777 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -2505 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3994 (-570))) "failed") |#1|)) (-15 -1369 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 |#1|) (-1186))) (-15 -1771 (|#1| |#1| (-115) |#1| (-1186))) (-15 -1771 (|#1| |#1|)) (-15 -1771 (|#1| |#1| (-650 (-1186)))) (-15 -1771 (|#1| |#1| (-1186))) (-15 -4206 (|#1| (-1186) (-650 |#1|))) (-15 -4206 (|#1| (-1186) |#1| |#1| |#1| |#1|)) (-15 -4206 (|#1| (-1186) |#1| |#1| |#1|)) (-15 -4206 (|#1| (-1186) |#1| |#1|)) (-15 -4206 (|#1| (-1186) |#1|)) (-15 -1755 ((-650 (-1186)) |#1|)) (-15 -1900 (|#2| |#1|)) (-15 -1887 ((-112) |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -3802 (|#1| (-1186))) (-15 -4383 ((-3 (-1186) "failed") |#1|)) (-15 -3220 ((-1186) |#1|)) (-15 -1771 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1771 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -3751 ((-650 (-618 |#1|)) |#1|)) (-15 -2907 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -4338 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4338 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4338 (|#1| |#1| (-298 |#1|))) (-15 -1942 (|#1| (-115) (-650 |#1|))) (-15 -1942 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1771 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -3802 (|#1| (-618 |#1|))) (-15 -4383 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3220 ((-618 |#1|) |#1|)) (-15 -3802 ((-868) |#1|))) (-436 |#2|) (-1109)) (T -435))
+((-3759 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *4 (-1109)) (-5 *1 (-435 *3 *4)) (-4 *3 (-436 *4)))) (-3200 (*1 *2 *3) (-12 (-5 *3 (-115)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-435 *4 *5)) (-4 *4 (-436 *5)))) (-2851 (*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 -3802 (|#1| (-570))) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-413 (-570)))) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -3802 (|#1| (-959 |#2|))) (-15 -4383 ((-3 (-959 |#2|) "failed") |#1|)) (-15 -3220 ((-959 |#2|) |#1|)) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -3802 (|#1| |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 -3802 (|#1| (-413 (-959 |#2|)))) (-15 -4383 ((-3 (-413 (-959 |#2|)) "failed") |#1|)) (-15 -3220 ((-413 (-959 |#2|)) |#1|)) (-15 -3778 ((-413 (-1182 |#1|)) |#1| (-618 |#1|))) (-15 -3802 (|#1| (-413 (-959 (-413 |#2|))))) (-15 -3802 (|#1| (-959 (-413 |#2|)))) (-15 -3802 (|#1| (-413 |#2|))) (-15 -1526 (|#1| |#1|)) (-15 -1426 (|#1| (-424 |#1|))) (-15 -1771 (|#1| |#1| (-1186) (-777) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-1186) (-777) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-777)) (-650 (-1 |#1| |#1|)))) (-15 -3952 ((-3 (-2 (|:| |val| |#1|) (|:| -3994 (-570))) "failed") |#1|)) (-15 -2505 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3994 (-570))) "failed") |#1| (-1186))) (-15 -2505 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3994 (-570))) "failed") |#1| (-115))) (-15 -1834 (|#1| |#1|)) (-15 -3802 (|#1| (-1134 |#2| (-618 |#1|)))) (-15 -2292 ((-3 (-2 (|:| -1453 (-570)) (|:| |var| (-618 |#1|))) "failed") |#1|)) (-15 -1777 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -2505 ((-3 (-2 (|:| |var| (-618 |#1|)) (|:| -3994 (-570))) "failed") |#1|)) (-15 -1369 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 |#1|) (-1186))) (-15 -1771 (|#1| |#1| (-115) |#1| (-1186))) (-15 -1771 (|#1| |#1|)) (-15 -1771 (|#1| |#1| (-650 (-1186)))) (-15 -1771 (|#1| |#1| (-1186))) (-15 -4206 (|#1| (-1186) (-650 |#1|))) (-15 -4206 (|#1| (-1186) |#1| |#1| |#1| |#1|)) (-15 -4206 (|#1| (-1186) |#1| |#1| |#1|)) (-15 -4206 (|#1| (-1186) |#1| |#1|)) (-15 -4206 (|#1| (-1186) |#1|)) (-15 -1755 ((-650 (-1186)) |#1|)) (-15 -1900 (|#2| |#1|)) (-15 -1887 ((-112) |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -3802 (|#1| (-1186))) (-15 -4383 ((-3 (-1186) "failed") |#1|)) (-15 -3220 ((-1186) |#1|)) (-15 -1771 (|#1| |#1| (-115) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-115) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-115)) (-650 (-1 |#1| |#1|)))) (-15 -1771 (|#1| |#1| (-1186) (-1 |#1| |#1|))) (-15 -1771 (|#1| |#1| (-1186) (-1 |#1| (-650 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| (-650 |#1|))))) (-15 -1771 (|#1| |#1| (-650 (-1186)) (-650 (-1 |#1| |#1|)))) (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -3751 ((-650 (-618 |#1|)) |#1|)) (-15 -2907 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -4338 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -4338 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -4338 (|#1| |#1| (-298 |#1|))) (-15 -1942 (|#1| (-115) (-650 |#1|))) (-15 -1942 (|#1| (-115) |#1| |#1| |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1| |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1| |#1|)) (-15 -1942 (|#1| (-115) |#1|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -1771 (|#1| |#1| (-650 (-618 |#1|)) (-650 |#1|))) (-15 -1771 (|#1| |#1| (-618 |#1|) |#1|)) (-15 -3802 (|#1| (-618 |#1|))) (-15 -4383 ((-3 (-618 |#1|) "failed") |#1|)) (-15 -3220 ((-618 |#1|) |#1|)) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 116 (|has| |#1| (-25)))) (-1755 (((-650 (-1186)) $) 203)) (-3778 (((-413 (-1182 $)) $ (-618 $)) 171 (|has| |#1| (-562)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 143 (|has| |#1| (-562)))) (-4306 (($ $) 144 (|has| |#1| (-562)))) (-2617 (((-112) $) 146 (|has| |#1| (-562)))) (-3687 (((-650 (-618 $)) $) 39)) (-1966 (((-3 $ "failed") $ $) 118 (|has| |#1| (-21)))) (-4338 (($ $ (-298 $)) 51) (($ $ (-650 (-298 $))) 50) (($ $ (-650 (-618 $)) (-650 $)) 49)) (-4310 (($ $) 163 (|has| |#1| (-562)))) (-3871 (((-424 $) $) 164 (|has| |#1| (-562)))) (-3765 (((-112) $ $) 154 (|has| |#1| (-562)))) (-3195 (($) 104 (-2895 (|has| |#1| (-1121)) (|has| |#1| (-25))) CONST)) (-4383 (((-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 (-2895 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-3220 (((-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 (-2895 (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570))))))) (-2504 (($ $ $) 158 (|has| |#1| (-562)))) (-2179 (((-695 (-570)) (-695 $)) 137 (-1810 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 136 (-1810 (|has| |#1| (-645 (-570))) (|has| |#1| (-1058)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 135 (|has| |#1| (-1058))) (((-695 |#1|) (-695 $)) 134 (|has| |#1| (-1058)))) (-1929 (((-3 $ "failed") $) 106 (|has| |#1| (-1121)))) (-2519 (($ $ $) 157 (|has| |#1| (-562)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 152 (|has| |#1| (-562)))) (-1336 (((-112) $) 165 (|has| |#1| (-562)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 212 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 211 (|has| |#1| (-893 (-384))))) (-2486 (($ $) 46) (($ (-650 $)) 45)) (-1705 (((-650 (-115)) $) 38)) (-3759 (((-115) (-115)) 37)) (-4139 (((-112) $) 105 (|has| |#1| (-1121)))) (-2888 (((-112) $) 17 (|has| $ (-1047 (-570))))) (-1834 (($ $) 186 (|has| |#1| (-1058)))) (-4402 (((-1134 |#1| (-618 $)) $) 187 (|has| |#1| (-1058)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 161 (|has| |#1| (-562)))) (-4189 (((-1182 $) (-618 $)) 20 (|has| $ (-1058)))) (-1357 (($ (-1 $ $) (-618 $)) 31)) (-2907 (((-3 (-618 $) "failed") $) 41)) (-1901 (($ (-650 $)) 150 (|has| |#1| (-562))) (($ $ $) 149 (|has| |#1| (-562)))) (-3989 (((-1168) $) 10)) (-3751 (((-650 (-618 $)) $) 40)) (-1366 (($ (-115) $) 33) (($ (-115) (-650 $)) 32)) (-1369 (((-3 (-650 $) "failed") $) 192 (|has| |#1| (-1121)))) (-3952 (((-3 (-2 (|:| |val| $) (|:| -3994 (-570))) "failed") $) 183 (|has| |#1| (-1058)))) (-1777 (((-3 (-650 $) "failed") $) 190 (|has| |#1| (-25)))) (-2292 (((-3 (-2 (|:| -1453 (-570)) (|:| |var| (-618 $))) "failed") $) 189 (|has| |#1| (-25)))) (-2505 (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $) 191 (|has| |#1| (-1121))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-115)) 185 (|has| |#1| (-1058))) (((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-1186)) 184 (|has| |#1| (-1058)))) (-3006 (((-112) $ (-115)) 35) (((-112) $ (-1186)) 34)) (-1878 (($ $) 108 (-2895 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-1445 (((-777) $) 42)) (-3580 (((-1129) $) 11)) (-1887 (((-112) $) 205)) (-1900 ((|#1| $) 204)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 151 (|has| |#1| (-562)))) (-1939 (($ (-650 $)) 148 (|has| |#1| (-562))) (($ $ $) 147 (|has| |#1| (-562)))) (-4224 (((-112) $ $) 30) (((-112) $ (-1186)) 29)) (-3804 (((-424 $) $) 162 (|has| |#1| (-562)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 160 (|has| |#1| (-562))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 159 (|has| |#1| (-562)))) (-2548 (((-3 $ "failed") $ $) 142 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 153 (|has| |#1| (-562)))) (-4418 (((-112) $) 18 (|has| $ (-1047 (-570))))) (-1771 (($ $ (-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)))) (-2006 (((-777) $) 155 (|has| |#1| (-562)))) (-1942 (($ (-115) $) 56) (($ (-115) $ $) 55) (($ (-115) $ $ $) 54) (($ (-115) $ $ $ $) 53) (($ (-115) (-650 $)) 52)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 156 (|has| |#1| (-562)))) (-3515 (($ $) 44) (($ $ $) 43)) (-3550 (($ $ (-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)))) (-1526 (($ $) 176 (|has| |#1| (-562)))) (-4416 (((-1134 |#1| (-618 $)) $) 177 (|has| |#1| (-562)))) (-2075 (($ $) 19 (|has| $ (-1058)))) (-1426 (((-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))))) (-4307 (($ $ $) 111 (|has| |#1| (-479)))) (-3381 (($ $ $) 112 (|has| |#1| (-479)))) (-3802 (((-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 (-2895 (|has| |#1| (-562)) (-12 (|has| |#1| (-1047 (-570))) (|has| |#1| (-562))) (|has| |#1| (-1047 (-413 (-570)))))) (($ (-570)) 96 (-2895 (|has| |#1| (-1058)) (|has| |#1| (-1047 (-570)))))) (-3132 (((-3 $ "failed") $) 138 (|has| |#1| (-146)))) (-2851 (((-777)) 133 (|has| |#1| (-1058)) CONST)) (-4246 (($ $) 48) (($ (-650 $)) 47)) (-3200 (((-112) (-115)) 36)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 145 (|has| |#1| (-562)))) (-4206 (($ (-1186) $) 202) (($ (-1186) $ $) 201) (($ (-1186) $ $ $) 200) (($ (-1186) $ $ $ $) 199) (($ (-1186) (-650 $)) 198)) (-1862 (($) 115 (|has| |#1| (-25)) CONST)) (-1876 (($) 103 (|has| |#1| (-1121)) CONST)) (-2945 (($ $ (-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)))) (-3025 (((-112) $ $) 6)) (-3125 (($ (-1134 |#1| (-618 $)) (-1134 |#1| (-618 $))) 175 (|has| |#1| (-562))) (($ $ $) 109 (-2895 (|has| |#1| (-479)) (|has| |#1| (-562))))) (-3114 (($ $ $) 121 (|has| |#1| (-21))) (($ $) 120 (|has| |#1| (-21)))) (-3104 (($ $ $) 113 (|has| |#1| (-25)))) (** (($ $ (-570)) 110 (-2895 (|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))
-((-1886 (*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-1898 (*1 *2 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)))) (-1755 (*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-1186))))) (-4205 (*1 *1 *2 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4205 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4205 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4205 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4205 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-650 *1)) (-4 *1 (-436 *4)) (-4 *4 (-1109)))) (-1770 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-620 (-542))))) (-1770 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-620 (-542))))) (-1770 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-620 (-542))))) (-1770 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1186)) (-4 *1 (-436 *4)) (-4 *4 (-1109)) (-4 *4 (-620 (-542))))) (-1770 (*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))))) (-2209 (*1 *2 *1) (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-436 *3)))) (-1895 (*1 *2 *1) (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3357 (-570)))) (-4 *1 (-436 *3)))) (-3654 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-436 *3)))) (-2778 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| -1452 (-570)) (|:| |var| (-618 *1)))) (-4 *1 (-436 *3)))) (-3799 (*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)))) (-1330 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-1058)))) (-1895 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-115)) (-4 *4 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3357 (-570)))) (-4 *1 (-436 *4)))) (-1895 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3357 (-570)))) (-4 *1 (-436 *4)))) (-3352 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |val| *1) (|:| -3357 (-570)))) (-4 *1 (-436 *3)))) (-1770 (*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)))) (-1770 (*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)))) (-1770 (*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)))) (-1770 (*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)))) (-1425 (*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)))) (-2978 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-562)))) (-3122 (*1 *1 *2 *2) (-12 (-5 *2 (-1134 *3 (-618 *1))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-959 (-413 *3))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-413 *3)))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3775 (*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 -1886 ((-112) $)) (-15 -1898 (|t#1| $)) (-15 -1755 ((-650 (-1186)) $)) (-15 -4205 ($ (-1186) $)) (-15 -4205 ($ (-1186) $ $)) (-15 -4205 ($ (-1186) $ $ $)) (-15 -4205 ($ (-1186) $ $ $ $)) (-15 -4205 ($ (-1186) (-650 $))) (IF (|has| |t#1| (-620 (-542))) (PROGN (-6 (-620 (-542))) (-15 -1770 ($ $ (-1186))) (-15 -1770 ($ $ (-650 (-1186)))) (-15 -1770 ($ $)) (-15 -1770 ($ $ (-115) $ (-1186))) (-15 -1770 ($ $ (-650 (-115)) (-650 $) (-1186)))) |%noBranch|) (IF (|has| |t#1| (-1121)) (PROGN (-6 (-732)) (-15 ** ($ $ (-777))) (-15 -2209 ((-3 (-650 $) "failed") $)) (-15 -1895 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-479)) (-6 (-479)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -3654 ((-3 (-650 $) "failed") $)) (-15 -2778 ((-3 (-2 (|:| -1452 (-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 -3799 ($ (-1134 |t#1| (-618 $)))) (-15 -4399 ((-1134 |t#1| (-618 $)) $)) (-15 -1330 ($ $)) (-15 -1895 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-115))) (-15 -1895 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3357 (-570))) "failed") $ (-1186))) (-15 -3352 ((-3 (-2 (|:| |val| $) (|:| -3357 (-570))) "failed") $)) (-15 -1770 ($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $)))) (-15 -1770 ($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $))))) (-15 -1770 ($ $ (-1186) (-777) (-1 $ (-650 $)))) (-15 -1770 ($ $ (-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 -1425 ($ (-424 $))) (-15 -4413 ((-1134 |t#1| (-618 $)) $)) (-15 -2978 ($ $)) (-15 -3122 ($ (-1134 |t#1| (-618 $)) (-1134 |t#1| (-618 $)))) (-15 -3799 ($ (-413 |t#1|))) (-15 -3799 ($ (-959 (-413 |t#1|)))) (-15 -3799 ($ (-413 (-959 (-413 |t#1|))))) (-15 -3775 ((-413 (-1182 $)) $ (-618 $))) (IF (|has| |t#1| (-1047 (-570))) (-6 (-1047 (-413 (-570)))) |%noBranch|)) |%noBranch|)))
-(((-21) -2892 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-23) -2892 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -2892 (|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) -2892 (|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#) -2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-562))) ((-622 #1=(-413 (-959 |#1|))) |has| |#1| (-562)) ((-622 (-570)) -2892 (|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)) -2892 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-652 |#1|) |has| |#1| (-174)) ((-652 $) -2892 (|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 $) -2892 (|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) -2892 (|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))) -2892 (|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) -2892 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1067) -2892 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1121) -2892 (|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)))
-((-4083 ((|#2| |#2| |#2|) 31)) (-3756 (((-115) (-115)) 43)) (-3400 ((|#2| |#2|) 63)) (-2537 ((|#2| |#2|) 66)) (-2326 ((|#2| |#2|) 30)) (-4231 ((|#2| |#2| |#2|) 33)) (-3890 ((|#2| |#2| |#2|) 35)) (-3564 ((|#2| |#2| |#2|) 32)) (-3773 ((|#2| |#2| |#2|) 34)) (-1388 (((-112) (-115)) 41)) (-3635 ((|#2| |#2|) 37)) (-4116 ((|#2| |#2|) 36)) (-2622 ((|#2| |#2|) 25)) (-2256 ((|#2| |#2| |#2|) 28) ((|#2| |#2|) 26)) (-4250 ((|#2| |#2| |#2|) 29)))
-(((-437 |#1| |#2|) (-10 -7 (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -2622 (|#2| |#2|)) (-15 -2256 (|#2| |#2|)) (-15 -2256 (|#2| |#2| |#2|)) (-15 -4250 (|#2| |#2| |#2|)) (-15 -2326 (|#2| |#2|)) (-15 -4083 (|#2| |#2| |#2|)) (-15 -3564 (|#2| |#2| |#2|)) (-15 -4231 (|#2| |#2| |#2|)) (-15 -3773 (|#2| |#2| |#2|)) (-15 -3890 (|#2| |#2| |#2|)) (-15 -4116 (|#2| |#2|)) (-15 -3635 (|#2| |#2|)) (-15 -2537 (|#2| |#2|)) (-15 -3400 (|#2| |#2|))) (-562) (-436 |#1|)) (T -437))
-((-3400 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2537 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3635 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-4116 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3890 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3773 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-4231 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3564 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-4083 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2326 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-4250 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2256 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2256 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2622 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3756 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-437 *3 *4)) (-4 *4 (-436 *3)))) (-1388 (*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 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -2622 (|#2| |#2|)) (-15 -2256 (|#2| |#2|)) (-15 -2256 (|#2| |#2| |#2|)) (-15 -4250 (|#2| |#2| |#2|)) (-15 -2326 (|#2| |#2|)) (-15 -4083 (|#2| |#2| |#2|)) (-15 -3564 (|#2| |#2| |#2|)) (-15 -4231 (|#2| |#2| |#2|)) (-15 -3773 (|#2| |#2| |#2|)) (-15 -3890 (|#2| |#2| |#2|)) (-15 -4116 (|#2| |#2|)) (-15 -3635 (|#2| |#2|)) (-15 -2537 (|#2| |#2|)) (-15 -3400 (|#2| |#2|)))
-((-2652 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|) 103 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|)) 65)))
-(((-438 |#1| |#2|) (-10 -7 (-15 -2652 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|))) (IF (|has| |#2| (-27)) (-15 -2652 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-562) (-148)) (-436 |#1|)) (T -438))
-((-2652 (*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)))) (-2652 (*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 -2652 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|))) (IF (|has| |#2| (-27)) (-15 -2652 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|)) |%noBranch|))
-((-1339 (((-1282)) 18)) (-1475 (((-1182 (-413 (-570))) |#2| (-618 |#2|)) 40) (((-413 (-570)) |#2|) 24)))
-(((-439 |#1| |#2|) (-10 -7 (-15 -1475 ((-413 (-570)) |#2|)) (-15 -1475 ((-1182 (-413 (-570))) |#2| (-618 |#2|))) (-15 -1339 ((-1282)))) (-13 (-562) (-1047 (-570))) (-436 |#1|)) (T -439))
-((-1339 (*1 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1282)) (-5 *1 (-439 *3 *4)) (-4 *4 (-436 *3)))) (-1475 (*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)))) (-1475 (*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 -1475 ((-413 (-570)) |#2|)) (-15 -1475 ((-1182 (-413 (-570))) |#2| (-618 |#2|))) (-15 -1339 ((-1282))))
-((-2754 (((-112) $) 32)) (-3576 (((-112) $) 34)) (-2009 (((-112) $) 35)) (-3197 (((-112) $) 38)) (-4336 (((-112) $) 33)) (-3552 (((-112) $) 37)) (-3799 (((-868) $) 20) (($ (-1168)) 31) (($ (-1186)) 26) (((-1186) $) 24) (((-1113) $) 23)) (-4187 (((-112) $) 36)) (-3022 (((-112) $ $) 17)))
-(((-440) (-13 (-619 (-868)) (-10 -8 (-15 -3799 ($ (-1168))) (-15 -3799 ($ (-1186))) (-15 -3799 ((-1186) $)) (-15 -3799 ((-1113) $)) (-15 -2754 ((-112) $)) (-15 -4336 ((-112) $)) (-15 -2009 ((-112) $)) (-15 -3552 ((-112) $)) (-15 -3197 ((-112) $)) (-15 -4187 ((-112) $)) (-15 -3576 ((-112) $)) (-15 -3022 ((-112) $ $))))) (T -440))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-440)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-440)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-440)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-440)))) (-2754 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-4336 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2009 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3552 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3197 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-4187 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3576 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3022 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3799 ($ (-1168))) (-15 -3799 ($ (-1186))) (-15 -3799 ((-1186) $)) (-15 -3799 ((-1113) $)) (-15 -2754 ((-112) $)) (-15 -4336 ((-112) $)) (-15 -2009 ((-112) $)) (-15 -3552 ((-112) $)) (-15 -3197 ((-112) $)) (-15 -4187 ((-112) $)) (-15 -3576 ((-112) $)) (-15 -3022 ((-112) $ $))))
-((-2829 (((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|) 72)) (-2678 (((-424 |#3|) |#3|) 34)) (-2808 (((-3 (-424 (-1182 (-48))) "failed") |#3|) 46 (|has| |#2| (-1047 (-48))))) (-3556 (((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2636 (-112))) |#3|) 37)))
-(((-441 |#1| |#2| |#3|) (-10 -7 (-15 -2678 ((-424 |#3|) |#3|)) (-15 -2829 ((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|)) (-15 -3556 ((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2636 (-112))) |#3|)) (IF (|has| |#2| (-1047 (-48))) (-15 -2808 ((-3 (-424 (-1182 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-562) (-1047 (-570))) (-436 |#1|) (-1253 |#2|)) (T -441))
-((-2808 (*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)))) (-3556 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2636 (-112)))) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))) (-2829 (*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)))) (-2678 (*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 -2678 ((-424 |#3|) |#3|)) (-15 -2829 ((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|)) (-15 -3556 ((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2636 (-112))) |#3|)) (IF (|has| |#2| (-1047 (-48))) (-15 -2808 ((-3 (-424 (-1182 (-48))) "failed") |#3|)) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-2391 (((-1168) $ (-1168)) NIL)) (-2117 (($ $ (-1168)) NIL)) (-2080 (((-1168) $) NIL)) (-1563 (((-394) (-394) (-394)) 17) (((-394) (-394)) 15)) (-1762 (($ (-394)) NIL) (($ (-394) (-1168)) NIL)) (-3600 (((-394) $) NIL)) (-1988 (((-1168) $) NIL)) (-3767 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2689 (((-1282) (-1168)) 9)) (-4043 (((-1282) (-1168)) 10)) (-2059 (((-1282)) 11)) (-3799 (((-868) $) NIL)) (-3107 (($ $) 39)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-442) (-13 (-369 (-394) (-1168)) (-10 -7 (-15 -1563 ((-394) (-394) (-394))) (-15 -1563 ((-394) (-394))) (-15 -2689 ((-1282) (-1168))) (-15 -4043 ((-1282) (-1168))) (-15 -2059 ((-1282)))))) (T -442))
-((-1563 (*1 *2 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))) (-1563 (*1 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))) (-2689 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))) (-4043 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))) (-2059 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-442)))))
-(-13 (-369 (-394) (-1168)) (-10 -7 (-15 -1563 ((-394) (-394) (-394))) (-15 -1563 ((-394) (-394))) (-15 -2689 ((-1282) (-1168))) (-15 -4043 ((-1282) (-1168))) (-15 -2059 ((-1282)))))
-((-2558 (((-112) $ $) NIL)) (-3366 (((-3 (|:| |fst| (-440)) (|:| -2713 "void")) $) 11)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1936 (($) 35)) (-3730 (($) 41)) (-4345 (($) 37)) (-3574 (($) 39)) (-3425 (($) 36)) (-2941 (($) 38)) (-4350 (($) 40)) (-3383 (((-112) $) 8)) (-3104 (((-650 (-959 (-570))) $) 19)) (-3811 (($ (-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-650 (-1186)) (-112)) 29) (($ (-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-650 (-959 (-570))) (-112)) 30)) (-3799 (((-868) $) 24) (($ (-440)) 32)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-443) (-13 (-1109) (-10 -8 (-15 -3799 ($ (-440))) (-15 -3366 ((-3 (|:| |fst| (-440)) (|:| -2713 "void")) $)) (-15 -3104 ((-650 (-959 (-570))) $)) (-15 -3383 ((-112) $)) (-15 -3811 ($ (-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-650 (-1186)) (-112))) (-15 -3811 ($ (-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-650 (-959 (-570))) (-112))) (-15 -1936 ($)) (-15 -3425 ($)) (-15 -4345 ($)) (-15 -3730 ($)) (-15 -2941 ($)) (-15 -3574 ($)) (-15 -4350 ($))))) (T -443))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-440)) (-5 *1 (-443)))) (-3366 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *1 (-443)))) (-3104 (*1 *2 *1) (-12 (-5 *2 (-650 (-959 (-570)))) (-5 *1 (-443)))) (-3383 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-443)))) (-3811 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *3 (-650 (-1186))) (-5 *4 (-112)) (-5 *1 (-443)))) (-3811 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-112)) (-5 *1 (-443)))) (-1936 (*1 *1) (-5 *1 (-443))) (-3425 (*1 *1) (-5 *1 (-443))) (-4345 (*1 *1) (-5 *1 (-443))) (-3730 (*1 *1) (-5 *1 (-443))) (-2941 (*1 *1) (-5 *1 (-443))) (-3574 (*1 *1) (-5 *1 (-443))) (-4350 (*1 *1) (-5 *1 (-443))))
-(-13 (-1109) (-10 -8 (-15 -3799 ($ (-440))) (-15 -3366 ((-3 (|:| |fst| (-440)) (|:| -2713 "void")) $)) (-15 -3104 ((-650 (-959 (-570))) $)) (-15 -3383 ((-112) $)) (-15 -3811 ($ (-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-650 (-1186)) (-112))) (-15 -3811 ($ (-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-650 (-959 (-570))) (-112))) (-15 -1936 ($)) (-15 -3425 ($)) (-15 -4345 ($)) (-15 -3730 ($)) (-15 -2941 ($)) (-15 -3574 ($)) (-15 -4350 ($))))
-((-2558 (((-112) $ $) NIL)) (-3600 (((-1186) $) 8)) (-1988 (((-1168) $) 17)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 11)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 14)))
-(((-444 |#1|) (-13 (-1109) (-10 -8 (-15 -3600 ((-1186) $)))) (-1186)) (T -444))
-((-3600 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-444 *3)) (-14 *3 *2))))
-(-13 (-1109) (-10 -8 (-15 -3600 ((-1186) $))))
-((-2558 (((-112) $ $) NIL)) (-4328 (((-1127) $) 7)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 13)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 9)))
-(((-445) (-13 (-1109) (-10 -8 (-15 -4328 ((-1127) $))))) (T -445))
-((-4328 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-445)))))
-(-13 (-1109) (-10 -8 (-15 -4328 ((-1127) $))))
-((-3396 (((-1282) $) 7)) (-3799 (((-868) $) 8) (($ (-1277 (-705))) 14) (($ (-650 (-334))) 13) (($ (-334)) 12) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 11)))
+((-1887 (*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-1900 (*1 *2 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)))) (-1755 (*1 *2 *1) (-12 (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-1186))))) (-4206 (*1 *1 *2 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4206 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4206 (*1 *1 *2 *1 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4206 (*1 *1 *2 *1 *1 *1 *1) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)))) (-4206 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-650 *1)) (-4 *1 (-436 *4)) (-4 *4 (-1109)))) (-1771 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-620 (-542))))) (-1771 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-4 *1 (-436 *3)) (-4 *3 (-1109)) (-4 *3 (-620 (-542))))) (-1771 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-620 (-542))))) (-1771 (*1 *1 *1 *2 *1 *3) (-12 (-5 *2 (-115)) (-5 *3 (-1186)) (-4 *1 (-436 *4)) (-4 *4 (-1109)) (-4 *4 (-620 (-542))))) (-1771 (*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))))) (-1369 (*1 *2 *1) (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-436 *3)))) (-2505 (*1 *2 *1) (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3994 (-570)))) (-4 *1 (-436 *3)))) (-1777 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-650 *1)) (-4 *1 (-436 *3)))) (-2292 (*1 *2 *1) (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| -1453 (-570)) (|:| |var| (-618 *1)))) (-4 *1 (-436 *3)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-1134 *3 (-618 *1))) (-4 *3 (-1058)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-4402 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *3 (-1109)) (-5 *2 (-1134 *3 (-618 *1))) (-4 *1 (-436 *3)))) (-1834 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-1058)))) (-2505 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-115)) (-4 *4 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3994 (-570)))) (-4 *1 (-436 *4)))) (-2505 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-1058)) (-4 *4 (-1109)) (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3994 (-570)))) (-4 *1 (-436 *4)))) (-3952 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *3 (-1109)) (-5 *2 (-2 (|:| |val| *1) (|:| -3994 (-570)))) (-4 *1 (-436 *3)))) (-1771 (*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)))) (-1771 (*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)))) (-1771 (*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)))) (-1771 (*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)))) (-1426 (*1 *1 *2) (-12 (-5 *2 (-424 *1)) (-4 *1 (-436 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))) (-4416 (*1 *2 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1109)) (-5 *2 (-1134 *3 (-618 *1))) (-4 *1 (-436 *3)))) (-1526 (*1 *1 *1) (-12 (-4 *1 (-436 *2)) (-4 *2 (-1109)) (-4 *2 (-562)))) (-3125 (*1 *1 *2 *2) (-12 (-5 *2 (-1134 *3 (-618 *1))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-413 *3)) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-959 (-413 *3))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-413 (-959 (-413 *3)))) (-4 *3 (-562)) (-4 *3 (-1109)) (-4 *1 (-436 *3)))) (-3778 (*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 -1887 ((-112) $)) (-15 -1900 (|t#1| $)) (-15 -1755 ((-650 (-1186)) $)) (-15 -4206 ($ (-1186) $)) (-15 -4206 ($ (-1186) $ $)) (-15 -4206 ($ (-1186) $ $ $)) (-15 -4206 ($ (-1186) $ $ $ $)) (-15 -4206 ($ (-1186) (-650 $))) (IF (|has| |t#1| (-620 (-542))) (PROGN (-6 (-620 (-542))) (-15 -1771 ($ $ (-1186))) (-15 -1771 ($ $ (-650 (-1186)))) (-15 -1771 ($ $)) (-15 -1771 ($ $ (-115) $ (-1186))) (-15 -1771 ($ $ (-650 (-115)) (-650 $) (-1186)))) |%noBranch|) (IF (|has| |t#1| (-1121)) (PROGN (-6 (-732)) (-15 ** ($ $ (-777))) (-15 -1369 ((-3 (-650 $) "failed") $)) (-15 -2505 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-479)) (-6 (-479)) |%noBranch|) (IF (|has| |t#1| (-25)) (PROGN (-6 (-23)) (-15 -1777 ((-3 (-650 $) "failed") $)) (-15 -2292 ((-3 (-2 (|:| -1453 (-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 -3802 ($ (-1134 |t#1| (-618 $)))) (-15 -4402 ((-1134 |t#1| (-618 $)) $)) (-15 -1834 ($ $)) (-15 -2505 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-115))) (-15 -2505 ((-3 (-2 (|:| |var| (-618 $)) (|:| -3994 (-570))) "failed") $ (-1186))) (-15 -3952 ((-3 (-2 (|:| |val| $) (|:| -3994 (-570))) "failed") $)) (-15 -1771 ($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ $)))) (-15 -1771 ($ $ (-650 (-1186)) (-650 (-777)) (-650 (-1 $ (-650 $))))) (-15 -1771 ($ $ (-1186) (-777) (-1 $ (-650 $)))) (-15 -1771 ($ $ (-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 -1426 ($ (-424 $))) (-15 -4416 ((-1134 |t#1| (-618 $)) $)) (-15 -1526 ($ $)) (-15 -3125 ($ (-1134 |t#1| (-618 $)) (-1134 |t#1| (-618 $)))) (-15 -3802 ($ (-413 |t#1|))) (-15 -3802 ($ (-959 (-413 |t#1|)))) (-15 -3802 ($ (-413 (-959 (-413 |t#1|))))) (-15 -3778 ((-413 (-1182 $)) $ (-618 $))) (IF (|has| |t#1| (-1047 (-570))) (-6 (-1047 (-413 (-570)))) |%noBranch|)) |%noBranch|)))
+(((-21) -2895 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-23) -2895 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-25)) (|has| |#1| (-21))) ((-25) -2895 (|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) -2895 (|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#) -2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-562))) ((-622 #1=(-413 (-959 |#1|))) |has| |#1| (-562)) ((-622 (-570)) -2895 (|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)) -2895 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146)) (|has| |#1| (-21))) ((-652 |#1|) |has| |#1| (-174)) ((-652 $) -2895 (|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 $) -2895 (|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) -2895 (|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))) -2895 (|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) -2895 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1067) -2895 (|has| |#1| (-1058)) (|has| |#1| (-562)) (|has| |#1| (-174)) (|has| |#1| (-148)) (|has| |#1| (-146))) ((-1121) -2895 (|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)))
+((-3539 ((|#2| |#2| |#2|) 31)) (-3759 (((-115) (-115)) 43)) (-4279 ((|#2| |#2|) 63)) (-1789 ((|#2| |#2|) 66)) (-3266 ((|#2| |#2|) 30)) (-2509 ((|#2| |#2| |#2|) 33)) (-2217 ((|#2| |#2| |#2|) 35)) (-2210 ((|#2| |#2| |#2|) 32)) (-3556 ((|#2| |#2| |#2|) 34)) (-3200 (((-112) (-115)) 41)) (-1542 ((|#2| |#2|) 37)) (-3845 ((|#2| |#2|) 36)) (-3231 ((|#2| |#2|) 25)) (-1941 ((|#2| |#2| |#2|) 28) ((|#2| |#2|) 26)) (-2669 ((|#2| |#2| |#2|) 29)))
+(((-437 |#1| |#2|) (-10 -7 (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -3231 (|#2| |#2|)) (-15 -1941 (|#2| |#2|)) (-15 -1941 (|#2| |#2| |#2|)) (-15 -2669 (|#2| |#2| |#2|)) (-15 -3266 (|#2| |#2|)) (-15 -3539 (|#2| |#2| |#2|)) (-15 -2210 (|#2| |#2| |#2|)) (-15 -2509 (|#2| |#2| |#2|)) (-15 -3556 (|#2| |#2| |#2|)) (-15 -2217 (|#2| |#2| |#2|)) (-15 -3845 (|#2| |#2|)) (-15 -1542 (|#2| |#2|)) (-15 -1789 (|#2| |#2|)) (-15 -4279 (|#2| |#2|))) (-562) (-436 |#1|)) (T -437))
+((-4279 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1789 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1542 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3845 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2217 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3556 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2509 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2210 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3539 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3266 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-2669 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1941 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-1941 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3231 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))) (-3759 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-437 *3 *4)) (-4 *4 (-436 *3)))) (-3200 (*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 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -3231 (|#2| |#2|)) (-15 -1941 (|#2| |#2|)) (-15 -1941 (|#2| |#2| |#2|)) (-15 -2669 (|#2| |#2| |#2|)) (-15 -3266 (|#2| |#2|)) (-15 -3539 (|#2| |#2| |#2|)) (-15 -2210 (|#2| |#2| |#2|)) (-15 -2509 (|#2| |#2| |#2|)) (-15 -3556 (|#2| |#2| |#2|)) (-15 -2217 (|#2| |#2| |#2|)) (-15 -3845 (|#2| |#2|)) (-15 -1542 (|#2| |#2|)) (-15 -1789 (|#2| |#2|)) (-15 -4279 (|#2| |#2|)))
+((-3511 (((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|) 103 (|has| |#2| (-27))) (((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|)) 65)))
+(((-438 |#1| |#2|) (-10 -7 (-15 -3511 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|))) (IF (|has| |#2| (-27)) (-15 -3511 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|)) |%noBranch|)) (-13 (-562) (-148)) (-436 |#1|)) (T -438))
+((-3511 (*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)))) (-3511 (*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 -3511 ((-2 (|:| |primelt| |#2|) (|:| |poly| (-650 (-1182 |#2|))) (|:| |prim| (-1182 |#2|))) (-650 |#2|))) (IF (|has| |#2| (-27)) (-15 -3511 ((-2 (|:| |primelt| |#2|) (|:| |pol1| (-1182 |#2|)) (|:| |pol2| (-1182 |#2|)) (|:| |prim| (-1182 |#2|))) |#2| |#2|)) |%noBranch|))
+((-1936 (((-1282)) 18)) (-2753 (((-1182 (-413 (-570))) |#2| (-618 |#2|)) 40) (((-413 (-570)) |#2|) 24)))
+(((-439 |#1| |#2|) (-10 -7 (-15 -2753 ((-413 (-570)) |#2|)) (-15 -2753 ((-1182 (-413 (-570))) |#2| (-618 |#2|))) (-15 -1936 ((-1282)))) (-13 (-562) (-1047 (-570))) (-436 |#1|)) (T -439))
+((-1936 (*1 *2) (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1282)) (-5 *1 (-439 *3 *4)) (-4 *4 (-436 *3)))) (-2753 (*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)))) (-2753 (*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 -2753 ((-413 (-570)) |#2|)) (-15 -2753 ((-1182 (-413 (-570))) |#2| (-618 |#2|))) (-15 -1936 ((-1282))))
+((-2063 (((-112) $) 32)) (-2318 (((-112) $) 34)) (-4201 (((-112) $) 35)) (-3068 (((-112) $) 38)) (-4041 (((-112) $) 33)) (-2113 (((-112) $) 37)) (-3802 (((-868) $) 20) (($ (-1168)) 31) (($ (-1186)) 26) (((-1186) $) 24) (((-1113) $) 23)) (-2091 (((-112) $) 36)) (-3025 (((-112) $ $) 17)))
+(((-440) (-13 (-619 (-868)) (-10 -8 (-15 -3802 ($ (-1168))) (-15 -3802 ($ (-1186))) (-15 -3802 ((-1186) $)) (-15 -3802 ((-1113) $)) (-15 -2063 ((-112) $)) (-15 -4041 ((-112) $)) (-15 -4201 ((-112) $)) (-15 -2113 ((-112) $)) (-15 -3068 ((-112) $)) (-15 -2091 ((-112) $)) (-15 -2318 ((-112) $)) (-15 -3025 ((-112) $ $))))) (T -440))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-440)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-440)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-440)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-440)))) (-2063 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-4041 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-4201 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2113 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3068 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2091 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-2318 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))) (-3025 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3802 ($ (-1168))) (-15 -3802 ($ (-1186))) (-15 -3802 ((-1186) $)) (-15 -3802 ((-1113) $)) (-15 -2063 ((-112) $)) (-15 -4041 ((-112) $)) (-15 -4201 ((-112) $)) (-15 -2113 ((-112) $)) (-15 -3068 ((-112) $)) (-15 -2091 ((-112) $)) (-15 -2318 ((-112) $)) (-15 -3025 ((-112) $ $))))
+((-1397 (((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|) 72)) (-3753 (((-424 |#3|) |#3|) 34)) (-2535 (((-3 (-424 (-1182 (-48))) "failed") |#3|) 46 (|has| |#2| (-1047 (-48))))) (-2145 (((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2637 (-112))) |#3|) 37)))
+(((-441 |#1| |#2| |#3|) (-10 -7 (-15 -3753 ((-424 |#3|) |#3|)) (-15 -1397 ((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|)) (-15 -2145 ((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2637 (-112))) |#3|)) (IF (|has| |#2| (-1047 (-48))) (-15 -2535 ((-3 (-424 (-1182 (-48))) "failed") |#3|)) |%noBranch|)) (-13 (-562) (-1047 (-570))) (-436 |#1|) (-1253 |#2|)) (T -441))
+((-2535 (*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)))) (-2145 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4)) (-5 *2 (-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2637 (-112)))) (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))) (-1397 (*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)))) (-3753 (*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 -3753 ((-424 |#3|) |#3|)) (-15 -1397 ((-3 (-424 (-1182 (-413 (-570)))) "failed") |#3|)) (-15 -2145 ((-3 (|:| |overq| (-1182 (-413 (-570)))) (|:| |overan| (-1182 (-48))) (|:| -2637 (-112))) |#3|)) (IF (|has| |#2| (-1047 (-48))) (-15 -2535 ((-3 (-424 (-1182 (-48))) "failed") |#3|)) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-2771 (((-1168) $ (-1168)) NIL)) (-2960 (($ $ (-1168)) NIL)) (-2582 (((-1168) $) NIL)) (-2394 (((-394) (-394) (-394)) 17) (((-394) (-394)) 15)) (-1765 (($ (-394)) NIL) (($ (-394) (-1168)) NIL)) (-3602 (((-394) $) NIL)) (-3989 (((-1168) $) NIL)) (-3499 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2681 (((-1282) (-1168)) 9)) (-4291 (((-1282) (-1168)) 10)) (-3553 (((-1282)) 11)) (-3802 (((-868) $) NIL)) (-3443 (($ $) 39)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-442) (-13 (-369 (-394) (-1168)) (-10 -7 (-15 -2394 ((-394) (-394) (-394))) (-15 -2394 ((-394) (-394))) (-15 -2681 ((-1282) (-1168))) (-15 -4291 ((-1282) (-1168))) (-15 -3553 ((-1282)))))) (T -442))
+((-2394 (*1 *2 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))) (-2394 (*1 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))) (-2681 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))) (-4291 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))) (-3553 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-442)))))
+(-13 (-369 (-394) (-1168)) (-10 -7 (-15 -2394 ((-394) (-394) (-394))) (-15 -2394 ((-394) (-394))) (-15 -2681 ((-1282) (-1168))) (-15 -4291 ((-1282) (-1168))) (-15 -3553 ((-1282)))))
+((-2560 (((-112) $ $) NIL)) (-4052 (((-3 (|:| |fst| (-440)) (|:| -2716 "void")) $) 11)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1623 (($) 35)) (-4328 (($) 41)) (-4128 (($) 37)) (-2296 (($) 39)) (-3325 (($) 36)) (-2421 (($) 38)) (-4185 (($) 40)) (-4178 (((-112) $) 8)) (-3417 (((-650 (-959 (-570))) $) 19)) (-3814 (($ (-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-650 (-1186)) (-112)) 29) (($ (-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-650 (-959 (-570))) (-112)) 30)) (-3802 (((-868) $) 24) (($ (-440)) 32)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-443) (-13 (-1109) (-10 -8 (-15 -3802 ($ (-440))) (-15 -4052 ((-3 (|:| |fst| (-440)) (|:| -2716 "void")) $)) (-15 -3417 ((-650 (-959 (-570))) $)) (-15 -4178 ((-112) $)) (-15 -3814 ($ (-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-650 (-1186)) (-112))) (-15 -3814 ($ (-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-650 (-959 (-570))) (-112))) (-15 -1623 ($)) (-15 -3325 ($)) (-15 -4128 ($)) (-15 -4328 ($)) (-15 -2421 ($)) (-15 -2296 ($)) (-15 -4185 ($))))) (T -443))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-440)) (-5 *1 (-443)))) (-4052 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *1 (-443)))) (-3417 (*1 *2 *1) (-12 (-5 *2 (-650 (-959 (-570)))) (-5 *1 (-443)))) (-4178 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-443)))) (-3814 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *3 (-650 (-1186))) (-5 *4 (-112)) (-5 *1 (-443)))) (-3814 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *3 (-650 (-959 (-570)))) (-5 *4 (-112)) (-5 *1 (-443)))) (-1623 (*1 *1) (-5 *1 (-443))) (-3325 (*1 *1) (-5 *1 (-443))) (-4128 (*1 *1) (-5 *1 (-443))) (-4328 (*1 *1) (-5 *1 (-443))) (-2421 (*1 *1) (-5 *1 (-443))) (-2296 (*1 *1) (-5 *1 (-443))) (-4185 (*1 *1) (-5 *1 (-443))))
+(-13 (-1109) (-10 -8 (-15 -3802 ($ (-440))) (-15 -4052 ((-3 (|:| |fst| (-440)) (|:| -2716 "void")) $)) (-15 -3417 ((-650 (-959 (-570))) $)) (-15 -4178 ((-112) $)) (-15 -3814 ($ (-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-650 (-1186)) (-112))) (-15 -3814 ($ (-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-650 (-959 (-570))) (-112))) (-15 -1623 ($)) (-15 -3325 ($)) (-15 -4128 ($)) (-15 -4328 ($)) (-15 -2421 ($)) (-15 -2296 ($)) (-15 -4185 ($))))
+((-2560 (((-112) $ $) NIL)) (-3602 (((-1186) $) 8)) (-3989 (((-1168) $) 17)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 11)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 14)))
+(((-444 |#1|) (-13 (-1109) (-10 -8 (-15 -3602 ((-1186) $)))) (-1186)) (T -444))
+((-3602 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-444 *3)) (-14 *3 *2))))
+(-13 (-1109) (-10 -8 (-15 -3602 ((-1186) $))))
+((-2560 (((-112) $ $) NIL)) (-4331 (((-1127) $) 7)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 13)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 9)))
+(((-445) (-13 (-1109) (-10 -8 (-15 -4331 ((-1127) $))))) (T -445))
+((-4331 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-445)))))
+(-13 (-1109) (-10 -8 (-15 -4331 ((-1127) $))))
+((-3400 (((-1282) $) 7)) (-3802 (((-868) $) 8) (($ (-1277 (-705))) 14) (($ (-650 (-334))) 13) (($ (-334)) 12) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 11)))
(((-446) (-141)) (T -446))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1277 (-705))) (-4 *1 (-446)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-446)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-446)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) (-4 *1 (-446)))))
-(-13 (-401) (-10 -8 (-15 -3799 ($ (-1277 (-705)))) (-15 -3799 ($ (-650 (-334)))) (-15 -3799 ($ (-334))) (-15 -3799 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))))))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1277 (-705))) (-4 *1 (-446)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-446)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-446)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) (-4 *1 (-446)))))
+(-13 (-401) (-10 -8 (-15 -3802 ($ (-1277 (-705)))) (-15 -3802 ($ (-650 (-334)))) (-15 -3802 ($ (-334))) (-15 -3802 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))))))
(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
-((-4380 (((-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)) (-3216 (($ (-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)) (-3396 (((-1282) $) 7)) (-3799 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) 23)))
+((-4383 (((-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)) (-3220 (($ (-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)) (-3400 (((-1282) $) 7)) (-3802 (((-868) $) 8) (($ (-650 (-334))) 25) (($ (-334)) 24) (($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) 23)))
(((-447) (-141)) (T -447))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-447)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-447)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334))))) (-4 *1 (-447)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-1277 (-320 (-384)))) (-4 *1 (-447)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-320 (-384)))) (-4 *1 (-447)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-1277 (-320 (-570)))) (-4 *1 (-447)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-320 (-570)))) (-4 *1 (-447)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-1277 (-959 (-384)))) (-4 *1 (-447)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-959 (-384)))) (-4 *1 (-447)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-1277 (-959 (-570)))) (-4 *1 (-447)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-959 (-570)))) (-4 *1 (-447)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 (-384))))) (-4 *1 (-447)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-413 (-959 (-384))))) (-4 *1 (-447)))) (-3216 (*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 (-570))))) (-4 *1 (-447)))) (-4380 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-413 (-959 (-570))))) (-4 *1 (-447)))))
-(-13 (-401) (-10 -8 (-15 -3799 ($ (-650 (-334)))) (-15 -3799 ($ (-334))) (-15 -3799 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))) (-15 -3216 ($ (-1277 (-320 (-384))))) (-15 -4380 ((-3 $ "failed") (-1277 (-320 (-384))))) (-15 -3216 ($ (-1277 (-320 (-570))))) (-15 -4380 ((-3 $ "failed") (-1277 (-320 (-570))))) (-15 -3216 ($ (-1277 (-959 (-384))))) (-15 -4380 ((-3 $ "failed") (-1277 (-959 (-384))))) (-15 -3216 ($ (-1277 (-959 (-570))))) (-15 -4380 ((-3 $ "failed") (-1277 (-959 (-570))))) (-15 -3216 ($ (-1277 (-413 (-959 (-384)))))) (-15 -4380 ((-3 $ "failed") (-1277 (-413 (-959 (-384)))))) (-15 -3216 ($ (-1277 (-413 (-959 (-570)))))) (-15 -4380 ((-3 $ "failed") (-1277 (-413 (-959 (-570))))))))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-447)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-447)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334))))) (-4 *1 (-447)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-1277 (-320 (-384)))) (-4 *1 (-447)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-320 (-384)))) (-4 *1 (-447)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-1277 (-320 (-570)))) (-4 *1 (-447)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-320 (-570)))) (-4 *1 (-447)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-1277 (-959 (-384)))) (-4 *1 (-447)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-959 (-384)))) (-4 *1 (-447)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-1277 (-959 (-570)))) (-4 *1 (-447)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-959 (-570)))) (-4 *1 (-447)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 (-384))))) (-4 *1 (-447)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-413 (-959 (-384))))) (-4 *1 (-447)))) (-3220 (*1 *1 *2) (-12 (-5 *2 (-1277 (-413 (-959 (-570))))) (-4 *1 (-447)))) (-4383 (*1 *1 *2) (|partial| -12 (-5 *2 (-1277 (-413 (-959 (-570))))) (-4 *1 (-447)))))
+(-13 (-401) (-10 -8 (-15 -3802 ($ (-650 (-334)))) (-15 -3802 ($ (-334))) (-15 -3802 ($ (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))) (-15 -3220 ($ (-1277 (-320 (-384))))) (-15 -4383 ((-3 $ "failed") (-1277 (-320 (-384))))) (-15 -3220 ($ (-1277 (-320 (-570))))) (-15 -4383 ((-3 $ "failed") (-1277 (-320 (-570))))) (-15 -3220 ($ (-1277 (-959 (-384))))) (-15 -4383 ((-3 $ "failed") (-1277 (-959 (-384))))) (-15 -3220 ($ (-1277 (-959 (-570))))) (-15 -4383 ((-3 $ "failed") (-1277 (-959 (-570))))) (-15 -3220 ($ (-1277 (-413 (-959 (-384)))))) (-15 -4383 ((-3 $ "failed") (-1277 (-413 (-959 (-384)))))) (-15 -3220 ($ (-1277 (-413 (-959 (-570)))))) (-15 -4383 ((-3 $ "failed") (-1277 (-413 (-959 (-570))))))))
(((-619 (-868)) . T) ((-401) . T) ((-1227) . T))
-((-3092 (((-112)) 18)) (-4104 (((-112) (-112)) 19)) (-1766 (((-112)) 14)) (-3902 (((-112) (-112)) 15)) (-3271 (((-112)) 16)) (-1752 (((-112) (-112)) 17)) (-2588 (((-928) (-928)) 22) (((-928)) 21)) (-3044 (((-777) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570))))) 52)) (-1438 (((-928) (-928)) 24) (((-928)) 23)) (-2290 (((-2 (|:| -2477 (-570)) (|:| -3477 (-650 |#1|))) |#1|) 94)) (-2389 (((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570))))))) 174)) (-4166 (((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112)) 207)) (-3361 (((-424 |#1|) |#1| (-777) (-777)) 222) (((-424 |#1|) |#1| (-650 (-777)) (-777)) 219) (((-424 |#1|) |#1| (-650 (-777))) 221) (((-424 |#1|) |#1| (-777)) 220) (((-424 |#1|) |#1|) 218)) (-2930 (((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112)) 224) (((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777)) 225) (((-3 |#1| "failed") (-928) |#1| (-650 (-777))) 227) (((-3 |#1| "failed") (-928) |#1| (-777)) 226) (((-3 |#1| "failed") (-928) |#1|) 228)) (-3801 (((-424 |#1|) |#1| (-777) (-777)) 217) (((-424 |#1|) |#1| (-650 (-777)) (-777)) 213) (((-424 |#1|) |#1| (-650 (-777))) 215) (((-424 |#1|) |#1| (-777)) 214) (((-424 |#1|) |#1|) 212)) (-3381 (((-112) |#1|) 44)) (-2002 (((-743 (-777)) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570))))) 99)) (-1858 (((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112) (-1111 (-777)) (-777)) 211)))
-(((-448 |#1|) (-10 -7 (-15 -2389 ((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))))) (-15 -2002 ((-743 (-777)) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))))) (-15 -1438 ((-928))) (-15 -1438 ((-928) (-928))) (-15 -2588 ((-928))) (-15 -2588 ((-928) (-928))) (-15 -3044 ((-777) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))))) (-15 -2290 ((-2 (|:| -2477 (-570)) (|:| -3477 (-650 |#1|))) |#1|)) (-15 -3092 ((-112))) (-15 -4104 ((-112) (-112))) (-15 -1766 ((-112))) (-15 -3902 ((-112) (-112))) (-15 -3381 ((-112) |#1|)) (-15 -3271 ((-112))) (-15 -1752 ((-112) (-112))) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3801 ((-424 |#1|) |#1| (-777))) (-15 -3801 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3801 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3801 ((-424 |#1|) |#1| (-777) (-777))) (-15 -3361 ((-424 |#1|) |#1|)) (-15 -3361 ((-424 |#1|) |#1| (-777))) (-15 -3361 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3361 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3361 ((-424 |#1|) |#1| (-777) (-777))) (-15 -2930 ((-3 |#1| "failed") (-928) |#1|)) (-15 -2930 ((-3 |#1| "failed") (-928) |#1| (-777))) (-15 -2930 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)))) (-15 -2930 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777))) (-15 -2930 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112))) (-15 -4166 ((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112))) (-15 -1858 ((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112) (-1111 (-777)) (-777)))) (-1253 (-570))) (T -448))
-((-1858 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1111 (-777))) (-5 *6 (-777)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| *3) (|:| -3563 (-570))))))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4166 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| *3) (|:| -3563 (-570))))))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2930 (*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))))) (-2930 (*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))))) (-2930 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-2930 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-777)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-2930 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-928)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-3361 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3361 (*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))))) (-3361 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3361 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3361 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3801 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3801 (*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))))) (-3801 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3801 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3801 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-1752 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3271 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3381 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3902 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-1766 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4104 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3092 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2290 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -2477 (-570)) (|:| -3477 (-650 *3)))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3044 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3801 *4) (|:| -2130 (-570))))) (-4 *4 (-1253 (-570))) (-5 *2 (-777)) (-5 *1 (-448 *4)))) (-2588 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2588 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-1438 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-1438 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2002 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3801 *4) (|:| -2130 (-570))))) (-4 *4 (-1253 (-570))) (-5 *2 (-743 (-777))) (-5 *1 (-448 *4)))) (-2389 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| *4) (|:| -3563 (-570))))))) (-4 *4 (-1253 (-570))) (-5 *2 (-424 *4)) (-5 *1 (-448 *4)))))
-(-10 -7 (-15 -2389 ((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))))) (-15 -2002 ((-743 (-777)) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))))) (-15 -1438 ((-928))) (-15 -1438 ((-928) (-928))) (-15 -2588 ((-928))) (-15 -2588 ((-928) (-928))) (-15 -3044 ((-777) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))))) (-15 -2290 ((-2 (|:| -2477 (-570)) (|:| -3477 (-650 |#1|))) |#1|)) (-15 -3092 ((-112))) (-15 -4104 ((-112) (-112))) (-15 -1766 ((-112))) (-15 -3902 ((-112) (-112))) (-15 -3381 ((-112) |#1|)) (-15 -3271 ((-112))) (-15 -1752 ((-112) (-112))) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3801 ((-424 |#1|) |#1| (-777))) (-15 -3801 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3801 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3801 ((-424 |#1|) |#1| (-777) (-777))) (-15 -3361 ((-424 |#1|) |#1|)) (-15 -3361 ((-424 |#1|) |#1| (-777))) (-15 -3361 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3361 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3361 ((-424 |#1|) |#1| (-777) (-777))) (-15 -2930 ((-3 |#1| "failed") (-928) |#1|)) (-15 -2930 ((-3 |#1| "failed") (-928) |#1| (-777))) (-15 -2930 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)))) (-15 -2930 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777))) (-15 -2930 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112))) (-15 -4166 ((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112))) (-15 -1858 ((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112) (-1111 (-777)) (-777))))
-((-1919 (((-570) |#2|) 52) (((-570) |#2| (-777)) 51)) (-1904 (((-570) |#2|) 64)) (-1420 ((|#3| |#2|) 26)) (-2959 ((|#3| |#2| (-928)) 15)) (-1355 ((|#3| |#2|) 16)) (-3962 ((|#3| |#2|) 9)) (-1444 ((|#3| |#2|) 10)) (-3004 ((|#3| |#2| (-928)) 71) ((|#3| |#2|) 34)) (-1912 (((-570) |#2|) 66)))
-(((-449 |#1| |#2| |#3|) (-10 -7 (-15 -1912 ((-570) |#2|)) (-15 -3004 (|#3| |#2|)) (-15 -3004 (|#3| |#2| (-928))) (-15 -1904 ((-570) |#2|)) (-15 -1919 ((-570) |#2| (-777))) (-15 -1919 ((-570) |#2|)) (-15 -2959 (|#3| |#2| (-928))) (-15 -1420 (|#3| |#2|)) (-15 -3962 (|#3| |#2|)) (-15 -1444 (|#3| |#2|)) (-15 -1355 (|#3| |#2|))) (-1058) (-1253 |#1|) (-13 (-410) (-1047 |#1|) (-368) (-1212) (-288))) (T -449))
-((-1355 (*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)))) (-1444 (*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)))) (-3962 (*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)))) (-1420 (*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)))) (-2959 (*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)))) (-1919 (*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))))) (-1919 (*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))))) (-1904 (*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))))) (-3004 (*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)))) (-3004 (*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)))) (-1912 (*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 -1912 ((-570) |#2|)) (-15 -3004 (|#3| |#2|)) (-15 -3004 (|#3| |#2| (-928))) (-15 -1904 ((-570) |#2|)) (-15 -1919 ((-570) |#2| (-777))) (-15 -1919 ((-570) |#2|)) (-15 -2959 (|#3| |#2| (-928))) (-15 -1420 (|#3| |#2|)) (-15 -3962 (|#3| |#2|)) (-15 -1444 (|#3| |#2|)) (-15 -1355 (|#3| |#2|)))
-((-3441 ((|#2| (-1277 |#1|)) 42)) (-2583 ((|#2| |#2| |#1|) 58)) (-1827 ((|#2| |#2| |#1|) 49)) (-2377 ((|#2| |#2|) 44)) (-4044 (((-112) |#2|) 32)) (-1721 (((-650 |#2|) (-928) (-424 |#2|)) 21)) (-2930 ((|#2| (-928) (-424 |#2|)) 25)) (-2002 (((-743 (-777)) (-424 |#2|)) 29)))
-(((-450 |#1| |#2|) (-10 -7 (-15 -4044 ((-112) |#2|)) (-15 -3441 (|#2| (-1277 |#1|))) (-15 -2377 (|#2| |#2|)) (-15 -1827 (|#2| |#2| |#1|)) (-15 -2583 (|#2| |#2| |#1|)) (-15 -2002 ((-743 (-777)) (-424 |#2|))) (-15 -2930 (|#2| (-928) (-424 |#2|))) (-15 -1721 ((-650 |#2|) (-928) (-424 |#2|)))) (-1058) (-1253 |#1|)) (T -450))
-((-1721 (*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)))) (-2930 (*1 *2 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-424 *2)) (-4 *2 (-1253 *5)) (-5 *1 (-450 *5 *2)) (-4 *5 (-1058)))) (-2002 (*1 *2 *3) (-12 (-5 *3 (-424 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-1058)) (-5 *2 (-743 (-777))) (-5 *1 (-450 *4 *5)))) (-2583 (*1 *2 *2 *3) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-1827 (*1 *2 *2 *3) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-2377 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-3441 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-1058)) (-4 *2 (-1253 *4)) (-5 *1 (-450 *4 *2)))) (-4044 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-450 *4 *3)) (-4 *3 (-1253 *4)))))
-(-10 -7 (-15 -4044 ((-112) |#2|)) (-15 -3441 (|#2| (-1277 |#1|))) (-15 -2377 (|#2| |#2|)) (-15 -1827 (|#2| |#2| |#1|)) (-15 -2583 (|#2| |#2| |#1|)) (-15 -2002 ((-743 (-777)) (-424 |#2|))) (-15 -2930 (|#2| (-928) (-424 |#2|))) (-15 -1721 ((-650 |#2|) (-928) (-424 |#2|))))
-((-2317 (((-777)) 59)) (-3675 (((-777)) 29 (|has| |#1| (-410))) (((-777) (-777)) 28 (|has| |#1| (-410)))) (-2238 (((-570) |#1|) 25 (|has| |#1| (-410)))) (-2974 (((-570) |#1|) 27 (|has| |#1| (-410)))) (-1993 (((-777)) 58) (((-777) (-777)) 57)) (-3608 ((|#1| (-777) (-570)) 37)) (-1780 (((-1282)) 61)))
-(((-451 |#1|) (-10 -7 (-15 -3608 (|#1| (-777) (-570))) (-15 -1993 ((-777) (-777))) (-15 -1993 ((-777))) (-15 -2317 ((-777))) (-15 -1780 ((-1282))) (IF (|has| |#1| (-410)) (PROGN (-15 -2974 ((-570) |#1|)) (-15 -2238 ((-570) |#1|)) (-15 -3675 ((-777) (-777))) (-15 -3675 ((-777)))) |%noBranch|)) (-1058)) (T -451))
-((-3675 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-3675 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-2238 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-2974 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-1780 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-2317 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-1993 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-1993 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-3608 (*1 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-570)) (-5 *1 (-451 *2)) (-4 *2 (-1058)))))
-(-10 -7 (-15 -3608 (|#1| (-777) (-570))) (-15 -1993 ((-777) (-777))) (-15 -1993 ((-777))) (-15 -2317 ((-777))) (-15 -1780 ((-1282))) (IF (|has| |#1| (-410)) (PROGN (-15 -2974 ((-570) |#1|)) (-15 -2238 ((-570) |#1|)) (-15 -3675 ((-777) (-777))) (-15 -3675 ((-777)))) |%noBranch|))
-((-1679 (((-650 (-570)) (-570)) 76)) (-3618 (((-112) (-171 (-570))) 82)) (-3801 (((-424 (-171 (-570))) (-171 (-570))) 75)))
-(((-452) (-10 -7 (-15 -3801 ((-424 (-171 (-570))) (-171 (-570)))) (-15 -1679 ((-650 (-570)) (-570))) (-15 -3618 ((-112) (-171 (-570)))))) (T -452))
-((-3618 (*1 *2 *3) (-12 (-5 *3 (-171 (-570))) (-5 *2 (-112)) (-5 *1 (-452)))) (-1679 (*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-452)) (-5 *3 (-570)))) (-3801 (*1 *2 *3) (-12 (-5 *2 (-424 (-171 (-570)))) (-5 *1 (-452)) (-5 *3 (-171 (-570))))))
-(-10 -7 (-15 -3801 ((-424 (-171 (-570))) (-171 (-570)))) (-15 -1679 ((-650 (-570)) (-570))) (-15 -3618 ((-112) (-171 (-570)))))
-((-1946 ((|#4| |#4| (-650 |#4|)) 82)) (-3956 (((-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 -1946 (|#4| |#4| (-650 |#4|))) (-15 -3956 ((-650 |#4|) (-650 |#4|))) (-15 -3956 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -3956 ((-650 |#4|) (-650 |#4|) (-1168) (-1168)))) (-311) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -453))
-((-3956 (*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)))) (-3956 (*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)))) (-3956 (*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)))) (-1946 (*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 -1946 (|#4| |#4| (-650 |#4|))) (-15 -3956 ((-650 |#4|) (-650 |#4|))) (-15 -3956 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -3956 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))))
-((-3859 (((-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)) (-3376 (((-650 (-650 |#4|)) (-650 |#4|) (-112)) 55) (((-650 (-650 |#4|)) (-650 |#4|)) 77)))
-(((-454 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3376 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -3376 ((-650 (-650 |#4|)) (-650 |#4|) (-112))) (-15 -3859 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|))) (-15 -3859 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112))) (-15 -3859 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -3859 ((-650 (-650 |#4|)) (-650 |#4|) (-112)))) (-13 (-311) (-148)) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -454))
-((-3859 (*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)))) (-3859 (*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)))) (-3859 (*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)))) (-3859 (*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)))) (-3376 (*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)))) (-3376 (*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 -3376 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -3376 ((-650 (-650 |#4|)) (-650 |#4|) (-112))) (-15 -3859 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|))) (-15 -3859 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112))) (-15 -3859 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -3859 ((-650 (-650 |#4|)) (-650 |#4|) (-112))))
-((-1604 (((-777) |#4|) 12)) (-1777 (((-650 (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|)))) 39)) (-3119 (((-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)) (-3487 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 52)) (-3401 ((|#4| |#4| (-650 |#4|)) 54)) (-3498 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|)) 96)) (-2779 (((-1282) |#4|) 59)) (-2235 (((-1282) (-650 |#4|)) 69)) (-2546 (((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570)) 66)) (-2901 (((-1282) (-570)) 110)) (-1344 (((-650 |#4|) (-650 |#4|)) 104)) (-1974 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|)) |#4| (-777)) 31)) (-3703 (((-570) |#4|) 109)) (-1507 ((|#4| |#4|) 37)) (-3189 (((-650 |#4|) (-650 |#4|) (-570) (-570)) 74)) (-3097 (((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570)) 123)) (-2718 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 20)) (-2638 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 78)) (-3102 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 76)) (-1497 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 47)) (-3728 (((-112) |#2| |#2|) 75)) (-3679 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 48)) (-3769 (((-112) |#2| |#2| |#2| |#2|) 80)) (-2534 ((|#4| |#4| (-650 |#4|)) 97)))
-(((-455 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2534 (|#4| |#4| (-650 |#4|))) (-15 -3401 (|#4| |#4| (-650 |#4|))) (-15 -3189 ((-650 |#4|) (-650 |#4|) (-570) (-570))) (-15 -2638 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3728 ((-112) |#2| |#2|)) (-15 -3769 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3679 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1497 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3102 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3498 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|))) (-15 -1507 (|#4| |#4|)) (-15 -1777 ((-650 (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|))))) (-15 -3487 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3119 ((-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 -1344 ((-650 |#4|) (-650 |#4|))) (-15 -3703 ((-570) |#4|)) (-15 -2779 ((-1282) |#4|)) (-15 -2546 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570))) (-15 -3097 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570))) (-15 -2235 ((-1282) (-650 |#4|))) (-15 -2901 ((-1282) (-570))) (-15 -2718 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -1974 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|)) |#4| (-777))) (-15 -1604 ((-777) |#4|))) (-458) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -455))
-((-1604 (*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)))) (-1974 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-777)) (|:| -3423 *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)))) (-2718 (*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)))) (-2901 (*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)))) (-2235 (*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)))) (-3097 (*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)))) (-2546 (*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)))) (-2779 (*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)))) (-3703 (*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)))) (-1344 (*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)))) (-3119 (*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)))) (-3487 (*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)))) (-1777 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-650 (-2 (|:| |totdeg| (-777)) (|:| -3423 *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)))) (-1507 (*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)))) (-3498 (*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)))) (-3102 (*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)))) (-1497 (*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)))) (-3679 (*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)))) (-3769 (*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)))) (-3728 (*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)))) (-2638 (*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)))) (-3189 (*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)))) (-3401 (*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)))) (-2534 (*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 -2534 (|#4| |#4| (-650 |#4|))) (-15 -3401 (|#4| |#4| (-650 |#4|))) (-15 -3189 ((-650 |#4|) (-650 |#4|) (-570) (-570))) (-15 -2638 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3728 ((-112) |#2| |#2|)) (-15 -3769 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3679 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -1497 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3102 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3498 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|))) (-15 -1507 (|#4| |#4|)) (-15 -1777 ((-650 (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|))))) (-15 -3487 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3119 ((-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 -1344 ((-650 |#4|) (-650 |#4|))) (-15 -3703 ((-570) |#4|)) (-15 -2779 ((-1282) |#4|)) (-15 -2546 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570))) (-15 -3097 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570))) (-15 -2235 ((-1282) (-650 |#4|))) (-15 -2901 ((-1282) (-570))) (-15 -2718 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -1974 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3423 |#4|)) |#4| (-777))) (-15 -1604 ((-777) |#4|)))
-((-2742 ((|#4| |#4| (-650 |#4|)) 20 (|has| |#1| (-368)))) (-1857 (((-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 -1857 ((-650 |#4|) (-650 |#4|))) (-15 -1857 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -1857 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))) (IF (|has| |#1| (-368)) (-15 -2742 (|#4| |#4| (-650 |#4|))) |%noBranch|)) (-458) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -456))
-((-2742 (*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)))) (-1857 (*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)))) (-1857 (*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)))) (-1857 (*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 -1857 ((-650 |#4|) (-650 |#4|))) (-15 -1857 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -1857 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))) (IF (|has| |#1| (-368)) (-15 -2742 (|#4| |#4| (-650 |#4|))) |%noBranch|))
-((-1899 (($ $ $) 14) (($ (-650 $)) 21)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 46)) (-1942 (($ $ $) NIL) (($ (-650 $)) 22)))
-(((-457 |#1|) (-10 -8 (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1899 (|#1| (-650 |#1|))) (-15 -1899 (|#1| |#1| |#1|)) (-15 -1942 (|#1| (-650 |#1|))) (-15 -1942 (|#1| |#1| |#1|))) (-458)) (T -457))
-NIL
-(-10 -8 (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1899 (|#1| (-650 |#1|))) (-15 -1899 (|#1| |#1| |#1|)) (-15 -1942 (|#1| (-650 |#1|))) (-15 -1942 (|#1| |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2547 (((-3 $ "failed") $ $) 48)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-3298 (((-112)) 18)) (-3750 (((-112) (-112)) 19)) (-2577 (((-112)) 14)) (-2335 (((-112) (-112)) 15)) (-4394 (((-112)) 16)) (-3640 (((-112) (-112)) 17)) (-4076 (((-928) (-928)) 22) (((-928)) 21)) (-4027 (((-777) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570))))) 52)) (-1521 (((-928) (-928)) 24) (((-928)) 23)) (-4090 (((-2 (|:| -2445 (-570)) (|:| -2638 (-650 |#1|))) |#1|) 94)) (-2750 (((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570))))))) 174)) (-3066 (((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112)) 207)) (-4014 (((-424 |#1|) |#1| (-777) (-777)) 222) (((-424 |#1|) |#1| (-650 (-777)) (-777)) 219) (((-424 |#1|) |#1| (-650 (-777))) 221) (((-424 |#1|) |#1| (-777)) 220) (((-424 |#1|) |#1|) 218)) (-2326 (((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112)) 224) (((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777)) 225) (((-3 |#1| "failed") (-928) |#1| (-650 (-777))) 227) (((-3 |#1| "failed") (-928) |#1| (-777)) 226) (((-3 |#1| "failed") (-928) |#1|) 228)) (-3804 (((-424 |#1|) |#1| (-777) (-777)) 217) (((-424 |#1|) |#1| (-650 (-777)) (-777)) 213) (((-424 |#1|) |#1| (-650 (-777))) 215) (((-424 |#1|) |#1| (-777)) 214) (((-424 |#1|) |#1|) 212)) (-4155 (((-112) |#1|) 44)) (-4124 (((-743 (-777)) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570))))) 99)) (-2165 (((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112) (-1111 (-777)) (-777)) 211)))
+(((-448 |#1|) (-10 -7 (-15 -2750 ((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))))) (-15 -4124 ((-743 (-777)) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))))) (-15 -1521 ((-928))) (-15 -1521 ((-928) (-928))) (-15 -4076 ((-928))) (-15 -4076 ((-928) (-928))) (-15 -4027 ((-777) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))))) (-15 -4090 ((-2 (|:| -2445 (-570)) (|:| -2638 (-650 |#1|))) |#1|)) (-15 -3298 ((-112))) (-15 -3750 ((-112) (-112))) (-15 -2577 ((-112))) (-15 -2335 ((-112) (-112))) (-15 -4155 ((-112) |#1|)) (-15 -4394 ((-112))) (-15 -3640 ((-112) (-112))) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -3804 ((-424 |#1|) |#1| (-777))) (-15 -3804 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3804 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3804 ((-424 |#1|) |#1| (-777) (-777))) (-15 -4014 ((-424 |#1|) |#1|)) (-15 -4014 ((-424 |#1|) |#1| (-777))) (-15 -4014 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -4014 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -4014 ((-424 |#1|) |#1| (-777) (-777))) (-15 -2326 ((-3 |#1| "failed") (-928) |#1|)) (-15 -2326 ((-3 |#1| "failed") (-928) |#1| (-777))) (-15 -2326 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)))) (-15 -2326 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777))) (-15 -2326 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112))) (-15 -3066 ((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112))) (-15 -2165 ((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112) (-1111 (-777)) (-777)))) (-1253 (-570))) (T -448))
+((-2165 (*1 *2 *3 *4 *5 *6) (-12 (-5 *4 (-112)) (-5 *5 (-1111 (-777))) (-5 *6 (-777)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| *3) (|:| -2199 (-570))))))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3066 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| *3) (|:| -2199 (-570))))))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2326 (*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))))) (-2326 (*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))))) (-2326 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-650 (-777))) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-2326 (*1 *2 *3 *2 *4) (|partial| -12 (-5 *3 (-928)) (-5 *4 (-777)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-2326 (*1 *2 *3 *2) (|partial| -12 (-5 *3 (-928)) (-5 *1 (-448 *2)) (-4 *2 (-1253 (-570))))) (-4014 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4014 (*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))))) (-4014 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4014 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4014 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3804 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3804 (*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))))) (-3804 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-777))) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3804 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3804 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3640 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4394 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4155 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2335 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-2577 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3750 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-3298 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4090 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -2445 (-570)) (|:| -2638 (-650 *3)))) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4027 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3804 *4) (|:| -3079 (-570))))) (-4 *4 (-1253 (-570))) (-5 *2 (-777)) (-5 *1 (-448 *4)))) (-4076 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4076 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-1521 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-1521 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))) (-4124 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3804 *4) (|:| -3079 (-570))))) (-4 *4 (-1253 (-570))) (-5 *2 (-743 (-777))) (-5 *1 (-448 *4)))) (-2750 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| *4) (|:| -2199 (-570))))))) (-4 *4 (-1253 (-570))) (-5 *2 (-424 *4)) (-5 *1 (-448 *4)))))
+(-10 -7 (-15 -2750 ((-424 |#1|) (-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))))) (-15 -4124 ((-743 (-777)) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))))) (-15 -1521 ((-928))) (-15 -1521 ((-928) (-928))) (-15 -4076 ((-928))) (-15 -4076 ((-928) (-928))) (-15 -4027 ((-777) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))))) (-15 -4090 ((-2 (|:| -2445 (-570)) (|:| -2638 (-650 |#1|))) |#1|)) (-15 -3298 ((-112))) (-15 -3750 ((-112) (-112))) (-15 -2577 ((-112))) (-15 -2335 ((-112) (-112))) (-15 -4155 ((-112) |#1|)) (-15 -4394 ((-112))) (-15 -3640 ((-112) (-112))) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -3804 ((-424 |#1|) |#1| (-777))) (-15 -3804 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -3804 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -3804 ((-424 |#1|) |#1| (-777) (-777))) (-15 -4014 ((-424 |#1|) |#1|)) (-15 -4014 ((-424 |#1|) |#1| (-777))) (-15 -4014 ((-424 |#1|) |#1| (-650 (-777)))) (-15 -4014 ((-424 |#1|) |#1| (-650 (-777)) (-777))) (-15 -4014 ((-424 |#1|) |#1| (-777) (-777))) (-15 -2326 ((-3 |#1| "failed") (-928) |#1|)) (-15 -2326 ((-3 |#1| "failed") (-928) |#1| (-777))) (-15 -2326 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)))) (-15 -2326 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777))) (-15 -2326 ((-3 |#1| "failed") (-928) |#1| (-650 (-777)) (-777) (-112))) (-15 -3066 ((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112))) (-15 -2165 ((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112) (-1111 (-777)) (-777))))
+((-1430 (((-570) |#2|) 52) (((-570) |#2| (-777)) 51)) (-4375 (((-570) |#2|) 64)) (-1340 ((|#3| |#2|) 26)) (-4399 ((|#3| |#2| (-928)) 15)) (-1356 ((|#3| |#2|) 16)) (-1634 ((|#3| |#2|) 9)) (-1445 ((|#3| |#2|) 10)) (-1841 ((|#3| |#2| (-928)) 71) ((|#3| |#2|) 34)) (-1346 (((-570) |#2|) 66)))
+(((-449 |#1| |#2| |#3|) (-10 -7 (-15 -1346 ((-570) |#2|)) (-15 -1841 (|#3| |#2|)) (-15 -1841 (|#3| |#2| (-928))) (-15 -4375 ((-570) |#2|)) (-15 -1430 ((-570) |#2| (-777))) (-15 -1430 ((-570) |#2|)) (-15 -4399 (|#3| |#2| (-928))) (-15 -1340 (|#3| |#2|)) (-15 -1634 (|#3| |#2|)) (-15 -1445 (|#3| |#2|)) (-15 -1356 (|#3| |#2|))) (-1058) (-1253 |#1|) (-13 (-410) (-1047 |#1|) (-368) (-1212) (-288))) (T -449))
+((-1356 (*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)))) (-1445 (*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)))) (-1634 (*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)))) (-1340 (*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)))) (-4399 (*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)))) (-1430 (*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))))) (-1430 (*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))))) (-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))))) (-1841 (*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)))) (-1841 (*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)))) (-1346 (*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 -1346 ((-570) |#2|)) (-15 -1841 (|#3| |#2|)) (-15 -1841 (|#3| |#2| (-928))) (-15 -4375 ((-570) |#2|)) (-15 -1430 ((-570) |#2| (-777))) (-15 -1430 ((-570) |#2|)) (-15 -4399 (|#3| |#2| (-928))) (-15 -1340 (|#3| |#2|)) (-15 -1634 (|#3| |#2|)) (-15 -1445 (|#3| |#2|)) (-15 -1356 (|#3| |#2|)))
+((-3484 ((|#2| (-1277 |#1|)) 42)) (-4040 ((|#2| |#2| |#1|) 58)) (-3072 ((|#2| |#2| |#1|) 49)) (-2380 ((|#2| |#2|) 44)) (-4304 (((-112) |#2|) 32)) (-3324 (((-650 |#2|) (-928) (-424 |#2|)) 21)) (-2326 ((|#2| (-928) (-424 |#2|)) 25)) (-4124 (((-743 (-777)) (-424 |#2|)) 29)))
+(((-450 |#1| |#2|) (-10 -7 (-15 -4304 ((-112) |#2|)) (-15 -3484 (|#2| (-1277 |#1|))) (-15 -2380 (|#2| |#2|)) (-15 -3072 (|#2| |#2| |#1|)) (-15 -4040 (|#2| |#2| |#1|)) (-15 -4124 ((-743 (-777)) (-424 |#2|))) (-15 -2326 (|#2| (-928) (-424 |#2|))) (-15 -3324 ((-650 |#2|) (-928) (-424 |#2|)))) (-1058) (-1253 |#1|)) (T -450))
+((-3324 (*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)))) (-2326 (*1 *2 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-424 *2)) (-4 *2 (-1253 *5)) (-5 *1 (-450 *5 *2)) (-4 *5 (-1058)))) (-4124 (*1 *2 *3) (-12 (-5 *3 (-424 *5)) (-4 *5 (-1253 *4)) (-4 *4 (-1058)) (-5 *2 (-743 (-777))) (-5 *1 (-450 *4 *5)))) (-4040 (*1 *2 *2 *3) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-3072 (*1 *2 *2 *3) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-2380 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))) (-3484 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-1058)) (-4 *2 (-1253 *4)) (-5 *1 (-450 *4 *2)))) (-4304 (*1 *2 *3) (-12 (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-450 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -4304 ((-112) |#2|)) (-15 -3484 (|#2| (-1277 |#1|))) (-15 -2380 (|#2| |#2|)) (-15 -3072 (|#2| |#2| |#1|)) (-15 -4040 (|#2| |#2| |#1|)) (-15 -4124 ((-743 (-777)) (-424 |#2|))) (-15 -2326 (|#2| (-928) (-424 |#2|))) (-15 -3324 ((-650 |#2|) (-928) (-424 |#2|))))
+((-4354 (((-777)) 59)) (-3839 (((-777)) 29 (|has| |#1| (-410))) (((-777) (-777)) 28 (|has| |#1| (-410)))) (-1716 (((-570) |#1|) 25 (|has| |#1| (-410)))) (-1472 (((-570) |#1|) 27 (|has| |#1| (-410)))) (-4037 (((-777)) 58) (((-777) (-777)) 57)) (-2579 ((|#1| (-777) (-570)) 37)) (-2675 (((-1282)) 61)))
+(((-451 |#1|) (-10 -7 (-15 -2579 (|#1| (-777) (-570))) (-15 -4037 ((-777) (-777))) (-15 -4037 ((-777))) (-15 -4354 ((-777))) (-15 -2675 ((-1282))) (IF (|has| |#1| (-410)) (PROGN (-15 -1472 ((-570) |#1|)) (-15 -1716 ((-570) |#1|)) (-15 -3839 ((-777) (-777))) (-15 -3839 ((-777)))) |%noBranch|)) (-1058)) (T -451))
+((-3839 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-3839 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-1716 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-1472 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))) (-2675 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-4354 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-4037 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-4037 (*1 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))) (-2579 (*1 *2 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-570)) (-5 *1 (-451 *2)) (-4 *2 (-1058)))))
+(-10 -7 (-15 -2579 (|#1| (-777) (-570))) (-15 -4037 ((-777) (-777))) (-15 -4037 ((-777))) (-15 -4354 ((-777))) (-15 -2675 ((-1282))) (IF (|has| |#1| (-410)) (PROGN (-15 -1472 ((-570) |#1|)) (-15 -1716 ((-570) |#1|)) (-15 -3839 ((-777) (-777))) (-15 -3839 ((-777)))) |%noBranch|))
+((-4097 (((-650 (-570)) (-570)) 76)) (-1336 (((-112) (-171 (-570))) 82)) (-3804 (((-424 (-171 (-570))) (-171 (-570))) 75)))
+(((-452) (-10 -7 (-15 -3804 ((-424 (-171 (-570))) (-171 (-570)))) (-15 -4097 ((-650 (-570)) (-570))) (-15 -1336 ((-112) (-171 (-570)))))) (T -452))
+((-1336 (*1 *2 *3) (-12 (-5 *3 (-171 (-570))) (-5 *2 (-112)) (-5 *1 (-452)))) (-4097 (*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-452)) (-5 *3 (-570)))) (-3804 (*1 *2 *3) (-12 (-5 *2 (-424 (-171 (-570)))) (-5 *1 (-452)) (-5 *3 (-171 (-570))))))
+(-10 -7 (-15 -3804 ((-424 (-171 (-570))) (-171 (-570)))) (-15 -4097 ((-650 (-570)) (-570))) (-15 -1336 ((-112) (-171 (-570)))))
+((-1697 ((|#4| |#4| (-650 |#4|)) 82)) (-1567 (((-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 -1697 (|#4| |#4| (-650 |#4|))) (-15 -1567 ((-650 |#4|) (-650 |#4|))) (-15 -1567 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -1567 ((-650 |#4|) (-650 |#4|) (-1168) (-1168)))) (-311) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -453))
+((-1567 (*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)))) (-1567 (*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)))) (-1567 (*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)))) (-1697 (*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 -1697 (|#4| |#4| (-650 |#4|))) (-15 -1567 ((-650 |#4|) (-650 |#4|))) (-15 -1567 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -1567 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))))
+((-3119 (((-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)) (-4118 (((-650 (-650 |#4|)) (-650 |#4|) (-112)) 55) (((-650 (-650 |#4|)) (-650 |#4|)) 77)))
+(((-454 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4118 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -4118 ((-650 (-650 |#4|)) (-650 |#4|) (-112))) (-15 -3119 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|))) (-15 -3119 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112))) (-15 -3119 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -3119 ((-650 (-650 |#4|)) (-650 |#4|) (-112)))) (-13 (-311) (-148)) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -454))
+((-3119 (*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)))) (-3119 (*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)))) (-3119 (*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)))) (-3119 (*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)))) (-4118 (*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)))) (-4118 (*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 -4118 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -4118 ((-650 (-650 |#4|)) (-650 |#4|) (-112))) (-15 -3119 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|))) (-15 -3119 ((-650 (-650 |#4|)) (-650 |#4|) (-650 |#4|) (-112))) (-15 -3119 ((-650 (-650 |#4|)) (-650 |#4|))) (-15 -3119 ((-650 (-650 |#4|)) (-650 |#4|) (-112))))
+((-1520 (((-777) |#4|) 12)) (-2654 (((-650 (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|)))) 39)) (-3554 (((-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)) (-2727 ((|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 52)) (-4290 ((|#4| |#4| (-650 |#4|)) 54)) (-2841 (((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|)) 96)) (-2303 (((-1282) |#4|) 59)) (-1680 (((-1282) (-650 |#4|)) 69)) (-1894 (((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570)) 66)) (-2043 (((-1282) (-570)) 110)) (-1995 (((-650 |#4|) (-650 |#4|)) 104)) (-3847 (((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|)) |#4| (-777)) 31)) (-4077 (((-570) |#4|) 109)) (-3047 ((|#4| |#4|) 37)) (-2996 (((-650 |#4|) (-650 |#4|) (-570) (-570)) 74)) (-3340 (((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570)) 123)) (-2952 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 20)) (-3354 (((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) 78)) (-3390 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 76)) (-2958 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 47)) (-4317 (((-112) |#2| |#2|) 75)) (-3869 (((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) 48)) (-3518 (((-112) |#2| |#2| |#2| |#2|) 80)) (-1748 ((|#4| |#4| (-650 |#4|)) 97)))
+(((-455 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1748 (|#4| |#4| (-650 |#4|))) (-15 -4290 (|#4| |#4| (-650 |#4|))) (-15 -2996 ((-650 |#4|) (-650 |#4|) (-570) (-570))) (-15 -3354 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4317 ((-112) |#2| |#2|)) (-15 -3518 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3869 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2958 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3390 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2841 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|))) (-15 -3047 (|#4| |#4|)) (-15 -2654 ((-650 (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|))))) (-15 -2727 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3554 ((-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 -1995 ((-650 |#4|) (-650 |#4|))) (-15 -4077 ((-570) |#4|)) (-15 -2303 ((-1282) |#4|)) (-15 -1894 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570))) (-15 -3340 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570))) (-15 -1680 ((-1282) (-650 |#4|))) (-15 -2043 ((-1282) (-570))) (-15 -2952 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3847 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|)) |#4| (-777))) (-15 -1520 ((-777) |#4|))) (-458) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -455))
+((-1520 (*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)))) (-3847 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-2 (|:| |totdeg| (-777)) (|:| -3303 *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)))) (-2952 (*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)))) (-2043 (*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)))) (-1680 (*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)))) (-3340 (*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)))) (-1894 (*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)))) (-2303 (*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)))) (-4077 (*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)))) (-1995 (*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)))) (-3554 (*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)))) (-2727 (*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)))) (-2654 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-650 (-2 (|:| |totdeg| (-777)) (|:| -3303 *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)))) (-3047 (*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)))) (-2841 (*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)))) (-3390 (*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)))) (-2958 (*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)))) (-3869 (*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)))) (-3518 (*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)))) (-4317 (*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)))) (-3354 (*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)))) (-2996 (*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)))) (-4290 (*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)))) (-1748 (*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 -1748 (|#4| |#4| (-650 |#4|))) (-15 -4290 (|#4| |#4| (-650 |#4|))) (-15 -2996 ((-650 |#4|) (-650 |#4|) (-570) (-570))) (-15 -3354 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -4317 ((-112) |#2| |#2|)) (-15 -3518 ((-112) |#2| |#2| |#2| |#2|)) (-15 -3869 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#4| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2958 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -3390 ((-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))) |#2| (-650 (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|))))) (-15 -2841 ((-2 (|:| |poly| |#4|) (|:| |mult| |#1|)) |#4| (-650 |#4|))) (-15 -3047 (|#4| |#4|)) (-15 -2654 ((-650 (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|))) |#4| (-777) (-650 (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|))))) (-15 -2727 (|#4| (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3554 ((-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 -1995 ((-650 |#4|) (-650 |#4|))) (-15 -4077 ((-570) |#4|)) (-15 -2303 ((-1282) |#4|)) (-15 -1894 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570))) (-15 -3340 ((-570) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) |#4| |#4| (-570) (-570) (-570) (-570))) (-15 -1680 ((-1282) (-650 |#4|))) (-15 -2043 ((-1282) (-570))) (-15 -2952 ((-112) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)))) (-15 -3847 ((-2 (|:| |lcmfij| |#2|) (|:| |totdeg| (-777)) (|:| |poli| |#4|) (|:| |polj| |#4|)) (-2 (|:| |totdeg| (-777)) (|:| -3303 |#4|)) |#4| (-777))) (-15 -1520 ((-777) |#4|)))
+((-3138 ((|#4| |#4| (-650 |#4|)) 20 (|has| |#1| (-368)))) (-2154 (((-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 -2154 ((-650 |#4|) (-650 |#4|))) (-15 -2154 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -2154 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))) (IF (|has| |#1| (-368)) (-15 -3138 (|#4| |#4| (-650 |#4|))) |%noBranch|)) (-458) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -456))
+((-3138 (*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)))) (-2154 (*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)))) (-2154 (*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)))) (-2154 (*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 -2154 ((-650 |#4|) (-650 |#4|))) (-15 -2154 ((-650 |#4|) (-650 |#4|) (-1168))) (-15 -2154 ((-650 |#4|) (-650 |#4|) (-1168) (-1168))) (IF (|has| |#1| (-368)) (-15 -3138 (|#4| |#4| (-650 |#4|))) |%noBranch|))
+((-1901 (($ $ $) 14) (($ (-650 $)) 21)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 46)) (-1939 (($ $ $) NIL) (($ (-650 $)) 22)))
+(((-457 |#1|) (-10 -8 (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1901 (|#1| (-650 |#1|))) (-15 -1901 (|#1| |#1| |#1|)) (-15 -1939 (|#1| (-650 |#1|))) (-15 -1939 (|#1| |#1| |#1|))) (-458)) (T -457))
+NIL
+(-10 -8 (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1901 (|#1| (-650 |#1|))) (-15 -1901 (|#1| |#1| |#1|)) (-15 -1939 (|#1| (-650 |#1|))) (-15 -1939 (|#1| |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-2548 (((-3 $ "failed") $ $) 48)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-458) (-141)) (T -458))
-((-1942 (*1 *1 *1 *1) (-4 *1 (-458))) (-1942 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458)))) (-1899 (*1 *1 *1 *1) (-4 *1 (-458))) (-1899 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458)))) (-4217 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-458)))))
-(-13 (-562) (-10 -8 (-15 -1942 ($ $ $)) (-15 -1942 ($ (-650 $))) (-15 -1899 ($ $ $)) (-15 -1899 ($ (-650 $))) (-15 -4217 ((-1182 $) (-1182 $) (-1182 $)))))
+((-1939 (*1 *1 *1 *1) (-4 *1 (-458))) (-1939 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458)))) (-1901 (*1 *1 *1 *1) (-4 *1 (-458))) (-1901 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458)))) (-2361 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-458)))))
+(-13 (-562) (-10 -8 (-15 -1939 ($ $ $)) (-15 -1939 ($ (-650 $))) (-15 -1901 ($ $ $)) (-15 -1901 ($ (-650 $))) (-15 -2361 ((-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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3128 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4299 (((-1277 (-695 (-413 (-959 |#1|)))) (-1277 $)) NIL) (((-1277 (-695 (-413 (-959 |#1|))))) NIL)) (-4221 (((-1277 $)) NIL)) (-1705 (($) NIL T CONST)) (-2983 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL)) (-2476 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3919 (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL) (((-695 (-413 (-959 |#1|)))) NIL)) (-3677 (((-413 (-959 |#1|)) $) NIL)) (-1666 (((-695 (-413 (-959 |#1|))) $ (-1277 $)) NIL) (((-695 (-413 (-959 |#1|))) $) NIL)) (-2054 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-4404 (((-1182 (-959 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-368))) (((-1182 (-413 (-959 |#1|)))) 90 (|has| |#1| (-562)))) (-2705 (($ $ (-928)) NIL)) (-3637 (((-413 (-959 |#1|)) $) NIL)) (-2036 (((-1182 (-413 (-959 |#1|))) $) 88 (|has| (-413 (-959 |#1|)) (-562)))) (-1684 (((-413 (-959 |#1|)) (-1277 $)) NIL) (((-413 (-959 |#1|))) NIL)) (-3595 (((-1182 (-413 (-959 |#1|))) $) NIL)) (-1763 (((-112)) NIL)) (-3243 (($ (-1277 (-413 (-959 |#1|))) (-1277 $)) 114) (($ (-1277 (-413 (-959 |#1|)))) NIL)) (-2875 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-4006 (((-928)) NIL)) (-4034 (((-112)) NIL)) (-2604 (($ $ (-928)) NIL)) (-2680 (((-112)) NIL)) (-1950 (((-112)) NIL)) (-1907 (((-112)) NIL)) (-2615 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL)) (-3089 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3267 (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL) (((-695 (-413 (-959 |#1|)))) NIL)) (-2339 (((-413 (-959 |#1|)) $) NIL)) (-1738 (((-695 (-413 (-959 |#1|))) $ (-1277 $)) NIL) (((-695 (-413 (-959 |#1|))) $) NIL)) (-3259 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3454 (((-1182 (-959 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-368))) (((-1182 (-413 (-959 |#1|)))) 89 (|has| |#1| (-562)))) (-1575 (($ $ (-928)) NIL)) (-3680 (((-413 (-959 |#1|)) $) NIL)) (-2018 (((-1182 (-413 (-959 |#1|))) $) 85 (|has| (-413 (-959 |#1|)) (-562)))) (-2374 (((-413 (-959 |#1|)) (-1277 $)) NIL) (((-413 (-959 |#1|))) NIL)) (-1542 (((-1182 (-413 (-959 |#1|))) $) NIL)) (-1830 (((-112)) NIL)) (-1988 (((-1168) $) NIL)) (-4013 (((-112)) NIL)) (-3196 (((-112)) NIL)) (-2601 (((-112)) NIL)) (-3577 (((-1129) $) NIL)) (-4405 (((-413 (-959 |#1|)) $ $) 76 (|has| |#1| (-562)))) (-3876 (((-413 (-959 |#1|)) $) 100 (|has| |#1| (-562)))) (-2661 (((-413 (-959 |#1|)) $) 104 (|has| |#1| (-562)))) (-1680 (((-1182 (-413 (-959 |#1|))) $) 94 (|has| |#1| (-562)))) (-2408 (((-413 (-959 |#1|))) 77 (|has| |#1| (-562)))) (-2493 (((-413 (-959 |#1|)) $ $) 69 (|has| |#1| (-562)))) (-4125 (((-413 (-959 |#1|)) $) 99 (|has| |#1| (-562)))) (-2013 (((-413 (-959 |#1|)) $) 103 (|has| |#1| (-562)))) (-4168 (((-1182 (-413 (-959 |#1|))) $) 93 (|has| |#1| (-562)))) (-1580 (((-413 (-959 |#1|))) 73 (|has| |#1| (-562)))) (-1997 (($) 110) (($ (-1186)) 118) (($ (-1277 (-1186))) 117) (($ (-1277 $)) 105) (($ (-1186) (-1277 $)) 116) (($ (-1277 (-1186)) (-1277 $)) 115)) (-3832 (((-112)) NIL)) (-1941 (((-413 (-959 |#1|)) $ (-570)) NIL)) (-3424 (((-1277 (-413 (-959 |#1|))) $ (-1277 $)) 107) (((-695 (-413 (-959 |#1|))) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 (-959 |#1|))) $) 43) (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL)) (-1425 (((-1277 (-413 (-959 |#1|))) $) NIL) (($ (-1277 (-413 (-959 |#1|)))) 40)) (-1987 (((-650 (-959 (-413 (-959 |#1|)))) (-1277 $)) NIL) (((-650 (-959 (-413 (-959 |#1|))))) NIL) (((-650 (-959 |#1|)) (-1277 $)) 108 (|has| |#1| (-562))) (((-650 (-959 |#1|))) 109 (|has| |#1| (-562)))) (-4391 (($ $ $) NIL)) (-3795 (((-112)) NIL)) (-3799 (((-868) $) NIL) (($ (-1277 (-413 (-959 |#1|)))) NIL)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) 65)) (-3871 (((-650 (-1277 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3764 (($ $ $ $) NIL)) (-2433 (((-112)) NIL)) (-3489 (($ (-695 (-413 (-959 |#1|))) $) NIL)) (-3858 (($ $ $) NIL)) (-2826 (((-112)) NIL)) (-4363 (((-112)) NIL)) (-1764 (((-112)) NIL)) (-1861 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) 106)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 61) (($ $ (-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 -3799 ($ (-1277 (-413 (-959 |#1|))))) (-15 -2615 ((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed"))) (-15 -2983 ((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed"))) (-15 -1997 ($)) (-15 -1997 ($ (-1186))) (-15 -1997 ($ (-1277 (-1186)))) (-15 -1997 ($ (-1277 $))) (-15 -1997 ($ (-1186) (-1277 $))) (-15 -1997 ($ (-1277 (-1186)) (-1277 $))) (IF (|has| |#1| (-562)) (PROGN (-15 -3454 ((-1182 (-413 (-959 |#1|))))) (-15 -4168 ((-1182 (-413 (-959 |#1|))) $)) (-15 -4125 ((-413 (-959 |#1|)) $)) (-15 -2013 ((-413 (-959 |#1|)) $)) (-15 -4404 ((-1182 (-413 (-959 |#1|))))) (-15 -1680 ((-1182 (-413 (-959 |#1|))) $)) (-15 -3876 ((-413 (-959 |#1|)) $)) (-15 -2661 ((-413 (-959 |#1|)) $)) (-15 -2493 ((-413 (-959 |#1|)) $ $)) (-15 -1580 ((-413 (-959 |#1|)))) (-15 -4405 ((-413 (-959 |#1|)) $ $)) (-15 -2408 ((-413 (-959 |#1|)))) (-15 -1987 ((-650 (-959 |#1|)) (-1277 $))) (-15 -1987 ((-650 (-959 |#1|))))) |%noBranch|))) (-174) (-928) (-650 (-1186)) (-1277 (-695 |#1|))) (T -459))
-((-3799 (*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))))) (-2615 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-459 *3 *4 *5 *6)) (|:| -1972 (-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))))) (-2983 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-459 *3 *4 *5 *6)) (|:| -1972 (-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))))) (-1997 (*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))))) (-1997 (*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))))) (-1997 (*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))))) (-1997 (*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))))) (-1997 (*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))))) (-1997 (*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))))) (-3454 (*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))))) (-4168 (*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))))) (-4125 (*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))))) (-2013 (*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))))) (-4404 (*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))))) (-1680 (*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))))) (-3876 (*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))))) (-2661 (*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))))) (-2493 (*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))))) (-1580 (*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))))) (-4405 (*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))))) (-2408 (*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))))) (-1987 (*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))))) (-1987 (*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 -3799 ($ (-1277 (-413 (-959 |#1|))))) (-15 -2615 ((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed"))) (-15 -2983 ((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed"))) (-15 -1997 ($)) (-15 -1997 ($ (-1186))) (-15 -1997 ($ (-1277 (-1186)))) (-15 -1997 ($ (-1277 $))) (-15 -1997 ($ (-1186) (-1277 $))) (-15 -1997 ($ (-1277 (-1186)) (-1277 $))) (IF (|has| |#1| (-562)) (PROGN (-15 -3454 ((-1182 (-413 (-959 |#1|))))) (-15 -4168 ((-1182 (-413 (-959 |#1|))) $)) (-15 -4125 ((-413 (-959 |#1|)) $)) (-15 -2013 ((-413 (-959 |#1|)) $)) (-15 -4404 ((-1182 (-413 (-959 |#1|))))) (-15 -1680 ((-1182 (-413 (-959 |#1|))) $)) (-15 -3876 ((-413 (-959 |#1|)) $)) (-15 -2661 ((-413 (-959 |#1|)) $)) (-15 -2493 ((-413 (-959 |#1|)) $ $)) (-15 -1580 ((-413 (-959 |#1|)))) (-15 -4405 ((-413 (-959 |#1|)) $ $)) (-15 -2408 ((-413 (-959 |#1|)))) (-15 -1987 ((-650 (-959 |#1|)) (-1277 $))) (-15 -1987 ((-650 (-959 |#1|))))) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 18)) (-1755 (((-650 (-870 |#1|)) $) 87)) (-3775 (((-1182 $) $ (-870 |#1|)) 52) (((-1182 |#2|) $) 138)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3074 (($ $) NIL (|has| |#2| (-562)))) (-3475 (((-112) $) NIL (|has| |#2| (-562)))) (-3415 (((-777) $) 27) (((-777) $ (-650 (-870 |#1|))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4364 (($ $) NIL (|has| |#2| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#2| "failed") $) 50) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3216 ((|#2| $) 48) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-4322 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3210 (($ $ (-650 (-570))) 93)) (-1956 (($ $) 80)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#2| (-916)))) (-3720 (($ $ |#2| |#3| $) NIL)) (-2842 (((-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)))))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) 65)) (-1742 (($ (-1182 |#2|) (-870 |#1|)) 143) (($ (-1182 $) (-870 |#1|)) 58)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) 68)) (-3912 (($ |#2| |#3|) 35) (($ $ (-870 |#1|) (-777)) 37) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-870 |#1|)) NIL)) (-2575 ((|#3| $) NIL) (((-777) $ (-870 |#1|)) 56) (((-650 (-777)) $ (-650 (-870 |#1|))) 63)) (-1918 (($ (-1 |#3| |#3|) $) NIL)) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-3362 (((-3 (-870 |#1|) "failed") $) 45)) (-1915 (($ $) NIL)) (-1927 ((|#2| $) 47)) (-1899 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1988 (((-1168) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3357 (-777))) "failed") $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) 46)) (-1898 ((|#2| $) 136)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) 149 (|has| |#2| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2547 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1770 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) 100) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) 106) (($ $ (-870 |#1|) $) 98) (($ $ (-650 (-870 |#1|)) (-650 $)) 124)) (-3570 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3547 (($ $ (-870 |#1|)) 59) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2130 ((|#3| $) 79) (((-777) $ (-870 |#1|)) 42) (((-650 (-777)) $ (-650 (-870 |#1|))) 62)) (-1425 (((-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)))))) (-1848 ((|#2| $) 145 (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3799 (((-868) $) 174) (($ (-570)) NIL) (($ |#2|) 99) (($ (-870 |#1|)) 39) (($ (-413 (-570))) NIL (-2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ |#3|) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1861 (($) 22 T CONST)) (-1875 (($) 31 T CONST)) (-2942 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#2|) 76 (|has| |#2| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 131)) (** (($ $ (-928)) NIL) (($ $ (-777)) 129)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 36) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) 75) (($ $ |#2|) NIL)))
-(((-460 |#1| |#2| |#3|) (-13 (-956 |#2| |#3| (-870 |#1|)) (-10 -8 (-15 -3210 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058) (-240 (-2569 |#1|) (-777))) (T -460))
-((-3210 (*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 (-2569 *3) (-777))))))
-(-13 (-956 |#2| |#3| (-870 |#1|)) (-10 -8 (-15 -3210 ($ $ (-650 (-570))))))
-((-4269 (((-112) |#1| (-650 |#2|)) 91)) (-2065 (((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|)) 100)) (-2926 (((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|))) 102)) (-3449 ((|#2| |#2| |#1|) 35)) (-3185 (((-777) |#2| (-650 |#2|)) 26)))
-(((-461 |#1| |#2|) (-10 -7 (-15 -3449 (|#2| |#2| |#1|)) (-15 -3185 ((-777) |#2| (-650 |#2|))) (-15 -2065 ((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|))) (-15 -2926 ((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|)))) (-15 -4269 ((-112) |#1| (-650 |#2|)))) (-311) (-1253 |#1|)) (T -461))
-((-4269 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *5)) (-4 *5 (-1253 *3)) (-4 *3 (-311)) (-5 *2 (-112)) (-5 *1 (-461 *3 *5)))) (-2926 (*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)))) (-2065 (*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)))) (-3185 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-311)) (-5 *2 (-777)) (-5 *1 (-461 *5 *3)))) (-3449 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-5 *1 (-461 *3 *2)) (-4 *2 (-1253 *3)))))
-(-10 -7 (-15 -3449 (|#2| |#2| |#1|)) (-15 -3185 ((-777) |#2| (-650 |#2|))) (-15 -2065 ((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|))) (-15 -2926 ((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|)))) (-15 -4269 ((-112) |#1| (-650 |#2|))))
-((-3801 (((-424 |#5|) |#5|) 24)))
-(((-462 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3801 ((-424 |#5|) |#5|))) (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-3 $ "failed") (-1186))))) (-799) (-562) (-562) (-956 |#4| |#2| |#1|)) (T -462))
-((-3801 (*1 *2 *3) (-12 (-4 *4 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-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 -3801 ((-424 |#5|) |#5|)))
-((-3463 ((|#3|) 38)) (-4217 (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 34)))
-(((-463 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4217 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -3463 (|#3|))) (-799) (-856) (-916) (-956 |#3| |#1| |#2|)) (T -463))
-((-3463 (*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)))) (-4217 (*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 -4217 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -3463 (|#3|)))
-((-3801 (((-424 (-1182 |#1|)) (-1182 |#1|)) 43)))
-(((-464 |#1|) (-10 -7 (-15 -3801 ((-424 (-1182 |#1|)) (-1182 |#1|)))) (-311)) (T -464))
-((-3801 (*1 *2 *3) (-12 (-4 *4 (-311)) (-5 *2 (-424 (-1182 *4))) (-5 *1 (-464 *4)) (-5 *3 (-1182 *4)))))
-(-10 -7 (-15 -3801 ((-424 (-1182 |#1|)) (-1182 |#1|))))
-((-1825 (((-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)) (-3418 (((-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)) (-1852 (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))) 74) (((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))) 72)) (-1838 (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570))) 51) (((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570))) 50)))
-(((-465 |#1| |#2|) (-10 -7 (-15 -1825 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -1825 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -1825 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-777)))) (-15 -1825 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-777)))) (-15 -1838 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -1838 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -1852 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -1852 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3418 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -3418 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -3418 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -3418 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -3418 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3418 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -465))
-((-3418 (*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)))) (-3418 (*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)))) (-3418 (*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)))) (-3418 (*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)))) (-3418 (*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)))) (-3418 (*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)))) (-1852 (*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)))) (-1852 (*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)))) (-1838 (*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)))) (-1838 (*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)))) (-1825 (*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)))) (-1825 (*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)))) (-1825 (*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)))) (-1825 (*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 -1825 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -1825 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -1825 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-777)))) (-15 -1825 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-777)))) (-15 -1838 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -1838 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -1852 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -1852 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3418 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -3418 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -3418 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -3418 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -3418 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3418 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))))
-((-3449 ((|#2| |#2| |#1|) 15)) (-3805 (((-650 |#2|) |#2| (-650 |#2|) |#1| (-928)) 82)) (-2285 (((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928)) 72)))
-(((-466 |#1| |#2|) (-10 -7 (-15 -2285 ((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928))) (-15 -3805 ((-650 |#2|) |#2| (-650 |#2|) |#1| (-928))) (-15 -3449 (|#2| |#2| |#1|))) (-311) (-1253 |#1|)) (T -466))
-((-3449 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-5 *1 (-466 *3 *2)) (-4 *2 (-1253 *3)))) (-3805 (*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)))) (-2285 (*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 -2285 ((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928))) (-15 -3805 ((-650 |#2|) |#2| (-650 |#2|) |#1| (-928))) (-15 -3449 (|#2| |#2| |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 28)) (-2797 (($ |#3|) 25)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-1956 (($ $) 32)) (-3980 (($ |#2| |#4| $) 33)) (-3912 (($ |#2| (-719 |#3| |#4| |#5|)) 24)) (-1915 (((-719 |#3| |#4| |#5|) $) 15)) (-1930 ((|#3| $) 19)) (-1519 ((|#4| $) 17)) (-1927 ((|#2| $) 29)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-1409 (($ |#2| |#3| |#4|) 26)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 36 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1927 (|#2| $)) (-15 -1915 ((-719 |#3| |#4| |#5|) $)) (-15 -1519 (|#4| $)) (-15 -1930 (|#3| $)) (-15 -1956 ($ $)) (-15 -3912 ($ |#2| (-719 |#3| |#4| |#5|))) (-15 -2797 ($ |#3|)) (-15 -1409 ($ |#2| |#3| |#4|)) (-15 -3980 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-650 (-1186)) (-174) (-856) (-240 (-2569 |#1|) (-777)) (-1 (-112) (-2 (|:| -2268 |#3|) (|:| -3357 |#4|)) (-2 (|:| -2268 |#3|) (|:| -3357 |#4|))) (-956 |#2| |#4| (-870 |#1|))) (T -467))
-((* (*1 *1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *6 (-240 (-2569 *3) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *6)) (-2 (|:| -2268 *5) (|:| -3357 *6)))) (-5 *1 (-467 *3 *4 *5 *6 *7 *2)) (-4 *5 (-856)) (-4 *2 (-956 *4 *6 (-870 *3))))) (-1927 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *5 (-240 (-2569 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2268 *4) (|:| -3357 *5)) (-2 (|:| -2268 *4) (|:| -3357 *5)))) (-4 *2 (-174)) (-5 *1 (-467 *3 *2 *4 *5 *6 *7)) (-4 *4 (-856)) (-4 *7 (-956 *2 *5 (-870 *3))))) (-1915 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *6 (-240 (-2569 *3) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *6)) (-2 (|:| -2268 *5) (|:| -3357 *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))))) (-1519 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-14 *6 (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *2)) (-2 (|:| -2268 *5) (|:| -3357 *2)))) (-4 *2 (-240 (-2569 *3) (-777))) (-5 *1 (-467 *3 *4 *5 *2 *6 *7)) (-4 *5 (-856)) (-4 *7 (-956 *4 *2 (-870 *3))))) (-1930 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *5 (-240 (-2569 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2268 *2) (|:| -3357 *5)) (-2 (|:| -2268 *2) (|:| -3357 *5)))) (-4 *2 (-856)) (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *7 (-956 *4 *5 (-870 *3))))) (-1956 (*1 *1 *1) (-12 (-14 *2 (-650 (-1186))) (-4 *3 (-174)) (-4 *5 (-240 (-2569 *2) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2268 *4) (|:| -3357 *5)) (-2 (|:| -2268 *4) (|:| -3357 *5)))) (-5 *1 (-467 *2 *3 *4 *5 *6 *7)) (-4 *4 (-856)) (-4 *7 (-956 *3 *5 (-870 *2))))) (-3912 (*1 *1 *2 *3) (-12 (-5 *3 (-719 *5 *6 *7)) (-4 *5 (-856)) (-4 *6 (-240 (-2569 *4) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *6)) (-2 (|:| -2268 *5) (|:| -3357 *6)))) (-14 *4 (-650 (-1186))) (-4 *2 (-174)) (-5 *1 (-467 *4 *2 *5 *6 *7 *8)) (-4 *8 (-956 *2 *6 (-870 *4))))) (-2797 (*1 *1 *2) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *5 (-240 (-2569 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2268 *2) (|:| -3357 *5)) (-2 (|:| -2268 *2) (|:| -3357 *5)))) (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *2 (-856)) (-4 *7 (-956 *4 *5 (-870 *3))))) (-1409 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-650 (-1186))) (-4 *2 (-174)) (-4 *4 (-240 (-2569 *5) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2268 *3) (|:| -3357 *4)) (-2 (|:| -2268 *3) (|:| -3357 *4)))) (-5 *1 (-467 *5 *2 *3 *4 *6 *7)) (-4 *3 (-856)) (-4 *7 (-956 *2 *4 (-870 *5))))) (-3980 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-650 (-1186))) (-4 *2 (-174)) (-4 *3 (-240 (-2569 *4) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *3)) (-2 (|:| -2268 *5) (|:| -3357 *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 -1927 (|#2| $)) (-15 -1915 ((-719 |#3| |#4| |#5|) $)) (-15 -1519 (|#4| $)) (-15 -1930 (|#3| $)) (-15 -1956 ($ $)) (-15 -3912 ($ |#2| (-719 |#3| |#4| |#5|))) (-15 -2797 ($ |#3|)) (-15 -1409 ($ |#2| |#3| |#4|)) (-15 -3980 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
-((-4015 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 39)))
-(((-468 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4015 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|) (-13 (-1047 (-413 (-570))) (-368) (-10 -8 (-15 -3799 ($ |#4|)) (-15 -4399 (|#4| $)) (-15 -4413 (|#4| $))))) (T -468))
-((-4015 (*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 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))))
-(-10 -7 (-15 -4015 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
-((-2558 (((-112) $ $) NIL)) (-1755 (((-650 |#3|) $) 41)) (-3051 (((-112) $) NIL)) (-1416 (((-112) $) NIL (|has| |#1| (-562)))) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-1431 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-3737 (((-112) $) NIL (|has| |#1| (-562)))) (-2467 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4047 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1876 (((-112) $) NIL (|has| |#1| (-562)))) (-2450 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) 49)) (-3216 (($ (-650 |#4|)) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1741 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3624 ((|#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)))) (-3627 (((-650 |#4|) $) 18 (|has| $ (-6 -4449)))) (-1724 ((|#3| $) 47)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#4|) $) 14 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1502 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 21)) (-1423 (((-650 |#3|) $) NIL)) (-3907 (((-112) |#3| $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3577 (((-1129) $) NIL)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-3642 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 39)) (-2380 (($) 17)) (-3584 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) 16)) (-1425 (((-542) $) NIL (|has| |#4| (-620 (-542)))) (($ (-650 |#4|)) 51)) (-3811 (($ (-650 |#4|)) 13)) (-3710 (($ $ |#3|) NIL)) (-4224 (($ $ |#3|) NIL)) (-1615 (($ $ |#3|) NIL)) (-3799 (((-868) $) 38) (((-650 |#4|) $) 50)) (-2335 (((-112) $ $) NIL)) (-4371 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 30)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-469 |#1| |#2| |#3| |#4|) (-13 (-985 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1425 ($ (-650 |#4|))) (-6 -4449) (-6 -4450))) (-1058) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -469))
-((-1425 (*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 -1425 ($ (-650 |#4|))) (-6 -4449) (-6 -4450)))
-((-1861 (($) 11)) (-1875 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
-(((-470 |#1| |#2| |#3|) (-10 -8 (-15 -1875 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1861 (|#1|))) (-471 |#2| |#3|) (-174) (-23)) (T -470))
-NIL
-(-10 -8 (-15 -1875 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1861 (|#1|)))
-((-2558 (((-112) $ $) 7)) (-4380 (((-3 |#1| "failed") $) 27)) (-3216 ((|#1| $) 28)) (-4057 (($ $ $) 24)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2130 ((|#2| $) 20)) (-3799 (((-868) $) 12) (($ |#1|) 26)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 25 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 16) (($ $ $) 14)) (-3101 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3635 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-1896 (((-1277 (-695 (-413 (-959 |#1|)))) (-1277 $)) NIL) (((-1277 (-695 (-413 (-959 |#1|))))) NIL)) (-2403 (((-1277 $)) NIL)) (-3195 (($) NIL T CONST)) (-1587 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL)) (-2434 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-2491 (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL) (((-695 (-413 (-959 |#1|)))) NIL)) (-3850 (((-413 (-959 |#1|)) $) NIL)) (-3993 (((-695 (-413 (-959 |#1|))) $ (-1277 $)) NIL) (((-695 (-413 (-959 |#1|))) $) NIL)) (-3498 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3490 (((-1182 (-959 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-368))) (((-1182 (-413 (-959 |#1|)))) 90 (|has| |#1| (-562)))) (-2827 (($ $ (-928)) NIL)) (-1563 (((-413 (-959 |#1|)) $) NIL)) (-3286 (((-1182 (-413 (-959 |#1|))) $) 88 (|has| (-413 (-959 |#1|)) (-562)))) (-4154 (((-413 (-959 |#1|)) (-1277 $)) NIL) (((-413 (-959 |#1|))) NIL)) (-2476 (((-1182 (-413 (-959 |#1|))) $) NIL)) (-2546 (((-112)) NIL)) (-2322 (($ (-1277 (-413 (-959 |#1|))) (-1277 $)) 114) (($ (-1277 (-413 (-959 |#1|)))) NIL)) (-1929 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-4009 (((-928)) NIL)) (-4211 (((-112)) NIL)) (-4234 (($ $ (-928)) NIL)) (-3772 (((-112)) NIL)) (-1745 (((-112)) NIL)) (-4407 (((-112)) NIL)) (-4329 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL)) (-3269 (((-3 $ "failed")) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-2553 (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL) (((-695 (-413 (-959 |#1|)))) NIL)) (-3412 (((-413 (-959 |#1|)) $) NIL)) (-3524 (((-695 (-413 (-959 |#1|))) $ (-1277 $)) NIL) (((-695 (-413 (-959 |#1|))) $) NIL)) (-2480 (((-3 $ "failed") $) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3607 (((-1182 (-959 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-368))) (((-1182 (-413 (-959 |#1|)))) 89 (|has| |#1| (-562)))) (-4311 (($ $ (-928)) NIL)) (-3879 (((-413 (-959 |#1|)) $) NIL)) (-4292 (((-1182 (-413 (-959 |#1|))) $) 85 (|has| (-413 (-959 |#1|)) (-562)))) (-3775 (((-413 (-959 |#1|)) (-1277 $)) NIL) (((-413 (-959 |#1|))) NIL)) (-2170 (((-1182 (-413 (-959 |#1|))) $) NIL)) (-3100 (((-112)) NIL)) (-3989 (((-1168) $) NIL)) (-4015 (((-112)) NIL)) (-3058 (((-112)) NIL)) (-4203 (((-112)) NIL)) (-3580 (((-1129) $) NIL)) (-3501 (((-413 (-959 |#1|)) $ $) 76 (|has| |#1| (-562)))) (-2074 (((-413 (-959 |#1|)) $) 100 (|has| |#1| (-562)))) (-3612 (((-413 (-959 |#1|)) $) 104 (|has| |#1| (-562)))) (-4107 (((-1182 (-413 (-959 |#1|))) $) 94 (|has| |#1| (-562)))) (-2925 (((-413 (-959 |#1|))) 77 (|has| |#1| (-562)))) (-4408 (((-413 (-959 |#1|)) $ $) 69 (|has| |#1| (-562)))) (-2752 (((-413 (-959 |#1|)) $) 99 (|has| |#1| (-562)))) (-4241 (((-413 (-959 |#1|)) $) 103 (|has| |#1| (-562)))) (-3086 (((-1182 (-413 (-959 |#1|))) $) 93 (|has| |#1| (-562)))) (-4353 (((-413 (-959 |#1|))) 73 (|has| |#1| (-562)))) (-4074 (($) 110) (($ (-1186)) 118) (($ (-1277 (-1186))) 117) (($ (-1277 $)) 105) (($ (-1186) (-1277 $)) 116) (($ (-1277 (-1186)) (-1277 $)) 115)) (-2876 (((-112)) NIL)) (-1942 (((-413 (-959 |#1|)) $ (-570)) NIL)) (-3314 (((-1277 (-413 (-959 |#1|))) $ (-1277 $)) 107) (((-695 (-413 (-959 |#1|))) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 (-959 |#1|))) $) 43) (((-695 (-413 (-959 |#1|))) (-1277 $)) NIL)) (-1426 (((-1277 (-413 (-959 |#1|))) $) NIL) (($ (-1277 (-413 (-959 |#1|)))) 40)) (-3978 (((-650 (-959 (-413 (-959 |#1|)))) (-1277 $)) NIL) (((-650 (-959 (-413 (-959 |#1|))))) NIL) (((-650 (-959 |#1|)) (-1277 $)) 108 (|has| |#1| (-562))) (((-650 (-959 |#1|))) 109 (|has| |#1| (-562)))) (-3381 (($ $ $) NIL)) (-3762 (((-112)) NIL)) (-3802 (((-868) $) NIL) (($ (-1277 (-413 (-959 |#1|)))) NIL)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) 65)) (-3203 (((-650 (-1277 (-413 (-959 |#1|))))) NIL (|has| (-413 (-959 |#1|)) (-562)))) (-3468 (($ $ $ $) NIL)) (-3169 (((-112)) NIL)) (-3492 (($ (-695 (-413 (-959 |#1|))) $) NIL)) (-3107 (($ $ $) NIL)) (-1352 (((-112)) NIL)) (-4298 (((-112)) NIL)) (-2557 (((-112)) NIL)) (-1862 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) 106)) (-3104 (($ $ $) NIL)) (** (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 61) (($ $ (-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 -3802 ($ (-1277 (-413 (-959 |#1|))))) (-15 -4329 ((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed"))) (-15 -1587 ((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed"))) (-15 -4074 ($)) (-15 -4074 ($ (-1186))) (-15 -4074 ($ (-1277 (-1186)))) (-15 -4074 ($ (-1277 $))) (-15 -4074 ($ (-1186) (-1277 $))) (-15 -4074 ($ (-1277 (-1186)) (-1277 $))) (IF (|has| |#1| (-562)) (PROGN (-15 -3607 ((-1182 (-413 (-959 |#1|))))) (-15 -3086 ((-1182 (-413 (-959 |#1|))) $)) (-15 -2752 ((-413 (-959 |#1|)) $)) (-15 -4241 ((-413 (-959 |#1|)) $)) (-15 -3490 ((-1182 (-413 (-959 |#1|))))) (-15 -4107 ((-1182 (-413 (-959 |#1|))) $)) (-15 -2074 ((-413 (-959 |#1|)) $)) (-15 -3612 ((-413 (-959 |#1|)) $)) (-15 -4408 ((-413 (-959 |#1|)) $ $)) (-15 -4353 ((-413 (-959 |#1|)))) (-15 -3501 ((-413 (-959 |#1|)) $ $)) (-15 -2925 ((-413 (-959 |#1|)))) (-15 -3978 ((-650 (-959 |#1|)) (-1277 $))) (-15 -3978 ((-650 (-959 |#1|))))) |%noBranch|))) (-174) (-928) (-650 (-1186)) (-1277 (-695 |#1|))) (T -459))
+((-3802 (*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))))) (-4329 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-459 *3 *4 *5 *6)) (|:| -3827 (-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))))) (-1587 (*1 *2) (|partial| -12 (-5 *2 (-2 (|:| |particular| (-459 *3 *4 *5 *6)) (|:| -3827 (-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))))) (-4074 (*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))))) (-4074 (*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))))) (-4074 (*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))))) (-4074 (*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))))) (-4074 (*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))))) (-4074 (*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))))) (-3607 (*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))))) (-3086 (*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))))) (-2752 (*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))))) (-4241 (*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))))) (-3490 (*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))))) (-4107 (*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))))) (-2074 (*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))))) (-3612 (*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))))) (-4408 (*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))))) (-4353 (*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))))) (-3501 (*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))))) (-2925 (*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))))) (-3978 (*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))))) (-3978 (*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 -3802 ($ (-1277 (-413 (-959 |#1|))))) (-15 -4329 ((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed"))) (-15 -1587 ((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed"))) (-15 -4074 ($)) (-15 -4074 ($ (-1186))) (-15 -4074 ($ (-1277 (-1186)))) (-15 -4074 ($ (-1277 $))) (-15 -4074 ($ (-1186) (-1277 $))) (-15 -4074 ($ (-1277 (-1186)) (-1277 $))) (IF (|has| |#1| (-562)) (PROGN (-15 -3607 ((-1182 (-413 (-959 |#1|))))) (-15 -3086 ((-1182 (-413 (-959 |#1|))) $)) (-15 -2752 ((-413 (-959 |#1|)) $)) (-15 -4241 ((-413 (-959 |#1|)) $)) (-15 -3490 ((-1182 (-413 (-959 |#1|))))) (-15 -4107 ((-1182 (-413 (-959 |#1|))) $)) (-15 -2074 ((-413 (-959 |#1|)) $)) (-15 -3612 ((-413 (-959 |#1|)) $)) (-15 -4408 ((-413 (-959 |#1|)) $ $)) (-15 -4353 ((-413 (-959 |#1|)))) (-15 -3501 ((-413 (-959 |#1|)) $ $)) (-15 -2925 ((-413 (-959 |#1|)))) (-15 -3978 ((-650 (-959 |#1|)) (-1277 $))) (-15 -3978 ((-650 (-959 |#1|))))) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 18)) (-1755 (((-650 (-870 |#1|)) $) 87)) (-3778 (((-1182 $) $ (-870 |#1|)) 52) (((-1182 |#2|) $) 138)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-4306 (($ $) NIL (|has| |#2| (-562)))) (-2617 (((-112) $) NIL (|has| |#2| (-562)))) (-3249 (((-777) $) 27) (((-777) $ (-650 (-870 |#1|))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4310 (($ $) NIL (|has| |#2| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#2| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#2| "failed") $) 50) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-870 |#1|) "failed") $) NIL)) (-3220 ((|#2| $) 48) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-3930 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-2007 (($ $ (-650 (-570))) 93)) (-1954 (($ $) 80)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#2| (-916)))) (-4243 (($ $ |#2| |#3| $) NIL)) (-1557 (((-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)))))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) 65)) (-1744 (($ (-1182 |#2|) (-870 |#1|)) 143) (($ (-1182 $) (-870 |#1|)) 58)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) 68)) (-3915 (($ |#2| |#3|) 35) (($ $ (-870 |#1|) (-777)) 37) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-870 |#1|)) NIL)) (-3970 ((|#3| $) NIL) (((-777) $ (-870 |#1|)) 56) (((-650 (-777)) $ (-650 (-870 |#1|))) 63)) (-1414 (($ (-1 |#3| |#3|) $) NIL)) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-4023 (((-3 (-870 |#1|) "failed") $) 45)) (-1914 (($ $) NIL)) (-1928 ((|#2| $) 47)) (-1901 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-3989 (((-1168) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3994 (-777))) "failed") $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) 46)) (-1900 ((|#2| $) 136)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) 149 (|has| |#2| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2548 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1771 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-870 |#1|) |#2|) 100) (($ $ (-650 (-870 |#1|)) (-650 |#2|)) 106) (($ $ (-870 |#1|) $) 98) (($ $ (-650 (-870 |#1|)) (-650 $)) 124)) (-2265 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3550 (($ $ (-870 |#1|)) 59) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3079 ((|#3| $) 79) (((-777) $ (-870 |#1|)) 42) (((-650 (-777)) $ (-650 (-870 |#1|))) 62)) (-1426 (((-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)))))) (-2077 ((|#2| $) 145 (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3802 (((-868) $) 174) (($ (-570)) NIL) (($ |#2|) 99) (($ (-870 |#1|)) 39) (($ (-413 (-570))) NIL (-2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ |#3|) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1862 (($) 22 T CONST)) (-1876 (($) 31 T CONST)) (-2945 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#2|) 76 (|has| |#2| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 131)) (** (($ $ (-928)) NIL) (($ $ (-777)) 129)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 36) (($ $ (-413 (-570))) NIL (|has| |#2| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#2| (-38 (-413 (-570))))) (($ |#2| $) 75) (($ $ |#2|) NIL)))
+(((-460 |#1| |#2| |#3|) (-13 (-956 |#2| |#3| (-870 |#1|)) (-10 -8 (-15 -2007 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058) (-240 (-2570 |#1|) (-777))) (T -460))
+((-2007 (*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 (-2570 *3) (-777))))))
+(-13 (-956 |#2| |#3| (-870 |#1|)) (-10 -8 (-15 -2007 ($ $ (-650 (-570))))))
+((-1578 (((-112) |#1| (-650 |#2|)) 91)) (-3625 (((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|)) 100)) (-2283 (((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|))) 102)) (-3547 ((|#2| |#2| |#1|) 35)) (-2968 (((-777) |#2| (-650 |#2|)) 26)))
+(((-461 |#1| |#2|) (-10 -7 (-15 -3547 (|#2| |#2| |#1|)) (-15 -2968 ((-777) |#2| (-650 |#2|))) (-15 -3625 ((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|))) (-15 -2283 ((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|)))) (-15 -1578 ((-112) |#1| (-650 |#2|)))) (-311) (-1253 |#1|)) (T -461))
+((-1578 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *5)) (-4 *5 (-1253 *3)) (-4 *3 (-311)) (-5 *2 (-112)) (-5 *1 (-461 *3 *5)))) (-2283 (*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)))) (-3625 (*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)))) (-2968 (*1 *2 *3 *4) (-12 (-5 *4 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-311)) (-5 *2 (-777)) (-5 *1 (-461 *5 *3)))) (-3547 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-5 *1 (-461 *3 *2)) (-4 *2 (-1253 *3)))))
+(-10 -7 (-15 -3547 (|#2| |#2| |#1|)) (-15 -2968 ((-777) |#2| (-650 |#2|))) (-15 -3625 ((-3 (-1277 (-650 |#2|)) "failed") (-777) |#1| (-650 |#2|))) (-15 -2283 ((-3 (-650 |#2|) "failed") |#2| |#1| (-1277 (-650 |#2|)))) (-15 -1578 ((-112) |#1| (-650 |#2|))))
+((-3804 (((-424 |#5|) |#5|) 24)))
+(((-462 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3804 ((-424 |#5|) |#5|))) (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-3 $ "failed") (-1186))))) (-799) (-562) (-562) (-956 |#4| |#2| |#1|)) (T -462))
+((-3804 (*1 *2 *3) (-12 (-4 *4 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-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 -3804 ((-424 |#5|) |#5|)))
+((-3695 ((|#3|) 38)) (-2361 (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 34)))
+(((-463 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2361 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -3695 (|#3|))) (-799) (-856) (-916) (-956 |#3| |#1| |#2|)) (T -463))
+((-3695 (*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)))) (-2361 (*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 -2361 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -3695 (|#3|)))
+((-3804 (((-424 (-1182 |#1|)) (-1182 |#1|)) 43)))
+(((-464 |#1|) (-10 -7 (-15 -3804 ((-424 (-1182 |#1|)) (-1182 |#1|)))) (-311)) (T -464))
+((-3804 (*1 *2 *3) (-12 (-4 *4 (-311)) (-5 *2 (-424 (-1182 *4))) (-5 *1 (-464 *4)) (-5 *3 (-1182 *4)))))
+(-10 -7 (-15 -3804 ((-424 (-1182 |#1|)) (-1182 |#1|))))
+((-1822 (((-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)) (-3421 (((-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)) (-1853 (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))) 74) (((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))) 72)) (-1839 (((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570))) 51) (((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570))) 50)))
+(((-465 |#1| |#2|) (-10 -7 (-15 -1822 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -1822 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -1822 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-777)))) (-15 -1822 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-777)))) (-15 -1839 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -1839 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -1853 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -1853 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3421 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -3421 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -3421 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -3421 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -3421 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3421 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570))))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -465))
+((-3421 (*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)))) (-3421 (*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)))) (-3421 (*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)))) (-3421 (*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)))) (-3421 (*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)))) (-3421 (*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)))) (-1853 (*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)))) (-1853 (*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)))) (-1839 (*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)))) (-1839 (*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)))) (-1822 (*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)))) (-1822 (*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)))) (-1822 (*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)))) (-1822 (*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 -1822 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -1822 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -1822 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-777)))) (-15 -1822 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-777)))) (-15 -1839 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -1839 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -1853 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -1853 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3421 ((-52) (-1 |#2| (-570)) (-298 |#2|))) (-15 -3421 ((-52) |#2| (-1186) (-298 |#2|))) (-15 -3421 ((-52) (-1 |#2| (-570)) (-298 |#2|) (-1244 (-570)))) (-15 -3421 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-570)))) (-15 -3421 ((-52) (-1 |#2| (-413 (-570))) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))) (-15 -3421 ((-52) |#2| (-1186) (-298 |#2|) (-1244 (-413 (-570))) (-413 (-570)))))
+((-3547 ((|#2| |#2| |#1|) 15)) (-2673 (((-650 |#2|) |#2| (-650 |#2|) |#1| (-928)) 82)) (-4053 (((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928)) 72)))
+(((-466 |#1| |#2|) (-10 -7 (-15 -4053 ((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928))) (-15 -2673 ((-650 |#2|) |#2| (-650 |#2|) |#1| (-928))) (-15 -3547 (|#2| |#2| |#1|))) (-311) (-1253 |#1|)) (T -466))
+((-3547 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-5 *1 (-466 *3 *2)) (-4 *2 (-1253 *3)))) (-2673 (*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)))) (-4053 (*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 -4053 ((-2 (|:| |plist| (-650 |#2|)) (|:| |modulo| |#1|)) |#2| (-650 |#2|) |#1| (-928))) (-15 -2673 ((-650 |#2|) |#2| (-650 |#2|) |#1| (-928))) (-15 -3547 (|#2| |#2| |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 28)) (-2451 (($ |#3|) 25)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1954 (($ $) 32)) (-1845 (($ |#2| |#4| $) 33)) (-3915 (($ |#2| (-719 |#3| |#4| |#5|)) 24)) (-1914 (((-719 |#3| |#4| |#5|) $) 15)) (-1550 ((|#3| $) 19)) (-1951 ((|#4| $) 17)) (-1928 ((|#2| $) 29)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-1947 (($ |#2| |#3| |#4|) 26)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 36 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1928 (|#2| $)) (-15 -1914 ((-719 |#3| |#4| |#5|) $)) (-15 -1951 (|#4| $)) (-15 -1550 (|#3| $)) (-15 -1954 ($ $)) (-15 -3915 ($ |#2| (-719 |#3| |#4| |#5|))) (-15 -2451 ($ |#3|)) (-15 -1947 ($ |#2| |#3| |#4|)) (-15 -1845 ($ |#2| |#4| $)) (-15 * ($ |#6| $)))) (-650 (-1186)) (-174) (-856) (-240 (-2570 |#1|) (-777)) (-1 (-112) (-2 (|:| -2267 |#3|) (|:| -3994 |#4|)) (-2 (|:| -2267 |#3|) (|:| -3994 |#4|))) (-956 |#2| |#4| (-870 |#1|))) (T -467))
+((* (*1 *1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *6 (-240 (-2570 *3) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *6)) (-2 (|:| -2267 *5) (|:| -3994 *6)))) (-5 *1 (-467 *3 *4 *5 *6 *7 *2)) (-4 *5 (-856)) (-4 *2 (-956 *4 *6 (-870 *3))))) (-1928 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *5 (-240 (-2570 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2267 *4) (|:| -3994 *5)) (-2 (|:| -2267 *4) (|:| -3994 *5)))) (-4 *2 (-174)) (-5 *1 (-467 *3 *2 *4 *5 *6 *7)) (-4 *4 (-856)) (-4 *7 (-956 *2 *5 (-870 *3))))) (-1914 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *6 (-240 (-2570 *3) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *6)) (-2 (|:| -2267 *5) (|:| -3994 *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))))) (-1951 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-14 *6 (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *2)) (-2 (|:| -2267 *5) (|:| -3994 *2)))) (-4 *2 (-240 (-2570 *3) (-777))) (-5 *1 (-467 *3 *4 *5 *2 *6 *7)) (-4 *5 (-856)) (-4 *7 (-956 *4 *2 (-870 *3))))) (-1550 (*1 *2 *1) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *5 (-240 (-2570 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2267 *2) (|:| -3994 *5)) (-2 (|:| -2267 *2) (|:| -3994 *5)))) (-4 *2 (-856)) (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *7 (-956 *4 *5 (-870 *3))))) (-1954 (*1 *1 *1) (-12 (-14 *2 (-650 (-1186))) (-4 *3 (-174)) (-4 *5 (-240 (-2570 *2) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2267 *4) (|:| -3994 *5)) (-2 (|:| -2267 *4) (|:| -3994 *5)))) (-5 *1 (-467 *2 *3 *4 *5 *6 *7)) (-4 *4 (-856)) (-4 *7 (-956 *3 *5 (-870 *2))))) (-3915 (*1 *1 *2 *3) (-12 (-5 *3 (-719 *5 *6 *7)) (-4 *5 (-856)) (-4 *6 (-240 (-2570 *4) (-777))) (-14 *7 (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *6)) (-2 (|:| -2267 *5) (|:| -3994 *6)))) (-14 *4 (-650 (-1186))) (-4 *2 (-174)) (-5 *1 (-467 *4 *2 *5 *6 *7 *8)) (-4 *8 (-956 *2 *6 (-870 *4))))) (-2451 (*1 *1 *2) (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174)) (-4 *5 (-240 (-2570 *3) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2267 *2) (|:| -3994 *5)) (-2 (|:| -2267 *2) (|:| -3994 *5)))) (-5 *1 (-467 *3 *4 *2 *5 *6 *7)) (-4 *2 (-856)) (-4 *7 (-956 *4 *5 (-870 *3))))) (-1947 (*1 *1 *2 *3 *4) (-12 (-14 *5 (-650 (-1186))) (-4 *2 (-174)) (-4 *4 (-240 (-2570 *5) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2267 *3) (|:| -3994 *4)) (-2 (|:| -2267 *3) (|:| -3994 *4)))) (-5 *1 (-467 *5 *2 *3 *4 *6 *7)) (-4 *3 (-856)) (-4 *7 (-956 *2 *4 (-870 *5))))) (-1845 (*1 *1 *2 *3 *1) (-12 (-14 *4 (-650 (-1186))) (-4 *2 (-174)) (-4 *3 (-240 (-2570 *4) (-777))) (-14 *6 (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *3)) (-2 (|:| -2267 *5) (|:| -3994 *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 -1928 (|#2| $)) (-15 -1914 ((-719 |#3| |#4| |#5|) $)) (-15 -1951 (|#4| $)) (-15 -1550 (|#3| $)) (-15 -1954 ($ $)) (-15 -3915 ($ |#2| (-719 |#3| |#4| |#5|))) (-15 -2451 ($ |#3|)) (-15 -1947 ($ |#2| |#3| |#4|)) (-15 -1845 ($ |#2| |#4| $)) (-15 * ($ |#6| $))))
+((-4035 (((-3 |#5| "failed") |#5| |#2| (-1 |#2|)) 39)))
+(((-468 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4035 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|)))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|) (-13 (-1047 (-413 (-570))) (-368) (-10 -8 (-15 -3802 ($ |#4|)) (-15 -4402 (|#4| $)) (-15 -4416 (|#4| $))))) (T -468))
+((-4035 (*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 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))))
+(-10 -7 (-15 -4035 ((-3 |#5| "failed") |#5| |#2| (-1 |#2|))))
+((-2560 (((-112) $ $) NIL)) (-1755 (((-650 |#3|) $) 41)) (-4092 (((-112) $) NIL)) (-1320 (((-112) $) NIL (|has| |#1| (-562)))) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1434 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-3230 (((-112) $) NIL (|has| |#1| (-562)))) (-2339 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4337 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2327 (((-112) $) NIL (|has| |#1| (-562)))) (-2167 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) 49)) (-3220 (($ (-650 |#4|)) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1742 (($ |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4452)))) (-3630 (((-650 |#4|) $) 18 (|has| $ (-6 -4452)))) (-3357 ((|#3| $) 47)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#4|) $) 14 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 26 (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1503 (($ (-1 |#4| |#4|) $) 23 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 21)) (-1388 (((-650 |#3|) $) NIL)) (-2387 (((-112) |#3| $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3580 (((-1129) $) NIL)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1627 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 39)) (-2656 (($) 17)) (-3587 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) 16)) (-1426 (((-542) $) NIL (|has| |#4| (-620 (-542)))) (($ (-650 |#4|)) 51)) (-3814 (($ (-650 |#4|)) 13)) (-4138 (($ $ |#3|) NIL)) (-2435 (($ $ |#3|) NIL)) (-1631 (($ $ |#3|) NIL)) (-3802 (((-868) $) 38) (((-650 |#4|) $) 50)) (-3359 (((-112) $ $) NIL)) (-4379 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 30)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-469 |#1| |#2| |#3| |#4|) (-13 (-985 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1426 ($ (-650 |#4|))) (-6 -4452) (-6 -4453))) (-1058) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -469))
+((-1426 (*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 -1426 ($ (-650 |#4|))) (-6 -4452) (-6 -4453)))
+((-1862 (($) 11)) (-1876 (($) 13)) (* (($ |#2| $) 15) (($ $ |#2|) 16)))
+(((-470 |#1| |#2| |#3|) (-10 -8 (-15 -1876 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1862 (|#1|))) (-471 |#2| |#3|) (-174) (-23)) (T -470))
+NIL
+(-10 -8 (-15 -1876 (|#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 -1862 (|#1|)))
+((-2560 (((-112) $ $) 7)) (-4383 (((-3 |#1| "failed") $) 27)) (-3220 ((|#1| $) 28)) (-3258 (($ $ $) 24)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3079 ((|#2| $) 20)) (-3802 (((-868) $) 12) (($ |#1|) 26)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 25 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 16) (($ $ $) 14)) (-3104 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
(((-471 |#1| |#2|) (-141) (-174) (-23)) (T -471))
-((-1875 (*1 *1) (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-4057 (*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 (-1875) ($) -3725) (-15 -4057 ($ $ $))))
+((-1876 (*1 *1) (-12 (-4 *1 (-471 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-3258 (*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 (-1876) ($) -3728) (-15 -3258 ($ $ $))))
(((-102) . T) ((-622 |#1|) . T) ((-619 (-868)) . T) ((-476 |#1| |#2|) . T) ((-1047 |#1|) . T) ((-1109) . T))
-((-3706 (((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928)) 26)) (-2240 (((-1277 (-1277 (-570))) (-928)) 21)))
-(((-472) (-10 -7 (-15 -3706 ((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928))) (-15 -2240 ((-1277 (-1277 (-570))) (-928))))) (T -472))
-((-2240 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 (-570)))) (-5 *1 (-472)))) (-3706 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 (-1277 (-570)))) (-5 *3 (-928)) (-5 *1 (-472)))))
-(-10 -7 (-15 -3706 ((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928))) (-15 -2240 ((-1277 (-1277 (-570))) (-928))))
-((-1498 (((-570) (-570)) 32) (((-570)) 24)) (-4198 (((-570) (-570)) 28) (((-570)) 20)) (-2586 (((-570) (-570)) 30) (((-570)) 22)) (-3103 (((-112) (-112)) 14) (((-112)) 12)) (-1534 (((-112) (-112)) 13) (((-112)) 11)) (-2045 (((-112) (-112)) 26) (((-112)) 17)))
-(((-473) (-10 -7 (-15 -1534 ((-112))) (-15 -3103 ((-112))) (-15 -1534 ((-112) (-112))) (-15 -3103 ((-112) (-112))) (-15 -2045 ((-112))) (-15 -2586 ((-570))) (-15 -4198 ((-570))) (-15 -1498 ((-570))) (-15 -2045 ((-112) (-112))) (-15 -2586 ((-570) (-570))) (-15 -4198 ((-570) (-570))) (-15 -1498 ((-570) (-570))))) (T -473))
-((-1498 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-4198 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2586 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2045 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-1498 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-4198 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2586 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2045 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-3103 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-1534 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-3103 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-1534 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
-(-10 -7 (-15 -1534 ((-112))) (-15 -3103 ((-112))) (-15 -1534 ((-112) (-112))) (-15 -3103 ((-112) (-112))) (-15 -2045 ((-112))) (-15 -2586 ((-570))) (-15 -4198 ((-570))) (-15 -1498 ((-570))) (-15 -2045 ((-112) (-112))) (-15 -2586 ((-570) (-570))) (-15 -4198 ((-570) (-570))) (-15 -1498 ((-570) (-570))))
-((-2558 (((-112) $ $) NIL)) (-3222 (((-650 (-384)) $) 34) (((-650 (-384)) $ (-650 (-384))) 146)) (-1531 (((-650 (-1103 (-384))) $) 16) (((-650 (-1103 (-384))) $ (-650 (-1103 (-384)))) 142)) (-2021 (((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880))) 58)) (-1937 (((-650 (-650 (-950 (-227)))) $) 137)) (-3377 (((-1282) $ (-950 (-227)) (-880)) 163)) (-3515 (($ $) 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)) (-1988 (((-1168) $) NIL)) (-2106 (((-570) $) 110)) (-3577 (((-1129) $) NIL)) (-3971 (($) 147)) (-3664 (((-650 (-227)) (-650 (-650 (-950 (-227))))) 89)) (-4282 (((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928)) 155) (((-1282) $ (-950 (-227))) 157) (((-1282) $ (-950 (-227)) (-880) (-880) (-928)) 156)) (-3799 (((-868) $) 169) (($ (-650 (-650 (-950 (-227))))) 164)) (-2335 (((-112) $ $) NIL)) (-4023 (((-1282) $ (-950 (-227))) 162)) (-3022 (((-112) $ $) NIL)))
-(((-474) (-13 (-1109) (-10 -8 (-15 -3971 ($)) (-15 -3515 ($ $)) (-15 -3515 ($ (-650 (-650 (-950 (-227)))))) (-15 -3515 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)))) (-15 -3515 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266)))) (-15 -1937 ((-650 (-650 (-950 (-227)))) $)) (-15 -2106 ((-570) $)) (-15 -1531 ((-650 (-1103 (-384))) $)) (-15 -1531 ((-650 (-1103 (-384))) $ (-650 (-1103 (-384))))) (-15 -3222 ((-650 (-384)) $)) (-15 -3222 ((-650 (-384)) $ (-650 (-384)))) (-15 -4282 ((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928))) (-15 -4282 ((-1282) $ (-950 (-227)))) (-15 -4282 ((-1282) $ (-950 (-227)) (-880) (-880) (-928))) (-15 -4023 ((-1282) $ (-950 (-227)))) (-15 -3377 ((-1282) $ (-950 (-227)) (-880))) (-15 -3799 ($ (-650 (-650 (-950 (-227)))))) (-15 -3799 ((-868) $)) (-15 -2021 ((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880)))) (-15 -3664 ((-650 (-227)) (-650 (-650 (-950 (-227))))))))) (T -474))
-((-3799 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-474)))) (-3971 (*1 *1) (-5 *1 (-474))) (-3515 (*1 *1 *1) (-5 *1 (-474))) (-3515 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-3515 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *4 (-650 (-928))) (-5 *1 (-474)))) (-3515 (*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)))) (-1937 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-2106 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-474)))) (-1531 (*1 *2 *1) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))) (-1531 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))) (-3222 (*1 *2 *1) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474)))) (-3222 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474)))) (-4282 (*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)))) (-4282 (*1 *2 *1 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))) (-4282 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *2 (-1282)) (-5 *1 (-474)))) (-4023 (*1 *2 *1 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))) (-3377 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-474)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-2021 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *1 (-474)))) (-3664 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-227))) (-5 *1 (-474)))))
-(-13 (-1109) (-10 -8 (-15 -3971 ($)) (-15 -3515 ($ $)) (-15 -3515 ($ (-650 (-650 (-950 (-227)))))) (-15 -3515 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)))) (-15 -3515 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266)))) (-15 -1937 ((-650 (-650 (-950 (-227)))) $)) (-15 -2106 ((-570) $)) (-15 -1531 ((-650 (-1103 (-384))) $)) (-15 -1531 ((-650 (-1103 (-384))) $ (-650 (-1103 (-384))))) (-15 -3222 ((-650 (-384)) $)) (-15 -3222 ((-650 (-384)) $ (-650 (-384)))) (-15 -4282 ((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928))) (-15 -4282 ((-1282) $ (-950 (-227)))) (-15 -4282 ((-1282) $ (-950 (-227)) (-880) (-880) (-928))) (-15 -4023 ((-1282) $ (-950 (-227)))) (-15 -3377 ((-1282) $ (-950 (-227)) (-880))) (-15 -3799 ($ (-650 (-650 (-950 (-227)))))) (-15 -3799 ((-868) $)) (-15 -2021 ((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880)))) (-15 -3664 ((-650 (-227)) (-650 (-650 (-950 (-227))))))))
-((-3111 (($ $) NIL) (($ $ $) 11)))
-(((-475 |#1| |#2| |#3|) (-10 -8 (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|))) (-476 |#2| |#3|) (-174) (-23)) (T -475))
-NIL
-(-10 -8 (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2130 ((|#2| $) 20)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 16) (($ $ $) 14)) (-3101 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
+((-4105 (((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928)) 26)) (-1739 (((-1277 (-1277 (-570))) (-928)) 21)))
+(((-472) (-10 -7 (-15 -4105 ((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928))) (-15 -1739 ((-1277 (-1277 (-570))) (-928))))) (T -472))
+((-1739 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 (-570)))) (-5 *1 (-472)))) (-4105 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 (-1277 (-570)))) (-5 *3 (-928)) (-5 *1 (-472)))))
+(-10 -7 (-15 -4105 ((-1277 (-1277 (-570))) (-1277 (-1277 (-570))) (-928))) (-15 -1739 ((-1277 (-1277 (-570))) (-928))))
+((-2967 (((-570) (-570)) 32) (((-570)) 24)) (-2190 (((-570) (-570)) 28) (((-570)) 20)) (-4058 (((-570) (-570)) 30) (((-570)) 22)) (-3403 (((-112) (-112)) 14) (((-112)) 12)) (-2092 (((-112) (-112)) 13) (((-112)) 11)) (-3391 (((-112) (-112)) 26) (((-112)) 17)))
+(((-473) (-10 -7 (-15 -2092 ((-112))) (-15 -3403 ((-112))) (-15 -2092 ((-112) (-112))) (-15 -3403 ((-112) (-112))) (-15 -3391 ((-112))) (-15 -4058 ((-570))) (-15 -2190 ((-570))) (-15 -2967 ((-570))) (-15 -3391 ((-112) (-112))) (-15 -4058 ((-570) (-570))) (-15 -2190 ((-570) (-570))) (-15 -2967 ((-570) (-570))))) (T -473))
+((-2967 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2190 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-4058 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-3391 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-2967 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-2190 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-4058 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-473)))) (-3391 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-3403 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-2092 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-3403 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))) (-2092 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
+(-10 -7 (-15 -2092 ((-112))) (-15 -3403 ((-112))) (-15 -2092 ((-112) (-112))) (-15 -3403 ((-112) (-112))) (-15 -3391 ((-112))) (-15 -4058 ((-570))) (-15 -2190 ((-570))) (-15 -2967 ((-570))) (-15 -3391 ((-112) (-112))) (-15 -4058 ((-570) (-570))) (-15 -2190 ((-570) (-570))) (-15 -2967 ((-570) (-570))))
+((-2560 (((-112) $ $) NIL)) (-3225 (((-650 (-384)) $) 34) (((-650 (-384)) $ (-650 (-384))) 146)) (-2070 (((-650 (-1103 (-384))) $) 16) (((-650 (-1103 (-384))) $ (-650 (-1103 (-384)))) 142)) (-4318 (((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880))) 58)) (-1638 (((-650 (-650 (-950 (-227)))) $) 137)) (-3380 (((-1282) $ (-950 (-227)) (-880)) 163)) (-2992 (($ $) 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)) (-3989 (((-1168) $) NIL)) (-2107 (((-570) $) 110)) (-3580 (((-1129) $) NIL)) (-1740 (($) 147)) (-1908 (((-650 (-227)) (-650 (-650 (-950 (-227))))) 89)) (-1724 (((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928)) 155) (((-1282) $ (-950 (-227))) 157) (((-1282) $ (-950 (-227)) (-880) (-880) (-928)) 156)) (-3802 (((-868) $) 169) (($ (-650 (-650 (-950 (-227))))) 164)) (-3359 (((-112) $ $) NIL)) (-4101 (((-1282) $ (-950 (-227))) 162)) (-3025 (((-112) $ $) NIL)))
+(((-474) (-13 (-1109) (-10 -8 (-15 -1740 ($)) (-15 -2992 ($ $)) (-15 -2992 ($ (-650 (-650 (-950 (-227)))))) (-15 -2992 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)))) (-15 -2992 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266)))) (-15 -1638 ((-650 (-650 (-950 (-227)))) $)) (-15 -2107 ((-570) $)) (-15 -2070 ((-650 (-1103 (-384))) $)) (-15 -2070 ((-650 (-1103 (-384))) $ (-650 (-1103 (-384))))) (-15 -3225 ((-650 (-384)) $)) (-15 -3225 ((-650 (-384)) $ (-650 (-384)))) (-15 -1724 ((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928))) (-15 -1724 ((-1282) $ (-950 (-227)))) (-15 -1724 ((-1282) $ (-950 (-227)) (-880) (-880) (-928))) (-15 -4101 ((-1282) $ (-950 (-227)))) (-15 -3380 ((-1282) $ (-950 (-227)) (-880))) (-15 -3802 ($ (-650 (-650 (-950 (-227)))))) (-15 -3802 ((-868) $)) (-15 -4318 ((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880)))) (-15 -1908 ((-650 (-227)) (-650 (-650 (-950 (-227))))))))) (T -474))
+((-3802 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-474)))) (-1740 (*1 *1) (-5 *1 (-474))) (-2992 (*1 *1 *1) (-5 *1 (-474))) (-2992 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-2992 (*1 *1 *2 *3 *3 *4) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *4 (-650 (-928))) (-5 *1 (-474)))) (-2992 (*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)))) (-1638 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-2107 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-474)))) (-2070 (*1 *2 *1) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))) (-2070 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1103 (-384)))) (-5 *1 (-474)))) (-3225 (*1 *2 *1) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474)))) (-3225 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-384))) (-5 *1 (-474)))) (-1724 (*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)))) (-1724 (*1 *2 *1 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))) (-1724 (*1 *2 *1 *3 *4 *4 *5) (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *5 (-928)) (-5 *2 (-1282)) (-5 *1 (-474)))) (-4101 (*1 *2 *1 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))) (-3380 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-474)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))) (-4318 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880))) (-5 *1 (-474)))) (-1908 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-227))) (-5 *1 (-474)))))
+(-13 (-1109) (-10 -8 (-15 -1740 ($)) (-15 -2992 ($ $)) (-15 -2992 ($ (-650 (-650 (-950 (-227)))))) (-15 -2992 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)))) (-15 -2992 ($ (-650 (-650 (-950 (-227)))) (-650 (-880)) (-650 (-880)) (-650 (-928)) (-650 (-266)))) (-15 -1638 ((-650 (-650 (-950 (-227)))) $)) (-15 -2107 ((-570) $)) (-15 -2070 ((-650 (-1103 (-384))) $)) (-15 -2070 ((-650 (-1103 (-384))) $ (-650 (-1103 (-384))))) (-15 -3225 ((-650 (-384)) $)) (-15 -3225 ((-650 (-384)) $ (-650 (-384)))) (-15 -1724 ((-1282) $ (-650 (-950 (-227))) (-880) (-880) (-928))) (-15 -1724 ((-1282) $ (-950 (-227)))) (-15 -1724 ((-1282) $ (-950 (-227)) (-880) (-880) (-928))) (-15 -4101 ((-1282) $ (-950 (-227)))) (-15 -3380 ((-1282) $ (-950 (-227)) (-880))) (-15 -3802 ($ (-650 (-650 (-950 (-227)))))) (-15 -3802 ((-868) $)) (-15 -4318 ((-650 (-650 (-950 (-227)))) (-650 (-650 (-950 (-227)))) (-650 (-880)))) (-15 -1908 ((-650 (-227)) (-650 (-650 (-950 (-227))))))))
+((-3114 (($ $) NIL) (($ $ $) 11)))
+(((-475 |#1| |#2| |#3|) (-10 -8 (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|))) (-476 |#2| |#3|) (-174) (-23)) (T -475))
+NIL
+(-10 -8 (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3079 ((|#2| $) 20)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 16) (($ $ $) 14)) (-3104 (($ $ $) 15)) (* (($ |#1| $) 18) (($ $ |#1|) 17)))
(((-476 |#1| |#2|) (-141) (-174) (-23)) (T -476))
-((-2130 (*1 *2 *1) (-12 (-4 *1 (-476 *3 *2)) (-4 *3 (-174)) (-4 *2 (-23)))) (-1861 (*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)))) (-3111 (*1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-3101 (*1 *1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-3111 (*1 *1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))))
-(-13 (-1109) (-10 -8 (-15 -2130 (|t#2| $)) (-15 (-1861) ($) -3725) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -3111 ($ $)) (-15 -3101 ($ $ $)) (-15 -3111 ($ $ $))))
+((-3079 (*1 *2 *1) (-12 (-4 *1 (-476 *3 *2)) (-4 *3 (-174)) (-4 *2 (-23)))) (-1862 (*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)))) (-3114 (*1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-3104 (*1 *1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))) (-3114 (*1 *1 *1 *1) (-12 (-4 *1 (-476 *2 *3)) (-4 *2 (-174)) (-4 *3 (-23)))))
+(-13 (-1109) (-10 -8 (-15 -3079 (|t#2| $)) (-15 (-1862) ($) -3728) (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|)) (-15 -3114 ($ $)) (-15 -3104 ($ $ $)) (-15 -3114 ($ $ $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2458 (((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|))) 134)) (-2373 (((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))) 131)) (-1978 (((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))) 86)))
-(((-477 |#1| |#2| |#3|) (-10 -7 (-15 -2373 ((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -2458 ((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -1978 ((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))))) (-650 (-1186)) (-458) (-458)) (T -477))
-((-1978 (*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)))) (-2458 (*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)))) (-2373 (*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 -2373 ((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -2458 ((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -1978 ((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))))
-((-2875 (((-3 $ "failed") $) 11)) (-2020 (($ $ $) 23)) (-4391 (($ $ $) 24)) (-3122 (($ $ $) 9)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 22)))
-(((-478 |#1|) (-10 -8 (-15 -4391 (|#1| |#1| |#1|)) (-15 -2020 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3122 (|#1| |#1| |#1|)) (-15 -2875 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928)))) (-479)) (T -478))
-NIL
-(-10 -8 (-15 -4391 (|#1| |#1| |#1|)) (-15 -2020 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3122 (|#1| |#1| |#1|)) (-15 -2875 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))))
-((-2558 (((-112) $ $) 7)) (-1705 (($) 19 T CONST)) (-2875 (((-3 $ "failed") $) 16)) (-4346 (((-112) $) 18)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 25)) (-3577 (((-1129) $) 11)) (-2020 (($ $ $) 22)) (-4391 (($ $ $) 21)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1875 (($) 20 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 24)) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ $ (-570)) 23)) (* (($ $ $) 15)))
+((-2253 (((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|))) 134)) (-3766 (((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))) 131)) (-3886 (((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))) 86)))
+(((-477 |#1| |#2| |#3|) (-10 -7 (-15 -3766 ((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -2253 ((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -3886 ((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|))))) (-650 (-1186)) (-458) (-458)) (T -477))
+((-3886 (*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)))) (-2253 (*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)))) (-3766 (*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 -3766 ((-650 (-650 (-249 |#1| |#2|))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -2253 ((-3 (-650 (-487 |#1| |#2|)) "failed") (-650 (-487 |#1| |#2|)) (-650 (-870 |#1|)))) (-15 -3886 ((-2 (|:| |dpolys| (-650 (-249 |#1| |#2|))) (|:| |coords| (-650 (-570)))) (-650 (-249 |#1| |#2|)) (-650 (-870 |#1|)))))
+((-1929 (((-3 $ "failed") $) 11)) (-4307 (($ $ $) 23)) (-3381 (($ $ $) 24)) (-3125 (($ $ $) 9)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 22)))
+(((-478 |#1|) (-10 -8 (-15 -3381 (|#1| |#1| |#1|)) (-15 -4307 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3125 (|#1| |#1| |#1|)) (-15 -1929 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928)))) (-479)) (T -478))
+NIL
+(-10 -8 (-15 -3381 (|#1| |#1| |#1|)) (-15 -4307 (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3125 (|#1| |#1| |#1|)) (-15 -1929 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))))
+((-2560 (((-112) $ $) 7)) (-3195 (($) 19 T CONST)) (-1929 (((-3 $ "failed") $) 16)) (-4139 (((-112) $) 18)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 25)) (-3580 (((-1129) $) 11)) (-4307 (($ $ $) 22)) (-3381 (($ $ $) 21)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1876 (($) 20 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 24)) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ $ (-570)) 23)) (* (($ $ $) 15)))
(((-479) (-141)) (T -479))
-((-1877 (*1 *1 *1) (-4 *1 (-479))) (-3122 (*1 *1 *1 *1) (-4 *1 (-479))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-479)) (-5 *2 (-570)))) (-2020 (*1 *1 *1 *1) (-4 *1 (-479))) (-4391 (*1 *1 *1 *1) (-4 *1 (-479))))
-(-13 (-732) (-10 -8 (-15 -1877 ($ $)) (-15 -3122 ($ $ $)) (-15 ** ($ $ (-570))) (-6 -4446) (-15 -2020 ($ $ $)) (-15 -4391 ($ $ $))))
+((-1878 (*1 *1 *1) (-4 *1 (-479))) (-3125 (*1 *1 *1 *1) (-4 *1 (-479))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-479)) (-5 *2 (-570)))) (-4307 (*1 *1 *1 *1) (-4 *1 (-479))) (-3381 (*1 *1 *1 *1) (-4 *1 (-479))))
+(-13 (-732) (-10 -8 (-15 -1878 ($ $)) (-15 -3125 ($ $ $)) (-15 ** ($ $ (-570))) (-6 -4449) (-15 -4307 ($ $ $)) (-15 -3381 ($ $ $))))
(((-102) . T) ((-619 (-868)) . T) ((-732) . T) ((-1121) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 18)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-1447 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3416 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2887 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2866 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4107 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-2379 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-413 (-570))) NIL) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) 25)) (-2789 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2898 (($ $) 29 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 35 (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2431 (($ $ (-413 (-570))) NIL)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3547 (($ $ (-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)) (-2130 (((-413 (-570)) $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) NIL)) (-3799 (((-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)))) (-2249 ((|#1| $ (-413 (-570))) NIL)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2288 ((|#1| $) 21)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) 27)) (-3101 (($ $ $) 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 -3799 ($ (-1273 |#2|))) (-15 -3799 ($ (-1262 |#1| |#2| |#3|))) (-15 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -480))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3799 (*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)))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2898 (*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 -3799 ($ (-1273 |#2|))) (-15 -3799 ($ (-1262 |#1| |#2| |#3|))) (-15 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|)))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3851 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#2| $ |#1| |#2|) 18)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 |#2| "failed") |#1| $) 19)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 16)) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) NIL)) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 ((|#1| $) NIL (|has| |#1| (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 ((|#1| $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2911 (((-650 |#1|) $) NIL)) (-3245 (((-112) |#1| $) NIL)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1805 (((-650 |#1|) $) NIL)) (-3939 (((-112) |#1| $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3543 ((|#2| $) NIL (|has| |#1| (-856)))) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 18)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1622 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3257 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2890 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2869 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4109 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-2646 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-413 (-570))) NIL) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) 25)) (-2792 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2023 (($ $) 29 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 35 (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3152 (($ $ (-413 (-570))) NIL)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4389 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-3550 (($ $ (-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)) (-3079 (((-413 (-570)) $) NIL)) (-4120 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) NIL)) (-3802 (((-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)))) (-1864 ((|#1| $ (-413 (-570))) NIL)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-2289 ((|#1| $) 21)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) 27)) (-3104 (($ $ $) 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 -3802 ($ (-1273 |#2|))) (-15 -3802 ($ (-1262 |#1| |#2| |#3|))) (-15 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -480))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3802 (*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)))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-480 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2023 (*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 -3802 ($ (-1273 |#2|))) (-15 -3802 ($ (-1262 |#1| |#2| |#3|))) (-15 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3040 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#2| $ |#1| |#2|) 18)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 |#2| "failed") |#1| $) 19)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) 16)) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) NIL)) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 ((|#1| $) NIL (|has| |#1| (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 ((|#1| $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2914 (((-650 |#1|) $) NIL)) (-2343 (((-112) |#1| $) NIL)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2903 (((-650 |#1|) $) NIL)) (-1358 (((-112) |#1| $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3546 ((|#2| $) NIL (|has| |#1| (-856)))) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ |#1|) 13) ((|#2| $ |#1| |#2|) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-481 |#1| |#2| |#3| |#4|) (-1203 |#1| |#2|) (-1109) (-1109) (-1203 |#1| |#2|) |#2|) (T -481))
NIL
(-1203 |#1| |#2|)
-((-2558 (((-112) $ $) NIL)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1515 (((-650 $) (-650 |#4|)) NIL)) (-1755 (((-650 |#3|) $) NIL)) (-3051 (((-112) $) NIL)) (-1416 (((-112) $) NIL (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3484 ((|#4| |#4| $) NIL)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-1431 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) NIL)) (-1705 (($) NIL T CONST)) (-3737 (((-112) $) 29 (|has| |#1| (-562)))) (-2467 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4047 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1876 (((-112) $) NIL (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2450 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3216 (($ (-650 |#4|)) NIL)) (-3555 (((-3 $ "failed") $) 45)) (-2128 ((|#4| |#4| $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1741 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1544 ((|#4| |#4| $) NIL)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) NIL)) (-3627 (((-650 |#4|) $) 18 (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1724 ((|#3| $) 38)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#4|) $) 19 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1502 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 23)) (-1423 (((-650 |#3|) $) NIL)) (-3907 (((-112) |#3| $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-1769 (((-3 |#4| "failed") $) 42)) (-3534 (((-650 |#4|) $) NIL)) (-1491 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2520 ((|#4| |#4| $) NIL)) (-2971 (((-112) $ $) NIL)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4201 ((|#4| |#4| $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-3 |#4| "failed") $) 40)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1690 (((-3 $ "failed") $ |#4|) 58)) (-2431 (($ $ |#4|) NIL)) (-3642 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 17)) (-2380 (($) 14)) (-2130 (((-777) $) NIL)) (-3584 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) 13)) (-1425 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 22)) (-3710 (($ $ |#3|) 52)) (-4224 (($ $ |#3|) 54)) (-4085 (($ $) NIL)) (-1615 (($ $ |#3|) NIL)) (-3799 (((-868) $) 35) (((-650 |#4|) $) 46)) (-4392 (((-777) $) NIL (|has| |#3| (-373)))) (-2335 (((-112) $ $) NIL)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-4371 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) NIL)) (-2561 (((-112) |#3| $) NIL)) (-3022 (((-112) $ $) NIL)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1911 (((-650 $) (-650 |#4|)) NIL)) (-1755 (((-650 |#3|) $) NIL)) (-4092 (((-112) $) NIL)) (-1320 (((-112) $) NIL (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2698 ((|#4| |#4| $) NIL)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1434 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3195 (($) NIL T CONST)) (-3230 (((-112) $) 29 (|has| |#1| (-562)))) (-2339 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4337 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2327 (((-112) $) NIL (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2167 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3220 (($ (-650 |#4|)) NIL)) (-3558 (((-3 $ "failed") $) 45)) (-3059 ((|#4| |#4| $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1742 (($ |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2191 ((|#4| |#4| $) NIL)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) NIL)) (-3630 (((-650 |#4|) $) 18 (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3357 ((|#3| $) 38)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#4|) $) 19 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1503 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 23)) (-1388 (((-650 |#3|) $) NIL)) (-2387 (((-112) |#3| $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-1770 (((-3 |#4| "failed") $) 42)) (-3151 (((-650 |#4|) $) NIL)) (-2898 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1590 ((|#4| |#4| $) NIL)) (-1433 (((-112) $ $) NIL)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2222 ((|#4| |#4| $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-3 |#4| "failed") $) 40)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-4207 (((-3 $ "failed") $ |#4|) 58)) (-3152 (($ $ |#4|) NIL)) (-1627 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 17)) (-2656 (($) 14)) (-3079 (((-777) $) NIL)) (-3587 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) 13)) (-1426 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 22)) (-4138 (($ $ |#3|) 52)) (-2435 (($ $ |#3|) 54)) (-3563 (($ $) NIL)) (-1631 (($ $ |#3|) NIL)) (-3802 (((-868) $) 35) (((-650 |#4|) $) 46)) (-3394 (((-777) $) NIL (|has| |#3| (-373)))) (-3359 (((-112) $ $) NIL)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-4379 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) NIL)) (-3857 (((-112) |#3| $) NIL)) (-3025 (((-112) $ $) NIL)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-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|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3216 (((-570) $) NIL) (((-413 (-570)) $) NIL)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-1315 (($) 17)) (-4346 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-1425 (((-384) $) 21) (((-227) $) 24) (((-413 (-1182 (-570))) $) 18) (((-542) $) 53)) (-3799 (((-868) $) 51) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (((-227) $) 23) (((-384) $) 20)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) 37 T CONST)) (-1875 (($) 8 T CONST)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3220 (((-570) $) NIL) (((-413 (-570)) $) NIL)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-1315 (($) 17)) (-4139 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-1426 (((-384) $) 21) (((-227) $) 24) (((-413 (-1182 (-570))) $) 18) (((-542) $) 53)) (-3802 (((-868) $) 51) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (((-227) $) 23) (((-384) $) 20)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) 37 T CONST)) (-1876 (($) 8 T CONST)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 ($))))
-((-2558 (((-112) $ $) NIL)) (-2225 (((-1144) $) 11)) (-2213 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-484) (-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1144) $))))) (T -484))
-((-2213 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484)))) (-2225 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484)))))
-(-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1144) $))))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3851 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#2| $ |#1| |#2|) 16)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 |#2| "failed") |#1| $) 20)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 18)) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) NIL)) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 ((|#1| $) NIL (|has| |#1| (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 ((|#1| $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2911 (((-650 |#1|) $) 13)) (-3245 (((-112) |#1| $) NIL)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1805 (((-650 |#1|) $) NIL)) (-3939 (((-112) |#1| $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3543 ((|#2| $) NIL (|has| |#1| (-856)))) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 19)) (-1941 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 11 (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2569 (((-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)))
-((-2093 (((-570) (-570) (-570)) 19)) (-3427 (((-112) (-570) (-570) (-570) (-570)) 28)) (-1347 (((-1277 (-650 (-570))) (-777) (-777)) 41)))
-(((-486) (-10 -7 (-15 -2093 ((-570) (-570) (-570))) (-15 -3427 ((-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)))) (-3427 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-486)))) (-2093 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-486)))))
-(-10 -7 (-15 -2093 ((-570) (-570) (-570))) (-15 -3427 ((-112) (-570) (-570) (-570) (-570))) (-15 -1347 ((-1277 (-650 (-570))) (-777) (-777))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-870 |#1|)) $) NIL)) (-3775 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3074 (($ $) NIL (|has| |#2| (-562)))) (-3475 (((-112) $) NIL (|has| |#2| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4364 (($ $) NIL (|has| |#2| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-4322 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3210 (($ $ (-650 (-570))) NIL)) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#2| (-916)))) (-3720 (($ $ |#2| (-488 (-2569 |#1|) (-777)) $) NIL)) (-2842 (((-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)))))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-1742 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#2| (-488 (-2569 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-870 |#1|)) NIL)) (-2575 (((-488 (-2569 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1918 (($ (-1 (-488 (-2569 |#1|) (-777)) (-488 (-2569 |#1|) (-777))) $) NIL)) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-3362 (((-3 (-870 |#1|) "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#2| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1988 (((-1168) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3357 (-777))) "failed") $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#2| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2547 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1770 (($ $ (-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)) (-3570 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3547 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2130 (((-488 (-2569 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1425 (((-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)))))) (-1848 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ (-413 (-570))) NIL (-2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ (-488 (-2569 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 (-2569 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -3210 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058)) (T -487))
-((-3210 (*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 (-2569 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -3210 ($ $ (-650 (-570))))))
-((-2558 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3467 (((-112) $) NIL (|has| |#2| (-132)))) (-2797 (($ (-928)) NIL (|has| |#2| (-1058)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3744 (($ $ $) NIL (|has| |#2| (-799)))) (-3990 (((-3 $ "failed") $ $) NIL (|has| |#2| (-132)))) (-4302 (((-112) $ (-777)) NIL)) (-3510 (((-777)) NIL (|has| |#2| (-373)))) (-4395 (((-570) $) NIL (|has| |#2| (-854)))) (-3932 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)))) (-3216 (((-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)))) (-4196 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-2875 (((-3 $ "failed") $) NIL (|has| |#2| (-732)))) (-3446 (($) NIL (|has| |#2| (-373)))) (-1517 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ (-570)) 11)) (-3903 (((-112) $) NIL (|has| |#2| (-854)))) (-3627 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4346 (((-112) $) NIL (|has| |#2| (-732)))) (-1479 (((-112) $) NIL (|has| |#2| (-854)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2752 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-1502 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-1884 (((-928) $) NIL (|has| |#2| (-373)))) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#2| (-1109)))) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-2268 (($ (-928)) NIL (|has| |#2| (-373)))) (-3577 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3543 ((|#2| $) NIL (|has| (-570) (-856)))) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL)) (-2609 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3843 (($ (-1277 |#2|)) NIL)) (-2951 (((-135)) NIL (|has| |#2| (-368)))) (-3547 (($ $) 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)))) (-3584 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-1277 |#2|) $) NIL) (($ (-570)) NIL (-2892 (-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))))) (-3499 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-2335 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4371 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2622 (($ $) NIL (|has| |#2| (-854)))) (-1861 (($) NIL (|has| |#2| (-132)) CONST)) (-1875 (($) NIL (|has| |#2| (-732)) CONST)) (-2942 (($ $) 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)))) (-3072 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3052 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3022 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3062 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3042 (((-112) $ $) 17 (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-3101 (($ $ $) 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)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-2226 (((-1144) $) 11)) (-2215 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-484) (-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1144) $))))) (T -484))
+((-2215 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484)))) (-2226 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-484)))))
+(-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1144) $))))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3040 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#2| $ |#1| |#2|) 16)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 |#2| "failed") |#1| $) 20)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) 18)) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) NIL)) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 ((|#1| $) NIL (|has| |#1| (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 ((|#1| $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2914 (((-650 |#1|) $) 13)) (-2343 (((-112) |#1| $) NIL)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2903 (((-650 |#1|) $) NIL)) (-1358 (((-112) |#1| $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3546 ((|#2| $) NIL (|has| |#1| (-856)))) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 19)) (-1942 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 11 (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2570 (((-777) $) 15 (|has| $ (-6 -4452)))))
+(((-485 |#1| |#2| |#3|) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452))) (-1109) (-1109) (-1168)) (T -485))
+NIL
+(-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452)))
+((-2712 (((-570) (-570) (-570)) 19)) (-3337 (((-112) (-570) (-570) (-570) (-570)) 28)) (-1349 (((-1277 (-650 (-570))) (-777) (-777)) 41)))
+(((-486) (-10 -7 (-15 -2712 ((-570) (-570) (-570))) (-15 -3337 ((-112) (-570) (-570) (-570) (-570))) (-15 -1349 ((-1277 (-650 (-570))) (-777) (-777))))) (T -486))
+((-1349 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1277 (-650 (-570)))) (-5 *1 (-486)))) (-3337 (*1 *2 *3 *3 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-486)))) (-2712 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-486)))))
+(-10 -7 (-15 -2712 ((-570) (-570) (-570))) (-15 -3337 ((-112) (-570) (-570) (-570) (-570))) (-15 -1349 ((-1277 (-650 (-570))) (-777) (-777))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-870 |#1|)) $) NIL)) (-3778 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-4306 (($ $) NIL (|has| |#2| (-562)))) (-2617 (((-112) $) NIL (|has| |#2| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4310 (($ $) NIL (|has| |#2| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#2| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-3930 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-2007 (($ $ (-650 (-570))) NIL)) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#2| (-916)))) (-4243 (($ $ |#2| (-488 (-2570 |#1|) (-777)) $) NIL)) (-1557 (((-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)))))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-1744 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#2| (-488 (-2570 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-870 |#1|)) NIL)) (-3970 (((-488 (-2570 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1414 (($ (-1 (-488 (-2570 |#1|) (-777)) (-488 (-2570 |#1|) (-777))) $) NIL)) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-4023 (((-3 (-870 |#1|) "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#2| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-3989 (((-1168) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3994 (-777))) "failed") $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#2| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2548 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1771 (($ $ (-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)) (-2265 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3550 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3079 (((-488 (-2570 |#1|) (-777)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1426 (((-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)))))) (-2077 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ (-413 (-570))) NIL (-2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ (-488 (-2570 |#1|) (-777))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 (-2570 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -2007 ($ $ (-650 (-570)))))) (-650 (-1186)) (-1058)) (T -487))
+((-2007 (*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 (-2570 |#1|) (-777)) (-870 |#1|)) (-10 -8 (-15 -2007 ($ $ (-650 (-570))))))
+((-2560 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3721 (((-112) $) NIL (|has| |#2| (-132)))) (-2451 (($ (-928)) NIL (|has| |#2| (-1058)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-3271 (($ $ $) NIL (|has| |#2| (-799)))) (-1966 (((-3 $ "failed") $ $) NIL (|has| |#2| (-132)))) (-1932 (((-112) $ (-777)) NIL)) (-3513 (((-777)) NIL (|has| |#2| (-373)))) (-3408 (((-570) $) NIL (|has| |#2| (-854)))) (-3935 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)))) (-3220 (((-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)))) (-2179 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-1929 (((-3 $ "failed") $) NIL (|has| |#2| (-732)))) (-3449 (($) NIL (|has| |#2| (-373)))) (-1518 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ (-570)) 11)) (-2346 (((-112) $) NIL (|has| |#2| (-854)))) (-3630 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-4139 (((-112) $) NIL (|has| |#2| (-732)))) (-2788 (((-112) $) NIL (|has| |#2| (-854)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2052 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-1503 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-2400 (((-928) $) NIL (|has| |#2| (-373)))) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-2267 (($ (-928)) NIL (|has| |#2| (-373)))) (-3580 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3546 ((|#2| $) NIL (|has| (-570) (-856)))) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL)) (-4266 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3846 (($ (-1277 |#2|)) NIL)) (-2517 (((-135)) NIL (|has| |#2| (-368)))) (-3550 (($ $) 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)))) (-3587 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-1277 |#2|) $) NIL) (($ (-570)) NIL (-2895 (-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))))) (-2851 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-3359 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4379 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3231 (($ $) NIL (|has| |#2| (-854)))) (-1862 (($) NIL (|has| |#2| (-132)) CONST)) (-1876 (($) NIL (|has| |#2| (-732)) CONST)) (-2945 (($ $) 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)))) (-3075 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3055 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3025 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3065 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3045 (((-112) $ $) 17 (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-3104 (($ $ $) 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)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-488 |#1| |#2|) (-240 |#1| |#2|) (-777) (-799)) (T -488))
NIL
(-240 |#1| |#2|)
-((-2558 (((-112) $ $) NIL)) (-3822 (((-650 (-882)) $) 15)) (-3600 (((-512) $) 13)) (-1988 (((-1168) $) NIL)) (-1673 (($ (-512) (-650 (-882))) 11)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 22) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-489) (-13 (-1092) (-10 -8 (-15 -1673 ($ (-512) (-650 (-882)))) (-15 -3600 ((-512) $)) (-15 -3822 ((-650 (-882)) $))))) (T -489))
-((-1673 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-882))) (-5 *1 (-489)))) (-3600 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-489)))) (-3822 (*1 *2 *1) (-12 (-5 *2 (-650 (-882))) (-5 *1 (-489)))))
-(-13 (-1092) (-10 -8 (-15 -1673 ($ (-512) (-650 (-882)))) (-15 -3600 ((-512) $)) (-15 -3822 ((-650 (-882)) $))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) NIL)) (-1705 (($) NIL T CONST)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2168 (($ $ $) 48)) (-2024 (($ $ $) 47)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2800 ((|#1| $) 40)) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1490 ((|#1| $) 41)) (-1385 (($ |#1| $) 18)) (-2809 (($ (-650 |#1|)) 19)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3647 ((|#1| $) 34)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 11)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 45)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) 29 (|has| $ (-6 -4449)))))
-(((-490 |#1|) (-13 (-977 |#1|) (-10 -8 (-15 -2809 ($ (-650 |#1|))))) (-856)) (T -490))
-((-2809 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-490 *3)))))
-(-13 (-977 |#1|) (-10 -8 (-15 -2809 ($ (-650 |#1|)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-3624 (($ $) 71)) (-4354 (((-112) $) NIL)) (-1988 (((-1168) $) NIL)) (-2956 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 45)) (-3577 (((-1129) $) NIL)) (-2466 (((-3 |#4| "failed") $) 117)) (-1562 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 81) (($ |#4|) 31) (($ |#1| |#1|) 127) (($ |#1| |#1| (-570)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 140)) (-4226 (((-2 (|:| -4260 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 47)) (-3799 (((-868) $) 110)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 32 T CONST)) (-3022 (((-112) $ $) 121)) (-3111 (($ $) 77) (($ $ $) NIL)) (-3101 (($ $ $) 72)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 78)))
+((-2560 (((-112) $ $) NIL)) (-3825 (((-650 (-882)) $) 15)) (-3602 (((-512) $) 13)) (-3989 (((-1168) $) NIL)) (-4051 (($ (-512) (-650 (-882))) 11)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 22) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-489) (-13 (-1092) (-10 -8 (-15 -4051 ($ (-512) (-650 (-882)))) (-15 -3602 ((-512) $)) (-15 -3825 ((-650 (-882)) $))))) (T -489))
+((-4051 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-882))) (-5 *1 (-489)))) (-3602 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-489)))) (-3825 (*1 *2 *1) (-12 (-5 *2 (-650 (-882))) (-5 *1 (-489)))))
+(-13 (-1092) (-10 -8 (-15 -4051 ($ (-512) (-650 (-882)))) (-15 -3602 ((-512) $)) (-15 -3825 ((-650 (-882)) $))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) NIL)) (-3195 (($) NIL T CONST)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2270 (($ $ $) 48)) (-3183 (($ $ $) 47)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2472 ((|#1| $) 40)) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2885 ((|#1| $) 41)) (-3502 (($ |#1| $) 18)) (-2544 (($ (-650 |#1|)) 19)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1684 ((|#1| $) 34)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 11)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 45)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) 29 (|has| $ (-6 -4452)))))
+(((-490 |#1|) (-13 (-977 |#1|) (-10 -8 (-15 -2544 ($ (-650 |#1|))))) (-856)) (T -490))
+((-2544 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-490 *3)))))
+(-13 (-977 |#1|) (-10 -8 (-15 -2544 ($ (-650 |#1|)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-3627 (($ $) 71)) (-4226 (((-112) $) NIL)) (-3989 (((-1168) $) NIL)) (-4366 (((-419 |#2| (-413 |#2|) |#3| |#4|) $) 45)) (-3580 (((-1129) $) NIL)) (-2467 (((-3 |#4| "failed") $) 117)) (-2383 (($ (-419 |#2| (-413 |#2|) |#3| |#4|)) 81) (($ |#4|) 31) (($ |#1| |#1|) 127) (($ |#1| |#1| (-570)) NIL) (($ |#4| |#2| |#2| |#2| |#1|) 140)) (-2456 (((-2 (|:| -4263 (-419 |#2| (-413 |#2|) |#3| |#4|)) (|:| |principalPart| |#4|)) $) 47)) (-3802 (((-868) $) 110)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 32 T CONST)) (-3025 (((-112) $ $) 121)) (-3114 (($ $) 77) (($ $ $) NIL)) (-3104 (($ $ $) 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|)
-((-2468 (((-570) (-650 (-570))) 53)) (-2945 ((|#1| (-650 |#1|)) 93)) (-2670 (((-650 |#1|) (-650 |#1|)) 94)) (-2552 (((-650 |#1|) (-650 |#1|)) 96)) (-1942 ((|#1| (-650 |#1|)) 95)) (-1848 (((-650 (-570)) (-650 |#1|)) 56)))
-(((-492 |#1|) (-10 -7 (-15 -1942 (|#1| (-650 |#1|))) (-15 -2945 (|#1| (-650 |#1|))) (-15 -2552 ((-650 |#1|) (-650 |#1|))) (-15 -2670 ((-650 |#1|) (-650 |#1|))) (-15 -1848 ((-650 (-570)) (-650 |#1|))) (-15 -2468 ((-570) (-650 (-570))))) (-1253 (-570))) (T -492))
-((-2468 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-570)) (-5 *1 (-492 *4)) (-4 *4 (-1253 *2)))) (-1848 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1253 (-570))) (-5 *2 (-650 (-570))) (-5 *1 (-492 *4)))) (-2670 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))) (-2552 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))) (-2945 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))) (-1942 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))))
-(-10 -7 (-15 -1942 (|#1| (-650 |#1|))) (-15 -2945 (|#1| (-650 |#1|))) (-15 -2552 ((-650 |#1|) (-650 |#1|))) (-15 -2670 ((-650 |#1|) (-650 |#1|))) (-15 -1848 ((-650 (-570)) (-650 |#1|))) (-15 -2468 ((-570) (-650 (-570)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 (((-570) $) NIL (|has| (-570) (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| (-570) (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-570) (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) NIL (|has| (-570) (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL)) (-4399 (((-570) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-1479 (((-112) $) NIL (|has| (-570) (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| (-570) (-856)))) (-1356 (($ (-1 (-570) (-570)) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-570) (-1161)) CONST)) (-3722 (($ (-413 (-570))) 9)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-3665 (((-570) $) NIL (|has| (-570) (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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))))) (-2142 (((-777) $) NIL)) (-1941 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 (((-570) $) NIL)) (-1425 (((-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)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 16) $) 10)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-3499 (((-777)) NIL T CONST)) (-1313 (((-570) $) NIL (|has| (-570) (-551)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-2622 (($ $) NIL (|has| (-570) (-826)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3122 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2564 ((-413 (-570)) $)) (-15 -3722 ($ (-413 (-570))))))) (T -493))
-((-2564 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))) (-3722 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))))
-(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 16)) (-10 -8 (-15 -2564 ((-413 (-570)) $)) (-15 -3722 ($ (-413 (-570))))))
-((-2752 (((-650 |#2|) $) 29)) (-4108 (((-112) |#2| $) 34)) (-3642 (((-112) (-1 (-112) |#2|) $) 24)) (-1770 (($ $ (-650 (-298 |#2|))) 13) (($ $ (-298 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-650 |#2|) (-650 |#2|)) NIL)) (-3584 (((-777) (-1 (-112) |#2|) $) 28) (((-777) |#2| $) 32)) (-3799 (((-868) $) 43)) (-4371 (((-112) (-1 (-112) |#2|) $) 23)) (-3022 (((-112) $ $) 37)) (-2569 (((-777) $) 18)))
-(((-494 |#1| |#2|) (-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -1770 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#2| |#2|)) (-15 -1770 (|#1| |#1| (-298 |#2|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -4108 ((-112) |#2| |#1|)) (-15 -3584 ((-777) |#2| |#1|)) (-15 -2752 ((-650 |#2|) |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2569 ((-777) |#1|))) (-495 |#2|) (-1227)) (T -494))
-NIL
-(-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -1770 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#2| |#2|)) (-15 -1770 (|#1| |#1| (-298 |#2|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -4108 ((-112) |#2| |#1|)) (-15 -3584 ((-777) |#2| |#1|)) (-15 -2752 ((-650 |#2|) |#1|)) (-15 -3584 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2569 ((-777) |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-1705 (($) 7 T CONST)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2349 (((-570) (-650 (-570))) 53)) (-2452 ((|#1| (-650 |#1|)) 93)) (-3675 (((-650 |#1|) (-650 |#1|)) 94)) (-1948 (((-650 |#1|) (-650 |#1|)) 96)) (-1939 ((|#1| (-650 |#1|)) 95)) (-2077 (((-650 (-570)) (-650 |#1|)) 56)))
+(((-492 |#1|) (-10 -7 (-15 -1939 (|#1| (-650 |#1|))) (-15 -2452 (|#1| (-650 |#1|))) (-15 -1948 ((-650 |#1|) (-650 |#1|))) (-15 -3675 ((-650 |#1|) (-650 |#1|))) (-15 -2077 ((-650 (-570)) (-650 |#1|))) (-15 -2349 ((-570) (-650 (-570))))) (-1253 (-570))) (T -492))
+((-2349 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-570)) (-5 *1 (-492 *4)) (-4 *4 (-1253 *2)))) (-2077 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1253 (-570))) (-5 *2 (-650 (-570))) (-5 *1 (-492 *4)))) (-3675 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))) (-1948 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))) (-2452 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))) (-1939 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))))
+(-10 -7 (-15 -1939 (|#1| (-650 |#1|))) (-15 -2452 (|#1| (-650 |#1|))) (-15 -1948 ((-650 |#1|) (-650 |#1|))) (-15 -3675 ((-650 |#1|) (-650 |#1|))) (-15 -2077 ((-650 (-570)) (-650 |#1|))) (-15 -2349 ((-570) (-650 (-570)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 (((-570) $) NIL (|has| (-570) (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| (-570) (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-570) (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) NIL (|has| (-570) (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL)) (-4402 (((-570) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-2788 (((-112) $) NIL (|has| (-570) (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| (-570) (-856)))) (-1357 (($ (-1 (-570) (-570)) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-570) (-1161)) CONST)) (-4265 (($ (-413 (-570))) 9)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) NIL)) (-1920 (((-570) $) NIL (|has| (-570) (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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))))) (-2006 (((-777) $) NIL)) (-1942 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 (((-570) $) NIL)) (-1426 (((-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)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 8) (($ (-570)) NIL) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL) (((-1013 16) $) 10)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-2851 (((-777)) NIL T CONST)) (-1918 (((-570) $) NIL (|has| (-570) (-551)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3231 (($ $) NIL (|has| (-570) (-826)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3125 (($ $ $) NIL) (($ (-570) (-570)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3889 ((-413 (-570)) $)) (-15 -4265 ($ (-413 (-570))))))) (T -493))
+((-3889 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))) (-4265 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))))
+(-13 (-1001 (-570)) (-619 (-413 (-570))) (-619 (-1013 16)) (-10 -8 (-15 -3889 ((-413 (-570)) $)) (-15 -4265 ($ (-413 (-570))))))
+((-2052 (((-650 |#2|) $) 29)) (-3767 (((-112) |#2| $) 34)) (-1627 (((-112) (-1 (-112) |#2|) $) 24)) (-1771 (($ $ (-650 (-298 |#2|))) 13) (($ $ (-298 |#2|)) NIL) (($ $ |#2| |#2|) NIL) (($ $ (-650 |#2|) (-650 |#2|)) NIL)) (-3587 (((-777) (-1 (-112) |#2|) $) 28) (((-777) |#2| $) 32)) (-3802 (((-868) $) 43)) (-4379 (((-112) (-1 (-112) |#2|) $) 23)) (-3025 (((-112) $ $) 37)) (-2570 (((-777) $) 18)))
+(((-494 |#1| |#2|) (-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -1771 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#2| |#2|)) (-15 -1771 (|#1| |#1| (-298 |#2|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -3767 ((-112) |#2| |#1|)) (-15 -3587 ((-777) |#2| |#1|)) (-15 -2052 ((-650 |#2|) |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2570 ((-777) |#1|))) (-495 |#2|) (-1227)) (T -494))
+NIL
+(-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -1771 (|#1| |#1| (-650 |#2|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#2| |#2|)) (-15 -1771 (|#1| |#1| (-298 |#2|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#2|)))) (-15 -3767 ((-112) |#2| |#1|)) (-15 -3587 ((-777) |#2| |#1|)) (-15 -2052 ((-650 |#2|) |#1|)) (-15 -3587 ((-777) (-1 (-112) |#2|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2570 ((-777) |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3195 (($) 7 T CONST)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-495 |#1|) (-141) (-1227)) (T -495))
-((-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-495 *3)) (-4 *3 (-1227)))) (-1502 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4450)) (-4 *1 (-495 *3)) (-4 *3 (-1227)))) (-4371 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-3642 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-3584 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-777)))) (-3627 (*1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-2752 (*1 *2 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-3584 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-4108 (*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 -1356 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4450)) (-15 -1502 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4449)) (PROGN (-15 -4371 ((-112) (-1 (-112) |t#1|) $)) (-15 -3642 ((-112) (-1 (-112) |t#1|) $)) (-15 -3584 ((-777) (-1 (-112) |t#1|) $)) (-15 -3627 ((-650 |t#1|) $)) (-15 -2752 ((-650 |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3584 ((-777) |t#1| $)) (-15 -4108 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3799 ((|#1| $) 6) (($ |#1|) 9)))
+((-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-495 *3)) (-4 *3 (-1227)))) (-1503 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4453)) (-4 *1 (-495 *3)) (-4 *3 (-1227)))) (-4379 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4452)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-1627 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4452)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-3587 (*1 *2 *3 *1) (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4452)) (-4 *1 (-495 *4)) (-4 *4 (-1227)) (-5 *2 (-777)))) (-3630 (*1 *2 *1) (-12 (|has| *1 (-6 -4452)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-2052 (*1 *2 *1) (-12 (|has| *1 (-6 -4452)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-3587 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4452)) (-4 *1 (-495 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-777)))) (-3767 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4452)) (-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 -1357 ($ (-1 |t#1| |t#1|) $)) (IF (|has| $ (-6 -4453)) (-15 -1503 ($ (-1 |t#1| |t#1|) $)) |%noBranch|) (IF (|has| $ (-6 -4452)) (PROGN (-15 -4379 ((-112) (-1 (-112) |t#1|) $)) (-15 -1627 ((-112) (-1 (-112) |t#1|) $)) (-15 -3587 ((-777) (-1 (-112) |t#1|) $)) (-15 -3630 ((-650 |t#1|) $)) (-15 -2052 ((-650 |t#1|) $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3587 ((-777) |t#1| $)) (-15 -3767 ((-112) |t#1| $))) |%noBranch|)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3802 ((|#1| $) 6) (($ |#1|) 9)))
(((-496 |#1|) (-141) (-1227)) (T -496))
NIL
(-13 (-619 |t#1|) (-622 |t#1|))
(((-622 |#1|) . T) ((-619 |#1|) . T))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-2108 (($ (-1168)) 8)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 15) (((-1168) $) 12)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 11)))
-(((-497) (-13 (-1109) (-619 (-1168)) (-10 -8 (-15 -2108 ($ (-1168)))))) (T -497))
-((-2108 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-497)))))
-(-13 (-1109) (-619 (-1168)) (-10 -8 (-15 -2108 ($ (-1168)))))
-((-2887 (($ $) 15)) (-2866 (($ $) 24)) (-4107 (($ $) 12)) (-4117 (($ $) 10)) (-2899 (($ $) 17)) (-2876 (($ $) 22)))
-(((-498 |#1|) (-10 -8 (-15 -2876 (|#1| |#1|)) (-15 -2899 (|#1| |#1|)) (-15 -4117 (|#1| |#1|)) (-15 -4107 (|#1| |#1|)) (-15 -2866 (|#1| |#1|)) (-15 -2887 (|#1| |#1|))) (-499)) (T -498))
-NIL
-(-10 -8 (-15 -2876 (|#1| |#1|)) (-15 -2899 (|#1| |#1|)) (-15 -4117 (|#1| |#1|)) (-15 -4107 (|#1| |#1|)) (-15 -2866 (|#1| |#1|)) (-15 -2887 (|#1| |#1|)))
-((-2887 (($ $) 11)) (-2866 (($ $) 10)) (-4107 (($ $) 9)) (-4117 (($ $) 8)) (-2899 (($ $) 7)) (-2876 (($ $) 6)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-2866 (($ (-1168)) 8)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 15) (((-1168) $) 12)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 11)))
+(((-497) (-13 (-1109) (-619 (-1168)) (-10 -8 (-15 -2866 ($ (-1168)))))) (T -497))
+((-2866 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-497)))))
+(-13 (-1109) (-619 (-1168)) (-10 -8 (-15 -2866 ($ (-1168)))))
+((-2890 (($ $) 15)) (-2869 (($ $) 24)) (-4109 (($ $) 12)) (-4120 (($ $) 10)) (-2902 (($ $) 17)) (-2879 (($ $) 22)))
+(((-498 |#1|) (-10 -8 (-15 -2879 (|#1| |#1|)) (-15 -2902 (|#1| |#1|)) (-15 -4120 (|#1| |#1|)) (-15 -4109 (|#1| |#1|)) (-15 -2869 (|#1| |#1|)) (-15 -2890 (|#1| |#1|))) (-499)) (T -498))
+NIL
+(-10 -8 (-15 -2879 (|#1| |#1|)) (-15 -2902 (|#1| |#1|)) (-15 -4120 (|#1| |#1|)) (-15 -4109 (|#1| |#1|)) (-15 -2869 (|#1| |#1|)) (-15 -2890 (|#1| |#1|)))
+((-2890 (($ $) 11)) (-2869 (($ $) 10)) (-4109 (($ $) 9)) (-4120 (($ $) 8)) (-2902 (($ $) 7)) (-2879 (($ $) 6)))
(((-499) (-141)) (T -499))
-((-2887 (*1 *1 *1) (-4 *1 (-499))) (-2866 (*1 *1 *1) (-4 *1 (-499))) (-4107 (*1 *1 *1) (-4 *1 (-499))) (-4117 (*1 *1 *1) (-4 *1 (-499))) (-2899 (*1 *1 *1) (-4 *1 (-499))) (-2876 (*1 *1 *1) (-4 *1 (-499))))
-(-13 (-10 -8 (-15 -2876 ($ $)) (-15 -2899 ($ $)) (-15 -4117 ($ $)) (-15 -4107 ($ $)) (-15 -2866 ($ $)) (-15 -2887 ($ $))))
-((-3801 (((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|)) 54)))
-(((-500 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3801 ((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|)))) (-368) (-1253 |#1|) (-13 (-368) (-148) (-730 |#1| |#2|)) (-1253 |#3|)) (T -500))
-((-3801 (*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 -3801 ((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|))))
-((-2558 (((-112) $ $) NIL)) (-2523 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-4045 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-3467 (((-112) $) 39)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-2400 (((-112) $ $) 73)) (-3684 (((-650 (-618 $)) $) 50)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4335 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3814 (($ $) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-1538 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-1979 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4380 (((-3 (-618 $) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3216 (((-618 $) $) NIL) (((-570) $) NIL) (((-413 (-570)) $) 55)) (-2506 (($ $ $) NIL)) (-4196 (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2415 (-695 (-413 (-570)))) (|:| |vec| (-1277 (-413 (-570))))) (-695 $) (-1277 $)) NIL) (((-695 (-413 (-570))) (-695 $)) NIL)) (-3624 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-2481 (($ $) NIL) (($ (-650 $)) NIL)) (-2856 (((-650 (-115)) $) NIL)) (-3756 (((-115) (-115)) NIL)) (-4346 (((-112) $) 42)) (-2110 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4399 (((-1134 (-570) (-618 $)) $) 37)) (-2923 (($ $ (-570)) NIL)) (-2959 (((-1182 $) (-1182 $) (-618 $)) 87) (((-1182 $) (-1182 $) (-650 (-618 $))) 62) (($ $ (-618 $)) 76) (($ $ (-650 (-618 $))) 77)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4032 (((-1182 $) (-618 $)) 74 (|has| $ (-1058)))) (-1356 (($ (-1 $ $) (-618 $)) NIL)) (-4143 (((-3 (-618 $) "failed") $) NIL)) (-1899 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3748 (((-650 (-618 $)) $) NIL)) (-1365 (($ (-115) $) NIL) (($ (-115) (-650 $)) NIL)) (-3190 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1877 (($ $) NIL)) (-1444 (((-777) $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ (-650 $)) NIL) (($ $ $) NIL)) (-2603 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3273 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1770 (($ $ (-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)) (-2142 (((-777) $) NIL)) (-1941 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3444 (($ $) NIL) (($ $ $) NIL)) (-3547 (($ $ (-777)) NIL) (($ $) 36)) (-4413 (((-1134 (-570) (-618 $)) $) 20)) (-2755 (($ $) NIL (|has| $ (-1058)))) (-1425 (((-384) $) 101) (((-227) $) 109) (((-171 (-384)) $) 117)) (-3799 (((-868) $) NIL) (($ (-618 $)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-1134 (-570) (-618 $))) 21)) (-3499 (((-777)) NIL T CONST)) (-4244 (($ $) NIL) (($ (-650 $)) NIL)) (-1388 (((-112) (-115)) 93)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) 10 T CONST)) (-1875 (($) 22 T CONST)) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3022 (((-112) $ $) 24)) (-3122 (($ $ $) 44)) (-3111 (($ $ $) NIL) (($ $) NIL)) (-3101 (($ $ $) 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 -3799 ($ (-1134 (-570) (-618 $)))) (-15 -4399 ((-1134 (-570) (-618 $)) $)) (-15 -4413 ((-1134 (-570) (-618 $)) $)) (-15 -3624 ($ $)) (-15 -2400 ((-112) $ $)) (-15 -2959 ((-1182 $) (-1182 $) (-618 $))) (-15 -2959 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2959 ($ $ (-618 $))) (-15 -2959 ($ $ (-650 (-618 $))))))) (T -501))
-((-3799 (*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)))) (-3624 (*1 *1 *1) (-5 *1 (-501))) (-2400 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-501)))) (-2959 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-618 (-501))) (-5 *1 (-501)))) (-2959 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-650 (-618 (-501)))) (-5 *1 (-501)))) (-2959 (*1 *1 *1 *2) (-12 (-5 *2 (-618 (-501))) (-5 *1 (-501)))) (-2959 (*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 -3799 ($ (-1134 (-570) (-618 $)))) (-15 -4399 ((-1134 (-570) (-618 $)) $)) (-15 -4413 ((-1134 (-570) (-618 $)) $)) (-15 -3624 ($ $)) (-15 -2400 ((-112) $ $)) (-15 -2959 ((-1182 $) (-1182 $) (-618 $))) (-15 -2959 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -2959 ($ $ (-618 $))) (-15 -2959 ($ $ (-650 (-618 $))))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) |#1|) 44 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) 39 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 38)) (-4027 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4291 (($ (-777) |#1|) 21)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) 17 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) 41 (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 29 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 32) (($ (-1 |#1| |#1| |#1|) $ $) 35)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) NIL (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) 15 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 19)) (-1941 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 43) (($ $ (-1244 (-570))) NIL)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 24)) (-2584 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2569 (((-777) $) 11 (|has| $ (-6 -4449)))))
+((-2890 (*1 *1 *1) (-4 *1 (-499))) (-2869 (*1 *1 *1) (-4 *1 (-499))) (-4109 (*1 *1 *1) (-4 *1 (-499))) (-4120 (*1 *1 *1) (-4 *1 (-499))) (-2902 (*1 *1 *1) (-4 *1 (-499))) (-2879 (*1 *1 *1) (-4 *1 (-499))))
+(-13 (-10 -8 (-15 -2879 ($ $)) (-15 -2902 ($ $)) (-15 -4120 ($ $)) (-15 -4109 ($ $)) (-15 -2869 ($ $)) (-15 -2890 ($ $))))
+((-3804 (((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|)) 54)))
+(((-500 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3804 ((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|)))) (-368) (-1253 |#1|) (-13 (-368) (-148) (-730 |#1| |#2|)) (-1253 |#3|)) (T -500))
+((-3804 (*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 -3804 ((-424 |#4|) |#4| (-1 (-424 |#2|) |#2|))))
+((-2560 (((-112) $ $) NIL)) (-1626 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-4316 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-3721 (((-112) $) 39)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2861 (((-112) $ $) 73)) (-3687 (((-650 (-618 $)) $) 50)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4338 (($ $ (-298 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-650 (-618 $)) (-650 $)) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3817 (($ $) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2126 (((-650 $) (-1182 $) (-1186)) NIL) (((-650 $) (-1182 $)) NIL) (((-650 $) (-959 $)) NIL)) (-3896 (($ (-1182 $) (-1186)) NIL) (($ (-1182 $)) NIL) (($ (-959 $)) NIL)) (-4383 (((-3 (-618 $) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL)) (-3220 (((-618 $) $) NIL) (((-570) $) NIL) (((-413 (-570)) $) 55)) (-2504 (($ $ $) NIL)) (-2179 (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2990 (-695 (-413 (-570)))) (|:| |vec| (-1277 (-413 (-570))))) (-695 $) (-1277 $)) NIL) (((-695 (-413 (-570))) (-695 $)) NIL)) (-3627 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2486 (($ $) NIL) (($ (-650 $)) NIL)) (-1705 (((-650 (-115)) $) NIL)) (-3759 (((-115) (-115)) NIL)) (-4139 (((-112) $) 42)) (-2888 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-4402 (((-1134 (-570) (-618 $)) $) 37)) (-2252 (($ $ (-570)) NIL)) (-4399 (((-1182 $) (-1182 $) (-618 $)) 87) (((-1182 $) (-1182 $) (-650 (-618 $))) 62) (($ $ (-618 $)) 76) (($ $ (-650 (-618 $))) 77)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4189 (((-1182 $) (-618 $)) 74 (|has| $ (-1058)))) (-1357 (($ (-1 $ $) (-618 $)) NIL)) (-2907 (((-3 (-618 $) "failed") $) NIL)) (-1901 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3751 (((-650 (-618 $)) $) NIL)) (-1366 (($ (-115) $) NIL) (($ (-115) (-650 $)) NIL)) (-3006 (((-112) $ (-115)) NIL) (((-112) $ (-1186)) NIL)) (-1878 (($ $) NIL)) (-1445 (((-777) $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4224 (((-112) $ $) NIL) (((-112) $ (-1186)) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4418 (((-112) $) NIL (|has| $ (-1047 (-570))))) (-1771 (($ $ (-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)) (-2006 (((-777) $) NIL)) (-1942 (($ (-115) $) NIL) (($ (-115) $ $) NIL) (($ (-115) $ $ $) NIL) (($ (-115) $ $ $ $) NIL) (($ (-115) (-650 $)) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3515 (($ $) NIL) (($ $ $) NIL)) (-3550 (($ $ (-777)) NIL) (($ $) 36)) (-4416 (((-1134 (-570) (-618 $)) $) 20)) (-2075 (($ $) NIL (|has| $ (-1058)))) (-1426 (((-384) $) 101) (((-227) $) 109) (((-171 (-384)) $) 117)) (-3802 (((-868) $) NIL) (($ (-618 $)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ (-570)) NIL) (($ (-1134 (-570) (-618 $))) 21)) (-2851 (((-777)) NIL T CONST)) (-4246 (($ $) NIL) (($ (-650 $)) NIL)) (-3200 (((-112) (-115)) 93)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) 10 T CONST)) (-1876 (($) 22 T CONST)) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3025 (((-112) $ $) 24)) (-3125 (($ $ $) 44)) (-3114 (($ $ $) NIL) (($ $) NIL)) (-3104 (($ $ $) 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 -3802 ($ (-1134 (-570) (-618 $)))) (-15 -4402 ((-1134 (-570) (-618 $)) $)) (-15 -4416 ((-1134 (-570) (-618 $)) $)) (-15 -3627 ($ $)) (-15 -2861 ((-112) $ $)) (-15 -4399 ((-1182 $) (-1182 $) (-618 $))) (-15 -4399 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -4399 ($ $ (-618 $))) (-15 -4399 ($ $ (-650 (-618 $))))))) (T -501))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-4402 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-4416 (*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-501)))) (-5 *1 (-501)))) (-3627 (*1 *1 *1) (-5 *1 (-501))) (-2861 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-501)))) (-4399 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-618 (-501))) (-5 *1 (-501)))) (-4399 (*1 *2 *2 *3) (-12 (-5 *2 (-1182 (-501))) (-5 *3 (-650 (-618 (-501)))) (-5 *1 (-501)))) (-4399 (*1 *1 *1 *2) (-12 (-5 *2 (-618 (-501))) (-5 *1 (-501)))) (-4399 (*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 -3802 ($ (-1134 (-570) (-618 $)))) (-15 -4402 ((-1134 (-570) (-618 $)) $)) (-15 -4416 ((-1134 (-570) (-618 $)) $)) (-15 -3627 ($ $)) (-15 -2861 ((-112) $ $)) (-15 -4399 ((-1182 $) (-1182 $) (-618 $))) (-15 -4399 ((-1182 $) (-1182 $) (-650 (-618 $)))) (-15 -4399 ($ $ (-618 $))) (-15 -4399 ($ $ (-650 (-618 $))))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) |#1|) 44 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) 39 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 38)) (-4029 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-4294 (($ (-777) |#1|) 21)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) 17 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) 41 (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 29 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 32) (($ (-1 |#1| |#1| |#1|) $ $) 35)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) NIL (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) 15 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 19)) (-1942 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 43) (($ $ (-1244 (-570))) NIL)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 24)) (-2585 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2570 (((-777) $) 11 (|has| $ (-6 -4452)))))
(((-502 |#1| |#2|) (-19 |#1|) (-1227) (-570)) (T -502))
NIL
(-19 |#1|)
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) (-570) |#1|) NIL)) (-4419 (($ $ (-570) (-502 |#1| |#3|)) NIL)) (-2361 (($ $ (-570) (-502 |#1| |#2|)) NIL)) (-1705 (($) NIL T CONST)) (-2219 (((-502 |#1| |#3|) $ (-570)) NIL)) (-1517 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3820 ((|#1| $ (-570) (-570)) NIL)) (-3627 (((-650 |#1|) $) NIL)) (-3316 (((-777) $) NIL)) (-4291 (($ (-777) (-777) |#1|) NIL)) (-3328 (((-777) $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-4133 (((-570) $) NIL)) (-2877 (((-570) $) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1552 (((-570) $) NIL)) (-1732 (((-570) $) NIL)) (-1502 (($ (-1 |#1| |#1|) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2147 (($ $ |#1|) NIL)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-1508 (((-502 |#1| |#2|) $ (-570)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3605 (($ $ (-570) (-502 |#1| |#3|)) NIL)) (-3650 (($ $ (-570) (-502 |#1| |#2|)) NIL)) (-3195 (($) NIL T CONST)) (-1494 (((-502 |#1| |#3|) $ (-570)) NIL)) (-1518 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3824 ((|#1| $ (-570) (-570)) NIL)) (-3630 (((-650 |#1|) $) NIL)) (-3318 (((-777) $) NIL)) (-4294 (($ (-777) (-777) |#1|) NIL)) (-3330 (((-777) $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2822 (((-570) $) NIL)) (-1943 (((-570) $) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2278 (((-570) $) NIL)) (-3461 (((-570) $) NIL)) (-1503 (($ (-1 |#1| |#1|) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2061 (($ $ |#1|) NIL)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3057 (((-502 |#1| |#2|) $ (-570)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-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|))
-((-4179 (((-650 (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777)) 32)) (-3540 (((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777)) 43)) (-3548 (((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777)) 107)))
-(((-504 |#1| |#2| |#3|) (-10 -7 (-15 -3540 ((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777))) (-15 -4179 ((-650 (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777))) (-15 -3548 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777)))) (-354) (-1253 |#1|) (-1253 |#2|)) (T -504))
-((-3548 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-2 (|:| -1972 (-695 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-695 *7))))) (-5 *5 (-777)) (-4 *8 (-1253 *7)) (-4 *7 (-1253 *6)) (-4 *6 (-354)) (-5 *2 (-2 (|:| -1972 (-695 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-695 *7)))) (-5 *1 (-504 *6 *7 *8)))) (-4179 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-4 *5 (-354)) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -1972 (-695 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-695 *6))))) (-5 *1 (-504 *5 *6 *7)) (-5 *3 (-2 (|:| -1972 (-695 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-695 *6)))) (-4 *7 (-1253 *6)))) (-3540 (*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 -3540 ((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777))) (-15 -4179 ((-650 (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777))) (-15 -3548 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777))))
-((-1707 (((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))) 70)) (-1917 ((|#1| (-695 |#1|) |#1| (-777)) 24)) (-2425 (((-777) (-777) (-777)) 34)) (-4227 (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 50)) (-3975 (((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|) 58) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 55)) (-2348 ((|#1| (-695 |#1|) (-695 |#1|) |#1| (-570)) 28)) (-1789 ((|#1| (-695 |#1|)) 18)))
-(((-505 |#1| |#2| |#3|) (-10 -7 (-15 -1789 (|#1| (-695 |#1|))) (-15 -1917 (|#1| (-695 |#1|) |#1| (-777))) (-15 -2348 (|#1| (-695 |#1|) (-695 |#1|) |#1| (-570))) (-15 -2425 ((-777) (-777) (-777))) (-15 -3975 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3975 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -4227 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1707 ((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))))) (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $)))) (-1253 |#1|) (-415 |#1| |#2|)) (T -505))
-((-1707 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -1972 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-4227 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3975 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3975 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2425 (*1 *2 *2 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2348 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-695 *2)) (-5 *4 (-570)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))) (-1917 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-695 *2)) (-5 *4 (-777)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))) (-1789 (*1 *2 *3) (-12 (-5 *3 (-695 *2)) (-4 *4 (-1253 *2)) (-4 *2 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $))))) (-5 *1 (-505 *2 *4 *5)) (-4 *5 (-415 *2 *4)))))
-(-10 -7 (-15 -1789 (|#1| (-695 |#1|))) (-15 -1917 (|#1| (-695 |#1|) |#1| (-777))) (-15 -2348 (|#1| (-695 |#1|) (-695 |#1|) |#1| (-570))) (-15 -2425 ((-777) (-777) (-777))) (-15 -3975 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3975 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -4227 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1707 ((-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -1972 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))))
-((-2558 (((-112) $ $) NIL)) (-2579 (($ $) NIL)) (-1837 (($ $ $) 40)) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) $) NIL (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-4004 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-112) (-856)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4450)))) (-3393 (($ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-3932 (((-112) $ (-1244 (-570)) (-112)) NIL (|has| $ (-6 -4450))) (((-112) $ (-570) (-112)) 42 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-1741 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3624 (((-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))))) (-1517 (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4450)))) (-3820 (((-112) $ (-570)) NIL)) (-4027 (((-570) (-112) $ (-570)) NIL (|has| (-112) (-1109))) (((-570) (-112) $) NIL (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) NIL)) (-3627 (((-650 (-112)) $) NIL (|has| $ (-6 -4449)))) (-1823 (($ $ $) 38)) (-1795 (($ $) NIL)) (-2783 (($ $ $) NIL)) (-4291 (($ (-777) (-112)) 27)) (-1881 (($ $ $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) 8 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL)) (-2024 (($ $ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2752 (((-650 (-112)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL)) (-1502 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-112) (-112) (-112)) $ $) 35) (($ (-1 (-112) (-112)) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-4290 (($ $ $ (-570)) NIL) (($ (-112) $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-112) $) NIL (|has| (-570) (-856)))) (-1790 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2147 (($ $ (-112)) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109))))) (-3700 (((-650 (-112)) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 28)) (-1941 (($ $ (-1244 (-570))) NIL) (((-112) $ (-570)) 22) (((-112) $ (-570) (-112)) NIL)) (-4326 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3584 (((-777) (-112) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-112) (-1109)))) (((-777) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) 29)) (-1425 (((-542) $) NIL (|has| (-112) (-620 (-542))))) (-3811 (($ (-650 (-112))) NIL)) (-2584 (($ (-650 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3799 (((-868) $) 26)) (-2335 (((-112) $ $) NIL)) (-4371 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4449)))) (-1809 (($ $ $) 36)) (-4420 (($ $ $) NIL)) (-3537 (($ $ $) 45)) (-3549 (($ $) 43)) (-3525 (($ $ $) 44)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 30)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 31)) (-4407 (($ $ $) NIL)) (-2569 (((-777) $) 13 (|has| $ (-6 -4449)))))
-(((-506 |#1|) (-13 (-124) (-10 -8 (-15 -3549 ($ $)) (-15 -3537 ($ $ $)) (-15 -3525 ($ $ $)))) (-570)) (T -506))
-((-3549 (*1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))) (-3537 (*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))) (-3525 (*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))))
-(-13 (-124) (-10 -8 (-15 -3549 ($ $)) (-15 -3537 ($ $ $)) (-15 -3525 ($ $ $))))
-((-3168 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|)) 35)) (-4220 (((-1182 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1182 |#4|)) 22)) (-3960 (((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|))) 46)) (-3693 (((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|) 55)))
-(((-507 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4220 (|#2| (-1 |#1| |#4|) (-1182 |#4|))) (-15 -4220 ((-1182 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3168 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|))) (-15 -3960 ((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|)))) (-15 -3693 ((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|))) (-1058) (-1253 |#1|) (-1253 |#2|) (-1058)) (T -507))
-((-3693 (*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)))) (-3960 (*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)))) (-3168 (*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)))) (-4220 (*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)))) (-4220 (*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 -4220 (|#2| (-1 |#1| |#4|) (-1182 |#4|))) (-15 -4220 ((-1182 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -3168 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|))) (-15 -3960 ((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|)))) (-15 -3693 ((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|)))
-((-2558 (((-112) $ $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2176 (((-1282) $) 25)) (-1941 (((-1168) $ (-1186)) 30)) (-4147 (((-1282) $) 17)) (-3799 (((-868) $) 27) (($ (-1168)) 26)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 11)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 9)))
-(((-508) (-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $)) (-15 -3799 ($ (-1168)))))) (T -508))
-((-1941 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1168)) (-5 *1 (-508)))) (-4147 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))) (-2176 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-508)))))
-(-13 (-856) (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $)) (-15 -2176 ((-1282) $)) (-15 -3799 ($ (-1168)))))
-((-3644 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-2171 ((|#1| |#4|) 10)) (-1916 ((|#3| |#4|) 17)))
-(((-509 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2171 (|#1| |#4|)) (-15 -1916 (|#3| |#4|)) (-15 -3644 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-562) (-1001 |#1|) (-378 |#1|) (-378 |#2|)) (T -509))
-((-3644 (*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)))) (-1916 (*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)))) (-2171 (*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 -2171 (|#1| |#4|)) (-15 -1916 (|#3| |#4|)) (-15 -3644 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
-((-2558 (((-112) $ $) NIL)) (-3776 (((-112) $ (-650 |#3|)) 124) (((-112) $) 125)) (-3467 (((-112) $) 176)) (-2589 (($ $ |#4|) 115) (($ $ |#4| (-650 |#3|)) 119)) (-3278 (((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|)) 169 (|has| |#3| (-620 (-1186))))) (-2573 (($ $ $) 105) (($ $ |#4|) 103)) (-4346 (((-112) $) 175)) (-2043 (($ $) 129)) (-1988 (((-1168) $) NIL)) (-2730 (($ $ $) 97) (($ (-650 $)) 99)) (-2204 (((-112) |#4| $) 127)) (-4036 (((-112) $ $) 82)) (-2956 (($ (-650 |#4|)) 104)) (-3577 (((-1129) $) NIL)) (-3232 (($ (-650 |#4|)) 173)) (-1891 (((-112) $) 174)) (-1857 (($ $) 85)) (-3866 (((-650 |#4|) $) 73)) (-3389 (((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|)) NIL)) (-3786 (((-112) |#4| $) 89)) (-2951 (((-570) $ (-650 |#3|)) 131) (((-570) $) 132)) (-3799 (((-868) $) 172) (($ (-650 |#4|)) 100)) (-2335 (((-112) $ $) NIL)) (-1382 (($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $))) NIL)) (-3022 (((-112) $ $) 84)) (-3101 (($ $ $) 107)) (** (($ $ (-777)) 113)) (* (($ $ $) 111)))
-(((-510 |#1| |#2| |#3| |#4|) (-13 (-1109) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 -3101 ($ $ $)) (-15 -4346 ((-112) $)) (-15 -3467 ((-112) $)) (-15 -3786 ((-112) |#4| $)) (-15 -4036 ((-112) $ $)) (-15 -2204 ((-112) |#4| $)) (-15 -3776 ((-112) $ (-650 |#3|))) (-15 -3776 ((-112) $)) (-15 -2730 ($ $ $)) (-15 -2730 ($ (-650 $))) (-15 -2573 ($ $ $)) (-15 -2573 ($ $ |#4|)) (-15 -1857 ($ $)) (-15 -3389 ((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|))) (-15 -1382 ($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)))) (-15 -2951 ((-570) $ (-650 |#3|))) (-15 -2951 ((-570) $)) (-15 -2043 ($ $)) (-15 -2956 ($ (-650 |#4|))) (-15 -3232 ($ (-650 |#4|))) (-15 -1891 ((-112) $)) (-15 -3866 ((-650 |#4|) $)) (-15 -3799 ($ (-650 |#4|))) (-15 -2589 ($ $ |#4|)) (-15 -2589 ($ $ |#4| (-650 |#3|))) (IF (|has| |#3| (-620 (-1186))) (-15 -3278 ((-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)))) (-3101 (*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)))) (-4346 (*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)))) (-3467 (*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)))) (-3786 (*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)))) (-4036 (*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)))) (-2204 (*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)))) (-3776 (*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)))) (-3776 (*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)))) (-2730 (*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)))) (-2730 (*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)))) (-2573 (*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)))) (-2573 (*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)))) (-1857 (*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 *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)))) (-1382 (*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)))) (-2951 (*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)))) (-2951 (*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)))) (-2043 (*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)))) (-2956 (*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)))) (-3232 (*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)))) (-1891 (*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)))) (-3866 (*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)))) (-3799 (*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)))) (-2589 (*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)))) (-2589 (*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)))) (-3278 (*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 -3101 ($ $ $)) (-15 -4346 ((-112) $)) (-15 -3467 ((-112) $)) (-15 -3786 ((-112) |#4| $)) (-15 -4036 ((-112) $ $)) (-15 -2204 ((-112) |#4| $)) (-15 -3776 ((-112) $ (-650 |#3|))) (-15 -3776 ((-112) $)) (-15 -2730 ($ $ $)) (-15 -2730 ($ (-650 $))) (-15 -2573 ($ $ $)) (-15 -2573 ($ $ |#4|)) (-15 -1857 ($ $)) (-15 -3389 ((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|))) (-15 -1382 ($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)))) (-15 -2951 ((-570) $ (-650 |#3|))) (-15 -2951 ((-570) $)) (-15 -2043 ($ $)) (-15 -2956 ($ (-650 |#4|))) (-15 -3232 ($ (-650 |#4|))) (-15 -1891 ((-112) $)) (-15 -3866 ((-650 |#4|) $)) (-15 -3799 ($ (-650 |#4|))) (-15 -2589 ($ $ |#4|)) (-15 -2589 ($ $ |#4| (-650 |#3|))) (IF (|has| |#3| (-620 (-1186))) (-15 -3278 ((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|))) |%noBranch|)))
-((-3609 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 176)) (-4310 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 177)) (-3572 (((-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)) (-3618 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) NIL)) (-3124 (((-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)) (-1345 (((-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 -3609 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -4310 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3618 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3572 ((-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 -3124 ((-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 -1345 ((-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))
-((-1345 (*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)))) (-3124 (*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))))))) (-3572 (*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)))) (-3618 (*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)))) (-4310 (*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)))) (-3609 (*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 -3609 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -4310 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3618 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3572 ((-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 -3124 ((-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 -1345 ((-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|)))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1947 (($) 6)) (-3799 (((-868) $) 12) (((-1186) $) 10)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 8)))
-(((-512) (-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -1947 ($))))) (T -512))
-((-1947 (*1 *1) (-5 *1 (-512))))
-(-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -1947 ($))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-3912 (($ |#1| |#2|) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-4038 ((|#2| $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 12 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) 11) (($ $ $) 35)) (-3101 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 21)))
+((-3181 (((-650 (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777)) 32)) (-2013 (((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777)) 43)) (-2078 (((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777)) 107)))
+(((-504 |#1| |#2| |#3|) (-10 -7 (-15 -2013 ((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777))) (-15 -3181 ((-650 (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777))) (-15 -2078 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777)))) (-354) (-1253 |#1|) (-1253 |#2|)) (T -504))
+((-2078 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 *8)) (-5 *4 (-650 (-2 (|:| -3827 (-695 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-695 *7))))) (-5 *5 (-777)) (-4 *8 (-1253 *7)) (-4 *7 (-1253 *6)) (-4 *6 (-354)) (-5 *2 (-2 (|:| -3827 (-695 *7)) (|:| |basisDen| *7) (|:| |basisInv| (-695 *7)))) (-5 *1 (-504 *6 *7 *8)))) (-3181 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-777)) (-4 *5 (-354)) (-4 *6 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -3827 (-695 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-695 *6))))) (-5 *1 (-504 *5 *6 *7)) (-5 *3 (-2 (|:| -3827 (-695 *6)) (|:| |basisDen| *6) (|:| |basisInv| (-695 *6)))) (-4 *7 (-1253 *6)))) (-2013 (*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 -2013 ((-650 (-1182 |#1|)) |#1| (-777) (-777) (-777))) (-15 -3181 ((-650 (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-777) (-777))) (-15 -2078 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) (-650 |#3|) (-650 (-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) (-777))))
+((-3204 (((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))) 70)) (-1402 ((|#1| (-695 |#1|) |#1| (-777)) 24)) (-3093 (((-777) (-777) (-777)) 34)) (-2466 (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 50)) (-1798 (((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|) 58) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 55)) (-3504 ((|#1| (-695 |#1|) (-695 |#1|) |#1| (-570)) 28)) (-2760 ((|#1| (-695 |#1|)) 18)))
+(((-505 |#1| |#2| |#3|) (-10 -7 (-15 -2760 (|#1| (-695 |#1|))) (-15 -1402 (|#1| (-695 |#1|) |#1| (-777))) (-15 -3504 (|#1| (-695 |#1|) (-695 |#1|) |#1| (-570))) (-15 -3093 ((-777) (-777) (-777))) (-15 -1798 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1798 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -2466 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3204 ((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|)))))) (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $)))) (-1253 |#1|) (-415 |#1| |#2|)) (T -505))
+((-3204 (*1 *2 *2 *2) (-12 (-5 *2 (-2 (|:| -3827 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2466 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-1798 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-1798 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3093 (*1 *2 *2 *2) (-12 (-5 *2 (-777)) (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3504 (*1 *2 *3 *3 *2 *4) (-12 (-5 *3 (-695 *2)) (-5 *4 (-570)) (-4 *2 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))) (-1402 (*1 *2 *3 *2 *4) (-12 (-5 *3 (-695 *2)) (-5 *4 (-777)) (-4 *2 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))) (-2760 (*1 *2 *3) (-12 (-5 *3 (-695 *2)) (-4 *4 (-1253 *2)) (-4 *2 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $))))) (-5 *1 (-505 *2 *4 *5)) (-4 *5 (-415 *2 *4)))))
+(-10 -7 (-15 -2760 (|#1| (-695 |#1|))) (-15 -1402 (|#1| (-695 |#1|) |#1| (-777))) (-15 -3504 (|#1| (-695 |#1|) (-695 |#1|) |#1| (-570))) (-15 -3093 ((-777) (-777) (-777))) (-15 -1798 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1798 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -2466 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3204 ((-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))) (-2 (|:| -3827 (-695 |#1|)) (|:| |basisDen| |#1|) (|:| |basisInv| (-695 |#1|))))))
+((-2560 (((-112) $ $) NIL)) (-2580 (($ $) NIL)) (-1837 (($ $ $) 40)) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) $) NIL (|has| (-112) (-856))) (((-112) (-1 (-112) (-112) (-112)) $) NIL)) (-3936 (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| (-112) (-856)))) (($ (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4453)))) (-3396 (($ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3935 (((-112) $ (-1244 (-570)) (-112)) NIL (|has| $ (-6 -4453))) (((-112) $ (-570) (-112)) 42 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-1742 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452))) (($ (-112) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-3627 (((-112) (-1 (-112) (-112) (-112)) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-112) (-112)) $ (-112)) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-112) (-112)) $ (-112) (-112)) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-1518 (((-112) $ (-570) (-112)) NIL (|has| $ (-6 -4453)))) (-3824 (((-112) $ (-570)) NIL)) (-4029 (((-570) (-112) $ (-570)) NIL (|has| (-112) (-1109))) (((-570) (-112) $) NIL (|has| (-112) (-1109))) (((-570) (-1 (-112) (-112)) $) NIL)) (-3630 (((-650 (-112)) $) NIL (|has| $ (-6 -4452)))) (-1824 (($ $ $) 38)) (-1796 (($ $) NIL)) (-2334 (($ $ $) NIL)) (-4294 (($ (-777) (-112)) 27)) (-2367 (($ $ $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) 8 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL)) (-3183 (($ $ $) NIL (|has| (-112) (-856))) (($ (-1 (-112) (-112) (-112)) $ $) NIL)) (-2052 (((-650 (-112)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL)) (-1503 (($ (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-112) (-112) (-112)) $ $) 35) (($ (-1 (-112) (-112)) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-4293 (($ $ $ (-570)) NIL) (($ (-112) $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-112) $) NIL (|has| (-570) (-856)))) (-2770 (((-3 (-112) "failed") (-1 (-112) (-112)) $) NIL)) (-2061 (($ $ (-112)) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) (-112) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109))))) (-4049 (((-650 (-112)) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 28)) (-1942 (($ $ (-1244 (-570))) NIL) (((-112) $ (-570)) 22) (((-112) $ (-570) (-112)) NIL)) (-4330 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3587 (((-777) (-112) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-112) (-1109)))) (((-777) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452)))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) 29)) (-1426 (((-542) $) NIL (|has| (-112) (-620 (-542))))) (-3814 (($ (-650 (-112))) NIL)) (-2585 (($ (-650 $)) NIL) (($ $ $) NIL) (($ (-112) $) NIL) (($ $ (-112)) NIL)) (-3802 (((-868) $) 26)) (-3359 (((-112) $ $) NIL)) (-4379 (((-112) (-1 (-112) (-112)) $) NIL (|has| $ (-6 -4452)))) (-1810 (($ $ $) 36)) (-4423 (($ $ $) NIL)) (-3540 (($ $ $) 45)) (-3552 (($ $) 43)) (-3528 (($ $ $) 44)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 30)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 31)) (-4410 (($ $ $) NIL)) (-2570 (((-777) $) 13 (|has| $ (-6 -4452)))))
+(((-506 |#1|) (-13 (-124) (-10 -8 (-15 -3552 ($ $)) (-15 -3540 ($ $ $)) (-15 -3528 ($ $ $)))) (-570)) (T -506))
+((-3552 (*1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))) (-3540 (*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))) (-3528 (*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570)))))
+(-13 (-124) (-10 -8 (-15 -3552 ($ $)) (-15 -3540 ($ $ $)) (-15 -3528 ($ $ $))))
+((-2812 (((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|)) 35)) (-2392 (((-1182 |#4|) (-1 |#4| |#1|) |#2|) 31) ((|#2| (-1 |#1| |#4|) (-1182 |#4|)) 22)) (-1608 (((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|))) 46)) (-3991 (((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|) 55)))
+(((-507 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2392 (|#2| (-1 |#1| |#4|) (-1182 |#4|))) (-15 -2392 ((-1182 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2812 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|))) (-15 -1608 ((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|)))) (-15 -3991 ((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|))) (-1058) (-1253 |#1|) (-1253 |#2|) (-1058)) (T -507))
+((-3991 (*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)))) (-1608 (*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)))) (-2812 (*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)))) (-2392 (*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)))) (-2392 (*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 -2392 (|#2| (-1 |#1| |#4|) (-1182 |#4|))) (-15 -2392 ((-1182 |#4|) (-1 |#4| |#1|) |#2|)) (-15 -2812 ((-3 |#2| "failed") (-1 (-3 |#1| "failed") |#4|) (-1182 |#4|))) (-15 -1608 ((-3 (-695 |#2|) "failed") (-1 (-3 |#1| "failed") |#4|) (-695 (-1182 |#4|)))) (-15 -3991 ((-1182 (-1182 |#4|)) (-1 |#4| |#1|) |#3|)))
+((-2560 (((-112) $ $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2353 (((-1282) $) 25)) (-1942 (((-1168) $ (-1186)) 30)) (-4150 (((-1282) $) 17)) (-3802 (((-868) $) 27) (($ (-1168)) 26)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 11)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 9)))
+(((-508) (-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $)) (-15 -3802 ($ (-1168)))))) (T -508))
+((-1942 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1168)) (-5 *1 (-508)))) (-4150 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))) (-2353 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-508)))))
+(-13 (-856) (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $)) (-15 -2353 ((-1282) $)) (-15 -3802 ($ (-1168)))))
+((-1650 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|) 19)) (-2302 ((|#1| |#4|) 10)) (-1391 ((|#3| |#4|) 17)))
+(((-509 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2302 (|#1| |#4|)) (-15 -1391 (|#3| |#4|)) (-15 -1650 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|))) (-562) (-1001 |#1|) (-378 |#1|) (-378 |#2|)) (T -509))
+((-1650 (*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)))) (-1391 (*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)))) (-2302 (*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 -2302 (|#1| |#4|)) (-15 -1391 (|#3| |#4|)) (-15 -1650 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#4|)))
+((-2560 (((-112) $ $) NIL)) (-3579 (((-112) $ (-650 |#3|)) 124) (((-112) $) 125)) (-3721 (((-112) $) 176)) (-4085 (($ $ |#4|) 115) (($ $ |#4| (-650 |#3|)) 119)) (-1341 (((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|)) 169 (|has| |#3| (-620 (-1186))))) (-3959 (($ $ $) 105) (($ $ |#4|) 103)) (-4139 (((-112) $) 175)) (-3363 (($ $) 129)) (-3989 (((-1168) $) NIL)) (-3051 (($ $ $) 97) (($ (-650 $)) 99)) (-4429 (((-112) |#4| $) 127)) (-4221 (((-112) $ $) 82)) (-4366 (($ (-650 |#4|)) 104)) (-3580 (((-1129) $) NIL)) (-2203 (($ (-650 |#4|)) 173)) (-2463 (((-112) $) 174)) (-2154 (($ $) 85)) (-3154 (((-650 |#4|) $) 73)) (-4208 (((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|)) NIL)) (-3678 (((-112) |#4| $) 89)) (-2517 (((-570) $ (-650 |#3|)) 131) (((-570) $) 132)) (-3802 (((-868) $) 172) (($ (-650 |#4|)) 100)) (-3359 (((-112) $ $) NIL)) (-3116 (($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $))) NIL)) (-3025 (((-112) $ $) 84)) (-3104 (($ $ $) 107)) (** (($ $ (-777)) 113)) (* (($ $ $) 111)))
+(((-510 |#1| |#2| |#3| |#4|) (-13 (-1109) (-10 -7 (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 -3104 ($ $ $)) (-15 -4139 ((-112) $)) (-15 -3721 ((-112) $)) (-15 -3678 ((-112) |#4| $)) (-15 -4221 ((-112) $ $)) (-15 -4429 ((-112) |#4| $)) (-15 -3579 ((-112) $ (-650 |#3|))) (-15 -3579 ((-112) $)) (-15 -3051 ($ $ $)) (-15 -3051 ($ (-650 $))) (-15 -3959 ($ $ $)) (-15 -3959 ($ $ |#4|)) (-15 -2154 ($ $)) (-15 -4208 ((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|))) (-15 -3116 ($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)))) (-15 -2517 ((-570) $ (-650 |#3|))) (-15 -2517 ((-570) $)) (-15 -3363 ($ $)) (-15 -4366 ($ (-650 |#4|))) (-15 -2203 ($ (-650 |#4|))) (-15 -2463 ((-112) $)) (-15 -3154 ((-650 |#4|) $)) (-15 -3802 ($ (-650 |#4|))) (-15 -4085 ($ $ |#4|)) (-15 -4085 ($ $ |#4| (-650 |#3|))) (IF (|has| |#3| (-620 (-1186))) (-15 -1341 ((-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)))) (-3104 (*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)))) (-4139 (*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)))) (-3721 (*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)))) (-3678 (*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)))) (-4221 (*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)))) (-4429 (*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)))) (-3579 (*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)))) (-3579 (*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)))) (-3051 (*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)))) (-3051 (*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)))) (-3959 (*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)))) (-3959 (*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)))) (-2154 (*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)))) (-4208 (*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)))) (-3116 (*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)))) (-2517 (*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)))) (-2517 (*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)))) (-3363 (*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)))) (-4366 (*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)))) (-2203 (*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)))) (-2463 (*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)))) (-3154 (*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)))) (-3802 (*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)))) (-4085 (*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)))) (-4085 (*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)))) (-1341 (*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 -3104 ($ $ $)) (-15 -4139 ((-112) $)) (-15 -3721 ((-112) $)) (-15 -3678 ((-112) |#4| $)) (-15 -4221 ((-112) $ $)) (-15 -4429 ((-112) |#4| $)) (-15 -3579 ((-112) $ (-650 |#3|))) (-15 -3579 ((-112) $)) (-15 -3051 ($ $ $)) (-15 -3051 ($ (-650 $))) (-15 -3959 ($ $ $)) (-15 -3959 ($ $ |#4|)) (-15 -2154 ($ $)) (-15 -4208 ((-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)) $ (-650 |#3|))) (-15 -3116 ($ (-2 (|:| |mval| (-695 |#1|)) (|:| |invmval| (-695 |#1|)) (|:| |genIdeal| $)))) (-15 -2517 ((-570) $ (-650 |#3|))) (-15 -2517 ((-570) $)) (-15 -3363 ($ $)) (-15 -4366 ($ (-650 |#4|))) (-15 -2203 ($ (-650 |#4|))) (-15 -2463 ((-112) $)) (-15 -3154 ((-650 |#4|) $)) (-15 -3802 ($ (-650 |#4|))) (-15 -4085 ($ $ |#4|)) (-15 -4085 ($ $ |#4| (-650 |#3|))) (IF (|has| |#3| (-620 (-1186))) (-15 -1341 ((-1175 (-650 (-959 |#1|)) (-650 (-298 (-959 |#1|)))) (-650 |#4|))) |%noBranch|)))
+((-2589 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 176)) (-2003 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) 177)) (-3575 (((-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)) (-1336 (((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570))))) NIL)) (-3588 (((-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)) (-2005 (((-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 -2589 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -2003 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -1336 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3575 ((-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 -3588 ((-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 -2005 ((-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))
+((-2005 (*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)))) (-3588 (*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))))))) (-3575 (*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)))) (-1336 (*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)))) (-2003 (*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)))) (-2589 (*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 -2589 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -2003 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -1336 ((-112) (-510 (-413 (-570)) (-242 |#2| (-777)) (-870 |#1|) (-249 |#1| (-413 (-570)))))) (-15 -3575 ((-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 -3588 ((-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 -2005 ((-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|)))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1708 (($) 6)) (-3802 (((-868) $) 12) (((-1186) $) 10)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 8)))
+(((-512) (-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -1708 ($))))) (T -512))
+((-1708 (*1 *1) (-5 *1 (-512))))
+(-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -1708 ($))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-3915 (($ |#1| |#2|) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4240 ((|#2| $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 12 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) 11) (($ $ $) 35)) (-3104 (($ $ $) 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|))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 13)) (-1705 (($) NIL T CONST)) (-1956 (($ $) 41)) (-3912 (($ |#1| |#2|) 38)) (-1356 (($ (-1 |#1| |#1|) $) 40)) (-4038 ((|#2| $) NIL)) (-1927 ((|#1| $) 42)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 10 T CONST)) (-3022 (((-112) $ $) NIL)) (-3101 (($ $ $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 36)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 13)) (-3195 (($) NIL T CONST)) (-1954 (($ $) 41)) (-3915 (($ |#1| |#2|) 38)) (-1357 (($ (-1 |#1| |#1|) $) 40)) (-4240 ((|#2| $) NIL)) (-1928 ((|#1| $) 42)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 10 T CONST)) (-3025 (((-112) $ $) NIL)) (-3104 (($ $ $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 36)))
(((-514 |#1| |#2|) (-13 (-23) (-515 |#1| |#2|)) (-23) (-856)) (T -514))
NIL
(-13 (-23) (-515 |#1| |#2|))
-((-2558 (((-112) $ $) 7)) (-1956 (($ $) 14)) (-3912 (($ |#1| |#2|) 17)) (-1356 (($ (-1 |#1| |#1|) $) 18)) (-4038 ((|#2| $) 15)) (-1927 ((|#1| $) 16)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) 7)) (-1954 (($ $) 14)) (-3915 (($ |#1| |#2|) 17)) (-1357 (($ (-1 |#1| |#1|) $) 18)) (-4240 ((|#2| $) 15)) (-1928 ((|#1| $) 16)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-515 |#1| |#2|) (-141) (-1109) (-856)) (T -515))
-((-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-515 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-856)))) (-3912 (*1 *1 *2 *3) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856)))) (-1927 (*1 *2 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *3 (-856)) (-4 *2 (-1109)))) (-4038 (*1 *2 *1) (-12 (-4 *1 (-515 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-856)))) (-1956 (*1 *1 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856)))))
-(-13 (-1109) (-10 -8 (-15 -1356 ($ (-1 |t#1| |t#1|) $)) (-15 -3912 ($ |t#1| |t#2|)) (-15 -1927 (|t#1| $)) (-15 -4038 (|t#2| $)) (-15 -1956 ($ $))))
+((-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-515 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-856)))) (-3915 (*1 *1 *2 *3) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856)))) (-1928 (*1 *2 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *3 (-856)) (-4 *2 (-1109)))) (-4240 (*1 *2 *1) (-12 (-4 *1 (-515 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-856)))) (-1954 (*1 *1 *1) (-12 (-4 *1 (-515 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-856)))))
+(-13 (-1109) (-10 -8 (-15 -1357 ($ (-1 |t#1| |t#1|) $)) (-15 -3915 ($ |t#1| |t#2|)) (-15 -1928 (|t#1| $)) (-15 -4240 (|t#2| $)) (-15 -1954 ($ $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-3912 (($ |#1| |#2|) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-4038 ((|#2| $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 22)) (-3101 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-3915 (($ |#1| |#2|) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4240 ((|#2| $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 22)) (-3104 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
(((-516 |#1| |#2|) (-13 (-798) (-515 |#1| |#2|)) (-798) (-856)) (T -516))
NIL
(-13 (-798) (-515 |#1| |#2|))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3744 (($ $ $) 23)) (-3990 (((-3 $ "failed") $ $) 19)) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-3912 (($ |#1| |#2|) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-4038 ((|#2| $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)) (-3101 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3271 (($ $ $) 23)) (-1966 (((-3 $ "failed") $ $) 19)) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-3915 (($ |#1| |#2|) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4240 ((|#2| $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)) (-3104 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
(((-517 |#1| |#2|) (-13 (-799) (-515 |#1| |#2|)) (-799) (-856)) (T -517))
NIL
(-13 (-799) (-515 |#1| |#2|))
-((-2558 (((-112) $ $) NIL)) (-1956 (($ $) 32)) (-3912 (($ |#1| |#2|) 28)) (-1356 (($ (-1 |#1| |#1|) $) 30)) (-4038 ((|#2| $) 34)) (-1927 ((|#1| $) 33)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 27)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 20)))
+((-2560 (((-112) $ $) NIL)) (-1954 (($ $) 32)) (-3915 (($ |#1| |#2|) 28)) (-1357 (($ (-1 |#1| |#1|) $) 30)) (-4240 ((|#2| $) 34)) (-1928 ((|#1| $) 33)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 27)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 20)))
(((-518 |#1| |#2|) (-515 |#1| |#2|) (-1109) (-856)) (T -518))
NIL
(-515 |#1| |#2|)
-((-1770 (($ $ (-650 |#2|) (-650 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
-(((-519 |#1| |#2| |#3|) (-10 -8 (-15 -1770 (|#1| |#1| |#2| |#3|)) (-15 -1770 (|#1| |#1| (-650 |#2|) (-650 |#3|)))) (-520 |#2| |#3|) (-1109) (-1227)) (T -519))
+((-1771 (($ $ (-650 |#2|) (-650 |#3|)) NIL) (($ $ |#2| |#3|) 12)))
+(((-519 |#1| |#2| |#3|) (-10 -8 (-15 -1771 (|#1| |#1| |#2| |#3|)) (-15 -1771 (|#1| |#1| (-650 |#2|) (-650 |#3|)))) (-520 |#2| |#3|) (-1109) (-1227)) (T -519))
NIL
-(-10 -8 (-15 -1770 (|#1| |#1| |#2| |#3|)) (-15 -1770 (|#1| |#1| (-650 |#2|) (-650 |#3|))))
-((-1770 (($ $ (-650 |#1|) (-650 |#2|)) 7) (($ $ |#1| |#2|) 6)))
+(-10 -8 (-15 -1771 (|#1| |#1| |#2| |#3|)) (-15 -1771 (|#1| |#1| (-650 |#2|) (-650 |#3|))))
+((-1771 (($ $ (-650 |#1|) (-650 |#2|)) 7) (($ $ |#1| |#2|) 6)))
(((-520 |#1| |#2|) (-141) (-1109) (-1227)) (T -520))
-((-1770 (*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)))) (-1770 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-520 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1227)))))
-(-13 (-10 -8 (-15 -1770 ($ $ |t#1| |t#2|)) (-15 -1770 ($ $ (-650 |t#1|) (-650 |t#2|)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 17)) (-3416 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $) 19)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3510 (((-777) $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-2610 ((|#1| $ (-570)) 24)) (-2882 ((|#2| $ (-570)) 22)) (-2131 (($ (-1 |#1| |#1|) $) 48)) (-2979 (($ (-1 |#2| |#2|) $) 45)) (-1988 (((-1168) $) NIL)) (-1334 (($ $ $) 55 (|has| |#2| (-798)))) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 44) (($ |#1|) NIL)) (-2249 ((|#2| |#1| $) 51)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 11 T CONST)) (-3022 (((-112) $ $) 30)) (-3101 (($ $ $) 28) (($ |#1| $) 26)) (* (($ (-928) $) NIL) (($ (-777) $) 37) (($ |#2| |#1|) 32)))
+((-1771 (*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)))) (-1771 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-520 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1227)))))
+(-13 (-10 -8 (-15 -1771 ($ $ |t#1| |t#2|)) (-15 -1771 ($ $ (-650 |t#1|) (-650 |t#2|)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 17)) (-3257 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 |#2|))) $) 19)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3513 (((-777) $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-4275 ((|#1| $ (-570)) 24)) (-1988 ((|#2| $ (-570)) 22)) (-3088 (($ (-1 |#1| |#1|) $) 48)) (-1540 (($ (-1 |#2| |#2|) $) 45)) (-3989 (((-1168) $) NIL)) (-1885 (($ $ $) 55 (|has| |#2| (-798)))) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 44) (($ |#1|) NIL)) (-1864 ((|#2| |#1| $) 51)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 11 T CONST)) (-3025 (((-112) $ $) 30)) (-3104 (($ $ $) 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|)
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-2180 (((-112) (-112)) 32)) (-3932 ((|#1| $ (-570) |#1|) 42 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-3753 (($ (-1 (-112) |#1|) $) 77)) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3110 (($ $) 81 (|has| |#1| (-1109)))) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3249 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) 64)) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-4027 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3269 (($ $ (-570)) 19)) (-1565 (((-777) $) 13)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4291 (($ (-777) |#1|) 31)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) 29 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2168 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 55)) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) 56) (($ $ $) NIL (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) 28 (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1385 (($ $ $ (-570)) 73) (($ |#1| $ (-570)) 57)) (-4290 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2033 (($ (-650 |#1|)) 43)) (-3543 ((|#1| $) NIL (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) 24 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 60)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 21)) (-1941 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 53) (($ $ (-1244 (-570))) NIL)) (-3459 (($ $ (-1244 (-570))) 71) (($ $ (-570)) 65)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) 61 (|has| $ (-6 -4450)))) (-3951 (($ $) 51)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) NIL)) (-3276 (($ $ $) 62) (($ $ |#1|) 59)) (-2584 (($ $ |#1|) NIL) (($ |#1| $) 58) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2569 (((-777) $) 22 (|has| $ (-6 -4449)))))
-(((-522 |#1| |#2|) (-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -2033 ($ (-650 |#1|))) (-15 -1565 ((-777) $)) (-15 -3269 ($ $ (-570))) (-15 -2180 ((-112) (-112))))) (-1227) (-570)) (T -522))
-((-2033 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-522 *3 *4)) (-14 *4 (-570)))) (-1565 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227)) (-14 *4 (-570)))) (-3269 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227)) (-14 *4 *2))) (-2180 (*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 -2033 ($ (-650 |#1|))) (-15 -1565 ((-777) $)) (-15 -3269 ($ $ (-570))) (-15 -2180 ((-112) (-112)))))
-((-2558 (((-112) $ $) NIL)) (-2103 (((-1144) $) 11)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-4184 (((-1144) $) 13)) (-2525 (((-1144) $) 9)) (-3799 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-523) (-13 (-1092) (-10 -8 (-15 -2525 ((-1144) $)) (-15 -2103 ((-1144) $)) (-15 -4184 ((-1144) $))))) (T -523))
-((-2525 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))) (-2103 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))) (-4184 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
-(-13 (-1092) (-10 -8 (-15 -2525 ((-1144) $)) (-15 -2103 ((-1144) $)) (-15 -4184 ((-1144) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 (((-587 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-587 |#1|) (-373)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL (|has| (-587 |#1|) (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-587 |#1|) "failed") $) NIL)) (-3216 (((-587 |#1|) $) NIL)) (-3243 (($ (-1277 (-587 |#1|))) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-587 |#1|) (-373)))) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-587 |#1|) (-373)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) NIL (|has| (-587 |#1|) (-373)))) (-2542 (((-112) $) NIL (|has| (-587 |#1|) (-373)))) (-2063 (($ $ (-777)) NIL (-2892 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373)))) (($ $) NIL (-2892 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-3618 (((-112) $) NIL)) (-4323 (((-928) $) NIL (|has| (-587 |#1|) (-373))) (((-839 (-928)) $) NIL (-2892 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-4346 (((-112) $) NIL)) (-2881 (($) NIL (|has| (-587 |#1|) (-373)))) (-4019 (((-112) $) NIL (|has| (-587 |#1|) (-373)))) (-2959 (((-587 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2619 (((-3 $ "failed") $) NIL (|has| (-587 |#1|) (-373)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 (-587 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-1884 (((-928) $) NIL (|has| (-587 |#1|) (-373)))) (-1779 (((-1182 (-587 |#1|)) $) NIL (|has| (-587 |#1|) (-373)))) (-2991 (((-1182 (-587 |#1|)) $) NIL (|has| (-587 |#1|) (-373))) (((-3 (-1182 (-587 |#1|)) "failed") $ $) NIL (|has| (-587 |#1|) (-373)))) (-4171 (($ $ (-1182 (-587 |#1|))) NIL (|has| (-587 |#1|) (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-587 |#1|) (-373)) CONST)) (-2268 (($ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-4064 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-2466 (($) NIL (|has| (-587 |#1|) (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| (-587 |#1|) (-373)))) (-3801 (((-424 $) $) NIL)) (-2587 (((-839 (-928))) NIL) (((-928)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-777) $) NIL (|has| (-587 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2892 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-2951 (((-135)) NIL)) (-3547 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-2130 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2755 (((-1182 (-587 |#1|))) NIL)) (-4003 (($) NIL (|has| (-587 |#1|) (-373)))) (-4426 (($) NIL (|has| (-587 |#1|) (-373)))) (-3424 (((-1277 (-587 |#1|)) $) NIL) (((-695 (-587 |#1|)) (-1277 $)) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-587 |#1|) (-373)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-587 |#1|)) NIL)) (-3532 (($ $) NIL (|has| (-587 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2892 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3944 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-2942 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL) (($ $ (-587 |#1|)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-2395 (((-112) (-112)) 32)) (-3935 ((|#1| $ (-570) |#1|) 42 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453)))) (-3353 (($ (-1 (-112) |#1|) $) 77)) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3476 (($ $) 81 (|has| |#1| (-1109)))) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2385 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) 64)) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-4029 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-4372 (($ $ (-570)) 19)) (-2416 (((-777) $) 13)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-4294 (($ (-777) |#1|) 31)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) 29 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2270 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 55)) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) 56) (($ $ $) NIL (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) 28 (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3502 (($ $ $ (-570)) 73) (($ |#1| $ (-570)) 57)) (-4293 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3261 (($ (-650 |#1|)) 43)) (-3546 ((|#1| $) NIL (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) 24 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 60)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 21)) (-1942 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 53) (($ $ (-1244 (-570))) NIL)) (-3651 (($ $ (-1244 (-570))) 71) (($ $ (-570)) 65)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) 61 (|has| $ (-6 -4453)))) (-3954 (($ $) 51)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) NIL)) (-1319 (($ $ $) 62) (($ $ |#1|) 59)) (-2585 (($ $ |#1|) NIL) (($ |#1| $) 58) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2570 (((-777) $) 22 (|has| $ (-6 -4452)))))
+(((-522 |#1| |#2|) (-13 (-19 |#1|) (-286 |#1|) (-10 -8 (-15 -3261 ($ (-650 |#1|))) (-15 -2416 ((-777) $)) (-15 -4372 ($ $ (-570))) (-15 -2395 ((-112) (-112))))) (-1227) (-570)) (T -522))
+((-3261 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-522 *3 *4)) (-14 *4 (-570)))) (-2416 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227)) (-14 *4 (-570)))) (-4372 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227)) (-14 *4 *2))) (-2395 (*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 -3261 ($ (-650 |#1|))) (-15 -2416 ((-777) $)) (-15 -4372 ($ $ (-570))) (-15 -2395 ((-112) (-112)))))
+((-2560 (((-112) $ $) NIL)) (-2823 (((-1144) $) 11)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3226 (((-1144) $) 13)) (-2526 (((-1144) $) 9)) (-3802 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-523) (-13 (-1092) (-10 -8 (-15 -2526 ((-1144) $)) (-15 -2823 ((-1144) $)) (-15 -3226 ((-1144) $))))) (T -523))
+((-2526 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))) (-2823 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))) (-3226 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
+(-13 (-1092) (-10 -8 (-15 -2526 ((-1144) $)) (-15 -2823 ((-1144) $)) (-15 -3226 ((-1144) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 (((-587 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-587 |#1|) (-373)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL (|has| (-587 |#1|) (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-587 |#1|) "failed") $) NIL)) (-3220 (((-587 |#1|) $) NIL)) (-2322 (($ (-1277 (-587 |#1|))) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-587 |#1|) (-373)))) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-587 |#1|) (-373)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) NIL (|has| (-587 |#1|) (-373)))) (-1843 (((-112) $) NIL (|has| (-587 |#1|) (-373)))) (-3599 (($ $ (-777)) NIL (-2895 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373)))) (($ $) NIL (-2895 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-1336 (((-112) $) NIL)) (-3941 (((-928) $) NIL (|has| (-587 |#1|) (-373))) (((-839 (-928)) $) NIL (-2895 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-4139 (((-112) $) NIL)) (-1977 (($) NIL (|has| (-587 |#1|) (-373)))) (-4073 (((-112) $) NIL (|has| (-587 |#1|) (-373)))) (-4399 (((-587 |#1|) $) NIL) (($ $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-4369 (((-3 $ "failed") $) NIL (|has| (-587 |#1|) (-373)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 (-587 |#1|)) $) NIL) (((-1182 $) $ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-2400 (((-928) $) NIL (|has| (-587 |#1|) (-373)))) (-2665 (((-1182 (-587 |#1|)) $) NIL (|has| (-587 |#1|) (-373)))) (-1672 (((-1182 (-587 |#1|)) $) NIL (|has| (-587 |#1|) (-373))) (((-3 (-1182 (-587 |#1|)) "failed") $ $) NIL (|has| (-587 |#1|) (-373)))) (-3113 (($ $ (-1182 (-587 |#1|))) NIL (|has| (-587 |#1|) (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-587 |#1|) (-373)) CONST)) (-2267 (($ (-928)) NIL (|has| (-587 |#1|) (-373)))) (-3315 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-2467 (($) NIL (|has| (-587 |#1|) (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| (-587 |#1|) (-373)))) (-3804 (((-424 $) $) NIL)) (-4068 (((-839 (-928))) NIL) (((-928)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-777) $) NIL (|has| (-587 |#1|) (-373))) (((-3 (-777) "failed") $ $) NIL (-2895 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-2517 (((-135)) NIL)) (-3550 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-3079 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-2075 (((-1182 (-587 |#1|))) NIL)) (-3924 (($) NIL (|has| (-587 |#1|) (-373)))) (-3667 (($) NIL (|has| (-587 |#1|) (-373)))) (-3314 (((-1277 (-587 |#1|)) $) NIL) (((-695 (-587 |#1|)) (-1277 $)) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-587 |#1|) (-373)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-587 |#1|)) NIL)) (-3132 (($ $) NIL (|has| (-587 |#1|) (-373))) (((-3 $ "failed") $) NIL (-2895 (|has| (-587 |#1|) (-146)) (|has| (-587 |#1|) (-373))))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL) (((-1277 $) (-928)) NIL)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-1427 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-2945 (($ $) NIL (|has| (-587 |#1|) (-373))) (($ $ (-777)) NIL (|has| (-587 |#1|) (-373)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL) (($ $ (-587 |#1|)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) (-570) |#1|) 51)) (-4419 (($ $ (-570) |#4|) NIL)) (-2361 (($ $ (-570) |#5|) NIL)) (-1705 (($) NIL T CONST)) (-2219 ((|#4| $ (-570)) NIL)) (-1517 ((|#1| $ (-570) (-570) |#1|) 50)) (-3820 ((|#1| $ (-570) (-570)) 45)) (-3627 (((-650 |#1|) $) NIL)) (-3316 (((-777) $) 33)) (-4291 (($ (-777) (-777) |#1|) 30)) (-3328 (((-777) $) 38)) (-2929 (((-112) $ (-777)) NIL)) (-4133 (((-570) $) 31)) (-2877 (((-570) $) 32)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1552 (((-570) $) 37)) (-1732 (((-570) $) 39)) (-1502 (($ (-1 |#1| |#1|) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) 55 (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2147 (($ $ |#1|) NIL)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 14)) (-2380 (($) 16)) (-1941 ((|#1| $ (-570) (-570)) 48) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-1508 ((|#5| $ (-570)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) (-570) |#1|) 51)) (-3605 (($ $ (-570) |#4|) NIL)) (-3650 (($ $ (-570) |#5|) NIL)) (-3195 (($) NIL T CONST)) (-1494 ((|#4| $ (-570)) NIL)) (-1518 ((|#1| $ (-570) (-570) |#1|) 50)) (-3824 ((|#1| $ (-570) (-570)) 45)) (-3630 (((-650 |#1|) $) NIL)) (-3318 (((-777) $) 33)) (-4294 (($ (-777) (-777) |#1|) 30)) (-3330 (((-777) $) 38)) (-2317 (((-112) $ (-777)) NIL)) (-2822 (((-570) $) 31)) (-1943 (((-570) $) 32)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2278 (((-570) $) 37)) (-3461 (((-570) $) 39)) (-1503 (($ (-1 |#1| |#1|) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) 55 (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2061 (($ $ |#1|) NIL)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 14)) (-2656 (($) 16)) (-1942 ((|#1| $ (-570) (-570)) 48) ((|#1| $ (-570) (-570) |#1|) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3057 ((|#5| $ (-570)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-525 |#1| |#2| |#3| |#4| |#5|) (-57 |#1| |#4| |#5|) (-1227) (-570) (-570) (-378 |#1|) (-378 |#1|)) (T -525))
NIL
(-57 |#1| |#4| |#5|)
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-2698 ((|#1| $) NIL)) (-1602 (($ $) NIL)) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) 69 (|has| $ (-6 -4450)))) (-4374 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4004 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) 63 (|has| $ (-6 -4450)))) (-3393 (($ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-2988 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3986 (($ $ $) 23 (|has| $ (-6 -4450)))) (-2363 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-2869 ((|#1| $ |#1|) 21 (|has| $ (-6 -4450)))) (-3932 ((|#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)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3753 (($ (-1 (-112) |#1|) $) NIL)) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2686 ((|#1| $) NIL)) (-1705 (($) NIL T CONST)) (-2844 (($ $) 28 (|has| $ (-6 -4450)))) (-2377 (($ $) 29)) (-3555 (($ $) 18) (($ $ (-777)) 32)) (-3110 (($ $) 61 (|has| |#1| (-1109)))) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3249 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1741 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3624 ((|#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))))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-3414 (((-112) $) NIL)) (-4027 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-3627 (((-650 |#1|) $) 27 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4291 (($ (-777) |#1|) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) 31 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2168 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 64)) (-2024 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 59 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3420 (($ |#1|) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) NIL)) (-1988 (((-1168) $) 57 (|has| |#1| (-1109)))) (-1769 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-1385 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4290 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) 13) (($ $ (-777)) NIL)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3607 (((-112) $) NIL)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 12)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) 17)) (-2380 (($) 16)) (-1941 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) NIL) ((|#1| $ (-570) |#1|) NIL)) (-2738 (((-570) $ $) NIL)) (-3459 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4326 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3817 (((-112) $) 34)) (-4366 (($ $) NIL)) (-4063 (($ $) NIL (|has| $ (-6 -4450)))) (-2264 (((-777) $) NIL)) (-1839 (($ $) 39)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) 35)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 26)) (-3276 (($ $ $) 60) (($ $ |#1|) NIL)) (-2584 (($ $ $) NIL) (($ |#1| $) 10) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3799 (((-868) $) 49 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) 53 (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2569 (((-777) $) 9 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-2701 ((|#1| $) NIL)) (-1603 (($ $) NIL)) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) 69 (|has| $ (-6 -4453)))) (-4414 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3936 (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) 63 (|has| $ (-6 -4453)))) (-3396 (($ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1647 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1917 (($ $ $) 23 (|has| $ (-6 -4453)))) (-3671 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1854 ((|#1| $ |#1|) 21 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ "first" |#1|) 22 (|has| $ (-6 -4453))) (($ $ "rest" $) 24 (|has| $ (-6 -4453))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3353 (($ (-1 (-112) |#1|) $) NIL)) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-2688 ((|#1| $) NIL)) (-3195 (($) NIL T CONST)) (-1582 (($ $) 28 (|has| $ (-6 -4453)))) (-2380 (($ $) 29)) (-3558 (($ $) 18) (($ $ (-777)) 32)) (-3476 (($ $) 61 (|has| |#1| (-1109)))) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2385 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1742 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-3242 (((-112) $) NIL)) (-4029 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-3630 (((-650 |#1|) $) 27 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4294 (($ (-777) |#1|) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) 31 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2270 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 64)) (-3183 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 59 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3423 (($ |#1|) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) NIL)) (-3989 (((-1168) $) 57 (|has| |#1| (-1109)))) (-1770 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-3502 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4293 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) 13) (($ $ (-777)) NIL)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-2568 (((-112) $) NIL)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 12)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) 17)) (-2656 (($) 16)) (-1942 ((|#1| $ "value") NIL) ((|#1| $ "first") 15) (($ $ "rest") 20) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) NIL) ((|#1| $ (-570) |#1|) NIL)) (-3108 (((-570) $ $) NIL)) (-3651 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4330 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-2759 (((-112) $) 34)) (-4332 (($ $) NIL)) (-3305 (($ $) NIL (|has| $ (-6 -4453)))) (-3853 (((-777) $) NIL)) (-1991 (($ $) 39)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) 35)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 26)) (-1319 (($ $ $) 60) (($ $ |#1|) NIL)) (-2585 (($ $ $) NIL) (($ |#1| $) 10) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3802 (((-868) $) 49 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) 53 (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2570 (((-777) $) 9 (|has| $ (-6 -4452)))))
(((-526 |#1| |#2|) (-672 |#1|) (-1227) (-570)) (T -526))
NIL
(-672 |#1|)
-((-4089 ((|#4| |#4|) 38)) (-4006 (((-777) |#4|) 44)) (-2206 (((-777) |#4|) 45)) (-2123 (((-650 |#3|) |#4|) 55 (|has| |#3| (-6 -4450)))) (-3490 (((-3 |#4| "failed") |#4|) 67)) (-2938 ((|#4| |#4|) 59)) (-2137 ((|#1| |#4|) 58)))
-(((-527 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4089 (|#4| |#4|)) (-15 -4006 ((-777) |#4|)) (-15 -2206 ((-777) |#4|)) (IF (|has| |#3| (-6 -4450)) (-15 -2123 ((-650 |#3|) |#4|)) |%noBranch|) (-15 -2137 (|#1| |#4|)) (-15 -2938 (|#4| |#4|)) (-15 -3490 ((-3 |#4| "failed") |#4|))) (-368) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -527))
-((-3490 (*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)))) (-2938 (*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)))) (-2137 (*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)))) (-2123 (*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)))) (-2206 (*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)))) (-4006 (*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)))) (-4089 (*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 -4089 (|#4| |#4|)) (-15 -4006 ((-777) |#4|)) (-15 -2206 ((-777) |#4|)) (IF (|has| |#3| (-6 -4450)) (-15 -2123 ((-650 |#3|) |#4|)) |%noBranch|) (-15 -2137 (|#1| |#4|)) (-15 -2938 (|#4| |#4|)) (-15 -3490 ((-3 |#4| "failed") |#4|)))
-((-4089 ((|#8| |#4|) 20)) (-2123 (((-650 |#3|) |#4|) 29 (|has| |#7| (-6 -4450)))) (-3490 (((-3 |#8| "failed") |#4|) 23)))
-(((-528 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -4089 (|#8| |#4|)) (-15 -3490 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4450)) (-15 -2123 ((-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))
-((-2123 (*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)))) (-3490 (*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)))) (-4089 (*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 -4089 (|#8| |#4|)) (-15 -3490 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4450)) (-15 -2123 ((-650 |#3|) |#4|)) |%noBranch|))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3504 (($ (-777) (-777)) NIL)) (-2133 (($ $ $) NIL)) (-3244 (($ (-608 |#1| |#3|)) NIL) (($ $) NIL)) (-1735 (((-112) $) NIL)) (-4088 (($ $ (-570) (-570)) 21)) (-1773 (($ $ (-570) (-570)) NIL)) (-4317 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-1885 (($ $) NIL)) (-4253 (((-112) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-2265 (($ $ (-570) (-570) $) NIL)) (-3932 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-4419 (($ $ (-570) (-608 |#1| |#3|)) NIL)) (-2361 (($ $ (-570) (-608 |#1| |#2|)) NIL)) (-2741 (($ (-777) |#1|) NIL)) (-1705 (($) NIL T CONST)) (-4089 (($ $) 30 (|has| |#1| (-311)))) (-2219 (((-608 |#1| |#3|) $ (-570)) NIL)) (-4006 (((-777) $) 33 (|has| |#1| (-562)))) (-1517 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3820 ((|#1| $ (-570) (-570)) NIL)) (-3627 (((-650 |#1|) $) NIL)) (-2206 (((-777) $) 35 (|has| |#1| (-562)))) (-2123 (((-650 (-608 |#1| |#2|)) $) 38 (|has| |#1| (-562)))) (-3316 (((-777) $) NIL)) (-4291 (($ (-777) (-777) |#1|) NIL)) (-3328 (((-777) $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-3689 ((|#1| $) 28 (|has| |#1| (-6 (-4451 "*"))))) (-4133 (((-570) $) 10)) (-2877 (((-570) $) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1552 (((-570) $) 13)) (-1732 (((-570) $) NIL)) (-2571 (($ (-650 (-650 |#1|))) NIL)) (-1502 (($ (-1 |#1| |#1|) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3575 (((-650 (-650 |#1|)) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3490 (((-3 $ "failed") $) 42 (|has| |#1| (-368)))) (-2721 (($ $ $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2147 (($ $ |#1|) NIL)) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2173 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL)) (-3285 (((-112) $) NIL)) (-2137 ((|#1| $) 26 (|has| |#1| (-6 (-4451 "*"))))) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-1508 (((-608 |#1| |#2|) $ (-570)) NIL)) (-3799 (($ (-608 |#1| |#2|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2841 (((-112) $) NIL)) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $ $) NIL) (($ $) NIL)) (-3101 (($ $ $) 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)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-3610 ((|#4| |#4|) 38)) (-4009 (((-777) |#4|) 44)) (-1330 (((-777) |#4|) 45)) (-3017 (((-650 |#3|) |#4|) 55 (|has| |#3| (-6 -4453)))) (-2751 (((-3 |#4| "failed") |#4|) 67)) (-2388 ((|#4| |#4|) 59)) (-3136 ((|#1| |#4|) 58)))
+(((-527 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3610 (|#4| |#4|)) (-15 -4009 ((-777) |#4|)) (-15 -1330 ((-777) |#4|)) (IF (|has| |#3| (-6 -4453)) (-15 -3017 ((-650 |#3|) |#4|)) |%noBranch|) (-15 -3136 (|#1| |#4|)) (-15 -2388 (|#4| |#4|)) (-15 -2751 ((-3 |#4| "failed") |#4|))) (-368) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -527))
+((-2751 (*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)))) (-2388 (*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)))) (-3136 (*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)))) (-3017 (*1 *2 *3) (-12 (|has| *6 (-6 -4453)) (-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)))) (-1330 (*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)))) (-4009 (*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)))) (-3610 (*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 -3610 (|#4| |#4|)) (-15 -4009 ((-777) |#4|)) (-15 -1330 ((-777) |#4|)) (IF (|has| |#3| (-6 -4453)) (-15 -3017 ((-650 |#3|) |#4|)) |%noBranch|) (-15 -3136 (|#1| |#4|)) (-15 -2388 (|#4| |#4|)) (-15 -2751 ((-3 |#4| "failed") |#4|)))
+((-3610 ((|#8| |#4|) 20)) (-3017 (((-650 |#3|) |#4|) 29 (|has| |#7| (-6 -4453)))) (-2751 (((-3 |#8| "failed") |#4|) 23)))
+(((-528 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8|) (-10 -7 (-15 -3610 (|#8| |#4|)) (-15 -2751 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4453)) (-15 -3017 ((-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))
+((-3017 (*1 *2 *3) (-12 (|has| *9 (-6 -4453)) (-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)))) (-2751 (*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)))) (-3610 (*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 -3610 (|#8| |#4|)) (-15 -2751 ((-3 |#8| "failed") |#4|)) (IF (|has| |#7| (-6 -4453)) (-15 -3017 ((-650 |#3|) |#4|)) |%noBranch|))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3507 (($ (-777) (-777)) NIL)) (-3105 (($ $ $) NIL)) (-2333 (($ (-608 |#1| |#3|)) NIL) (($ $) NIL)) (-3493 (((-112) $) NIL)) (-3597 (($ $ (-570) (-570)) 21)) (-2616 (($ $ (-570) (-570)) NIL)) (-2057 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-2411 (($ $) NIL)) (-1407 (((-112) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3861 (($ $ (-570) (-570) $) NIL)) (-3935 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-3605 (($ $ (-570) (-608 |#1| |#3|)) NIL)) (-3650 (($ $ (-570) (-608 |#1| |#2|)) NIL)) (-3130 (($ (-777) |#1|) NIL)) (-3195 (($) NIL T CONST)) (-3610 (($ $) 30 (|has| |#1| (-311)))) (-1494 (((-608 |#1| |#3|) $ (-570)) NIL)) (-4009 (((-777) $) 33 (|has| |#1| (-562)))) (-1518 ((|#1| $ (-570) (-570) |#1|) NIL)) (-3824 ((|#1| $ (-570) (-570)) NIL)) (-3630 (((-650 |#1|) $) NIL)) (-1330 (((-777) $) 35 (|has| |#1| (-562)))) (-3017 (((-650 (-608 |#1| |#2|)) $) 38 (|has| |#1| (-562)))) (-3318 (((-777) $) NIL)) (-4294 (($ (-777) (-777) |#1|) NIL)) (-3330 (((-777) $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-3949 ((|#1| $) 28 (|has| |#1| (-6 (-4454 "*"))))) (-2822 (((-570) $) 10)) (-1943 (((-570) $) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2278 (((-570) $) 13)) (-3461 (((-570) $) NIL)) (-2572 (($ (-650 (-650 |#1|))) NIL)) (-1503 (($ (-1 |#1| |#1|) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2309 (((-650 (-650 |#1|)) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2751 (((-3 $ "failed") $) 42 (|has| |#1| (-368)))) (-2979 (($ $ $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2061 (($ $ |#1|) NIL)) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2323 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL)) (-1424 (((-112) $) NIL)) (-3136 ((|#1| $) 26 (|has| |#1| (-6 (-4454 "*"))))) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3057 (((-608 |#1| |#2|) $ (-570)) NIL)) (-3802 (($ (-608 |#1| |#2|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1548 (((-112) $) NIL)) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $ $) NIL) (($ $) NIL)) (-3104 (($ $ $) 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)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-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|))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-1359 (((-650 (-1226)) $) 13)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL) (($ (-650 (-1226))) 11)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-530) (-13 (-1092) (-10 -8 (-15 -3799 ($ (-650 (-1226)))) (-15 -1359 ((-650 (-1226)) $))))) (T -530))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))) (-1359 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))))
-(-13 (-1092) (-10 -8 (-15 -3799 ($ (-650 (-1226)))) (-15 -1359 ((-650 (-1226)) $))))
-((-2558 (((-112) $ $) NIL)) (-3252 (((-1144) $) 14)) (-1988 (((-1168) $) NIL)) (-1583 (((-512) $) 11)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 21) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-531) (-13 (-1092) (-10 -8 (-15 -1583 ((-512) $)) (-15 -3252 ((-1144) $))))) (T -531))
-((-1583 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-531)))) (-3252 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-531)))))
-(-13 (-1092) (-10 -8 (-15 -1583 ((-512) $)) (-15 -3252 ((-1144) $))))
-((-4373 (((-697 (-1235)) $) 15)) (-3018 (((-697 (-1233)) $) 38)) (-1989 (((-697 (-1232)) $) 29)) (-2118 (((-697 (-555)) $) 12)) (-3178 (((-697 (-553)) $) 42)) (-3077 (((-697 (-552)) $) 33)) (-2370 (((-777) $ (-129)) 54)))
-(((-532 |#1|) (-10 -8 (-15 -2370 ((-777) |#1| (-129))) (-15 -3018 ((-697 (-1233)) |#1|)) (-15 -3178 ((-697 (-553)) |#1|)) (-15 -1989 ((-697 (-1232)) |#1|)) (-15 -3077 ((-697 (-552)) |#1|)) (-15 -4373 ((-697 (-1235)) |#1|)) (-15 -2118 ((-697 (-555)) |#1|))) (-533)) (T -532))
-NIL
-(-10 -8 (-15 -2370 ((-777) |#1| (-129))) (-15 -3018 ((-697 (-1233)) |#1|)) (-15 -3178 ((-697 (-553)) |#1|)) (-15 -1989 ((-697 (-1232)) |#1|)) (-15 -3077 ((-697 (-552)) |#1|)) (-15 -4373 ((-697 (-1235)) |#1|)) (-15 -2118 ((-697 (-555)) |#1|)))
-((-4373 (((-697 (-1235)) $) 12)) (-3018 (((-697 (-1233)) $) 8)) (-1989 (((-697 (-1232)) $) 10)) (-2118 (((-697 (-555)) $) 13)) (-3178 (((-697 (-553)) $) 9)) (-3077 (((-697 (-552)) $) 11)) (-2370 (((-777) $ (-129)) 7)) (-1607 (((-697 (-130)) $) 14)) (-3107 (($ $) 6)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-2115 (((-650 (-1226)) $) 13)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL) (($ (-650 (-1226))) 11)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-530) (-13 (-1092) (-10 -8 (-15 -3802 ($ (-650 (-1226)))) (-15 -2115 ((-650 (-1226)) $))))) (T -530))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))) (-2115 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))))
+(-13 (-1092) (-10 -8 (-15 -3802 ($ (-650 (-1226)))) (-15 -2115 ((-650 (-1226)) $))))
+((-2560 (((-112) $ $) NIL)) (-2417 (((-1144) $) 14)) (-3989 (((-1168) $) NIL)) (-4381 (((-512) $) 11)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 21) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-531) (-13 (-1092) (-10 -8 (-15 -4381 ((-512) $)) (-15 -2417 ((-1144) $))))) (T -531))
+((-4381 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-531)))) (-2417 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-531)))))
+(-13 (-1092) (-10 -8 (-15 -4381 ((-512) $)) (-15 -2417 ((-1144) $))))
+((-4401 (((-697 (-1235)) $) 15)) (-3805 (((-697 (-1233)) $) 38)) (-3998 (((-697 (-1232)) $) 29)) (-2969 (((-697 (-555)) $) 12)) (-2910 (((-697 (-553)) $) 42)) (-3172 (((-697 (-552)) $) 33)) (-3739 (((-777) $ (-129)) 54)))
+(((-532 |#1|) (-10 -8 (-15 -3739 ((-777) |#1| (-129))) (-15 -3805 ((-697 (-1233)) |#1|)) (-15 -2910 ((-697 (-553)) |#1|)) (-15 -3998 ((-697 (-1232)) |#1|)) (-15 -3172 ((-697 (-552)) |#1|)) (-15 -4401 ((-697 (-1235)) |#1|)) (-15 -2969 ((-697 (-555)) |#1|))) (-533)) (T -532))
+NIL
+(-10 -8 (-15 -3739 ((-777) |#1| (-129))) (-15 -3805 ((-697 (-1233)) |#1|)) (-15 -2910 ((-697 (-553)) |#1|)) (-15 -3998 ((-697 (-1232)) |#1|)) (-15 -3172 ((-697 (-552)) |#1|)) (-15 -4401 ((-697 (-1235)) |#1|)) (-15 -2969 ((-697 (-555)) |#1|)))
+((-4401 (((-697 (-1235)) $) 12)) (-3805 (((-697 (-1233)) $) 8)) (-3998 (((-697 (-1232)) $) 10)) (-2969 (((-697 (-555)) $) 13)) (-2910 (((-697 (-553)) $) 9)) (-3172 (((-697 (-552)) $) 11)) (-3739 (((-777) $ (-129)) 7)) (-1556 (((-697 (-130)) $) 14)) (-3443 (($ $) 6)))
(((-533) (-141)) (T -533))
-((-1607 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-130))))) (-2118 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-555))))) (-4373 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1235))))) (-3077 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-552))))) (-1989 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1232))))) (-3178 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-553))))) (-3018 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1233))))) (-2370 (*1 *2 *1 *3) (-12 (-4 *1 (-533)) (-5 *3 (-129)) (-5 *2 (-777)))))
-(-13 (-175) (-10 -8 (-15 -1607 ((-697 (-130)) $)) (-15 -2118 ((-697 (-555)) $)) (-15 -4373 ((-697 (-1235)) $)) (-15 -3077 ((-697 (-552)) $)) (-15 -1989 ((-697 (-1232)) $)) (-15 -3178 ((-697 (-553)) $)) (-15 -3018 ((-697 (-1233)) $)) (-15 -2370 ((-777) $ (-129)))))
+((-1556 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-130))))) (-2969 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-555))))) (-4401 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1235))))) (-3172 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-552))))) (-3998 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1232))))) (-2910 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-553))))) (-3805 (*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1233))))) (-3739 (*1 *2 *1 *3) (-12 (-4 *1 (-533)) (-5 *3 (-129)) (-5 *2 (-777)))))
+(-13 (-175) (-10 -8 (-15 -1556 ((-697 (-130)) $)) (-15 -2969 ((-697 (-555)) $)) (-15 -4401 ((-697 (-1235)) $)) (-15 -3172 ((-697 (-552)) $)) (-15 -3998 ((-697 (-1232)) $)) (-15 -2910 ((-697 (-553)) $)) (-15 -3805 ((-697 (-1233)) $)) (-15 -3739 ((-777) $ (-129)))))
(((-175) . T))
-((-4183 (((-1182 |#1|) (-777)) 115)) (-3207 (((-1277 |#1|) (-1277 |#1|) (-928)) 108)) (-3060 (((-1282) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) |#1|) 123)) (-1492 (((-1277 |#1|) (-1277 |#1|) (-777)) 53)) (-3446 (((-1277 |#1|) (-928)) 110)) (-1797 (((-1277 |#1|) (-1277 |#1|) (-570)) 30)) (-3423 (((-1182 |#1|) (-1277 |#1|)) 116)) (-2881 (((-1277 |#1|) (-928)) 137)) (-4019 (((-112) (-1277 |#1|)) 120)) (-2959 (((-1277 |#1|) (-1277 |#1|) (-928)) 100)) (-3521 (((-1182 |#1|) (-1277 |#1|)) 131)) (-1884 (((-928) (-1277 |#1|)) 96)) (-1877 (((-1277 |#1|) (-1277 |#1|)) 38)) (-2268 (((-1277 |#1|) (-928) (-928)) 140)) (-2394 (((-1277 |#1|) (-1277 |#1|) (-1129) (-1129)) 29)) (-1592 (((-1277 |#1|) (-1277 |#1|) (-777) (-1129)) 54)) (-1972 (((-1277 (-1277 |#1|)) (-928)) 136)) (-3122 (((-1277 |#1|) (-1277 |#1|) (-1277 |#1|)) 121)) (** (((-1277 |#1|) (-1277 |#1|) (-570)) 67)) (* (((-1277 |#1|) (-1277 |#1|) (-1277 |#1|)) 31)))
-(((-534 |#1|) (-10 -7 (-15 -3060 ((-1282) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) |#1|)) (-15 -3446 ((-1277 |#1|) (-928))) (-15 -2268 ((-1277 |#1|) (-928) (-928))) (-15 -3423 ((-1182 |#1|) (-1277 |#1|))) (-15 -4183 ((-1182 |#1|) (-777))) (-15 -1592 ((-1277 |#1|) (-1277 |#1|) (-777) (-1129))) (-15 -1492 ((-1277 |#1|) (-1277 |#1|) (-777))) (-15 -2394 ((-1277 |#1|) (-1277 |#1|) (-1129) (-1129))) (-15 -1797 ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 ** ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 * ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -3122 ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -2959 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -3207 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -1877 ((-1277 |#1|) (-1277 |#1|))) (-15 -1884 ((-928) (-1277 |#1|))) (-15 -4019 ((-112) (-1277 |#1|))) (-15 -1972 ((-1277 (-1277 |#1|)) (-928))) (-15 -2881 ((-1277 |#1|) (-928))) (-15 -3521 ((-1182 |#1|) (-1277 |#1|)))) (-354)) (T -534))
-((-3521 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)))) (-2881 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-1972 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 *4))) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-4019 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-534 *4)))) (-1884 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-928)) (-5 *1 (-534 *4)))) (-1877 (*1 *2 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3)))) (-3207 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-928)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-2959 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-928)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-3122 (*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)))) (-1797 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-570)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-2394 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1129)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-1492 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-1592 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1277 *5)) (-5 *3 (-777)) (-5 *4 (-1129)) (-4 *5 (-354)) (-5 *1 (-534 *5)))) (-4183 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3423 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)))) (-2268 (*1 *2 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3446 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3060 (*1 *2 *3 *4) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-1282)) (-5 *1 (-534 *4)))))
-(-10 -7 (-15 -3060 ((-1282) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2268 (-1129))))) |#1|)) (-15 -3446 ((-1277 |#1|) (-928))) (-15 -2268 ((-1277 |#1|) (-928) (-928))) (-15 -3423 ((-1182 |#1|) (-1277 |#1|))) (-15 -4183 ((-1182 |#1|) (-777))) (-15 -1592 ((-1277 |#1|) (-1277 |#1|) (-777) (-1129))) (-15 -1492 ((-1277 |#1|) (-1277 |#1|) (-777))) (-15 -2394 ((-1277 |#1|) (-1277 |#1|) (-1129) (-1129))) (-15 -1797 ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 ** ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 * ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -3122 ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -2959 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -3207 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -1877 ((-1277 |#1|) (-1277 |#1|))) (-15 -1884 ((-928) (-1277 |#1|))) (-15 -4019 ((-112) (-1277 |#1|))) (-15 -1972 ((-1277 (-1277 |#1|)) (-928))) (-15 -2881 ((-1277 |#1|) (-928))) (-15 -3521 ((-1182 |#1|) (-1277 |#1|))))
-((-4373 (((-697 (-1235)) $) NIL)) (-3018 (((-697 (-1233)) $) NIL)) (-1989 (((-697 (-1232)) $) NIL)) (-2118 (((-697 (-555)) $) NIL)) (-3178 (((-697 (-553)) $) NIL)) (-3077 (((-697 (-552)) $) NIL)) (-2370 (((-777) $ (-129)) NIL)) (-1607 (((-697 (-130)) $) 26)) (-2647 (((-1129) $ (-1129)) 31)) (-4027 (((-1129) $) 30)) (-2618 (((-112) $) 20)) (-1411 (($ (-394)) 14) (($ (-1168)) 16)) (-1781 (((-112) $) 27)) (-3799 (((-868) $) 34)) (-3107 (($ $) 28)))
-(((-535) (-13 (-533) (-619 (-868)) (-10 -8 (-15 -1411 ($ (-394))) (-15 -1411 ($ (-1168))) (-15 -1781 ((-112) $)) (-15 -2618 ((-112) $)) (-15 -4027 ((-1129) $)) (-15 -2647 ((-1129) $ (-1129)))))) (T -535))
-((-1411 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-535)))) (-1411 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-535)))) (-1781 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))) (-2618 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))) (-4027 (*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))) (-2647 (*1 *2 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))))
-(-13 (-533) (-619 (-868)) (-10 -8 (-15 -1411 ($ (-394))) (-15 -1411 ($ (-1168))) (-15 -1781 ((-112) $)) (-15 -2618 ((-112) $)) (-15 -4027 ((-1129) $)) (-15 -2647 ((-1129) $ (-1129)))))
-((-1374 (((-1 |#1| |#1|) |#1|) 11)) (-1688 (((-1 |#1| |#1|)) 10)))
-(((-536 |#1|) (-10 -7 (-15 -1688 ((-1 |#1| |#1|))) (-15 -1374 ((-1 |#1| |#1|) |#1|))) (-13 (-732) (-25))) (T -536))
-((-1374 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))) (-1688 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
-(-10 -7 (-15 -1688 ((-1 |#1| |#1|))) (-15 -1374 ((-1 |#1| |#1|) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3744 (($ $ $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-3912 (($ (-777) |#1|) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1356 (($ (-1 (-777) (-777)) $) NIL)) (-4038 ((|#1| $) NIL)) (-1927 (((-777) $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 27)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)) (-3101 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
+((-3217 (((-1182 |#1|) (-777)) 115)) (-3211 (((-1277 |#1|) (-1277 |#1|) (-928)) 108)) (-4182 (((-1282) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) |#1|) 123)) (-2908 (((-1277 |#1|) (-1277 |#1|) (-777)) 53)) (-3449 (((-1277 |#1|) (-928)) 110)) (-2829 (((-1277 |#1|) (-1277 |#1|) (-570)) 30)) (-3303 (((-1182 |#1|) (-1277 |#1|)) 116)) (-1977 (((-1277 |#1|) (-928)) 137)) (-4073 (((-112) (-1277 |#1|)) 120)) (-4399 (((-1277 |#1|) (-1277 |#1|) (-928)) 100)) (-3043 (((-1182 |#1|) (-1277 |#1|)) 131)) (-2400 (((-928) (-1277 |#1|)) 96)) (-1878 (((-1277 |#1|) (-1277 |#1|)) 38)) (-2267 (((-1277 |#1|) (-928) (-928)) 140)) (-2795 (((-1277 |#1|) (-1277 |#1|) (-1129) (-1129)) 29)) (-1367 (((-1277 |#1|) (-1277 |#1|) (-777) (-1129)) 54)) (-3827 (((-1277 (-1277 |#1|)) (-928)) 136)) (-3125 (((-1277 |#1|) (-1277 |#1|) (-1277 |#1|)) 121)) (** (((-1277 |#1|) (-1277 |#1|) (-570)) 67)) (* (((-1277 |#1|) (-1277 |#1|) (-1277 |#1|)) 31)))
+(((-534 |#1|) (-10 -7 (-15 -4182 ((-1282) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) |#1|)) (-15 -3449 ((-1277 |#1|) (-928))) (-15 -2267 ((-1277 |#1|) (-928) (-928))) (-15 -3303 ((-1182 |#1|) (-1277 |#1|))) (-15 -3217 ((-1182 |#1|) (-777))) (-15 -1367 ((-1277 |#1|) (-1277 |#1|) (-777) (-1129))) (-15 -2908 ((-1277 |#1|) (-1277 |#1|) (-777))) (-15 -2795 ((-1277 |#1|) (-1277 |#1|) (-1129) (-1129))) (-15 -2829 ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 ** ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 * ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -3125 ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -4399 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -3211 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -1878 ((-1277 |#1|) (-1277 |#1|))) (-15 -2400 ((-928) (-1277 |#1|))) (-15 -4073 ((-112) (-1277 |#1|))) (-15 -3827 ((-1277 (-1277 |#1|)) (-928))) (-15 -1977 ((-1277 |#1|) (-928))) (-15 -3043 ((-1182 |#1|) (-1277 |#1|)))) (-354)) (T -534))
+((-3043 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)))) (-1977 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3827 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 *4))) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-4073 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-534 *4)))) (-2400 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-928)) (-5 *1 (-534 *4)))) (-1878 (*1 *2 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3)))) (-3211 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-928)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-4399 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-928)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-3125 (*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)))) (-2829 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-570)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-2795 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1129)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-2908 (*1 *2 *2 *3) (-12 (-5 *2 (-1277 *4)) (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-534 *4)))) (-1367 (*1 *2 *2 *3 *4) (-12 (-5 *2 (-1277 *5)) (-5 *3 (-777)) (-5 *4 (-1129)) (-4 *5 (-354)) (-5 *1 (-534 *5)))) (-3217 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3303 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4)))) (-2267 (*1 *2 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-3449 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4)) (-4 *4 (-354)))) (-4182 (*1 *2 *3 *4) (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129)))))) (-4 *4 (-354)) (-5 *2 (-1282)) (-5 *1 (-534 *4)))))
+(-10 -7 (-15 -4182 ((-1282) (-1277 (-650 (-2 (|:| -2308 |#1|) (|:| -2267 (-1129))))) |#1|)) (-15 -3449 ((-1277 |#1|) (-928))) (-15 -2267 ((-1277 |#1|) (-928) (-928))) (-15 -3303 ((-1182 |#1|) (-1277 |#1|))) (-15 -3217 ((-1182 |#1|) (-777))) (-15 -1367 ((-1277 |#1|) (-1277 |#1|) (-777) (-1129))) (-15 -2908 ((-1277 |#1|) (-1277 |#1|) (-777))) (-15 -2795 ((-1277 |#1|) (-1277 |#1|) (-1129) (-1129))) (-15 -2829 ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 ** ((-1277 |#1|) (-1277 |#1|) (-570))) (-15 * ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -3125 ((-1277 |#1|) (-1277 |#1|) (-1277 |#1|))) (-15 -4399 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -3211 ((-1277 |#1|) (-1277 |#1|) (-928))) (-15 -1878 ((-1277 |#1|) (-1277 |#1|))) (-15 -2400 ((-928) (-1277 |#1|))) (-15 -4073 ((-112) (-1277 |#1|))) (-15 -3827 ((-1277 (-1277 |#1|)) (-928))) (-15 -1977 ((-1277 |#1|) (-928))) (-15 -3043 ((-1182 |#1|) (-1277 |#1|))))
+((-4401 (((-697 (-1235)) $) NIL)) (-3805 (((-697 (-1233)) $) NIL)) (-3998 (((-697 (-1232)) $) NIL)) (-2969 (((-697 (-555)) $) NIL)) (-2910 (((-697 (-553)) $) NIL)) (-3172 (((-697 (-552)) $) NIL)) (-3739 (((-777) $ (-129)) NIL)) (-1556 (((-697 (-130)) $) 26)) (-3457 (((-1129) $ (-1129)) 31)) (-4029 (((-1129) $) 30)) (-4359 (((-112) $) 20)) (-1439 (($ (-394)) 14) (($ (-1168)) 16)) (-2684 (((-112) $) 27)) (-3802 (((-868) $) 34)) (-3443 (($ $) 28)))
+(((-535) (-13 (-533) (-619 (-868)) (-10 -8 (-15 -1439 ($ (-394))) (-15 -1439 ($ (-1168))) (-15 -2684 ((-112) $)) (-15 -4359 ((-112) $)) (-15 -4029 ((-1129) $)) (-15 -3457 ((-1129) $ (-1129)))))) (T -535))
+((-1439 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-535)))) (-1439 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-535)))) (-2684 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))) (-4359 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))) (-4029 (*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))) (-3457 (*1 *2 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))))
+(-13 (-533) (-619 (-868)) (-10 -8 (-15 -1439 ($ (-394))) (-15 -1439 ($ (-1168))) (-15 -2684 ((-112) $)) (-15 -4359 ((-112) $)) (-15 -4029 ((-1129) $)) (-15 -3457 ((-1129) $ (-1129)))))
+((-1375 (((-1 |#1| |#1|) |#1|) 11)) (-4186 (((-1 |#1| |#1|)) 10)))
+(((-536 |#1|) (-10 -7 (-15 -4186 ((-1 |#1| |#1|))) (-15 -1375 ((-1 |#1| |#1|) |#1|))) (-13 (-732) (-25))) (T -536))
+((-1375 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))) (-4186 (*1 *2) (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
+(-10 -7 (-15 -4186 ((-1 |#1| |#1|))) (-15 -1375 ((-1 |#1| |#1|) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3271 (($ $ $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-3915 (($ (-777) |#1|) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-1357 (($ (-1 (-777) (-777)) $) NIL)) (-4240 ((|#1| $) NIL)) (-1928 (((-777) $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 27)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)) (-3104 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL)))
(((-537 |#1|) (-13 (-799) (-515 (-777) |#1|)) (-856)) (T -537))
NIL
(-13 (-799) (-515 (-777) |#1|))
-((-2089 (((-650 |#2|) (-1182 |#1|) |#3|) 98)) (-4126 (((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|))) 114)) (-1788 (((-1182 |#1|) (-695 |#1|)) 110)))
-(((-538 |#1| |#2| |#3|) (-10 -7 (-15 -1788 ((-1182 |#1|) (-695 |#1|))) (-15 -2089 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -4126 ((-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))
-((-4126 (*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))))) (-2089 (*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))))) (-1788 (*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 -1788 ((-1182 |#1|) (-695 |#1|))) (-15 -2089 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -4126 ((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|)))))
-((-2015 (((-697 (-1235)) $ (-1235)) NIL)) (-1495 (((-697 (-555)) $ (-555)) NIL)) (-2770 (((-777) $ (-129)) 39)) (-4093 (((-697 (-130)) $ (-130)) 40)) (-4373 (((-697 (-1235)) $) NIL)) (-3018 (((-697 (-1233)) $) NIL)) (-1989 (((-697 (-1232)) $) NIL)) (-2118 (((-697 (-555)) $) NIL)) (-3178 (((-697 (-553)) $) NIL)) (-3077 (((-697 (-552)) $) NIL)) (-2370 (((-777) $ (-129)) 35)) (-1607 (((-697 (-130)) $) 37)) (-3206 (((-112) $) 27)) (-4333 (((-697 $) (-585) (-961)) 18) (((-697 $) (-497) (-961)) 24)) (-3799 (((-868) $) 48)) (-3107 (($ $) 42)))
-(((-539) (-13 (-773 (-585)) (-619 (-868)) (-10 -8 (-15 -4333 ((-697 $) (-497) (-961)))))) (T -539))
-((-4333 (*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 -4333 ((-697 $) (-497) (-961)))))
-((-2067 (((-849 (-570))) 12)) (-2079 (((-849 (-570))) 14)) (-1324 (((-839 (-570))) 9)))
-(((-540) (-10 -7 (-15 -1324 ((-839 (-570)))) (-15 -2067 ((-849 (-570)))) (-15 -2079 ((-849 (-570)))))) (T -540))
-((-2079 (*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540)))) (-2067 (*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 -2067 ((-849 (-570)))) (-15 -2079 ((-849 (-570)))))
-((-1840 (((-542) (-1186)) 15)) (-3096 ((|#1| (-542)) 20)))
-(((-541 |#1|) (-10 -7 (-15 -1840 ((-542) (-1186))) (-15 -3096 (|#1| (-542)))) (-1227)) (T -541))
-((-3096 (*1 *2 *3) (-12 (-5 *3 (-542)) (-5 *1 (-541 *2)) (-4 *2 (-1227)))) (-1840 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-542)) (-5 *1 (-541 *4)) (-4 *4 (-1227)))))
-(-10 -7 (-15 -1840 ((-542) (-1186))) (-15 -3096 (|#1| (-542))))
-((-2558 (((-112) $ $) NIL)) (-2416 (((-1168) $) 55)) (-1928 (((-112) $) 51)) (-1418 (((-1186) $) 52)) (-2385 (((-112) $) 49)) (-3428 (((-1168) $) 50)) (-1900 (($ (-1168)) 56)) (-1645 (((-112) $) NIL)) (-2544 (((-112) $) NIL)) (-2994 (((-112) $) NIL)) (-1988 (((-1168) $) NIL)) (-3284 (($ $ (-650 (-1186))) 21)) (-3096 (((-52) $) 23)) (-2009 (((-112) $) NIL)) (-1449 (((-570) $) NIL)) (-3577 (((-1129) $) NIL)) (-1739 (($ $ (-650 (-1186)) (-1186)) 73)) (-3812 (((-112) $) NIL)) (-2693 (((-227) $) NIL)) (-4384 (($ $) 44)) (-2753 (((-868) $) NIL)) (-4305 (((-112) $ $) NIL)) (-1941 (($ $ (-570)) NIL) (($ $ (-650 (-570))) NIL)) (-3873 (((-650 $) $) 30)) (-4062 (((-1186) (-650 $)) 57)) (-1425 (($ (-1168)) NIL) (($ (-1186)) 19) (($ (-570)) 8) (($ (-227)) 28) (($ (-868)) NIL) (($ (-650 $)) 65) (((-1113) $) 12) (($ (-1113)) 13)) (-2662 (((-1186) (-1186) (-650 $)) 60)) (-3799 (((-868) $) 54)) (-3447 (($ $) 59)) (-3435 (($ $) 58)) (-2344 (($ $ (-650 $)) 66)) (-2335 (((-112) $ $) NIL)) (-3325 (((-112) $) 29)) (-1861 (($) 9 T CONST)) (-1875 (($) 11 T CONST)) (-3022 (((-112) $ $) 74)) (-3122 (($ $ $) 82)) (-3101 (($ $ $) 75)) (** (($ $ (-777)) 81) (($ $ (-570)) 80)) (* (($ $ $) 76)) (-2569 (((-570) $) NIL)))
-(((-542) (-13 (-1112 (-1168) (-1186) (-570) (-227) (-868)) (-620 (-1113)) (-10 -8 (-15 -3096 ((-52) $)) (-15 -1425 ($ (-1113))) (-15 -2344 ($ $ (-650 $))) (-15 -1739 ($ $ (-650 (-1186)) (-1186))) (-15 -3284 ($ $ (-650 (-1186)))) (-15 -3101 ($ $ $)) (-15 * ($ $ $)) (-15 -3122 ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ (-570))) (-15 0 ($) -3725) (-15 1 ($) -3725) (-15 -4384 ($ $)) (-15 -2416 ((-1168) $)) (-15 -1900 ($ (-1168))) (-15 -4062 ((-1186) (-650 $))) (-15 -2662 ((-1186) (-1186) (-650 $)))))) (T -542))
-((-3096 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-542)))) (-1425 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-542)))) (-2344 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-542))) (-5 *1 (-542)))) (-1739 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1186)) (-5 *1 (-542)))) (-3284 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-542)))) (-3101 (*1 *1 *1 *1) (-5 *1 (-542))) (* (*1 *1 *1 *1) (-5 *1 (-542))) (-3122 (*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)))) (-1861 (*1 *1) (-5 *1 (-542))) (-1875 (*1 *1) (-5 *1 (-542))) (-4384 (*1 *1 *1) (-5 *1 (-542))) (-2416 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))) (-1900 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))) (-4062 (*1 *2 *3) (-12 (-5 *3 (-650 (-542))) (-5 *2 (-1186)) (-5 *1 (-542)))) (-2662 (*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 -3096 ((-52) $)) (-15 -1425 ($ (-1113))) (-15 -2344 ($ $ (-650 $))) (-15 -1739 ($ $ (-650 (-1186)) (-1186))) (-15 -3284 ($ $ (-650 (-1186)))) (-15 -3101 ($ $ $)) (-15 * ($ $ $)) (-15 -3122 ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ (-570))) (-15 (-1861) ($) -3725) (-15 (-1875) ($) -3725) (-15 -4384 ($ $)) (-15 -2416 ((-1168) $)) (-15 -1900 ($ (-1168))) (-15 -4062 ((-1186) (-650 $))) (-15 -2662 ((-1186) (-1186) (-650 $)))))
-((-3845 ((|#2| |#2|) 17)) (-3731 ((|#2| |#2|) 13)) (-4294 ((|#2| |#2| (-570) (-570)) 20)) (-1621 ((|#2| |#2|) 15)))
-(((-543 |#1| |#2|) (-10 -7 (-15 -3731 (|#2| |#2|)) (-15 -1621 (|#2| |#2|)) (-15 -3845 (|#2| |#2|)) (-15 -4294 (|#2| |#2| (-570) (-570)))) (-13 (-562) (-148)) (-1268 |#1|)) (T -543))
-((-4294 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-543 *4 *2)) (-4 *2 (-1268 *4)))) (-3845 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))) (-1621 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))) (-3731 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))))
-(-10 -7 (-15 -3731 (|#2| |#2|)) (-15 -1621 (|#2| |#2|)) (-15 -3845 (|#2| |#2|)) (-15 -4294 (|#2| |#2| (-570) (-570))))
-((-3501 (((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186))) 32)) (-2266 (((-650 |#2|) (-959 |#1|) |#3|) 54) (((-650 |#2|) (-1182 |#1|) |#3|) 53)) (-2793 (((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|) 106)))
-(((-544 |#1| |#2| |#3|) (-10 -7 (-15 -2266 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2266 ((-650 |#2|) (-959 |#1|) |#3|)) (-15 -2793 ((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|)) (-15 -3501 ((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186))))) (-458) (-368) (-13 (-368) (-854))) (T -544))
-((-3501 (*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))))) (-2793 (*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))))) (-2266 (*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))))) (-2266 (*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 -2266 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2266 ((-650 |#2|) (-959 |#1|) |#3|)) (-15 -2793 ((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|)) (-15 -3501 ((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186)))))
-((-3449 ((|#2| |#2| |#1|) 17)) (-2349 ((|#2| (-650 |#2|)) 31)) (-3230 ((|#2| (-650 |#2|)) 52)))
-(((-545 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2349 (|#2| (-650 |#2|))) (-15 -3230 (|#2| (-650 |#2|))) (-15 -3449 (|#2| |#2| |#1|))) (-311) (-1253 |#1|) |#1| (-1 |#1| |#1| (-777))) (T -545))
-((-3449 (*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)))) (-3230 (*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))))) (-2349 (*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 -2349 (|#2| (-650 |#2|))) (-15 -3230 (|#2| (-650 |#2|))) (-15 -3449 (|#2| |#2| |#1|)))
-((-3801 (((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|))) 89) (((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|))) 211)))
-(((-546 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3801 ((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))) (-15 -3801 ((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|))))) (-856) (-799) (-13 (-311) (-148)) (-956 |#3| |#2| |#1|)) (T -546))
-((-3801 (*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)))) (-3801 (*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 -3801 ((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))) (-15 -3801 ((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))))
-((-3845 ((|#4| |#4|) 74)) (-3731 ((|#4| |#4|) 70)) (-4294 ((|#4| |#4| (-570) (-570)) 76)) (-1621 ((|#4| |#4|) 72)))
-(((-547 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3731 (|#4| |#4|)) (-15 -1621 (|#4| |#4|)) (-15 -3845 (|#4| |#4|)) (-15 -4294 (|#4| |#4| (-570) (-570)))) (-13 (-368) (-373) (-620 (-570))) (-1253 |#1|) (-730 |#1| |#2|) (-1268 |#3|)) (T -547))
-((-4294 (*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)))) (-3845 (*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)))) (-1621 (*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)))) (-3731 (*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 -3731 (|#4| |#4|)) (-15 -1621 (|#4| |#4|)) (-15 -3845 (|#4| |#4|)) (-15 -4294 (|#4| |#4| (-570) (-570))))
-((-3845 ((|#2| |#2|) 27)) (-3731 ((|#2| |#2|) 23)) (-4294 ((|#2| |#2| (-570) (-570)) 29)) (-1621 ((|#2| |#2|) 25)))
-(((-548 |#1| |#2|) (-10 -7 (-15 -3731 (|#2| |#2|)) (-15 -1621 (|#2| |#2|)) (-15 -3845 (|#2| |#2|)) (-15 -4294 (|#2| |#2| (-570) (-570)))) (-13 (-368) (-373) (-620 (-570))) (-1268 |#1|)) (T -548))
-((-4294 (*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)))) (-3845 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))) (-1621 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))) (-3731 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))))
-(-10 -7 (-15 -3731 (|#2| |#2|)) (-15 -1621 (|#2| |#2|)) (-15 -3845 (|#2| |#2|)) (-15 -4294 (|#2| |#2| (-570) (-570))))
-((-4331 (((-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 -4331 ((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -4331 ((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -4331 ((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|)))) (-1058) (-1253 |#1|)) (T -549))
-((-4331 (*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)))) (-4331 (*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)))) (-4331 (*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 -4331 ((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -4331 ((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -4331 ((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|))))
-((-3687 (($ $ $) 84)) (-1652 (((-424 $) $) 52)) (-4380 (((-3 (-570) "failed") $) 64)) (-3216 (((-570) $) 42)) (-2805 (((-3 (-413 (-570)) "failed") $) 79)) (-3242 (((-112) $) 26)) (-2068 (((-413 (-570)) $) 77)) (-3618 (((-112) $) 55)) (-4228 (($ $ $ $) 92)) (-3903 (((-112) $) 17)) (-4071 (($ $ $) 62)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 74)) (-2619 (((-3 $ "failed") $) 69)) (-2735 (($ $) 24)) (-2784 (($ $ $) 90)) (-2438 (($) 65)) (-4365 (($ $) 58)) (-3801 (((-424 $) $) 50)) (-3273 (((-112) $) 15)) (-2142 (((-777) $) 32)) (-3547 (($ $ (-777)) NIL) (($ $) 11)) (-3951 (($ $) 18)) (-1425 (((-570) $) NIL) (((-542) $) 41) (((-899 (-570)) $) 45) (((-384) $) 35) (((-227) $) 38)) (-3499 (((-777)) 9)) (-2282 (((-112) $ $) 21)) (-2858 (($ $ $) 60)))
-(((-550 |#1|) (-10 -8 (-15 -2784 (|#1| |#1| |#1|)) (-15 -4228 (|#1| |#1| |#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -3951 (|#1| |#1|)) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -3687 (|#1| |#1| |#1|)) (-15 -2282 ((-112) |#1| |#1|)) (-15 -3273 ((-112) |#1|)) (-15 -2438 (|#1|)) (-15 -2619 ((-3 |#1| "failed") |#1|)) (-15 -1425 ((-227) |#1|)) (-15 -1425 ((-384) |#1|)) (-15 -4071 (|#1| |#1| |#1|)) (-15 -4365 (|#1| |#1|)) (-15 -2858 (|#1| |#1| |#1|)) (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -1425 ((-570) |#1|)) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3903 ((-112) |#1|)) (-15 -2142 ((-777) |#1|)) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -3618 ((-112) |#1|)) (-15 -3499 ((-777)))) (-551)) (T -550))
-((-3499 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-550 *3)) (-4 *3 (-551)))))
-(-10 -8 (-15 -2784 (|#1| |#1| |#1|)) (-15 -4228 (|#1| |#1| |#1| |#1|)) (-15 -2735 (|#1| |#1|)) (-15 -3951 (|#1| |#1|)) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -3687 (|#1| |#1| |#1|)) (-15 -2282 ((-112) |#1| |#1|)) (-15 -3273 ((-112) |#1|)) (-15 -2438 (|#1|)) (-15 -2619 ((-3 |#1| "failed") |#1|)) (-15 -1425 ((-227) |#1|)) (-15 -1425 ((-384) |#1|)) (-15 -4071 (|#1| |#1| |#1|)) (-15 -4365 (|#1| |#1|)) (-15 -2858 (|#1| |#1| |#1|)) (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -1425 ((-570) |#1|)) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3903 ((-112) |#1|)) (-15 -2142 ((-777) |#1|)) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -3618 ((-112) |#1|)) (-15 -3499 ((-777))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3687 (($ $ $) 90)) (-3990 (((-3 $ "failed") $ $) 20)) (-1520 (($ $ $ $) 79)) (-4364 (($ $) 57)) (-1652 (((-424 $) $) 58)) (-3473 (((-112) $ $) 130)) (-4395 (((-570) $) 119)) (-3160 (($ $ $) 93)) (-1705 (($) 18 T CONST)) (-4380 (((-3 (-570) "failed") $) 111)) (-3216 (((-570) $) 112)) (-2506 (($ $ $) 134)) (-4196 (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 109) (((-695 (-570)) (-695 $)) 108)) (-2875 (((-3 $ "failed") $) 37)) (-2805 (((-3 (-413 (-570)) "failed") $) 87)) (-3242 (((-112) $) 89)) (-2068 (((-413 (-570)) $) 88)) (-3446 (($) 86) (($ $) 85)) (-2518 (($ $ $) 133)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 128)) (-3618 (((-112) $) 59)) (-4228 (($ $ $ $) 77)) (-2702 (($ $ $) 91)) (-3903 (((-112) $) 121)) (-4071 (($ $ $) 102)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 105)) (-4346 (((-112) $) 35)) (-2110 (((-112) $) 97)) (-2619 (((-3 $ "failed") $) 99)) (-1479 (((-112) $) 120)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 137)) (-2120 (($ $ $ $) 78)) (-3466 (($ $ $) 122)) (-2800 (($ $ $) 123)) (-2735 (($ $) 81)) (-1355 (($ $) 94)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-2784 (($ $ $) 76)) (-2438 (($) 98 T CONST)) (-3615 (($ $) 83)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-4365 (($ $) 103)) (-3801 (((-424 $) $) 56)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 136) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 135)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 129)) (-3273 (((-112) $) 96)) (-2142 (((-777) $) 131)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 132)) (-3547 (($ $ (-777)) 116) (($ $) 114)) (-2574 (($ $) 82)) (-3951 (($ $) 84)) (-1425 (((-570) $) 113) (((-542) $) 107) (((-899 (-570)) $) 106) (((-384) $) 101) (((-227) $) 100)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 110)) (-3499 (((-777)) 32 T CONST)) (-2282 (((-112) $ $) 92)) (-2858 (($ $ $) 104)) (-2335 (((-112) $ $) 9)) (-4406 (($) 95)) (-2029 (((-112) $ $) 45)) (-1613 (($ $ $ $) 80)) (-2622 (($ $) 118)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-777)) 117) (($ $) 115)) (-3072 (((-112) $ $) 125)) (-3052 (((-112) $ $) 126)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 124)) (-3042 (((-112) $ $) 127)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2671 (((-650 |#2|) (-1182 |#1|) |#3|) 98)) (-2763 (((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|))) 114)) (-2749 (((-1182 |#1|) (-695 |#1|)) 110)))
+(((-538 |#1| |#2| |#3|) (-10 -7 (-15 -2749 ((-1182 |#1|) (-695 |#1|))) (-15 -2671 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2763 ((-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))
+((-2763 (*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))))) (-2671 (*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))))) (-2749 (*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 -2749 ((-1182 |#1|) (-695 |#1|))) (-15 -2671 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -2763 ((-650 (-2 (|:| |outval| |#2|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#2|))))) (-695 |#1|) |#3| (-1 (-424 (-1182 |#1|)) (-1182 |#1|)))))
+((-4264 (((-697 (-1235)) $ (-1235)) NIL)) (-2939 (((-697 (-555)) $ (-555)) NIL)) (-2228 (((-777) $ (-129)) 39)) (-3652 (((-697 (-130)) $ (-130)) 40)) (-4401 (((-697 (-1235)) $) NIL)) (-3805 (((-697 (-1233)) $) NIL)) (-3998 (((-697 (-1232)) $) NIL)) (-2969 (((-697 (-555)) $) NIL)) (-2910 (((-697 (-553)) $) NIL)) (-3172 (((-697 (-552)) $) NIL)) (-3739 (((-777) $ (-129)) 35)) (-1556 (((-697 (-130)) $) 37)) (-1975 (((-112) $) 27)) (-4020 (((-697 $) (-585) (-961)) 18) (((-697 $) (-497) (-961)) 24)) (-3802 (((-868) $) 48)) (-3443 (($ $) 42)))
+(((-539) (-13 (-773 (-585)) (-619 (-868)) (-10 -8 (-15 -4020 ((-697 $) (-497) (-961)))))) (T -539))
+((-4020 (*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 -4020 ((-697 $) (-497) (-961)))))
+((-2068 (((-849 (-570))) 12)) (-2080 (((-849 (-570))) 14)) (-1326 (((-839 (-570))) 9)))
+(((-540) (-10 -7 (-15 -1326 ((-839 (-570)))) (-15 -2068 ((-849 (-570)))) (-15 -2080 ((-849 (-570)))))) (T -540))
+((-2080 (*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540)))) (-2068 (*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540)))) (-1326 (*1 *2) (-12 (-5 *2 (-839 (-570))) (-5 *1 (-540)))))
+(-10 -7 (-15 -1326 ((-839 (-570)))) (-15 -2068 ((-849 (-570)))) (-15 -2080 ((-849 (-570)))))
+((-2001 (((-542) (-1186)) 15)) (-3099 ((|#1| (-542)) 20)))
+(((-541 |#1|) (-10 -7 (-15 -2001 ((-542) (-1186))) (-15 -3099 (|#1| (-542)))) (-1227)) (T -541))
+((-3099 (*1 *2 *3) (-12 (-5 *3 (-542)) (-5 *1 (-541 *2)) (-4 *2 (-1227)))) (-2001 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-542)) (-5 *1 (-541 *4)) (-4 *4 (-1227)))))
+(-10 -7 (-15 -2001 ((-542) (-1186))) (-15 -3099 (|#1| (-542))))
+((-2560 (((-112) $ $) NIL)) (-3001 (((-1168) $) 55)) (-1527 (((-112) $) 51)) (-1419 (((-1186) $) 52)) (-2709 (((-112) $) 49)) (-3431 (((-1168) $) 50)) (-4339 (($ (-1168)) 56)) (-3800 (((-112) $) NIL)) (-1871 (((-112) $) NIL)) (-1710 (((-112) $) NIL)) (-3989 (((-1168) $) NIL)) (-3287 (($ $ (-650 (-1186))) 21)) (-3099 (((-52) $) 23)) (-4201 (((-112) $) NIL)) (-1450 (((-570) $) NIL)) (-3580 (((-1129) $) NIL)) (-1743 (($ $ (-650 (-1186)) (-1186)) 73)) (-2726 (((-112) $) NIL)) (-2695 (((-227) $) NIL)) (-4388 (($ $) 44)) (-2756 (((-868) $) NIL)) (-4308 (((-112) $ $) NIL)) (-1942 (($ $ (-570)) NIL) (($ $ (-650 (-570))) NIL)) (-3875 (((-650 $) $) 30)) (-4065 (((-1186) (-650 $)) 57)) (-1426 (($ (-1168)) NIL) (($ (-1186)) 19) (($ (-570)) 8) (($ (-227)) 28) (($ (-868)) NIL) (($ (-650 $)) 65) (((-1113) $) 12) (($ (-1113)) 13)) (-2663 (((-1186) (-1186) (-650 $)) 60)) (-3802 (((-868) $) 54)) (-3450 (($ $) 59)) (-3437 (($ $) 58)) (-3462 (($ $ (-650 $)) 66)) (-3359 (((-112) $ $) NIL)) (-1877 (((-112) $) 29)) (-1862 (($) 9 T CONST)) (-1876 (($) 11 T CONST)) (-3025 (((-112) $ $) 74)) (-3125 (($ $ $) 82)) (-3104 (($ $ $) 75)) (** (($ $ (-777)) 81) (($ $ (-570)) 80)) (* (($ $ $) 76)) (-2570 (((-570) $) NIL)))
+(((-542) (-13 (-1112 (-1168) (-1186) (-570) (-227) (-868)) (-620 (-1113)) (-10 -8 (-15 -3099 ((-52) $)) (-15 -1426 ($ (-1113))) (-15 -3462 ($ $ (-650 $))) (-15 -1743 ($ $ (-650 (-1186)) (-1186))) (-15 -3287 ($ $ (-650 (-1186)))) (-15 -3104 ($ $ $)) (-15 * ($ $ $)) (-15 -3125 ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ (-570))) (-15 0 ($) -3728) (-15 1 ($) -3728) (-15 -4388 ($ $)) (-15 -3001 ((-1168) $)) (-15 -4339 ($ (-1168))) (-15 -4065 ((-1186) (-650 $))) (-15 -2663 ((-1186) (-1186) (-650 $)))))) (T -542))
+((-3099 (*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-542)))) (-1426 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-542)))) (-3462 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-542))) (-5 *1 (-542)))) (-1743 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1186)) (-5 *1 (-542)))) (-3287 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-542)))) (-3104 (*1 *1 *1 *1) (-5 *1 (-542))) (* (*1 *1 *1 *1) (-5 *1 (-542))) (-3125 (*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)))) (-1862 (*1 *1) (-5 *1 (-542))) (-1876 (*1 *1) (-5 *1 (-542))) (-4388 (*1 *1 *1) (-5 *1 (-542))) (-3001 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))) (-4339 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))) (-4065 (*1 *2 *3) (-12 (-5 *3 (-650 (-542))) (-5 *2 (-1186)) (-5 *1 (-542)))) (-2663 (*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 -3099 ((-52) $)) (-15 -1426 ($ (-1113))) (-15 -3462 ($ $ (-650 $))) (-15 -1743 ($ $ (-650 (-1186)) (-1186))) (-15 -3287 ($ $ (-650 (-1186)))) (-15 -3104 ($ $ $)) (-15 * ($ $ $)) (-15 -3125 ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ (-570))) (-15 (-1862) ($) -3728) (-15 (-1876) ($) -3728) (-15 -4388 ($ $)) (-15 -3001 ((-1168) $)) (-15 -4339 ($ (-1168))) (-15 -4065 ((-1186) (-650 $))) (-15 -2663 ((-1186) (-1186) (-650 $)))))
+((-2980 ((|#2| |#2|) 17)) (-4342 ((|#2| |#2|) 13)) (-1846 ((|#2| |#2| (-570) (-570)) 20)) (-1702 ((|#2| |#2|) 15)))
+(((-543 |#1| |#2|) (-10 -7 (-15 -4342 (|#2| |#2|)) (-15 -1702 (|#2| |#2|)) (-15 -2980 (|#2| |#2|)) (-15 -1846 (|#2| |#2| (-570) (-570)))) (-13 (-562) (-148)) (-1268 |#1|)) (T -543))
+((-1846 (*1 *2 *2 *3 *3) (-12 (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-543 *4 *2)) (-4 *2 (-1268 *4)))) (-2980 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))) (-1702 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))) (-4342 (*1 *2 *2) (-12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-543 *3 *2)) (-4 *2 (-1268 *3)))))
+(-10 -7 (-15 -4342 (|#2| |#2|)) (-15 -1702 (|#2| |#2|)) (-15 -2980 (|#2| |#2|)) (-15 -1846 (|#2| |#2| (-570) (-570))))
+((-2871 (((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186))) 32)) (-3873 (((-650 |#2|) (-959 |#1|) |#3|) 54) (((-650 |#2|) (-1182 |#1|) |#3|) 53)) (-2409 (((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|) 106)))
+(((-544 |#1| |#2| |#3|) (-10 -7 (-15 -3873 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -3873 ((-650 |#2|) (-959 |#1|) |#3|)) (-15 -2409 ((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|)) (-15 -2871 ((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186))))) (-458) (-368) (-13 (-368) (-854))) (T -544))
+((-2871 (*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))))) (-2409 (*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))))) (-3873 (*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))))) (-3873 (*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 -3873 ((-650 |#2|) (-1182 |#1|) |#3|)) (-15 -3873 ((-650 |#2|) (-959 |#1|) |#3|)) (-15 -2409 ((-650 (-650 |#2|)) (-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)) |#3|)) (-15 -2871 ((-650 (-298 (-959 |#2|))) (-650 |#2|) (-650 (-1186)))))
+((-3547 ((|#2| |#2| |#1|) 17)) (-3516 ((|#2| (-650 |#2|)) 31)) (-2181 ((|#2| (-650 |#2|)) 52)))
+(((-545 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3516 (|#2| (-650 |#2|))) (-15 -2181 (|#2| (-650 |#2|))) (-15 -3547 (|#2| |#2| |#1|))) (-311) (-1253 |#1|) |#1| (-1 |#1| |#1| (-777))) (T -545))
+((-3547 (*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)))) (-2181 (*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))))) (-3516 (*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 -3516 (|#2| (-650 |#2|))) (-15 -2181 (|#2| (-650 |#2|))) (-15 -3547 (|#2| |#2| |#1|)))
+((-3804 (((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|))) 89) (((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|))) 211)))
+(((-546 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3804 ((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))) (-15 -3804 ((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|))))) (-856) (-799) (-13 (-311) (-148)) (-956 |#3| |#2| |#1|)) (T -546))
+((-3804 (*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)))) (-3804 (*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 -3804 ((-424 |#4|) |#4| (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))) (-15 -3804 ((-424 (-1182 |#4|)) (-1182 |#4|) (-1 (-424 (-1182 |#3|)) (-1182 |#3|)))))
+((-2980 ((|#4| |#4|) 74)) (-4342 ((|#4| |#4|) 70)) (-1846 ((|#4| |#4| (-570) (-570)) 76)) (-1702 ((|#4| |#4|) 72)))
+(((-547 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4342 (|#4| |#4|)) (-15 -1702 (|#4| |#4|)) (-15 -2980 (|#4| |#4|)) (-15 -1846 (|#4| |#4| (-570) (-570)))) (-13 (-368) (-373) (-620 (-570))) (-1253 |#1|) (-730 |#1| |#2|) (-1268 |#3|)) (T -547))
+((-1846 (*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)))) (-2980 (*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)))) (-1702 (*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)))) (-4342 (*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 -4342 (|#4| |#4|)) (-15 -1702 (|#4| |#4|)) (-15 -2980 (|#4| |#4|)) (-15 -1846 (|#4| |#4| (-570) (-570))))
+((-2980 ((|#2| |#2|) 27)) (-4342 ((|#2| |#2|) 23)) (-1846 ((|#2| |#2| (-570) (-570)) 29)) (-1702 ((|#2| |#2|) 25)))
+(((-548 |#1| |#2|) (-10 -7 (-15 -4342 (|#2| |#2|)) (-15 -1702 (|#2| |#2|)) (-15 -2980 (|#2| |#2|)) (-15 -1846 (|#2| |#2| (-570) (-570)))) (-13 (-368) (-373) (-620 (-570))) (-1268 |#1|)) (T -548))
+((-1846 (*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)))) (-2980 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))) (-1702 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))) (-4342 (*1 *2 *2) (-12 (-4 *3 (-13 (-368) (-373) (-620 (-570)))) (-5 *1 (-548 *3 *2)) (-4 *2 (-1268 *3)))))
+(-10 -7 (-15 -4342 (|#2| |#2|)) (-15 -1702 (|#2| |#2|)) (-15 -2980 (|#2| |#2|)) (-15 -1846 (|#2| |#2| (-570) (-570))))
+((-4001 (((-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 -4001 ((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -4001 ((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -4001 ((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|)))) (-1058) (-1253 |#1|)) (T -549))
+((-4001 (*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)))) (-4001 (*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)))) (-4001 (*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 -4001 ((-3 (-570) "failed") |#2| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -4001 ((-3 (-570) "failed") |#2| |#1| (-570) (-1 (-3 (-570) "failed") |#1|))) (-15 -4001 ((-3 (-570) "failed") |#2| |#1| (-1 (-3 (-570) "failed") |#1|))))
+((-3925 (($ $ $) 84)) (-3871 (((-424 $) $) 52)) (-4383 (((-3 (-570) "failed") $) 64)) (-3220 (((-570) $) 42)) (-2502 (((-3 (-413 (-570)) "failed") $) 79)) (-2313 (((-112) $) 26)) (-3645 (((-413 (-570)) $) 77)) (-1336 (((-112) $) 55)) (-2477 (($ $ $ $) 92)) (-2346 (((-112) $) 17)) (-3401 (($ $ $) 62)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 74)) (-4369 (((-3 $ "failed") $) 69)) (-2738 (($ $) 24)) (-2345 (($ $ $) 90)) (-2439 (($) 65)) (-4322 (($ $) 58)) (-3804 (((-424 $) $) 50)) (-4418 (((-112) $) 15)) (-2006 (((-777) $) 32)) (-3550 (($ $ (-777)) NIL) (($ $) 11)) (-3954 (($ $) 18)) (-1426 (((-570) $) NIL) (((-542) $) 41) (((-899 (-570)) $) 45) (((-384) $) 35) (((-227) $) 38)) (-2851 (((-777)) 9)) (-4022 (((-112) $ $) 21)) (-1730 (($ $ $) 60)))
+(((-550 |#1|) (-10 -8 (-15 -2345 (|#1| |#1| |#1|)) (-15 -2477 (|#1| |#1| |#1| |#1|)) (-15 -2738 (|#1| |#1|)) (-15 -3954 (|#1| |#1|)) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -3925 (|#1| |#1| |#1|)) (-15 -4022 ((-112) |#1| |#1|)) (-15 -4418 ((-112) |#1|)) (-15 -2439 (|#1|)) (-15 -4369 ((-3 |#1| "failed") |#1|)) (-15 -1426 ((-227) |#1|)) (-15 -1426 ((-384) |#1|)) (-15 -3401 (|#1| |#1| |#1|)) (-15 -4322 (|#1| |#1|)) (-15 -1730 (|#1| |#1| |#1|)) (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -1426 ((-570) |#1|)) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -2346 ((-112) |#1|)) (-15 -2006 ((-777) |#1|)) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -1336 ((-112) |#1|)) (-15 -2851 ((-777)))) (-551)) (T -550))
+((-2851 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-550 *3)) (-4 *3 (-551)))))
+(-10 -8 (-15 -2345 (|#1| |#1| |#1|)) (-15 -2477 (|#1| |#1| |#1| |#1|)) (-15 -2738 (|#1| |#1|)) (-15 -3954 (|#1| |#1|)) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -3925 (|#1| |#1| |#1|)) (-15 -4022 ((-112) |#1| |#1|)) (-15 -4418 ((-112) |#1|)) (-15 -2439 (|#1|)) (-15 -4369 ((-3 |#1| "failed") |#1|)) (-15 -1426 ((-227) |#1|)) (-15 -1426 ((-384) |#1|)) (-15 -3401 (|#1| |#1| |#1|)) (-15 -4322 (|#1| |#1|)) (-15 -1730 (|#1| |#1| |#1|)) (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -1426 ((-570) |#1|)) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -2346 ((-112) |#1|)) (-15 -2006 ((-777) |#1|)) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -1336 ((-112) |#1|)) (-15 -2851 ((-777))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-3925 (($ $ $) 90)) (-1966 (((-3 $ "failed") $ $) 20)) (-1964 (($ $ $ $) 79)) (-4310 (($ $) 57)) (-3871 (((-424 $) $) 58)) (-3765 (((-112) $ $) 130)) (-3408 (((-570) $) 119)) (-3163 (($ $ $) 93)) (-3195 (($) 18 T CONST)) (-4383 (((-3 (-570) "failed") $) 111)) (-3220 (((-570) $) 112)) (-2504 (($ $ $) 134)) (-2179 (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 109) (((-695 (-570)) (-695 $)) 108)) (-1929 (((-3 $ "failed") $) 37)) (-2502 (((-3 (-413 (-570)) "failed") $) 87)) (-2313 (((-112) $) 89)) (-3645 (((-413 (-570)) $) 88)) (-3449 (($) 86) (($ $) 85)) (-2519 (($ $ $) 133)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 128)) (-1336 (((-112) $) 59)) (-2477 (($ $ $ $) 77)) (-2787 (($ $ $) 91)) (-2346 (((-112) $) 121)) (-3401 (($ $ $) 102)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 105)) (-4139 (((-112) $) 35)) (-2888 (((-112) $) 97)) (-4369 (((-3 $ "failed") $) 99)) (-2788 (((-112) $) 120)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 137)) (-2986 (($ $ $ $) 78)) (-3469 (($ $ $) 122)) (-2472 (($ $ $) 123)) (-2738 (($ $) 81)) (-1356 (($ $) 94)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-2345 (($ $ $) 76)) (-2439 (($) 98 T CONST)) (-3618 (($ $) 83)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-4322 (($ $) 103)) (-3804 (((-424 $) $) 56)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 136) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 135)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 129)) (-4418 (((-112) $) 96)) (-2006 (((-777) $) 131)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 132)) (-3550 (($ $ (-777)) 116) (($ $) 114)) (-2574 (($ $) 82)) (-3954 (($ $) 84)) (-1426 (((-570) $) 113) (((-542) $) 107) (((-899 (-570)) $) 106) (((-384) $) 101) (((-227) $) 100)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 110)) (-2851 (((-777)) 32 T CONST)) (-4022 (((-112) $ $) 92)) (-1730 (($ $ $) 104)) (-3359 (((-112) $ $) 9)) (-4409 (($) 95)) (-3228 (((-112) $ $) 45)) (-1605 (($ $ $ $) 80)) (-3231 (($ $) 118)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-777)) 117) (($ $) 115)) (-3075 (((-112) $ $) 125)) (-3055 (((-112) $ $) 126)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 124)) (-3045 (((-112) $ $) 127)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-551) (-141)) (T -551))
-((-2110 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-3273 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-4406 (*1 *1) (-4 *1 (-551))) (-1355 (*1 *1 *1) (-4 *1 (-551))) (-3160 (*1 *1 *1 *1) (-4 *1 (-551))) (-2282 (*1 *2 *1 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-2702 (*1 *1 *1 *1) (-4 *1 (-551))) (-3687 (*1 *1 *1 *1) (-4 *1 (-551))) (-3242 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-2068 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-413 (-570))))) (-2805 (*1 *2 *1) (|partial| -12 (-4 *1 (-551)) (-5 *2 (-413 (-570))))) (-3446 (*1 *1) (-4 *1 (-551))) (-3446 (*1 *1 *1) (-4 *1 (-551))) (-3951 (*1 *1 *1) (-4 *1 (-551))) (-3615 (*1 *1 *1) (-4 *1 (-551))) (-2574 (*1 *1 *1) (-4 *1 (-551))) (-2735 (*1 *1 *1) (-4 *1 (-551))) (-1613 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-1520 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-2120 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-4228 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-2784 (*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 -2110 ((-112) $)) (-15 -3273 ((-112) $)) (-6 -4448) (-15 -4406 ($)) (-15 -1355 ($ $)) (-15 -3160 ($ $ $)) (-15 -2282 ((-112) $ $)) (-15 -2702 ($ $ $)) (-15 -3687 ($ $ $)) (-15 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-3 (-413 (-570)) "failed") $)) (-15 -3446 ($)) (-15 -3446 ($ $)) (-15 -3951 ($ $)) (-15 -3615 ($ $)) (-15 -2574 ($ $)) (-15 -2735 ($ $)) (-15 -1613 ($ $ $ $)) (-15 -1520 ($ $ $ $)) (-15 -2120 ($ $ $ $)) (-15 -4228 ($ $ $ $)) (-15 -2784 ($ $ $)) (-6 -4447)))
+((-2888 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-4418 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-4409 (*1 *1) (-4 *1 (-551))) (-1356 (*1 *1 *1) (-4 *1 (-551))) (-3163 (*1 *1 *1 *1) (-4 *1 (-551))) (-4022 (*1 *2 *1 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-2787 (*1 *1 *1 *1) (-4 *1 (-551))) (-3925 (*1 *1 *1 *1) (-4 *1 (-551))) (-2313 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))) (-3645 (*1 *2 *1) (-12 (-4 *1 (-551)) (-5 *2 (-413 (-570))))) (-2502 (*1 *2 *1) (|partial| -12 (-4 *1 (-551)) (-5 *2 (-413 (-570))))) (-3449 (*1 *1) (-4 *1 (-551))) (-3449 (*1 *1 *1) (-4 *1 (-551))) (-3954 (*1 *1 *1) (-4 *1 (-551))) (-3618 (*1 *1 *1) (-4 *1 (-551))) (-2574 (*1 *1 *1) (-4 *1 (-551))) (-2738 (*1 *1 *1) (-4 *1 (-551))) (-1605 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-1964 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-2986 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-2477 (*1 *1 *1 *1 *1) (-4 *1 (-551))) (-2345 (*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 -2888 ((-112) $)) (-15 -4418 ((-112) $)) (-6 -4451) (-15 -4409 ($)) (-15 -1356 ($ $)) (-15 -3163 ($ $ $)) (-15 -4022 ((-112) $ $)) (-15 -2787 ($ $ $)) (-15 -3925 ($ $ $)) (-15 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-3 (-413 (-570)) "failed") $)) (-15 -3449 ($)) (-15 -3449 ($ $)) (-15 -3954 ($ $)) (-15 -3618 ($ $)) (-15 -2574 ($ $)) (-15 -2738 ($ $)) (-15 -1605 ($ $ $ $)) (-15 -1964 ($ $ $ $)) (-15 -2986 ($ $ $ $)) (-15 -2477 ($ $ $ $)) (-15 -2345 ($ $ $)) (-6 -4450)))
(((-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))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-552) (-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))) (T -552))
-((-1705 (*1 *1) (-5 *1 (-552))))
-(-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-552) (-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))) (T -552))
+((-3195 (*1 *1) (-5 *1 (-552))))
+(-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 16)))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-553) (-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))) (T -553))
-((-1705 (*1 *1) (-5 *1 (-553))))
-(-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-553) (-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))) (T -553))
+((-3195 (*1 *1) (-5 *1 (-553))))
+(-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 32)))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-554) (-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))) (T -554))
-((-1705 (*1 *1) (-5 *1 (-554))))
-(-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-554) (-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))) (T -554))
+((-3195 (*1 *1) (-5 *1 (-554))))
+(-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 64)))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-555) (-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))) (T -555))
-((-1705 (*1 *1) (-5 *1 (-555))))
-(-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-555) (-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))) (T -555))
+((-3195 (*1 *1) (-5 *1 (-555))))
+(-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) 8)))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3851 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#2| $ |#1| |#2|) NIL)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 |#2| "failed") |#1| $) NIL)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) NIL)) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) NIL)) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 ((|#1| $) NIL (|has| |#1| (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 ((|#1| $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2911 (((-650 |#1|) $) NIL)) (-3245 (((-112) |#1| $) NIL)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1805 (((-650 |#1|) $) NIL)) (-3939 (((-112) |#1| $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3543 ((|#2| $) NIL (|has| |#1| (-856)))) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2569 (((-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)))
-((-3802 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|))) 50)))
-(((-557 |#1| |#2|) (-10 -7 (-15 -3802 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|))))) (-562) (-13 (-27) (-436 |#1|))) (T -557))
-((-3802 (*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 -3802 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|)))))
-((-4185 (((-592 |#5|) |#5| (-1 |#3| |#3|)) 216)) (-4134 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 212)) (-3594 (((-592 |#5|) |#5| (-1 |#3| |#3|)) 220)))
-(((-558 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3594 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4185 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4134 ((-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))
-((-4134 (*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)))) (-4185 (*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)))) (-3594 (*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 -3594 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4185 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -4134 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
-((-3650 (((-112) (-570) (-570)) 12)) (-3013 (((-570) (-570)) 7)) (-1658 (((-570) (-570) (-570)) 10)))
-(((-559) (-10 -7 (-15 -3013 ((-570) (-570))) (-15 -1658 ((-570) (-570) (-570))) (-15 -3650 ((-112) (-570) (-570))))) (T -559))
-((-3650 (*1 *2 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-559)))) (-1658 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))) (-3013 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
-(-10 -7 (-15 -3013 ((-570) (-570))) (-15 -1658 ((-570) (-570) (-570))) (-15 -3650 ((-112) (-570) (-570))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3519 ((|#1| $) 67)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-2887 (($ $) 97)) (-2751 (($ $) 80)) (-3744 ((|#1| $) 68)) (-3990 (((-3 $ "failed") $ $) 20)) (-3814 (($ $) 79)) (-2866 (($ $) 96)) (-2733 (($ $) 81)) (-4107 (($ $) 95)) (-2774 (($ $) 82)) (-1705 (($) 18 T CONST)) (-4380 (((-3 (-570) "failed") $) 75)) (-3216 (((-570) $) 76)) (-2875 (((-3 $ "failed") $) 37)) (-3872 (($ |#1| |#1|) 72)) (-3903 (((-112) $) 66)) (-1315 (($) 107)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 78)) (-1479 (((-112) $) 65)) (-3466 (($ $ $) 113)) (-2800 (($ $ $) 112)) (-2789 (($ $) 104)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1867 (($ |#1| |#1|) 73) (($ |#1|) 71) (($ (-413 (-570))) 70)) (-2461 ((|#1| $) 69)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2547 (((-3 $ "failed") $ $) 48)) (-4387 (($ $) 105)) (-4117 (($ $) 94)) (-2788 (($ $) 83)) (-2899 (($ $) 93)) (-2766 (($ $) 84)) (-2876 (($ $) 92)) (-2740 (($ $) 85)) (-2495 (((-112) $ |#1|) 64)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 74)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-4154 (($ $) 103)) (-2825 (($ $) 91)) (-2029 (((-112) $ $) 45)) (-4129 (($ $) 102)) (-2801 (($ $) 90)) (-4176 (($ $) 101)) (-2845 (($ $) 89)) (-1578 (($ $) 100)) (-2855 (($ $) 88)) (-4163 (($ $) 99)) (-2835 (($ $) 87)) (-4140 (($ $) 98)) (-2814 (($ $) 86)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3072 (((-112) $ $) 110)) (-3052 (((-112) $ $) 109)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 111)) (-3042 (((-112) $ $) 108)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ $) 106) (($ $ (-413 (-570))) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3040 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#2| $ |#1| |#2|) NIL)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 |#2| "failed") |#1| $) NIL)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) NIL)) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) NIL)) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 ((|#1| $) NIL (|has| |#1| (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 ((|#1| $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2914 (((-650 |#1|) $) NIL)) (-2343 (((-112) |#1| $) NIL)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2903 (((-650 |#1|) $) NIL)) (-1358 (((-112) |#1| $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3546 ((|#2| $) NIL (|has| |#1| (-856)))) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-556 |#1| |#2| |#3|) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452))) (-1109) (-1109) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452)))) (T -556))
+NIL
+(-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452)))
+((-3807 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|))) 50)))
+(((-557 |#1| |#2|) (-10 -7 (-15 -3807 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|))))) (-562) (-13 (-27) (-436 |#1|))) (T -557))
+((-3807 (*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 -3807 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-1 (-1182 |#2|) (-1182 |#2|)))))
+((-3235 (((-592 |#5|) |#5| (-1 |#3| |#3|)) 216)) (-2832 (((-3 |#5| "failed") |#5| (-1 |#3| |#3|)) 212)) (-2464 (((-592 |#5|) |#5| (-1 |#3| |#3|)) 220)))
+(((-558 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2464 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3235 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2832 ((-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))
+((-2832 (*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)))) (-3235 (*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)))) (-2464 (*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 -2464 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -3235 ((-592 |#5|) |#5| (-1 |#3| |#3|))) (-15 -2832 ((-3 |#5| "failed") |#5| (-1 |#3| |#3|))))
+((-1722 (((-112) (-570) (-570)) 12)) (-3768 (((-570) (-570)) 7)) (-3921 (((-570) (-570) (-570)) 10)))
+(((-559) (-10 -7 (-15 -3768 ((-570) (-570))) (-15 -3921 ((-570) (-570) (-570))) (-15 -1722 ((-112) (-570) (-570))))) (T -559))
+((-1722 (*1 *2 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-559)))) (-3921 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))) (-3768 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
+(-10 -7 (-15 -3768 ((-570) (-570))) (-15 -3921 ((-570) (-570) (-570))) (-15 -1722 ((-112) (-570) (-570))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3522 ((|#1| $) 67)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-2890 (($ $) 97)) (-2755 (($ $) 80)) (-3271 ((|#1| $) 68)) (-1966 (((-3 $ "failed") $ $) 20)) (-3817 (($ $) 79)) (-2869 (($ $) 96)) (-2736 (($ $) 81)) (-4109 (($ $) 95)) (-2777 (($ $) 82)) (-3195 (($) 18 T CONST)) (-4383 (((-3 (-570) "failed") $) 75)) (-3220 (((-570) $) 76)) (-1929 (((-3 $ "failed") $) 37)) (-3212 (($ |#1| |#1|) 72)) (-2346 (((-112) $) 66)) (-1315 (($) 107)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 78)) (-2788 (((-112) $) 65)) (-3469 (($ $ $) 113)) (-2472 (($ $ $) 112)) (-2792 (($ $) 104)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-2251 (($ |#1| |#1|) 73) (($ |#1|) 71) (($ (-413 (-570))) 70)) (-2286 ((|#1| $) 69)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-2548 (((-3 $ "failed") $ $) 48)) (-4389 (($ $) 105)) (-4120 (($ $) 94)) (-2791 (($ $) 83)) (-2902 (($ $) 93)) (-2768 (($ $) 84)) (-2879 (($ $) 92)) (-2743 (($ $) 85)) (-1313 (((-112) $ |#1|) 64)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-570)) 74)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-4157 (($ $) 103)) (-2828 (($ $) 91)) (-3228 (((-112) $ $) 45)) (-4129 (($ $) 102)) (-2804 (($ $) 90)) (-4179 (($ $) 101)) (-2848 (($ $) 89)) (-1579 (($ $) 100)) (-2858 (($ $) 88)) (-4166 (($ $) 99)) (-2838 (($ $) 87)) (-4144 (($ $) 98)) (-2817 (($ $) 86)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3075 (((-112) $ $) 110)) (-3055 (((-112) $ $) 109)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 111)) (-3045 (((-112) $ $) 108)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ $) 106) (($ $ (-413 (-570))) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-560 |#1|) (-141) (-13 (-410) (-1212))) (T -560))
-((-1867 (*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3872 (*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-1867 (*1 *1 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-1867 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))))) (-2461 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3744 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3519 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3903 (*1 *2 *1) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))) (-1479 (*1 *2 *1) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))) (-2495 (*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 -3167) (-15 -1867 ($ |t#1| |t#1|)) (-15 -3872 ($ |t#1| |t#1|)) (-15 -1867 ($ |t#1|)) (-15 -1867 ($ (-413 (-570)))) (-15 -2461 (|t#1| $)) (-15 -3744 (|t#1| $)) (-15 -3519 (|t#1| $)) (-15 -3903 ((-112) $)) (-15 -1479 ((-112) $)) (-15 -2495 ((-112) $ |t#1|))))
+((-2251 (*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3212 (*1 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-2251 (*1 *1 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-2251 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))))) (-2286 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3271 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-3522 (*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))) (-2346 (*1 *2 *1) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))) (-2788 (*1 *2 *1) (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))) (-1313 (*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 -3170) (-15 -2251 ($ |t#1| |t#1|)) (-15 -3212 ($ |t#1| |t#1|)) (-15 -2251 ($ |t#1|)) (-15 -2251 ($ (-413 (-570)))) (-15 -2286 (|t#1| $)) (-15 -3271 (|t#1| $)) (-15 -3522 (|t#1| $)) (-15 -2346 ((-112) $)) (-15 -2788 ((-112) $)) (-15 -1313 ((-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))
-((-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 9)) (-3074 (($ $) 11)) (-3475 (((-112) $) 20)) (-2875 (((-3 $ "failed") $) 16)) (-2029 (((-112) $ $) 22)))
-(((-561 |#1|) (-10 -8 (-15 -3475 ((-112) |#1|)) (-15 -2029 ((-112) |#1| |#1|)) (-15 -3074 (|#1| |#1|)) (-15 -2034 ((-2 (|:| -3128 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2875 ((-3 |#1| "failed") |#1|))) (-562)) (T -561))
+((-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 9)) (-4306 (($ $) 11)) (-2617 (((-112) $) 20)) (-1929 (((-3 $ "failed") $) 16)) (-3228 (((-112) $ $) 22)))
+(((-561 |#1|) (-10 -8 (-15 -2617 ((-112) |#1|)) (-15 -3228 ((-112) |#1| |#1|)) (-15 -4306 (|#1| |#1|)) (-15 -3270 ((-2 (|:| -3635 |#1|) (|:| -4439 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1929 ((-3 |#1| "failed") |#1|))) (-562)) (T -561))
NIL
-(-10 -8 (-15 -3475 ((-112) |#1|)) (-15 -2029 ((-112) |#1| |#1|)) (-15 -3074 (|#1| |#1|)) (-15 -2034 ((-2 (|:| -3128 |#1|) (|:| -4436 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -2875 ((-3 |#1| "failed") |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ $) 48)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+(-10 -8 (-15 -2617 ((-112) |#1|)) (-15 -3228 ((-112) |#1| |#1|)) (-15 -4306 (|#1| |#1|)) (-15 -3270 ((-2 (|:| -3635 |#1|) (|:| -4439 |#1|) (|:| |associate| |#1|)) |#1|)) (-15 -1929 ((-3 |#1| "failed") |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ $) 48)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-562) (-141)) (T -562))
-((-2547 (*1 *1 *1 *1) (|partial| -4 *1 (-562))) (-2034 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3128 *1) (|:| -4436 *1) (|:| |associate| *1))) (-4 *1 (-562)))) (-3074 (*1 *1 *1) (-4 *1 (-562))) (-2029 (*1 *2 *1 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))) (-3475 (*1 *2 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
-(-13 (-174) (-38 $) (-294) (-10 -8 (-15 -2547 ((-3 $ "failed") $ $)) (-15 -2034 ((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $)) (-15 -3074 ($ $)) (-15 -2029 ((-112) $ $)) (-15 -3475 ((-112) $))))
+((-2548 (*1 *1 *1 *1) (|partial| -4 *1 (-562))) (-3270 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -3635 *1) (|:| -4439 *1) (|:| |associate| *1))) (-4 *1 (-562)))) (-4306 (*1 *1 *1) (-4 *1 (-562))) (-3228 (*1 *2 *1 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))) (-2617 (*1 *2 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
+(-13 (-174) (-38 $) (-294) (-10 -8 (-15 -2548 ((-3 $ "failed") $ $)) (-15 -3270 ((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $)) (-15 -4306 ($ $)) (-15 -3228 ((-112) $ $)) (-15 -2617 ((-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))
-((-3028 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|)) 38)) (-3144 (((-592 |#2|) |#2| (-1186)) 63)) (-4298 (((-3 |#2| "failed") |#2| (-1186)) 156)) (-3183 (((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|))) 159)) (-2202 (((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|) 41)))
-(((-563 |#1| |#2|) (-10 -7 (-15 -2202 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|)) (-15 -3028 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|))) (-15 -4298 ((-3 |#2| "failed") |#2| (-1186))) (-15 -3144 ((-592 |#2|) |#2| (-1186))) (-15 -3183 ((-3 (-2 (|:| -2616 |#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))
-((-3183 (*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 (|:| -2616 *3) (|:| |coeff| *3))) (-5 *1 (-563 *7 *3)))) (-3144 (*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))))) (-4298 (*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))))) (-3028 (*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)))) (-2202 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| -2616 *3) (|:| |coeff| *3))) (-5 *1 (-563 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
-(-10 -7 (-15 -2202 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|)) (-15 -3028 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|))) (-15 -4298 ((-3 |#2| "failed") |#2| (-1186))) (-15 -3144 ((-592 |#2|) |#2| (-1186))) (-15 -3183 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|)))))
-((-1652 (((-424 |#1|) |#1|) 19)) (-3801 (((-424 |#1|) |#1|) 34)) (-3085 (((-3 |#1| "failed") |#1|) 49)) (-3338 (((-424 |#1|) |#1|) 60)))
-(((-564 |#1|) (-10 -7 (-15 -3801 ((-424 |#1|) |#1|)) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -3338 ((-424 |#1|) |#1|)) (-15 -3085 ((-3 |#1| "failed") |#1|))) (-551)) (T -564))
-((-3085 (*1 *2 *2) (|partial| -12 (-5 *1 (-564 *2)) (-4 *2 (-551)))) (-3338 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))) (-1652 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))) (-3801 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))))
-(-10 -7 (-15 -3801 ((-424 |#1|) |#1|)) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -3338 ((-424 |#1|) |#1|)) (-15 -3085 ((-3 |#1| "failed") |#1|)))
-((-3598 (($) 9)) (-1657 (((-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"))) (|:| -2521 (-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 34)) (-2911 (((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $) 31)) (-1385 (($ (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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)) (-3439 (($ (-650 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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)) (-2340 (((-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"))) (|:| -2521 (-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 38)) (-3700 (((-650 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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)) (-4254 (((-1282)) 11)))
-(((-565) (-10 -8 (-15 -3598 ($)) (-15 -4254 ((-1282))) (-15 -2911 ((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -3439 ($ (-650 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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 -1385 ($ (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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 -1657 ((-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"))) (|:| -2521 (-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3700 ((-650 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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 -2340 ((-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"))) (|:| -2521 (-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -565))
-((-2340 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-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"))) (|:| -2521 (-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)))) (-3700 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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)))) (-1657 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-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"))) (|:| -2521 (-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)))) (-1385 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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)))) (-3439 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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)))) (-2911 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-5 *1 (-565)))) (-4254 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-565)))) (-3598 (*1 *1) (-5 *1 (-565))))
-(-10 -8 (-15 -3598 ($)) (-15 -4254 ((-1282))) (-15 -2911 ((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -3439 ($ (-650 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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 -1385 ($ (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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 -1657 ((-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"))) (|:| -2521 (-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3700 ((-650 (-2 (|:| -2106 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -2521 (-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 -2340 ((-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"))) (|:| -2521 (-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))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
-((-3775 (((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|)) 35)) (-4277 (((-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)) (-3233 (((-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)) (-1471 (((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|))) 92) (((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|)) 114)) (-3717 (((-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)) (-3784 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 133 (|has| |#3| (-662 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|)) 132 (|has| |#3| (-662 |#2|)))) (-1742 ((|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|) 53)) (-3612 (((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|)) 34)))
-(((-566 |#1| |#2| |#3|) (-10 -7 (-15 -3233 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3233 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -1471 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|))) (-15 -1471 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -4277 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|))) (-15 -4277 ((-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 -3717 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|))) (-15 -3717 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3775 ((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|))) (-15 -1742 (|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|)) (-15 -3612 ((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|))) (IF (|has| |#3| (-662 |#2|)) (PROGN (-15 -3784 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3784 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-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))
-((-3784 (*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")) (|:| -1972 (-650 *4)))) (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3784 (*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")) (|:| -1972 (-650 *4)))) (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3612 (*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)))) (-1742 (*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)))) (-3775 (*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)))) (-3717 (*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)))) (-3717 (*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)))) (-4277 (*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)))) (-4277 (*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)))) (-1471 (*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 (|:| -2616 *3) (|:| |coeff| *3))) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-1471 (*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 (|:| -2616 *3) (|:| |coeff| *3))) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-3233 (*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)))) (-3233 (*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 -3233 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3233 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -1471 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|))) (-15 -1471 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -4277 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|))) (-15 -4277 ((-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 -3717 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|))) (-15 -3717 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3775 ((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|))) (-15 -1742 (|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|)) (-15 -3612 ((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|))) (IF (|has| |#3| (-662 |#2|)) (PROGN (-15 -3784 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3784 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))))) |%noBranch|))
-((-3922 (((-570) (-570) (-777)) 85)) (-4223 (((-570) (-570)) 83)) (-2327 (((-570) (-570)) 81)) (-2000 (((-570) (-570)) 87)) (-4016 (((-570) (-570) (-570)) 65)) (-4429 (((-570) (-570) (-570)) 62)) (-3509 (((-413 (-570)) (-570)) 30)) (-2242 (((-570) (-570)) 34)) (-3046 (((-570) (-570)) 74)) (-2953 (((-570) (-570)) 46)) (-1648 (((-650 (-570)) (-570)) 80)) (-3548 (((-570) (-570) (-570) (-570) (-570)) 58)) (-1685 (((-413 (-570)) (-570)) 55)))
-(((-567) (-10 -7 (-15 -1685 ((-413 (-570)) (-570))) (-15 -3548 ((-570) (-570) (-570) (-570) (-570))) (-15 -1648 ((-650 (-570)) (-570))) (-15 -2953 ((-570) (-570))) (-15 -3046 ((-570) (-570))) (-15 -2242 ((-570) (-570))) (-15 -3509 ((-413 (-570)) (-570))) (-15 -4429 ((-570) (-570) (-570))) (-15 -4016 ((-570) (-570) (-570))) (-15 -2000 ((-570) (-570))) (-15 -2327 ((-570) (-570))) (-15 -4223 ((-570) (-570))) (-15 -3922 ((-570) (-570) (-777))))) (T -567))
-((-3922 (*1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-777)) (-5 *1 (-567)))) (-4223 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-2327 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-2000 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4016 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4429 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3509 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))) (-2242 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3046 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-2953 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-1648 (*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))) (-3548 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-1685 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
-(-10 -7 (-15 -1685 ((-413 (-570)) (-570))) (-15 -3548 ((-570) (-570) (-570) (-570) (-570))) (-15 -1648 ((-650 (-570)) (-570))) (-15 -2953 ((-570) (-570))) (-15 -3046 ((-570) (-570))) (-15 -2242 ((-570) (-570))) (-15 -3509 ((-413 (-570)) (-570))) (-15 -4429 ((-570) (-570) (-570))) (-15 -4016 ((-570) (-570) (-570))) (-15 -2000 ((-570) (-570))) (-15 -2327 ((-570) (-570))) (-15 -4223 ((-570) (-570))) (-15 -3922 ((-570) (-570) (-777))))
-((-2056 (((-2 (|:| |answer| |#4|) (|:| -1510 |#4|)) |#4| (-1 |#2| |#2|)) 56)))
-(((-568 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2056 ((-2 (|:| |answer| |#4|) (|:| -1510 |#4|)) |#4| (-1 |#2| |#2|)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -568))
-((-2056 (*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) (|:| -1510 *3))) (-5 *1 (-568 *5 *6 *7 *3)) (-4 *3 (-347 *5 *6 *7)))))
-(-10 -7 (-15 -2056 ((-2 (|:| |answer| |#4|) (|:| -1510 |#4|)) |#4| (-1 |#2| |#2|))))
-((-2056 (((-2 (|:| |answer| (-413 |#2|)) (|:| -1510 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)) 18)))
-(((-569 |#1| |#2|) (-10 -7 (-15 -2056 ((-2 (|:| |answer| (-413 |#2|)) (|:| -1510 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -569))
-((-2056 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |answer| (-413 *6)) (|:| -1510 (-413 *6)) (|:| |specpart| (-413 *6)) (|:| |polypart| *6))) (-5 *1 (-569 *5 *6)) (-5 *3 (-413 *6)))))
-(-10 -7 (-15 -2056 ((-2 (|:| |answer| (-413 |#2|)) (|:| -1510 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 30)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 97)) (-3074 (($ $) 98)) (-3475 (((-112) $) NIL)) (-3687 (($ $ $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1520 (($ $ $ $) 52)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL)) (-3160 (($ $ $) 92)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL)) (-3216 (((-570) $) NIL)) (-2506 (($ $ $) 54)) (-4196 (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 77) (((-695 (-570)) (-695 $)) 73)) (-2875 (((-3 $ "failed") $) 94)) (-2805 (((-3 (-413 (-570)) "failed") $) NIL)) (-3242 (((-112) $) NIL)) (-2068 (((-413 (-570)) $) NIL)) (-3446 (($) 79) (($ $) 80)) (-2518 (($ $ $) 91)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4228 (($ $ $ $) NIL)) (-2702 (($ $ $) 70)) (-3903 (((-112) $) NIL)) (-4071 (($ $ $) NIL)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4346 (((-112) $) 34)) (-2110 (((-112) $) 86)) (-2619 (((-3 $ "failed") $) NIL)) (-1479 (((-112) $) 43)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2120 (($ $ $ $) 55)) (-3466 (($ $ $) 88)) (-2800 (($ $ $) 87)) (-2735 (($ $) NIL)) (-1355 (($ $) 49)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) 69)) (-2784 (($ $ $) NIL)) (-2438 (($) NIL T CONST)) (-3615 (($ $) 38)) (-3577 (((-1129) $) 42)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 129)) (-1942 (($ $ $) 95) (($ (-650 $)) NIL)) (-4365 (($ $) NIL)) (-3801 (((-424 $) $) 115)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL)) (-2547 (((-3 $ "failed") $ $) 113)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3273 (((-112) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 90)) (-3547 (($ $ (-777)) NIL) (($ $) NIL)) (-2574 (($ $) 40)) (-3951 (($ $) 36)) (-1425 (((-570) $) 48) (((-542) $) 64) (((-899 (-570)) $) NIL) (((-384) $) 58) (((-227) $) 61) (((-1168) $) 66)) (-3799 (((-868) $) 46) (($ (-570)) 47) (($ $) NIL) (($ (-570)) 47)) (-3499 (((-777)) NIL T CONST)) (-2282 (((-112) $ $) NIL)) (-2858 (($ $ $) NIL)) (-2335 (((-112) $ $) NIL)) (-4406 (($) 35)) (-2029 (((-112) $ $) NIL)) (-1613 (($ $ $ $) 51)) (-2622 (($ $) 78)) (-1861 (($) 6 T CONST)) (-1875 (($) 31 T CONST)) (-2831 (((-1168) $) 26) (((-1168) $ (-112)) 27) (((-1282) (-828) $) 28) (((-1282) (-828) $ (-112)) 29)) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3072 (((-112) $ $) 50)) (-3052 (((-112) $ $) 81)) (-3022 (((-112) $ $) 33)) (-3062 (((-112) $ $) 83)) (-3042 (((-112) $ $) 10)) (-3111 (($ $) 16) (($ $ $) 39)) (-3101 (($ $ $) 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)))
-((-3039 (((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072)) 116) (((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775)) 118)) (-2898 (((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186)) 195) (((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168)) 194) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072)) 199) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384)) 200) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384)) 201) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384))))) 202) (((-1044) (-320 (-384)) (-1103 (-849 (-384)))) 190) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384)) 189) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384)) 185) (((-1044) (-775)) 177) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072)) 184)))
-(((-571) (-10 -7 (-15 -2898 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072))) (-15 -2898 ((-1044) (-775))) (-15 -2898 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384))) (-15 -2898 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384))) (-15 -2898 ((-1044) (-320 (-384)) (-1103 (-849 (-384))))) (-15 -2898 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))))) (-15 -2898 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384))) (-15 -2898 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384))) (-15 -2898 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072))) (-15 -2898 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168))) (-15 -2898 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186))))) (T -571))
-((-2898 (*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)))) (-2898 (*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)))) (-3039 (*1 *2 *3 *4) (-12 (-5 *3 (-775)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *1 (-571)))) (-3039 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *1 (-571)))) (-2898 (*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)))) (-2898 (*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)))) (-2898 (*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)))) (-2898 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *2 (-1044)) (-5 *1 (-571)))) (-2898 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *2 (-1044)) (-5 *1 (-571)))) (-2898 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-2898 (*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)))) (-2898 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-2898 (*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 -2898 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072))) (-15 -2898 ((-1044) (-775))) (-15 -2898 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384))) (-15 -2898 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384))) (-15 -2898 ((-1044) (-320 (-384)) (-1103 (-849 (-384))))) (-15 -2898 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))))) (-15 -2898 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384))) (-15 -2898 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384))) (-15 -2898 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072))) (-15 -2898 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168))) (-15 -2898 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186))))
-((-3330 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|)) 196)) (-4105 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|)) 99)) (-3844 (((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|) 192)) (-4264 (((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186))) 201)) (-2503 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186)) 210 (|has| |#3| (-662 |#2|)))))
-(((-572 |#1| |#2| |#3|) (-10 -7 (-15 -4105 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|))) (-15 -3844 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|)) (-15 -3330 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|))) (-15 -4264 ((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)))) (IF (|has| |#3| (-662 |#2|)) (-15 -2503 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-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))
-((-2503 (*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")) (|:| -1972 (-650 *4)))) (-5 *1 (-572 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-4264 (*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)))) (-3330 (*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)))) (-3844 (*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 (|:| -2616 *3) (|:| |coeff| *3))) (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))) (-4105 (*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 -4105 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|))) (-15 -3844 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|)) (-15 -3330 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|))) (-15 -4264 ((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)))) (IF (|has| |#3| (-662 |#2|)) (-15 -2503 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -1972 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186))) |%noBranch|))
-((-1750 (((-2 (|:| -2395 |#2|) (|:| |nconst| |#2|)) |#2| (-1186)) 64)) (-3321 (((-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)))))) (-3275 (((-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 -1750 ((-2 (|:| -2395 |#2|) (|:| |nconst| |#2|)) |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (PROGN (IF (|has| |#2| (-635)) (PROGN (-15 -3275 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) (-15 -3321 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) (IF (|has| |#2| (-1148)) (-15 -3321 ((-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))
-((-3321 (*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)))) (-3321 (*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))))) (-3275 (*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))))) (-1750 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *2 (-2 (|:| -2395 *3) (|:| |nconst| *3))) (-5 *1 (-573 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
-(-10 -7 (-15 -1750 ((-2 (|:| -2395 |#2|) (|:| |nconst| |#2|)) |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (PROGN (IF (|has| |#2| (-635)) (PROGN (-15 -3275 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) (-15 -3321 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) (IF (|has| |#2| (-1148)) (-15 -3321 ((-3 |#2| "failed") |#2| (-1186) (-849 |#2|) (-849 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
-((-3945 (((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|))) 41)) (-2898 (((-592 (-413 |#2|)) (-413 |#2|)) 28)) (-4074 (((-3 (-413 |#2|) "failed") (-413 |#2|)) 17)) (-1747 (((-3 (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|)) 48)))
-(((-574 |#1| |#2|) (-10 -7 (-15 -2898 ((-592 (-413 |#2|)) (-413 |#2|))) (-15 -4074 ((-3 (-413 |#2|) "failed") (-413 |#2|))) (-15 -1747 ((-3 (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|))) (-15 -3945 ((-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))
-((-3945 (*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)))) (-1747 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -2616 (-413 *5)) (|:| |coeff| (-413 *5)))) (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))) (-4074 (*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)))) (-2898 (*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 -2898 ((-592 (-413 |#2|)) (-413 |#2|))) (-15 -4074 ((-3 (-413 |#2|) "failed") (-413 |#2|))) (-15 -1747 ((-3 (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|))) (-15 -3945 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|)))))
-((-1361 (((-3 (-570) "failed") |#1|) 14)) (-2009 (((-112) |#1|) 13)) (-1449 (((-570) |#1|) 9)))
-(((-575 |#1|) (-10 -7 (-15 -1449 ((-570) |#1|)) (-15 -2009 ((-112) |#1|)) (-15 -1361 ((-3 (-570) "failed") |#1|))) (-1047 (-570))) (T -575))
-((-1361 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))) (-2009 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-575 *3)) (-4 *3 (-1047 (-570))))) (-1449 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))))
-(-10 -7 (-15 -1449 ((-570) |#1|)) (-15 -2009 ((-112) |#1|)) (-15 -1361 ((-3 (-570) "failed") |#1|)))
-((-1554 (((-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)) (-3874 (((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186)) 28)) (-1792 (((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186)) 23)) (-3674 (((-3 (-2 (|:| -2616 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))) 35)))
-(((-576 |#1|) (-10 -7 (-15 -3874 ((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -1792 ((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186))) (-15 -1554 ((-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 -3674 ((-3 (-2 (|:| -2616 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))))) (-13 (-562) (-1047 (-570)) (-148))) (T -576))
-((-3674 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-148))) (-5 *2 (-2 (|:| -2616 (-413 (-959 *5))) (|:| |coeff| (-413 (-959 *5))))) (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))) (-1554 (*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)))) (-1792 (*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)))) (-3874 (*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 -3874 ((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -1792 ((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186))) (-15 -1554 ((-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 -3674 ((-3 (-2 (|:| -2616 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))))
-((-2558 (((-112) $ $) 75)) (-3467 (((-112) $) 48)) (-3519 ((|#1| $) 39)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) 79)) (-2887 (($ $) 139)) (-2751 (($ $) 118)) (-3744 ((|#1| $) 37)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $) NIL)) (-2866 (($ $) 141)) (-2733 (($ $) 114)) (-4107 (($ $) 143)) (-2774 (($ $) 122)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) 93)) (-3216 (((-570) $) 95)) (-2875 (((-3 $ "failed") $) 78)) (-3872 (($ |#1| |#1|) 35)) (-3903 (((-112) $) 44)) (-1315 (($) 104)) (-4346 (((-112) $) 55)) (-2923 (($ $ (-570)) NIL)) (-1479 (((-112) $) 45)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-2789 (($ $) 106)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1867 (($ |#1| |#1|) 29) (($ |#1|) 34) (($ (-413 (-570))) 92)) (-2461 ((|#1| $) 36)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) 81) (($ (-650 $)) NIL)) (-2547 (((-3 $ "failed") $ $) 80)) (-4387 (($ $) 108)) (-4117 (($ $) 147)) (-2788 (($ $) 120)) (-2899 (($ $) 149)) (-2766 (($ $) 124)) (-2876 (($ $) 145)) (-2740 (($ $) 116)) (-2495 (((-112) $ |#1|) 42)) (-3799 (((-868) $) 100) (($ (-570)) 83) (($ $) NIL) (($ (-570)) 83)) (-3499 (((-777)) 102 T CONST)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) 161)) (-2825 (($ $) 130)) (-2029 (((-112) $ $) NIL)) (-4129 (($ $) 159)) (-2801 (($ $) 126)) (-4176 (($ $) 157)) (-2845 (($ $) 137)) (-1578 (($ $) 155)) (-2855 (($ $) 135)) (-4163 (($ $) 153)) (-2835 (($ $) 132)) (-4140 (($ $) 151)) (-2814 (($ $) 128)) (-1861 (($) 30 T CONST)) (-1875 (($) 10 T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 49)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 47)) (-3111 (($ $) 53) (($ $ $) 54)) (-3101 (($ $ $) 52)) (** (($ $ (-928)) 71) (($ $ (-777)) NIL) (($ $ $) 110) (($ $ (-413 (-570))) 163)) (* (($ (-928) $) 66) (($ (-777) $) NIL) (($ (-570) $) 65) (($ $ $) 61)))
+((-3895 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|)) 38)) (-2604 (((-592 |#2|) |#2| (-1186)) 63)) (-1884 (((-3 |#2| "failed") |#2| (-1186)) 156)) (-2951 (((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|))) 159)) (-4404 (((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|) 41)))
+(((-563 |#1| |#2|) (-10 -7 (-15 -4404 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|)) (-15 -3895 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|))) (-15 -1884 ((-3 |#2| "failed") |#2| (-1186))) (-15 -2604 ((-592 |#2|) |#2| (-1186))) (-15 -2951 ((-3 (-2 (|:| -4341 |#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))
+((-2951 (*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 (|:| -4341 *3) (|:| |coeff| *3))) (-5 *1 (-563 *7 *3)))) (-2604 (*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))))) (-1884 (*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))))) (-3895 (*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)))) (-4404 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-2 (|:| -4341 *3) (|:| |coeff| *3))) (-5 *1 (-563 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
+(-10 -7 (-15 -4404 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) |#2|)) (-15 -3895 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-1186) (-650 |#2|))) (-15 -1884 ((-3 |#2| "failed") |#2| (-1186))) (-15 -2604 ((-592 |#2|) |#2| (-1186))) (-15 -2951 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-1186) (-618 |#2|) (-650 (-618 |#2|)))))
+((-3871 (((-424 |#1|) |#1|) 19)) (-3804 (((-424 |#1|) |#1|) 34)) (-3237 (((-3 |#1| "failed") |#1|) 49)) (-3832 (((-424 |#1|) |#1|) 60)))
+(((-564 |#1|) (-10 -7 (-15 -3804 ((-424 |#1|) |#1|)) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -3832 ((-424 |#1|) |#1|)) (-15 -3237 ((-3 |#1| "failed") |#1|))) (-551)) (T -564))
+((-3237 (*1 *2 *2) (|partial| -12 (-5 *1 (-564 *2)) (-4 *2 (-551)))) (-3832 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))) (-3871 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))) (-3804 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))))
+(-10 -7 (-15 -3804 ((-424 |#1|) |#1|)) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -3832 ((-424 |#1|) |#1|)) (-15 -3237 ((-3 |#1| "failed") |#1|)))
+((-2493 (($) 9)) (-1658 (((-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"))) (|:| -1600 (-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 34)) (-2914 (((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $) 31)) (-3502 (($ (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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)) (-3463 (($ (-650 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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)) (-2340 (((-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"))) (|:| -1600 (-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 38)) (-4049 (((-650 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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)) (-1420 (((-1282)) 11)))
+(((-565) (-10 -8 (-15 -2493 ($)) (-15 -1420 ((-1282))) (-15 -2914 ((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -3463 ($ (-650 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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 -3502 ($ (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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 -1658 ((-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"))) (|:| -1600 (-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4049 ((-650 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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 -2340 ((-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"))) (|:| -1600 (-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (T -565))
+((-2340 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-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"))) (|:| -1600 (-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)))) (-4049 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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)))) (-1658 (*1 *2 *3) (|partial| -12 (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-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"))) (|:| -1600 (-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)))) (-3502 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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)))) (-3463 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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)))) (-2914 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-5 *1 (-565)))) (-1420 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-565)))) (-2493 (*1 *1) (-5 *1 (-565))))
+(-10 -8 (-15 -2493 ($)) (-15 -1420 ((-1282))) (-15 -2914 ((-650 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -3463 ($ (-650 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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 -3502 ($ (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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 -1658 ((-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"))) (|:| -1600 (-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -4049 ((-650 (-2 (|:| -2107 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-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"))) (|:| -1600 (-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 -2340 ((-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"))) (|:| -1600 (-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))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))
+((-3778 (((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|)) 35)) (-1677 (((-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)) (-2212 (((-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)) (-2711 (((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|))) 92) (((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|)) 114)) (-4216 (((-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)) (-3655 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))) 133 (|has| |#3| (-662 |#2|))) (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|)) 132 (|has| |#3| (-662 |#2|)))) (-1744 ((|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|) 53)) (-3615 (((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|)) 34)))
+(((-566 |#1| |#2| |#3|) (-10 -7 (-15 -2212 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -2212 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -2711 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|))) (-15 -2711 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -1677 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|))) (-15 -1677 ((-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 -4216 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|))) (-15 -4216 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3778 ((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|))) (-15 -1744 (|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|)) (-15 -3615 ((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|))) (IF (|has| |#3| (-662 |#2|)) (PROGN (-15 -3655 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3655 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-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))
+((-3655 (*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")) (|:| -3827 (-650 *4)))) (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3655 (*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")) (|:| -3827 (-650 *4)))) (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-3615 (*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)))) (-1744 (*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)))) (-3778 (*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)))) (-4216 (*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)))) (-4216 (*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)))) (-1677 (*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)))) (-1677 (*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)))) (-2711 (*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 (|:| -4341 *3) (|:| |coeff| *3))) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-2711 (*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 (|:| -4341 *3) (|:| |coeff| *3))) (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))) (-2212 (*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)))) (-2212 (*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 -2212 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -2212 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -2711 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| |#2| (-1182 |#2|))) (-15 -2711 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2| (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -1677 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|) |#2| (-1182 |#2|))) (-15 -1677 ((-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 -4216 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) |#2| (-1182 |#2|))) (-15 -4216 ((-3 |#2| "failed") |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)) (-618 |#2|) |#2| (-413 (-1182 |#2|)))) (-15 -3778 ((-1182 (-413 (-1182 |#2|))) |#2| (-618 |#2|) (-618 |#2|) (-1182 |#2|))) (-15 -1744 (|#2| (-1182 (-413 (-1182 |#2|))) (-618 |#2|) |#2|)) (-15 -3615 ((-1182 (-413 (-1182 |#2|))) (-1182 |#2|) (-618 |#2|))) (IF (|has| |#3| (-662 |#2|)) (PROGN (-15 -3655 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) |#2| (-1182 |#2|))) (-15 -3655 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-618 |#2|) |#2| (-413 (-1182 |#2|))))) |%noBranch|))
+((-2525 (((-570) (-570) (-777)) 85)) (-2425 (((-570) (-570)) 83)) (-3274 (((-570) (-570)) 81)) (-4102 (((-570) (-570)) 87)) (-4045 (((-570) (-570) (-570)) 65)) (-3702 (((-570) (-570) (-570)) 62)) (-2946 (((-413 (-570)) (-570)) 30)) (-1767 (((-570) (-570)) 34)) (-4047 (((-570) (-570)) 74)) (-4340 (((-570) (-570)) 46)) (-3831 (((-650 (-570)) (-570)) 80)) (-2078 (((-570) (-570) (-570) (-570) (-570)) 58)) (-4167 (((-413 (-570)) (-570)) 55)))
+(((-567) (-10 -7 (-15 -4167 ((-413 (-570)) (-570))) (-15 -2078 ((-570) (-570) (-570) (-570) (-570))) (-15 -3831 ((-650 (-570)) (-570))) (-15 -4340 ((-570) (-570))) (-15 -4047 ((-570) (-570))) (-15 -1767 ((-570) (-570))) (-15 -2946 ((-413 (-570)) (-570))) (-15 -3702 ((-570) (-570) (-570))) (-15 -4045 ((-570) (-570) (-570))) (-15 -4102 ((-570) (-570))) (-15 -3274 ((-570) (-570))) (-15 -2425 ((-570) (-570))) (-15 -2525 ((-570) (-570) (-777))))) (T -567))
+((-2525 (*1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-777)) (-5 *1 (-567)))) (-2425 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3274 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4102 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4045 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3702 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-2946 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))) (-1767 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4047 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4340 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-3831 (*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))) (-2078 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))) (-4167 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
+(-10 -7 (-15 -4167 ((-413 (-570)) (-570))) (-15 -2078 ((-570) (-570) (-570) (-570) (-570))) (-15 -3831 ((-650 (-570)) (-570))) (-15 -4340 ((-570) (-570))) (-15 -4047 ((-570) (-570))) (-15 -1767 ((-570) (-570))) (-15 -2946 ((-413 (-570)) (-570))) (-15 -3702 ((-570) (-570) (-570))) (-15 -4045 ((-570) (-570) (-570))) (-15 -4102 ((-570) (-570))) (-15 -3274 ((-570) (-570))) (-15 -2425 ((-570) (-570))) (-15 -2525 ((-570) (-570) (-777))))
+((-3519 (((-2 (|:| |answer| |#4|) (|:| -3077 |#4|)) |#4| (-1 |#2| |#2|)) 56)))
+(((-568 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3519 ((-2 (|:| |answer| |#4|) (|:| -3077 |#4|)) |#4| (-1 |#2| |#2|)))) (-368) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -568))
+((-3519 (*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) (|:| -3077 *3))) (-5 *1 (-568 *5 *6 *7 *3)) (-4 *3 (-347 *5 *6 *7)))))
+(-10 -7 (-15 -3519 ((-2 (|:| |answer| |#4|) (|:| -3077 |#4|)) |#4| (-1 |#2| |#2|))))
+((-3519 (((-2 (|:| |answer| (-413 |#2|)) (|:| -3077 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)) 18)))
+(((-569 |#1| |#2|) (-10 -7 (-15 -3519 ((-2 (|:| |answer| (-413 |#2|)) (|:| -3077 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -569))
+((-3519 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |answer| (-413 *6)) (|:| -3077 (-413 *6)) (|:| |specpart| (-413 *6)) (|:| |polypart| *6))) (-5 *1 (-569 *5 *6)) (-5 *3 (-413 *6)))))
+(-10 -7 (-15 -3519 ((-2 (|:| |answer| (-413 |#2|)) (|:| -3077 (-413 |#2|)) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 30)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 97)) (-4306 (($ $) 98)) (-2617 (((-112) $) NIL)) (-3925 (($ $ $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-1964 (($ $ $ $) 52)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL)) (-3163 (($ $ $) 92)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL)) (-3220 (((-570) $) NIL)) (-2504 (($ $ $) 54)) (-2179 (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 77) (((-695 (-570)) (-695 $)) 73)) (-1929 (((-3 $ "failed") $) 94)) (-2502 (((-3 (-413 (-570)) "failed") $) NIL)) (-2313 (((-112) $) NIL)) (-3645 (((-413 (-570)) $) NIL)) (-3449 (($) 79) (($ $) 80)) (-2519 (($ $ $) 91)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2477 (($ $ $ $) NIL)) (-2787 (($ $ $) 70)) (-2346 (((-112) $) NIL)) (-3401 (($ $ $) NIL)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4139 (((-112) $) 34)) (-2888 (((-112) $) 86)) (-4369 (((-3 $ "failed") $) NIL)) (-2788 (((-112) $) 43)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2986 (($ $ $ $) 55)) (-3469 (($ $ $) 88)) (-2472 (($ $ $) 87)) (-2738 (($ $) NIL)) (-1356 (($ $) 49)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) 69)) (-2345 (($ $ $) NIL)) (-2439 (($) NIL T CONST)) (-3618 (($ $) 38)) (-3580 (((-1129) $) 42)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 129)) (-1939 (($ $ $) 95) (($ (-650 $)) NIL)) (-4322 (($ $) NIL)) (-3804 (((-424 $) $) 115)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL)) (-2548 (((-3 $ "failed") $ $) 113)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4418 (((-112) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 90)) (-3550 (($ $ (-777)) NIL) (($ $) NIL)) (-2574 (($ $) 40)) (-3954 (($ $) 36)) (-1426 (((-570) $) 48) (((-542) $) 64) (((-899 (-570)) $) NIL) (((-384) $) 58) (((-227) $) 61) (((-1168) $) 66)) (-3802 (((-868) $) 46) (($ (-570)) 47) (($ $) NIL) (($ (-570)) 47)) (-2851 (((-777)) NIL T CONST)) (-4022 (((-112) $ $) NIL)) (-1730 (($ $ $) NIL)) (-3359 (((-112) $ $) NIL)) (-4409 (($) 35)) (-3228 (((-112) $ $) NIL)) (-1605 (($ $ $ $) 51)) (-3231 (($ $) 78)) (-1862 (($) 6 T CONST)) (-1876 (($) 31 T CONST)) (-1423 (((-1168) $) 26) (((-1168) $ (-112)) 27) (((-1282) (-828) $) 28) (((-1282) (-828) $ (-112)) 29)) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3075 (((-112) $ $) 50)) (-3055 (((-112) $ $) 81)) (-3025 (((-112) $ $) 33)) (-3065 (((-112) $ $) 83)) (-3045 (((-112) $ $) 10)) (-3114 (($ $) 16) (($ $ $) 39)) (-3104 (($ $ $) 37)) (** (($ $ (-928)) NIL) (($ $ (-777)) 85)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 84) (($ $ $) 53)))
+(((-570) (-13 (-551) (-620 (-1168)) (-834) (-10 -7 (-6 -4439) (-6 -4444) (-6 -4440) (-6 -4434)))) (T -570))
+NIL
+(-13 (-551) (-620 (-1168)) (-834) (-10 -7 (-6 -4439) (-6 -4444) (-6 -4440) (-6 -4434)))
+((-3988 (((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072)) 116) (((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775)) 118)) (-2023 (((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186)) 195) (((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168)) 194) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072)) 199) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384)) 200) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384)) 201) (((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384))))) 202) (((-1044) (-320 (-384)) (-1103 (-849 (-384)))) 190) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384)) 189) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384)) 185) (((-1044) (-775)) 177) (((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072)) 184)))
+(((-571) (-10 -7 (-15 -2023 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072))) (-15 -2023 ((-1044) (-775))) (-15 -2023 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384))) (-15 -2023 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384))) (-15 -2023 ((-1044) (-320 (-384)) (-1103 (-849 (-384))))) (-15 -2023 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))))) (-15 -2023 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384))) (-15 -2023 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384))) (-15 -2023 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072))) (-15 -2023 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168))) (-15 -2023 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186))))) (T -571))
+((-2023 (*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)))) (-2023 (*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)))) (-3988 (*1 *2 *3 *4) (-12 (-5 *3 (-775)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *1 (-571)))) (-3988 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044)))) (-5 *1 (-571)))) (-2023 (*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)))) (-2023 (*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)))) (-2023 (*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)))) (-2023 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-1103 (-849 (-384))))) (-5 *2 (-1044)) (-5 *1 (-571)))) (-2023 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *2 (-1044)) (-5 *1 (-571)))) (-2023 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-1103 (-849 (-384)))) (-5 *5 (-384)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-2023 (*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)))) (-2023 (*1 *2 *3) (-12 (-5 *3 (-775)) (-5 *2 (-1044)) (-5 *1 (-571)))) (-2023 (*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 -2023 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384) (-1072))) (-15 -2023 ((-1044) (-775))) (-15 -2023 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384) (-384))) (-15 -2023 ((-1044) (-320 (-384)) (-1103 (-849 (-384))) (-384))) (-15 -2023 ((-1044) (-320 (-384)) (-1103 (-849 (-384))))) (-15 -2023 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))))) (-15 -2023 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384))) (-15 -2023 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384))) (-15 -2023 ((-1044) (-320 (-384)) (-650 (-1103 (-849 (-384)))) (-384) (-384) (-1072))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))) (-775) (-1072))) (-15 -2023 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1168))) (-15 -2023 ((-3 (-1044) "failed") (-320 (-384)) (-1101 (-849 (-384))) (-1186))))
+((-1925 (((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|)) 196)) (-3757 (((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|)) 99)) (-2970 (((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|) 192)) (-1530 (((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186))) 201)) (-1389 (((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186)) 210 (|has| |#3| (-662 |#2|)))))
+(((-572 |#1| |#2| |#3|) (-10 -7 (-15 -3757 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|))) (-15 -2970 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|)) (-15 -1925 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|))) (-15 -1530 ((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)))) (IF (|has| |#3| (-662 |#2|)) (-15 -1389 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-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))
+((-1389 (*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")) (|:| -3827 (-650 *4)))) (-5 *1 (-572 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))) (-1530 (*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)))) (-1925 (*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)))) (-2970 (*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 (|:| -4341 *3) (|:| |coeff| *3))) (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))) (-3757 (*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 -3757 ((-592 |#2|) |#2| (-618 |#2|) (-618 |#2|))) (-15 -2970 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| (-618 |#2|) (-618 |#2|) |#2|)) (-15 -1925 ((-3 (-2 (|:| |mainpart| |#2|) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| |#2|) (|:| |logand| |#2|))))) "failed") |#2| (-618 |#2|) (-618 |#2|) (-650 |#2|))) (-15 -1530 ((-3 |#2| "failed") |#2| |#2| |#2| (-618 |#2|) (-618 |#2|) (-1 (-3 |#2| "failed") |#2| |#2| (-1186)))) (IF (|has| |#3| (-662 |#2|)) (-15 -1389 ((-2 (|:| |particular| (-3 |#2| "failed")) (|:| -3827 (-650 |#2|))) |#3| |#2| (-618 |#2|) (-618 |#2|) (-1186))) |%noBranch|))
+((-3631 (((-2 (|:| -2807 |#2|) (|:| |nconst| |#2|)) |#2| (-1186)) 64)) (-1820 (((-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)))))) (-4430 (((-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 -3631 ((-2 (|:| -2807 |#2|) (|:| |nconst| |#2|)) |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (PROGN (IF (|has| |#2| (-635)) (PROGN (-15 -4430 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) (-15 -1820 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) (IF (|has| |#2| (-1148)) (-15 -1820 ((-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))
+((-1820 (*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)))) (-1820 (*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))))) (-4430 (*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))))) (-3631 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570)))) (-5 *2 (-2 (|:| -2807 *3) (|:| |nconst| *3))) (-5 *1 (-573 *5 *3)) (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
+(-10 -7 (-15 -3631 ((-2 (|:| -2807 |#2|) (|:| |nconst| |#2|)) |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (PROGN (IF (|has| |#2| (-635)) (PROGN (-15 -4430 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186))) (-15 -1820 ((-3 (-2 (|:| |special| |#2|) (|:| |integrand| |#2|)) "failed") |#2| (-1186)))) |%noBranch|) (IF (|has| |#2| (-1148)) (-15 -1820 ((-3 |#2| "failed") |#2| (-1186) (-849 |#2|) (-849 |#2|))) |%noBranch|)) |%noBranch|) |%noBranch|))
+((-1440 (((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|))) 41)) (-2023 (((-592 (-413 |#2|)) (-413 |#2|)) 28)) (-3442 (((-3 (-413 |#2|) "failed") (-413 |#2|)) 17)) (-3593 (((-3 (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|)) 48)))
+(((-574 |#1| |#2|) (-10 -7 (-15 -2023 ((-592 (-413 |#2|)) (-413 |#2|))) (-15 -3442 ((-3 (-413 |#2|) "failed") (-413 |#2|))) (-15 -3593 ((-3 (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|))) (-15 -1440 ((-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))
+((-1440 (*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)))) (-3593 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570)))) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -4341 (-413 *5)) (|:| |coeff| (-413 *5)))) (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))) (-3442 (*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)))) (-2023 (*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 -2023 ((-592 (-413 |#2|)) (-413 |#2|))) (-15 -3442 ((-3 (-413 |#2|) "failed") (-413 |#2|))) (-15 -3593 ((-3 (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-413 |#2|))) (-15 -1440 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-650 (-413 |#2|)))))
+((-3622 (((-3 (-570) "failed") |#1|) 14)) (-4201 (((-112) |#1|) 13)) (-1450 (((-570) |#1|) 9)))
+(((-575 |#1|) (-10 -7 (-15 -1450 ((-570) |#1|)) (-15 -4201 ((-112) |#1|)) (-15 -3622 ((-3 (-570) "failed") |#1|))) (-1047 (-570))) (T -575))
+((-3622 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))) (-4201 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-575 *3)) (-4 *3 (-1047 (-570))))) (-1450 (*1 *2 *3) (-12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))))
+(-10 -7 (-15 -1450 ((-570) |#1|)) (-15 -4201 ((-112) |#1|)) (-15 -3622 ((-3 (-570) "failed") |#1|)))
+((-2299 (((-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)) (-2051 (((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186)) 28)) (-2794 (((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186)) 23)) (-3829 (((-3 (-2 (|:| -4341 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))) 35)))
+(((-576 |#1|) (-10 -7 (-15 -2051 ((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2794 ((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186))) (-15 -2299 ((-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 -3829 ((-3 (-2 (|:| -4341 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|))))) (-13 (-562) (-1047 (-570)) (-148))) (T -576))
+((-3829 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1186)) (-4 *5 (-13 (-562) (-1047 (-570)) (-148))) (-5 *2 (-2 (|:| -4341 (-413 (-959 *5))) (|:| |coeff| (-413 (-959 *5))))) (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))) (-2299 (*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)))) (-2794 (*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)))) (-2051 (*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 -2051 ((-592 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2794 ((-3 (-413 (-959 |#1|)) "failed") (-413 (-959 |#1|)) (-1186))) (-15 -2299 ((-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 -3829 ((-3 (-2 (|:| -4341 (-413 (-959 |#1|))) (|:| |coeff| (-413 (-959 |#1|)))) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))))
+((-2560 (((-112) $ $) 75)) (-3721 (((-112) $) 48)) (-3522 ((|#1| $) 39)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) 79)) (-2890 (($ $) 139)) (-2755 (($ $) 118)) (-3271 ((|#1| $) 37)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3817 (($ $) NIL)) (-2869 (($ $) 141)) (-2736 (($ $) 114)) (-4109 (($ $) 143)) (-2777 (($ $) 122)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) 93)) (-3220 (((-570) $) 95)) (-1929 (((-3 $ "failed") $) 78)) (-3212 (($ |#1| |#1|) 35)) (-2346 (((-112) $) 44)) (-1315 (($) 104)) (-4139 (((-112) $) 55)) (-2252 (($ $ (-570)) NIL)) (-2788 (((-112) $) 45)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-2792 (($ $) 106)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-2251 (($ |#1| |#1|) 29) (($ |#1|) 34) (($ (-413 (-570))) 92)) (-2286 ((|#1| $) 36)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) 81) (($ (-650 $)) NIL)) (-2548 (((-3 $ "failed") $ $) 80)) (-4389 (($ $) 108)) (-4120 (($ $) 147)) (-2791 (($ $) 120)) (-2902 (($ $) 149)) (-2768 (($ $) 124)) (-2879 (($ $) 145)) (-2743 (($ $) 116)) (-1313 (((-112) $ |#1|) 42)) (-3802 (((-868) $) 100) (($ (-570)) 83) (($ $) NIL) (($ (-570)) 83)) (-2851 (((-777)) 102 T CONST)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) 161)) (-2828 (($ $) 130)) (-3228 (((-112) $ $) NIL)) (-4129 (($ $) 159)) (-2804 (($ $) 126)) (-4179 (($ $) 157)) (-2848 (($ $) 137)) (-1579 (($ $) 155)) (-2858 (($ $) 135)) (-4166 (($ $) 153)) (-2838 (($ $) 132)) (-4144 (($ $) 151)) (-2817 (($ $) 128)) (-1862 (($) 30 T CONST)) (-1876 (($) 10 T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 49)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 47)) (-3114 (($ $) 53) (($ $ $) 54)) (-3104 (($ $ $) 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|)
-((-2355 (((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570))) 27)))
-(((-578) (-10 -7 (-15 -2355 ((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570)))))) (T -578))
-((-2355 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 (-570)))) (-5 *3 (-1182 (-570))) (-5 *1 (-578)))))
-(-10 -7 (-15 -2355 ((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570)))))
-((-3094 (((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186)) 19)) (-3083 (((-650 (-618 |#2|)) (-650 |#2|) (-1186)) 23)) (-3959 (((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|))) 11)) (-3348 ((|#2| |#2| (-1186)) 59 (|has| |#1| (-562)))) (-3908 ((|#2| |#2| (-1186)) 87 (-12 (|has| |#2| (-288)) (|has| |#1| (-458))))) (-3440 (((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186)) 25)) (-4132 (((-618 |#2|) (-650 (-618 |#2|))) 24)) (-3585 (((-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 -3094 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186))) (-15 -4132 ((-618 |#2|) (-650 (-618 |#2|)))) (-15 -3440 ((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186))) (-15 -3959 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|)))) (-15 -3083 ((-650 (-618 |#2|)) (-650 |#2|) (-1186))) (IF (|has| |#1| (-562)) (-15 -3348 (|#2| |#2| (-1186))) |%noBranch|) (IF (|has| |#1| (-458)) (IF (|has| |#2| (-288)) (PROGN (-15 -3908 (|#2| |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (IF (|has| |#2| (-635)) (IF (|has| |#2| (-1047 (-1186))) (-15 -3585 ((-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))
-((-3585 (*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)))) (-3908 (*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)))) (-3348 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-4 *4 (-1109)) (-5 *1 (-579 *4 *2)) (-4 *2 (-436 *4)))) (-3083 (*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)))) (-3959 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-618 *4))) (-4 *4 (-436 *3)) (-4 *3 (-1109)) (-5 *1 (-579 *3 *4)))) (-3440 (*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)))) (-4132 (*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)))) (-3094 (*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 -3094 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186))) (-15 -4132 ((-618 |#2|) (-650 (-618 |#2|)))) (-15 -3440 ((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186))) (-15 -3959 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|)))) (-15 -3083 ((-650 (-618 |#2|)) (-650 |#2|) (-1186))) (IF (|has| |#1| (-562)) (-15 -3348 (|#2| |#2| (-1186))) |%noBranch|) (IF (|has| |#1| (-458)) (IF (|has| |#2| (-288)) (PROGN (-15 -3908 (|#2| |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (IF (|has| |#2| (-635)) (IF (|has| |#2| (-1047 (-1186))) (-15 -3585 ((-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|))
-((-3649 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|)) 199)) (-3402 (((-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 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|))) 174)) (-2094 (((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|))) 171)) (-2350 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 162)) (-2883 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 185)) (-3198 (((-3 (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|)) 202)) (-3643 (((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|)) 205)) (-4135 (((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)) 88)) (-2305 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 100)) (-3516 (((-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|))) 178)) (-2635 (((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|)) 166)) (-4289 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|)) 189)) (-1902 (((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|)) 210)))
-(((-580 |#1| |#2|) (-10 -7 (-15 -2883 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4289 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -3649 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|))) (-15 -3643 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|))) (-15 -1902 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|))) (-15 -3402 ((-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 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|)))) (-15 -3516 ((-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 -3198 ((-3 (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|))) (-15 -2094 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|)))) (-15 -2350 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2635 ((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -4135 ((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2305 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -580))
-((-2305 (*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)))) (-4135 (*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)))) (-2635 (*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 (-1253 *4)) (-5 *1 (-580 *4 *5)))) (-2350 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -2616 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-368)) (-5 *1 (-580 *4 *2)) (-4 *2 (-1253 *4)))) (-2094 (*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)))) (-3198 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -2616 (-413 *6)) (|:| |coeff| (-413 *6)))) (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))) (-3516 (*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 (-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)))) (-3402 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -2616 *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)))) (-1902 (*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 (-1253 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6)) (-2 (|:| -2616 (-413 *7)) (|:| |coeff| (-413 *7))) "failed")) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-3643 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2616 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6)) (-2 (|:| -2616 (-413 *7)) (|:| |coeff| (-413 *7))) "failed")) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-3649 (*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)))) (-4289 (*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 (-1253 *6)) (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6))) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-2883 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -2616 *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 -2883 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -4289 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -3649 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|))) (-15 -3643 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|))) (-15 -1902 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|))) (-15 -3402 ((-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 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|)))) (-15 -3516 ((-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 -3198 ((-3 (-2 (|:| -2616 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|))) (-15 -2094 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|)))) (-15 -2350 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -2635 ((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4410 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -4135 ((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2305 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
-((-2645 (((-3 |#2| "failed") |#2| (-1186) (-1186)) 10)))
-(((-581 |#1| |#2|) (-10 -7 (-15 -2645 ((-3 |#2| "failed") |#2| (-1186) (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-1148) (-29 |#1|))) (T -581))
-((-2645 (*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 -2645 ((-3 |#2| "failed") |#2| (-1186) (-1186))))
-((-2015 (((-697 (-1235)) $ (-1235)) 26)) (-1495 (((-697 (-555)) $ (-555)) 25)) (-2770 (((-777) $ (-129)) 27)) (-4093 (((-697 (-130)) $ (-130)) 24)) (-4373 (((-697 (-1235)) $) 12)) (-3018 (((-697 (-1233)) $) 8)) (-1989 (((-697 (-1232)) $) 10)) (-2118 (((-697 (-555)) $) 13)) (-3178 (((-697 (-553)) $) 9)) (-3077 (((-697 (-552)) $) 11)) (-2370 (((-777) $ (-129)) 7)) (-1607 (((-697 (-130)) $) 14)) (-3107 (($ $) 6)))
+((-3585 (((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570))) 27)))
+(((-578) (-10 -7 (-15 -3585 ((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570)))))) (T -578))
+((-3585 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 (-570)))) (-5 *3 (-1182 (-570))) (-5 *1 (-578)))))
+(-10 -7 (-15 -3585 ((-3 (-650 (-1182 (-570))) "failed") (-650 (-1182 (-570))) (-1182 (-570)))))
+((-3316 (((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186)) 19)) (-3219 (((-650 (-618 |#2|)) (-650 |#2|) (-1186)) 23)) (-3962 (((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|))) 11)) (-3911 ((|#2| |#2| (-1186)) 59 (|has| |#1| (-562)))) (-2398 ((|#2| |#2| (-1186)) 87 (-12 (|has| |#2| (-288)) (|has| |#1| (-458))))) (-3473 (((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186)) 25)) (-2809 (((-618 |#2|) (-650 (-618 |#2|))) 24)) (-2378 (((-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 -3316 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186))) (-15 -2809 ((-618 |#2|) (-650 (-618 |#2|)))) (-15 -3473 ((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186))) (-15 -3962 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|)))) (-15 -3219 ((-650 (-618 |#2|)) (-650 |#2|) (-1186))) (IF (|has| |#1| (-562)) (-15 -3911 (|#2| |#2| (-1186))) |%noBranch|) (IF (|has| |#1| (-458)) (IF (|has| |#2| (-288)) (PROGN (-15 -2398 (|#2| |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (IF (|has| |#2| (-635)) (IF (|has| |#2| (-1047 (-1186))) (-15 -2378 ((-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))
+((-2378 (*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)))) (-2398 (*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)))) (-3911 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-4 *4 (-1109)) (-5 *1 (-579 *4 *2)) (-4 *2 (-436 *4)))) (-3219 (*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)))) (-3962 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-618 *4))) (-4 *4 (-436 *3)) (-4 *3 (-1109)) (-5 *1 (-579 *3 *4)))) (-3473 (*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)))) (-2809 (*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)))) (-3316 (*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 -3316 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-1186))) (-15 -2809 ((-618 |#2|) (-650 (-618 |#2|)))) (-15 -3473 ((-618 |#2|) (-618 |#2|) (-650 (-618 |#2|)) (-1186))) (-15 -3962 ((-650 (-618 |#2|)) (-650 (-618 |#2|)) (-650 (-618 |#2|)))) (-15 -3219 ((-650 (-618 |#2|)) (-650 |#2|) (-1186))) (IF (|has| |#1| (-562)) (-15 -3911 (|#2| |#2| (-1186))) |%noBranch|) (IF (|has| |#1| (-458)) (IF (|has| |#2| (-288)) (PROGN (-15 -2398 (|#2| |#2| (-1186))) (IF (|has| |#1| (-620 (-899 (-570)))) (IF (|has| |#1| (-893 (-570))) (IF (|has| |#2| (-635)) (IF (|has| |#2| (-1047 (-1186))) (-15 -2378 ((-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|))
+((-1711 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|)) 199)) (-4301 (((-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 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|))) 174)) (-2721 (((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|))) 171)) (-3525 (((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|) 162)) (-1999 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|)) 185)) (-3078 (((-3 (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|)) 202)) (-1639 (((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|)) 205)) (-2842 (((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|)) 88)) (-4236 (((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)) 100)) (-3002 (((-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|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|))) 178)) (-3332 (((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|)) 166)) (-1805 (((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|)) 189)) (-4358 (((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|)) 210)))
+(((-580 |#1| |#2|) (-10 -7 (-15 -1999 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1805 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -1711 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|))) (-15 -1639 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|))) (-15 -4358 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|))) (-15 -4301 ((-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 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|)))) (-15 -3002 ((-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|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|)))) (-15 -3078 ((-3 (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|))) (-15 -2721 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|)))) (-15 -3525 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -3332 ((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -2842 ((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))) (-15 -4236 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -580))
+((-4236 (*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)))) (-2842 (*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)))) (-3332 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-629 *4 *5)) (-5 *3 (-1 (-2 (|:| |ans| *4) (|:| -4413 *4) (|:| |sol?| (-112))) (-570) *4)) (-4 *4 (-368)) (-4 *5 (-1253 *4)) (-5 *1 (-580 *4 *5)))) (-3525 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-1 (-3 (-2 (|:| -4341 *4) (|:| |coeff| *4)) "failed") *4)) (-4 *4 (-368)) (-5 *1 (-580 *4 *2)) (-4 *2 (-1253 *4)))) (-2721 (*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)))) (-3078 (*1 *2 *3 *4 *3) (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -4341 (-413 *6)) (|:| |coeff| (-413 *6)))) (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))) (-3002 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-2 (|:| |ans| *7) (|:| -4413 *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)))) (-4301 (*1 *2 *3 *4 *5 *6) (|partial| -12 (-5 *4 (-1 *8 *8)) (-5 *5 (-1 (-3 (-2 (|:| -4341 *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)))) (-4358 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4413 *6) (|:| |sol?| (-112))) (-570) *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6)) (-2 (|:| -4341 (-413 *7)) (|:| |coeff| (-413 *7))) "failed")) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-1639 (*1 *2 *3 *4 *5 *3) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -4341 *6) (|:| |coeff| *6)) "failed") *6)) (-4 *6 (-368)) (-4 *7 (-1253 *6)) (-5 *2 (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6)) (-2 (|:| -4341 (-413 *7)) (|:| |coeff| (-413 *7))) "failed")) (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))) (-1711 (*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)))) (-1805 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-2 (|:| |ans| *6) (|:| -4413 *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)))) (-1999 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1 *7 *7)) (-5 *5 (-1 (-3 (-2 (|:| -4341 *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 -1999 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|))) (-15 -1805 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -1711 ((-2 (|:| |answer| (-592 (-413 |#2|))) (|:| |a0| |#1|)) (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-650 |#1|) "failed") (-570) |#1| |#1|))) (-15 -1639 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-413 |#2|))) (-15 -4358 ((-3 (-2 (|:| |answer| (-413 |#2|)) (|:| |a0| |#1|)) (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-413 |#2|))) (-15 -4301 ((-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 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) (-650 (-413 |#2|)))) (-15 -3002 ((-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|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|) (-650 (-413 |#2|)))) (-15 -3078 ((-3 (-2 (|:| -4341 (-413 |#2|)) (|:| |coeff| (-413 |#2|))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-413 |#2|))) (-15 -2721 ((-3 (-2 (|:| |mainpart| (-413 |#2|)) (|:| |limitedlogs| (-650 (-2 (|:| |coeff| (-413 |#2|)) (|:| |logand| (-413 |#2|)))))) "failed") (-413 |#2|) (-1 |#2| |#2|) (-650 (-413 |#2|)))) (-15 -3525 ((-3 |#2| "failed") |#2| (-1 (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed") |#1|) |#1|)) (-15 -3332 ((-3 (-629 |#1| |#2|) "failed") (-629 |#1| |#2|) (-1 (-2 (|:| |ans| |#1|) (|:| -4413 |#1|) (|:| |sol?| (-112))) (-570) |#1|))) (-15 -2842 ((-2 (|:| |ir| (-592 (-413 |#2|))) (|:| |specpart| (-413 |#2|)) (|:| |polypart| |#2|)) (-413 |#2|) (-1 |#2| |#2|))) (-15 -4236 ((-2 (|:| |answer| |#2|) (|:| |polypart| |#2|)) |#2| (-1 |#2| |#2|))))
+((-3445 (((-3 |#2| "failed") |#2| (-1186) (-1186)) 10)))
+(((-581 |#1| |#2|) (-10 -7 (-15 -3445 ((-3 |#2| "failed") |#2| (-1186) (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-1148) (-29 |#1|))) (T -581))
+((-3445 (*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 -3445 ((-3 |#2| "failed") |#2| (-1186) (-1186))))
+((-4264 (((-697 (-1235)) $ (-1235)) 26)) (-2939 (((-697 (-555)) $ (-555)) 25)) (-2228 (((-777) $ (-129)) 27)) (-3652 (((-697 (-130)) $ (-130)) 24)) (-4401 (((-697 (-1235)) $) 12)) (-3805 (((-697 (-1233)) $) 8)) (-3998 (((-697 (-1232)) $) 10)) (-2969 (((-697 (-555)) $) 13)) (-2910 (((-697 (-553)) $) 9)) (-3172 (((-697 (-552)) $) 11)) (-3739 (((-777) $ (-129)) 7)) (-1556 (((-697 (-130)) $) 14)) (-3443 (($ $) 6)))
(((-582) (-141)) (T -582))
NIL
(-13 (-533) (-866))
(((-175) . T) ((-533) . T) ((-866) . T))
-((-2015 (((-697 (-1235)) $ (-1235)) NIL)) (-1495 (((-697 (-555)) $ (-555)) NIL)) (-2770 (((-777) $ (-129)) NIL)) (-4093 (((-697 (-130)) $ (-130)) NIL)) (-4373 (((-697 (-1235)) $) NIL)) (-3018 (((-697 (-1233)) $) NIL)) (-1989 (((-697 (-1232)) $) NIL)) (-2118 (((-697 (-555)) $) NIL)) (-3178 (((-697 (-553)) $) NIL)) (-3077 (((-697 (-552)) $) NIL)) (-2370 (((-777) $ (-129)) NIL)) (-1607 (((-697 (-130)) $) NIL)) (-2618 (((-112) $) NIL)) (-3690 (($ (-394)) 14) (($ (-1168)) 16)) (-3799 (((-868) $) NIL)) (-3107 (($ $) NIL)))
-(((-583) (-13 (-582) (-619 (-868)) (-10 -8 (-15 -3690 ($ (-394))) (-15 -3690 ($ (-1168))) (-15 -2618 ((-112) $))))) (T -583))
-((-3690 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-583)))) (-3690 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-583)))) (-2618 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583)))))
-(-13 (-582) (-619 (-868)) (-10 -8 (-15 -3690 ($ (-394))) (-15 -3690 ($ (-1168))) (-15 -2618 ((-112) $))))
-((-2558 (((-112) $ $) NIL)) (-1943 (($) 7 T CONST)) (-1988 (((-1168) $) NIL)) (-4197 (($) 6 T CONST)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 15)) (-3138 (($) 9 T CONST)) (-2086 (($) 8 T CONST)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 11)))
-(((-584) (-13 (-1109) (-10 -8 (-15 -4197 ($) -3725) (-15 -1943 ($) -3725) (-15 -2086 ($) -3725) (-15 -3138 ($) -3725)))) (T -584))
-((-4197 (*1 *1) (-5 *1 (-584))) (-1943 (*1 *1) (-5 *1 (-584))) (-2086 (*1 *1) (-5 *1 (-584))) (-3138 (*1 *1) (-5 *1 (-584))))
-(-13 (-1109) (-10 -8 (-15 -4197 ($) -3725) (-15 -1943 ($) -3725) (-15 -2086 ($) -3725) (-15 -3138 ($) -3725)))
-((-2558 (((-112) $ $) NIL)) (-3038 (((-697 $) (-497)) 21)) (-1988 (((-1168) $) NIL)) (-3411 (($ (-1168)) 14)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 33)) (-2795 (((-215 4 (-130)) $) 24)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 26)))
-(((-585) (-13 (-1109) (-10 -8 (-15 -3411 ($ (-1168))) (-15 -2795 ((-215 4 (-130)) $)) (-15 -3038 ((-697 $) (-497)))))) (T -585))
-((-3411 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-585)))) (-2795 (*1 *2 *1) (-12 (-5 *2 (-215 4 (-130))) (-5 *1 (-585)))) (-3038 (*1 *2 *3) (-12 (-5 *3 (-497)) (-5 *2 (-697 (-585))) (-5 *1 (-585)))))
-(-13 (-1109) (-10 -8 (-15 -3411 ($ (-1168))) (-15 -2795 ((-215 4 (-130)) $)) (-15 -3038 ((-697 $) (-497)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $ (-570)) 75)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-3235 (($ (-1182 (-570)) (-570)) 81)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) 66)) (-2700 (($ $) 43)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-4323 (((-777) $) 16)) (-4346 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1932 (((-570)) 37)) (-1442 (((-570) $) 41)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2431 (($ $ (-570)) 24)) (-2547 (((-3 $ "failed") $ $) 71)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) 17)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 72)) (-2737 (((-1166 (-570)) $) 19)) (-2853 (($ $) 26)) (-3799 (((-868) $) 101) (($ (-570)) 61) (($ $) NIL)) (-3499 (((-777)) 15 T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-3167 (((-570) $ (-570)) 46)) (-1861 (($) 44 T CONST)) (-1875 (($) 21 T CONST)) (-3022 (((-112) $ $) 52)) (-3111 (($ $) 60) (($ $ $) 48)) (-3101 (($ $ $) 59)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 62) (($ $ $) 63)))
+((-4264 (((-697 (-1235)) $ (-1235)) NIL)) (-2939 (((-697 (-555)) $ (-555)) NIL)) (-2228 (((-777) $ (-129)) NIL)) (-3652 (((-697 (-130)) $ (-130)) NIL)) (-4401 (((-697 (-1235)) $) NIL)) (-3805 (((-697 (-1233)) $) NIL)) (-3998 (((-697 (-1232)) $) NIL)) (-2969 (((-697 (-555)) $) NIL)) (-2910 (((-697 (-553)) $) NIL)) (-3172 (((-697 (-552)) $) NIL)) (-3739 (((-777) $ (-129)) NIL)) (-1556 (((-697 (-130)) $) NIL)) (-4359 (((-112) $) NIL)) (-3960 (($ (-394)) 14) (($ (-1168)) 16)) (-3802 (((-868) $) NIL)) (-3443 (($ $) NIL)))
+(((-583) (-13 (-582) (-619 (-868)) (-10 -8 (-15 -3960 ($ (-394))) (-15 -3960 ($ (-1168))) (-15 -4359 ((-112) $))))) (T -583))
+((-3960 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-583)))) (-3960 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-583)))) (-4359 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-583)))))
+(-13 (-582) (-619 (-868)) (-10 -8 (-15 -3960 ($ (-394))) (-15 -3960 ($ (-1168))) (-15 -4359 ((-112) $))))
+((-2560 (((-112) $ $) NIL)) (-1940 (($) 7 T CONST)) (-3989 (((-1168) $) NIL)) (-4200 (($) 6 T CONST)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 15)) (-3723 (($) 9 T CONST)) (-2642 (($) 8 T CONST)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 11)))
+(((-584) (-13 (-1109) (-10 -8 (-15 -4200 ($) -3728) (-15 -1940 ($) -3728) (-15 -2642 ($) -3728) (-15 -3723 ($) -3728)))) (T -584))
+((-4200 (*1 *1) (-5 *1 (-584))) (-1940 (*1 *1) (-5 *1 (-584))) (-2642 (*1 *1) (-5 *1 (-584))) (-3723 (*1 *1) (-5 *1 (-584))))
+(-13 (-1109) (-10 -8 (-15 -4200 ($) -3728) (-15 -1940 ($) -3728) (-15 -2642 ($) -3728) (-15 -3723 ($) -3728)))
+((-2560 (((-112) $ $) NIL)) (-3041 (((-697 $) (-497)) 21)) (-3989 (((-1168) $) NIL)) (-3215 (($ (-1168)) 14)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 33)) (-2429 (((-215 4 (-130)) $) 24)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 26)))
+(((-585) (-13 (-1109) (-10 -8 (-15 -3215 ($ (-1168))) (-15 -2429 ((-215 4 (-130)) $)) (-15 -3041 ((-697 $) (-497)))))) (T -585))
+((-3215 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-585)))) (-2429 (*1 *2 *1) (-12 (-5 *2 (-215 4 (-130))) (-5 *1 (-585)))) (-3041 (*1 *2 *3) (-12 (-5 *3 (-497)) (-5 *2 (-697 (-585))) (-5 *1 (-585)))))
+(-13 (-1109) (-10 -8 (-15 -3215 ($ (-1168))) (-15 -2429 ((-215 4 (-130)) $)) (-15 -3041 ((-697 $) (-497)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3817 (($ $ (-570)) 75)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2236 (($ (-1182 (-570)) (-570)) 81)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) 66)) (-2769 (($ $) 43)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3941 (((-777) $) 16)) (-4139 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1574 (((-570)) 37)) (-1571 (((-570) $) 41)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3152 (($ $ (-570)) 24)) (-2548 (((-3 $ "failed") $ $) 71)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) 17)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 72)) (-3098 (((-1166 (-570)) $) 19)) (-1682 (($ $) 26)) (-3802 (((-868) $) 101) (($ (-570)) 61) (($ $) NIL)) (-2851 (((-777)) 15 T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3170 (((-570) $ (-570)) 46)) (-1862 (($) 44 T CONST)) (-1876 (($) 21 T CONST)) (-3025 (((-112) $ $) 52)) (-3114 (($ $) 60) (($ $ $) 48)) (-3104 (($ $ $) 59)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 62) (($ $ $) 63)))
(((-586 |#1| |#2|) (-875 |#1|) (-570) (-112)) (T -586))
NIL
(-875 |#1|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 30)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-2640 (((-1199 (-928) (-777)) (-570)) 59)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 $ "failed") $) 95)) (-3216 (($ $) 94)) (-3243 (($ (-1277 $)) 93)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 56)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) 44)) (-3446 (($) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) 61)) (-2542 (((-112) $) NIL)) (-2063 (($ $) NIL) (($ $ (-777)) NIL)) (-3618 (((-112) $) NIL)) (-4323 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-4346 (((-112) $) NIL)) (-2881 (($) 49 (|has| $ (-373)))) (-4019 (((-112) $) NIL (|has| $ (-373)))) (-2959 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-2619 (((-3 $ "failed") $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 $) $ (-928)) NIL (|has| $ (-373))) (((-1182 $) $) 104)) (-1884 (((-928) $) 67)) (-1779 (((-1182 $) $) NIL (|has| $ (-373)))) (-2991 (((-3 (-1182 $) "failed") $ $) NIL (|has| $ (-373))) (((-1182 $) $) NIL (|has| $ (-373)))) (-4171 (($ $ (-1182 $)) NIL (|has| $ (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL T CONST)) (-2268 (($ (-928)) 60)) (-4064 (((-112) $) 87)) (-3577 (((-1129) $) NIL)) (-2466 (($) 28 (|has| $ (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 54)) (-3801 (((-424 $) $) NIL)) (-2587 (((-928)) 86) (((-839 (-928))) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-3 (-777) "failed") $ $) NIL) (((-777) $) NIL)) (-2951 (((-135)) NIL)) (-3547 (($ $ (-777)) NIL) (($ $) NIL)) (-2130 (((-928) $) 85) (((-839 (-928)) $) NIL)) (-2755 (((-1182 $)) 102)) (-4003 (($) 66)) (-4426 (($) 50 (|has| $ (-373)))) (-3424 (((-695 $) (-1277 $)) NIL) (((-1277 $) $) 91)) (-1425 (((-570) $) 40)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) 42) (($ $) NIL) (($ (-413 (-570))) NIL)) (-3532 (((-3 $ "failed") $) NIL) (($ $) 105)) (-3499 (((-777)) 51 T CONST)) (-2335 (((-112) $ $) 107)) (-1972 (((-1277 $) (-928)) 97) (((-1277 $)) 96)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) 31 T CONST)) (-1875 (($) 27 T CONST)) (-3944 (($ $ (-777)) NIL (|has| $ (-373))) (($ $) NIL (|has| $ (-373)))) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) 34)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 81) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 30)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-3379 (((-1199 (-928) (-777)) (-570)) 59)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 $ "failed") $) 95)) (-3220 (($ $) 94)) (-2322 (($ (-1277 $)) 93)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 56)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) 44)) (-3449 (($) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) 61)) (-1843 (((-112) $) NIL)) (-3599 (($ $) NIL) (($ $ (-777)) NIL)) (-1336 (((-112) $) NIL)) (-3941 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-4139 (((-112) $) NIL)) (-1977 (($) 49 (|has| $ (-373)))) (-4073 (((-112) $) NIL (|has| $ (-373)))) (-4399 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-4369 (((-3 $ "failed") $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 $) $ (-928)) NIL (|has| $ (-373))) (((-1182 $) $) 104)) (-2400 (((-928) $) 67)) (-2665 (((-1182 $) $) NIL (|has| $ (-373)))) (-1672 (((-3 (-1182 $) "failed") $ $) NIL (|has| $ (-373))) (((-1182 $) $) NIL (|has| $ (-373)))) (-3113 (($ $ (-1182 $)) NIL (|has| $ (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL T CONST)) (-2267 (($ (-928)) 60)) (-3315 (((-112) $) 87)) (-3580 (((-1129) $) NIL)) (-2467 (($) 28 (|has| $ (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 54)) (-3804 (((-424 $) $) NIL)) (-4068 (((-928)) 86) (((-839 (-928))) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-3 (-777) "failed") $ $) NIL) (((-777) $) NIL)) (-2517 (((-135)) NIL)) (-3550 (($ $ (-777)) NIL) (($ $) NIL)) (-3079 (((-928) $) 85) (((-839 (-928)) $) NIL)) (-2075 (((-1182 $)) 102)) (-3924 (($) 66)) (-3667 (($) 50 (|has| $ (-373)))) (-3314 (((-695 $) (-1277 $)) NIL) (((-1277 $) $) 91)) (-1426 (((-570) $) 40)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) 42) (($ $) NIL) (($ (-413 (-570))) NIL)) (-3132 (((-3 $ "failed") $) NIL) (($ $) 105)) (-2851 (((-777)) 51 T CONST)) (-3359 (((-112) $ $) 107)) (-3827 (((-1277 $) (-928)) 97) (((-1277 $)) 96)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) 31 T CONST)) (-1876 (($) 27 T CONST)) (-1427 (($ $ (-777)) NIL (|has| $ (-373))) (($ $) NIL (|has| $ (-373)))) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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)))
-((-3672 (((-1282) (-1168)) 10)))
-(((-588) (-10 -7 (-15 -3672 ((-1282) (-1168))))) (T -588))
-((-3672 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-588)))))
-(-10 -7 (-15 -3672 ((-1282) (-1168))))
-((-3774 (((-592 |#2|) (-592 |#2|)) 42)) (-1392 (((-650 |#2|) (-592 |#2|)) 44)) (-2720 ((|#2| (-592 |#2|)) 50)))
-(((-589 |#1| |#2|) (-10 -7 (-15 -3774 ((-592 |#2|) (-592 |#2|))) (-15 -1392 ((-650 |#2|) (-592 |#2|))) (-15 -2720 (|#2| (-592 |#2|)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-29 |#1|) (-1212))) (T -589))
-((-2720 (*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)))))) (-1392 (*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)))) (-3774 (*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 -3774 ((-592 |#2|) (-592 |#2|))) (-15 -1392 ((-650 |#2|) (-592 |#2|))) (-15 -2720 (|#2| (-592 |#2|))))
-((-1356 (((-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 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|)) 30)))
-(((-590 |#1| |#2|) (-10 -7 (-15 -1356 ((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|))) (-15 -1356 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1356 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1356 ((-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))
-((-1356 (*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)))) (-1356 (*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)))) (-1356 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -2616 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-368)) (-4 *6 (-368)) (-5 *2 (-2 (|:| -2616 *6) (|:| |coeff| *6))) (-5 *1 (-590 *5 *6)))) (-1356 (*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 -1356 ((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|))) (-15 -1356 ((-3 (-2 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -2616 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1356 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1356 ((-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"))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-2491 (($ (-512) (-603)) 14)) (-2984 (($ (-512) (-603) $) 16)) (-2891 (($ (-512) (-603)) 15)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ (-1191)) 7) (((-1191) $) 6)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-591) (-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2491 ($ (-512) (-603))) (-15 -2891 ($ (-512) (-603))) (-15 -2984 ($ (-512) (-603) $))))) (T -591))
-((-2491 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))) (-2891 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))) (-2984 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
-(-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2491 ($ (-512) (-603))) (-15 -2891 ($ (-512) (-603))) (-15 -2984 ($ (-512) (-603) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) 76)) (-3216 ((|#1| $) NIL)) (-2616 ((|#1| $) 30)) (-3288 (((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 32)) (-1493 (($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 28)) (-1510 (((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $) 31)) (-1988 (((-1168) $) NIL)) (-2212 (($ |#1| |#1|) 38) (($ |#1| (-1186)) 49 (|has| |#1| (-1047 (-1186))))) (-3577 (((-1129) $) NIL)) (-3524 (((-112) $) 35)) (-3547 ((|#1| $ (-1 |#1| |#1|)) 88) ((|#1| $ (-1186)) 89 (|has| |#1| (-907 (-1186))))) (-3799 (((-868) $) 110) (($ |#1|) 29)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 18 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) 17) (($ $ $) NIL)) (-3101 (($ $ $) 85)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 16) (($ (-413 (-570)) $) 41) (($ $ (-413 (-570))) NIL)))
-(((-592 |#1|) (-13 (-723 (-413 (-570))) (-1047 |#1|) (-10 -8 (-15 -1493 ($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2616 (|#1| $)) (-15 -1510 ((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $)) (-15 -3288 ((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3524 ((-112) $)) (-15 -2212 ($ |#1| |#1|)) (-15 -3547 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-907 (-1186))) (-15 -3547 (|#1| $ (-1186))) |%noBranch|) (IF (|has| |#1| (-1047 (-1186))) (-15 -2212 ($ |#1| (-1186))) |%noBranch|))) (-368)) (T -592))
-((-1493 (*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)))) (-2616 (*1 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-1510 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *3)) (|:| |logand| (-1182 *3))))) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-3288 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-3524 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-2212 (*1 *1 *2 *2) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3547 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3547 (*1 *2 *1 *3) (-12 (-4 *2 (-368)) (-4 *2 (-907 *3)) (-5 *1 (-592 *2)) (-5 *3 (-1186)))) (-2212 (*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 -1493 ($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -2616 (|#1| $)) (-15 -1510 ((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $)) (-15 -3288 ((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3524 ((-112) $)) (-15 -2212 ($ |#1| |#1|)) (-15 -3547 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-907 (-1186))) (-15 -3547 (|#1| $ (-1186))) |%noBranch|) (IF (|has| |#1| (-1047 (-1186))) (-15 -2212 ($ |#1| (-1186))) |%noBranch|)))
-((-1913 (((-112) |#1|) 16)) (-1383 (((-3 |#1| "failed") |#1|) 14)) (-2863 (((-2 (|:| -4406 |#1|) (|:| -3357 (-777))) |#1|) 36) (((-3 |#1| "failed") |#1| (-777)) 18)) (-1622 (((-112) |#1| (-777)) 19)) (-3313 ((|#1| |#1|) 40)) (-1496 ((|#1| |#1| (-777)) 43)))
-(((-593 |#1|) (-10 -7 (-15 -1622 ((-112) |#1| (-777))) (-15 -2863 ((-3 |#1| "failed") |#1| (-777))) (-15 -2863 ((-2 (|:| -4406 |#1|) (|:| -3357 (-777))) |#1|)) (-15 -1496 (|#1| |#1| (-777))) (-15 -1913 ((-112) |#1|)) (-15 -1383 ((-3 |#1| "failed") |#1|)) (-15 -3313 (|#1| |#1|))) (-551)) (T -593))
-((-3313 (*1 *2 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-1383 (*1 *2 *2) (|partial| -12 (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-1913 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))) (-1496 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-2863 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -4406 *3) (|:| -3357 (-777)))) (-5 *1 (-593 *3)) (-4 *3 (-551)))) (-2863 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-1622 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
-(-10 -7 (-15 -1622 ((-112) |#1| (-777))) (-15 -2863 ((-3 |#1| "failed") |#1| (-777))) (-15 -2863 ((-2 (|:| -4406 |#1|) (|:| -3357 (-777))) |#1|)) (-15 -1496 (|#1| |#1| (-777))) (-15 -1913 ((-112) |#1|)) (-15 -1383 ((-3 |#1| "failed") |#1|)) (-15 -3313 (|#1| |#1|)))
-((-2948 (((-1182 |#1|) (-928)) 44)))
-(((-594 |#1|) (-10 -7 (-15 -2948 ((-1182 |#1|) (-928)))) (-354)) (T -594))
-((-2948 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-594 *4)) (-4 *4 (-354)))))
-(-10 -7 (-15 -2948 ((-1182 |#1|) (-928))))
-((-3774 (((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|)))) 27)) (-2898 (((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186)) 34 (|has| |#1| (-148)))) (-1392 (((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|)))) 19)) (-1864 (((-320 |#1|) (-413 (-959 |#1|)) (-1186)) 32 (|has| |#1| (-148)))) (-2720 (((-320 |#1|) (-592 (-413 (-959 |#1|)))) 21)))
-(((-595 |#1|) (-10 -7 (-15 -3774 ((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|))))) (-15 -1392 ((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|))))) (-15 -2720 ((-320 |#1|) (-592 (-413 (-959 |#1|))))) (IF (|has| |#1| (-148)) (PROGN (-15 -2898 ((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -1864 ((-320 |#1|) (-413 (-959 |#1|)) (-1186)))) |%noBranch|)) (-13 (-458) (-1047 (-570)) (-645 (-570)))) (T -595))
-((-1864 (*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)))) (-2898 (*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)))) (-2720 (*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)))) (-1392 (*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)))) (-3774 (*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 -3774 ((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|))))) (-15 -1392 ((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|))))) (-15 -2720 ((-320 |#1|) (-592 (-413 (-959 |#1|))))) (IF (|has| |#1| (-148)) (PROGN (-15 -2898 ((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -1864 ((-320 |#1|) (-413 (-959 |#1|)) (-1186)))) |%noBranch|))
-((-2475 (((-650 (-695 (-570))) (-650 (-928)) (-650 (-912 (-570)))) 78) (((-650 (-695 (-570))) (-650 (-928))) 79) (((-695 (-570)) (-650 (-928)) (-912 (-570))) 72)) (-4213 (((-777) (-650 (-928))) 69)))
-(((-596) (-10 -7 (-15 -4213 ((-777) (-650 (-928)))) (-15 -2475 ((-695 (-570)) (-650 (-928)) (-912 (-570)))) (-15 -2475 ((-650 (-695 (-570))) (-650 (-928)))) (-15 -2475 ((-650 (-695 (-570))) (-650 (-928)) (-650 (-912 (-570))))))) (T -596))
-((-2475 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-928))) (-5 *4 (-650 (-912 (-570)))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))) (-2475 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))) (-2475 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-928))) (-5 *4 (-912 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-596)))) (-4213 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-777)) (-5 *1 (-596)))))
-(-10 -7 (-15 -4213 ((-777) (-650 (-928)))) (-15 -2475 ((-695 (-570)) (-650 (-928)) (-912 (-570)))) (-15 -2475 ((-650 (-695 (-570))) (-650 (-928)))) (-15 -2475 ((-650 (-695 (-570))) (-650 (-928)) (-650 (-912 (-570))))))
-((-4111 (((-650 |#5|) |#5| (-112)) 100)) (-1713 (((-112) |#5| (-650 |#5|)) 34)))
-(((-597 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4111 ((-650 |#5|) |#5| (-112))) (-15 -1713 ((-112) |#5| (-650 |#5|)))) (-13 (-311) (-148)) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1118 |#1| |#2| |#3| |#4|)) (T -597))
-((-1713 (*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)))) (-4111 (*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 -4111 ((-650 |#5|) |#5| (-112))) (-15 -1713 ((-112) |#5| (-650 |#5|))))
-((-2558 (((-112) $ $) NIL)) (-2225 (((-1144) $) 11)) (-2213 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-598) (-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1144) $))))) (T -598))
-((-2213 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598)))) (-2225 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598)))))
-(-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1144) $))))
-((-2558 (((-112) $ $) NIL (|has| (-145) (-1109)))) (-2010 (($ $) 38)) (-2160 (($ $) NIL)) (-3989 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-2646 (((-112) $ $) 66)) (-2627 (((-112) $ $ (-570)) 61)) (-3774 (((-650 $) $ (-145)) 74) (((-650 $) $ (-142)) 75)) (-4374 (((-112) (-1 (-112) (-145) (-145)) $) NIL) (((-112) $) NIL (|has| (-145) (-856)))) (-4004 (($ (-1 (-112) (-145) (-145)) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-145) (-856))))) (-3393 (($ (-1 (-112) (-145) (-145)) $) NIL) (($ $) NIL (|has| (-145) (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 (((-145) $ (-570) (-145)) 58 (|has| $ (-6 -4450))) (((-145) $ (-1244 (-570)) (-145)) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-1675 (($ $ (-145)) 79) (($ $ (-142)) 80)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-1483 (($ $ (-1244 (-570)) $) 56)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-1741 (($ (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109)))) (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-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)))) (-1517 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4450)))) (-3820 (((-145) $ (-570)) NIL)) (-2666 (((-112) $ $) 89)) (-4027 (((-570) (-1 (-112) (-145)) $) NIL) (((-570) (-145) $) NIL (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) 63 (|has| (-145) (-1109))) (((-570) $ $ (-570)) 62) (((-570) (-142) $ (-570)) 65)) (-3627 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-4291 (($ (-777) (-145)) 9)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) 32 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| (-145) (-856)))) (-2024 (($ (-1 (-112) (-145) (-145)) $ $) NIL) (($ $ $) NIL (|has| (-145) (-856)))) (-2752 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-1460 (((-570) $) 47 (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| (-145) (-856)))) (-4035 (((-112) $ $ (-145)) 90)) (-4139 (((-777) $ $ (-145)) 87)) (-1502 (($ (-1 (-145) (-145)) $) 37 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-145) (-145)) $) NIL) (($ (-1 (-145) (-145) (-145)) $ $) NIL)) (-2507 (($ $) 41)) (-1971 (($ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1687 (($ $ (-145)) 76) (($ $ (-142)) 77)) (-1988 (((-1168) $) 43 (|has| (-145) (-1109)))) (-4290 (($ (-145) $ (-570)) NIL) (($ $ $ (-570)) 27)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) 86 (|has| (-145) (-1109)))) (-3543 (((-145) $) NIL (|has| (-570) (-856)))) (-1790 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-2147 (($ $ (-145)) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3700 (((-650 (-145)) $) NIL)) (-2017 (((-112) $) 15)) (-2380 (($) 10)) (-1941 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) 67) (($ $ (-1244 (-570))) 25) (($ $ $) NIL)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3584 (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449))) (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-2906 (($ $ $ (-570)) 82 (|has| $ (-6 -4450)))) (-3951 (($ $) 20)) (-1425 (((-542) $) NIL (|has| (-145) (-620 (-542))))) (-3811 (($ (-650 (-145))) NIL)) (-2584 (($ $ (-145)) NIL) (($ (-145) $) NIL) (($ $ $) 19) (($ (-650 $)) 83)) (-3799 (($ (-145)) NIL) (((-868) $) 31 (|has| (-145) (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| (-145) (-1109)))) (-4371 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3022 (((-112) $ $) 17 (|has| (-145) (-1109)))) (-3062 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3042 (((-112) $ $) 18 (|has| (-145) (-856)))) (-2569 (((-777) $) 16 (|has| $ (-6 -4449)))))
+((-1981 (((-1282) (-1168)) 10)))
+(((-588) (-10 -7 (-15 -1981 ((-1282) (-1168))))) (T -588))
+((-1981 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-588)))))
+(-10 -7 (-15 -1981 ((-1282) (-1168))))
+((-3568 (((-592 |#2|) (-592 |#2|)) 42)) (-1393 (((-650 |#2|) (-592 |#2|)) 44)) (-2971 ((|#2| (-592 |#2|)) 50)))
+(((-589 |#1| |#2|) (-10 -7 (-15 -3568 ((-592 |#2|) (-592 |#2|))) (-15 -1393 ((-650 |#2|) (-592 |#2|))) (-15 -2971 (|#2| (-592 |#2|)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-29 |#1|) (-1212))) (T -589))
+((-2971 (*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)))))) (-1393 (*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)))) (-3568 (*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 -3568 ((-592 |#2|) (-592 |#2|))) (-15 -1393 ((-650 |#2|) (-592 |#2|))) (-15 -2971 (|#2| (-592 |#2|))))
+((-1357 (((-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 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed")) 35) (((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|)) 30)))
+(((-590 |#1| |#2|) (-10 -7 (-15 -1357 ((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|))) (-15 -1357 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1357 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1357 ((-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))
+((-1357 (*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)))) (-1357 (*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)))) (-1357 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1 *6 *5)) (-5 *4 (-3 (-2 (|:| -4341 *5) (|:| |coeff| *5)) "failed")) (-4 *5 (-368)) (-4 *6 (-368)) (-5 *2 (-2 (|:| -4341 *6) (|:| |coeff| *6))) (-5 *1 (-590 *5 *6)))) (-1357 (*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 -1357 ((-592 |#2|) (-1 |#2| |#1|) (-592 |#1|))) (-15 -1357 ((-3 (-2 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") (-1 |#2| |#1|) (-3 (-2 (|:| -4341 |#1|) (|:| |coeff| |#1|)) "failed"))) (-15 -1357 ((-3 |#2| "failed") (-1 |#2| |#1|) (-3 |#1| "failed"))) (-15 -1357 ((-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"))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-2590 (($ (-512) (-603)) 14)) (-1599 (($ (-512) (-603) $) 16)) (-1960 (($ (-512) (-603)) 15)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ (-1191)) 7) (((-1191) $) 6)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-591) (-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2590 ($ (-512) (-603))) (-15 -1960 ($ (-512) (-603))) (-15 -1599 ($ (-512) (-603) $))))) (T -591))
+((-2590 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))) (-1960 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))) (-1599 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+(-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2590 ($ (-512) (-603))) (-15 -1960 ($ (-512) (-603))) (-15 -1599 ($ (-512) (-603) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) 76)) (-3220 ((|#1| $) NIL)) (-4341 ((|#1| $) 30)) (-1468 (((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $) 32)) (-2919 (($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|)))) 28)) (-3077 (((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $) 31)) (-3989 (((-1168) $) NIL)) (-1411 (($ |#1| |#1|) 38) (($ |#1| (-1186)) 49 (|has| |#1| (-1047 (-1186))))) (-3580 (((-1129) $) NIL)) (-3073 (((-112) $) 35)) (-3550 ((|#1| $ (-1 |#1| |#1|)) 88) ((|#1| $ (-1186)) 89 (|has| |#1| (-907 (-1186))))) (-3802 (((-868) $) 110) (($ |#1|) 29)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 18 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) 17) (($ $ $) NIL)) (-3104 (($ $ $) 85)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 16) (($ (-413 (-570)) $) 41) (($ $ (-413 (-570))) NIL)))
+(((-592 |#1|) (-13 (-723 (-413 (-570))) (-1047 |#1|) (-10 -8 (-15 -2919 ($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -4341 (|#1| $)) (-15 -3077 ((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $)) (-15 -1468 ((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3073 ((-112) $)) (-15 -1411 ($ |#1| |#1|)) (-15 -3550 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-907 (-1186))) (-15 -3550 (|#1| $ (-1186))) |%noBranch|) (IF (|has| |#1| (-1047 (-1186))) (-15 -1411 ($ |#1| (-1186))) |%noBranch|))) (-368)) (T -592))
+((-2919 (*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)))) (-4341 (*1 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3077 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 *3)) (|:| |logand| (-1182 *3))))) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-1468 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |integrand| *3) (|:| |intvar| *3)))) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-3073 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-368)))) (-1411 (*1 *1 *2 *2) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3550 (*1 *2 *1 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-592 *2)) (-4 *2 (-368)))) (-3550 (*1 *2 *1 *3) (-12 (-4 *2 (-368)) (-4 *2 (-907 *3)) (-5 *1 (-592 *2)) (-5 *3 (-1186)))) (-1411 (*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 -2919 ($ |#1| (-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) (-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))))) (-15 -4341 (|#1| $)) (-15 -3077 ((-650 (-2 (|:| |scalar| (-413 (-570))) (|:| |coeff| (-1182 |#1|)) (|:| |logand| (-1182 |#1|)))) $)) (-15 -1468 ((-650 (-2 (|:| |integrand| |#1|) (|:| |intvar| |#1|))) $)) (-15 -3073 ((-112) $)) (-15 -1411 ($ |#1| |#1|)) (-15 -3550 (|#1| $ (-1 |#1| |#1|))) (IF (|has| |#1| (-907 (-1186))) (-15 -3550 (|#1| $ (-1186))) |%noBranch|) (IF (|has| |#1| (-1047 (-1186))) (-15 -1411 ($ |#1| (-1186))) |%noBranch|)))
+((-1360 (((-112) |#1|) 16)) (-3126 (((-3 |#1| "failed") |#1|) 14)) (-1786 (((-2 (|:| -4409 |#1|) (|:| -3994 (-777))) |#1|) 36) (((-3 |#1| "failed") |#1| (-777)) 18)) (-1715 (((-112) |#1| (-777)) 19)) (-1753 ((|#1| |#1|) 40)) (-2949 ((|#1| |#1| (-777)) 43)))
+(((-593 |#1|) (-10 -7 (-15 -1715 ((-112) |#1| (-777))) (-15 -1786 ((-3 |#1| "failed") |#1| (-777))) (-15 -1786 ((-2 (|:| -4409 |#1|) (|:| -3994 (-777))) |#1|)) (-15 -2949 (|#1| |#1| (-777))) (-15 -1360 ((-112) |#1|)) (-15 -3126 ((-3 |#1| "failed") |#1|)) (-15 -1753 (|#1| |#1|))) (-551)) (T -593))
+((-1753 (*1 *2 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-3126 (*1 *2 *2) (|partial| -12 (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-1360 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))) (-2949 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-1786 (*1 *2 *3) (-12 (-5 *2 (-2 (|:| -4409 *3) (|:| -3994 (-777)))) (-5 *1 (-593 *3)) (-4 *3 (-551)))) (-1786 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))) (-1715 (*1 *2 *3 *4) (-12 (-5 *4 (-777)) (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
+(-10 -7 (-15 -1715 ((-112) |#1| (-777))) (-15 -1786 ((-3 |#1| "failed") |#1| (-777))) (-15 -1786 ((-2 (|:| -4409 |#1|) (|:| -3994 (-777))) |#1|)) (-15 -2949 (|#1| |#1| (-777))) (-15 -1360 ((-112) |#1|)) (-15 -3126 ((-3 |#1| "failed") |#1|)) (-15 -1753 (|#1| |#1|)))
+((-2484 (((-1182 |#1|) (-928)) 44)))
+(((-594 |#1|) (-10 -7 (-15 -2484 ((-1182 |#1|) (-928)))) (-354)) (T -594))
+((-2484 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-594 *4)) (-4 *4 (-354)))))
+(-10 -7 (-15 -2484 ((-1182 |#1|) (-928))))
+((-3568 (((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|)))) 27)) (-2023 (((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186)) 34 (|has| |#1| (-148)))) (-1393 (((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|)))) 19)) (-2218 (((-320 |#1|) (-413 (-959 |#1|)) (-1186)) 32 (|has| |#1| (-148)))) (-2971 (((-320 |#1|) (-592 (-413 (-959 |#1|)))) 21)))
+(((-595 |#1|) (-10 -7 (-15 -3568 ((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|))))) (-15 -1393 ((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|))))) (-15 -2971 ((-320 |#1|) (-592 (-413 (-959 |#1|))))) (IF (|has| |#1| (-148)) (PROGN (-15 -2023 ((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2218 ((-320 |#1|) (-413 (-959 |#1|)) (-1186)))) |%noBranch|)) (-13 (-458) (-1047 (-570)) (-645 (-570)))) (T -595))
+((-2218 (*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)))) (-2023 (*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)))) (-2971 (*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)))) (-1393 (*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)))) (-3568 (*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 -3568 ((-592 (-413 (-959 |#1|))) (-592 (-413 (-959 |#1|))))) (-15 -1393 ((-650 (-320 |#1|)) (-592 (-413 (-959 |#1|))))) (-15 -2971 ((-320 |#1|) (-592 (-413 (-959 |#1|))))) (IF (|has| |#1| (-148)) (PROGN (-15 -2023 ((-3 (-320 |#1|) (-650 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2218 ((-320 |#1|) (-413 (-959 |#1|)) (-1186)))) |%noBranch|))
+((-2423 (((-650 (-695 (-570))) (-650 (-928)) (-650 (-912 (-570)))) 78) (((-650 (-695 (-570))) (-650 (-928))) 79) (((-695 (-570)) (-650 (-928)) (-912 (-570))) 72)) (-2320 (((-777) (-650 (-928))) 69)))
+(((-596) (-10 -7 (-15 -2320 ((-777) (-650 (-928)))) (-15 -2423 ((-695 (-570)) (-650 (-928)) (-912 (-570)))) (-15 -2423 ((-650 (-695 (-570))) (-650 (-928)))) (-15 -2423 ((-650 (-695 (-570))) (-650 (-928)) (-650 (-912 (-570))))))) (T -596))
+((-2423 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-928))) (-5 *4 (-650 (-912 (-570)))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))) (-2423 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))) (-2423 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-928))) (-5 *4 (-912 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-596)))) (-2320 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-777)) (-5 *1 (-596)))))
+(-10 -7 (-15 -2320 ((-777) (-650 (-928)))) (-15 -2423 ((-695 (-570)) (-650 (-928)) (-912 (-570)))) (-15 -2423 ((-650 (-695 (-570))) (-650 (-928)))) (-15 -2423 ((-650 (-695 (-570))) (-650 (-928)) (-650 (-912 (-570))))))
+((-3794 (((-650 |#5|) |#5| (-112)) 100)) (-3248 (((-112) |#5| (-650 |#5|)) 34)))
+(((-597 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3794 ((-650 |#5|) |#5| (-112))) (-15 -3248 ((-112) |#5| (-650 |#5|)))) (-13 (-311) (-148)) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1118 |#1| |#2| |#3| |#4|)) (T -597))
+((-3248 (*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)))) (-3794 (*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 -3794 ((-650 |#5|) |#5| (-112))) (-15 -3248 ((-112) |#5| (-650 |#5|))))
+((-2560 (((-112) $ $) NIL)) (-2226 (((-1144) $) 11)) (-2215 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-598) (-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1144) $))))) (T -598))
+((-2215 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598)))) (-2226 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-598)))))
+(-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1144) $))))
+((-2560 (((-112) $ $) NIL (|has| (-145) (-1109)))) (-4214 (($ $) 38)) (-2182 (($ $) NIL)) (-1958 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-2647 (((-112) $ $) 66)) (-2628 (((-112) $ $ (-570)) 61)) (-3568 (((-650 $) $ (-145)) 74) (((-650 $) $ (-142)) 75)) (-4414 (((-112) (-1 (-112) (-145) (-145)) $) NIL) (((-112) $) NIL (|has| (-145) (-856)))) (-3936 (($ (-1 (-112) (-145) (-145)) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| (-145) (-856))))) (-3396 (($ (-1 (-112) (-145) (-145)) $) NIL) (($ $) NIL (|has| (-145) (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 (((-145) $ (-570) (-145)) 58 (|has| $ (-6 -4453))) (((-145) $ (-1244 (-570)) (-145)) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1676 (($ $ (-145)) 79) (($ $ (-142)) 80)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-2824 (($ $ (-1244 (-570)) $) 56)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-1742 (($ (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109)))) (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4452))) (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4452)))) (-1518 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4453)))) (-3824 (((-145) $ (-570)) NIL)) (-2667 (((-112) $ $) 89)) (-4029 (((-570) (-1 (-112) (-145)) $) NIL) (((-570) (-145) $) NIL (|has| (-145) (-1109))) (((-570) (-145) $ (-570)) 63 (|has| (-145) (-1109))) (((-570) $ $ (-570)) 62) (((-570) (-142) $ (-570)) 65)) (-3630 (((-650 (-145)) $) NIL (|has| $ (-6 -4452)))) (-4294 (($ (-777) (-145)) 9)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) 32 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| (-145) (-856)))) (-3183 (($ (-1 (-112) (-145) (-145)) $ $) NIL) (($ $ $) NIL (|has| (-145) (-856)))) (-2052 (((-650 (-145)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-2602 (((-570) $) 47 (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| (-145) (-856)))) (-4038 (((-112) $ $ (-145)) 90)) (-4142 (((-777) $ $ (-145)) 87)) (-1503 (($ (-1 (-145) (-145)) $) 37 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-145) (-145)) $) NIL) (($ (-1 (-145) (-145) (-145)) $ $) NIL)) (-1432 (($ $) 41)) (-3819 (($ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-1688 (($ $ (-145)) 76) (($ $ (-142)) 77)) (-3989 (((-1168) $) 43 (|has| (-145) (-1109)))) (-4293 (($ (-145) $ (-570)) NIL) (($ $ $ (-570)) 27)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) 86 (|has| (-145) (-1109)))) (-3546 (((-145) $) NIL (|has| (-570) (-856)))) (-2770 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-2061 (($ $ (-145)) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-4049 (((-650 (-145)) $) NIL)) (-4283 (((-112) $) 15)) (-2656 (($) 10)) (-1942 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) 67) (($ $ (-1244 (-570))) 25) (($ $ $) NIL)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3587 (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452))) (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-2087 (($ $ $ (-570)) 82 (|has| $ (-6 -4453)))) (-3954 (($ $) 20)) (-1426 (((-542) $) NIL (|has| (-145) (-620 (-542))))) (-3814 (($ (-650 (-145))) NIL)) (-2585 (($ $ (-145)) NIL) (($ (-145) $) NIL) (($ $ $) 19) (($ (-650 $)) 83)) (-3802 (($ (-145)) NIL) (((-868) $) 31 (|has| (-145) (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| (-145) (-1109)))) (-4379 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3025 (((-112) $ $) 17 (|has| (-145) (-1109)))) (-3065 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3045 (((-112) $ $) 18 (|has| (-145) (-856)))) (-2570 (((-777) $) 16 (|has| $ (-6 -4452)))))
(((-599 |#1|) (-1153) (-570)) (T -599))
NIL
(-1153)
-((-3318 (((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2| (-1103 |#4|)) 32)))
-(((-600 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3318 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2| (-1103 |#4|))) (-15 -3318 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2|))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|)) (T -600))
-((-3318 (*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)))) (-3318 (*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 -3318 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2| (-1103 |#4|))) (-15 -3318 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 71)) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-1447 (($ $ (-570)) 58) (($ $ (-570) (-570)) 59)) (-3416 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 65)) (-3771 (($ $) 109)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1312 (((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570))) 241)) (-3418 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 36)) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2379 (((-112) $) NIL)) (-4323 (((-570) $) 63) (((-570) $ (-570)) 64)) (-4346 (((-112) $) NIL)) (-2362 (($ $ (-928)) 83)) (-1712 (($ (-1 |#1| (-570)) $) 80)) (-2359 (((-112) $) 26)) (-3912 (($ |#1| (-570)) 22) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-2633 (($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 13)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-2898 (($ $) 161 (|has| |#1| (-38 (-413 (-570)))))) (-3581 (((-3 $ "failed") $ $ (-112)) 108)) (-2182 (($ $ $) 116)) (-3577 (((-1129) $) NIL)) (-1882 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 15)) (-3551 (((-1035 (-849 (-570))) $) 14)) (-2431 (($ $ (-570)) 47)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1770 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-570)))))) (-1941 ((|#1| $ (-570)) 62) (($ $ $) NIL (|has| (-570) (-1121)))) (-3547 (($ $ (-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|)))) (($ $) 77 (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-2130 (((-570) $) NIL)) (-2853 (($ $) 48)) (-3799 (((-868) $) NIL) (($ (-570)) 29) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 28 (|has| |#1| (-174)))) (-2249 ((|#1| $ (-570)) 61)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) 39 T CONST)) (-2288 ((|#1| $) NIL)) (-2598 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-2320 (($ $) 169 (|has| |#1| (-38 (-413 (-570)))))) (-4342 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2972 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-3522 (($ $) 201 (|has| |#1| (-38 (-413 (-570)))))) (-1952 (($ $) 173 (|has| |#1| (-38 (-413 (-570)))))) (-3898 (($ $ (-413 (-570))) 177 (|has| |#1| (-38 (-413 (-570)))))) (-2046 (($ $ |#1|) 157 (|has| |#1| (-38 (-413 (-570)))))) (-1626 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-3569 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-2006 (($ $) 203 (|has| |#1| (-38 (-413 (-570)))))) (-1516 (($ $) 175 (|has| |#1| (-38 (-413 (-570)))))) (-3460 (($ $) 199 (|has| |#1| (-38 (-413 (-570)))))) (-2153 (($ $) 171 (|has| |#1| (-38 (-413 (-570)))))) (-2329 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-3824 (($ $) 172 (|has| |#1| (-38 (-413 (-570)))))) (-3310 (($ $) 209 (|has| |#1| (-38 (-413 (-570)))))) (-3901 (($ $) 185 (|has| |#1| (-38 (-413 (-570)))))) (-2038 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-1722 (($ $) 181 (|has| |#1| (-38 (-413 (-570)))))) (-2041 (($ $) 213 (|has| |#1| (-38 (-413 (-570)))))) (-4229 (($ $) 189 (|has| |#1| (-38 (-413 (-570)))))) (-3151 (($ $) 215 (|has| |#1| (-38 (-413 (-570)))))) (-2873 (($ $) 191 (|has| |#1| (-38 (-413 (-570)))))) (-2684 (($ $) 211 (|has| |#1| (-38 (-413 (-570)))))) (-1821 (($ $) 187 (|has| |#1| (-38 (-413 (-570)))))) (-1638 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-4159 (($ $) 183 (|has| |#1| (-38 (-413 (-570)))))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-3167 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1861 (($) 30 T CONST)) (-1875 (($) 40 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) 73)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) 91) (($ $ $) 72)) (-3101 (($ $ $) 88)) (** (($ $ (-928)) NIL) (($ $ (-777)) 111)) (* (($ (-928) $) 98) (($ (-777) $) 96) (($ (-570) $) 93) (($ $ $) 104) (($ $ |#1|) NIL) (($ |#1| $) 123) (($ (-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 -2633 ($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -3551 ((-1035 (-849 (-570))) $)) (-15 -1882 ((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $)) (-15 -3418 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -2359 ((-112) $)) (-15 -1712 ($ (-1 |#1| (-570)) $)) (-15 -3581 ((-3 $ "failed") $ $ (-112))) (-15 -3771 ($ $)) (-15 -2182 ($ $ $)) (-15 -1312 ((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $)) (-15 -2046 ($ $ |#1|)) (-15 -3898 ($ $ (-413 (-570)))) (-15 -3569 ($ $)) (-15 -1626 ($ $)) (-15 -2972 ($ $)) (-15 -3824 ($ $)) (-15 -2320 ($ $)) (-15 -2153 ($ $)) (-15 -1952 ($ $)) (-15 -1516 ($ $)) (-15 -1722 ($ $)) (-15 -4159 ($ $)) (-15 -3901 ($ $)) (-15 -1821 ($ $)) (-15 -4229 ($ $)) (-15 -2873 ($ $)) (-15 -4342 ($ $)) (-15 -2329 ($ $)) (-15 -2598 ($ $)) (-15 -3460 ($ $)) (-15 -3522 ($ $)) (-15 -2006 ($ $)) (-15 -2038 ($ $)) (-15 -1638 ($ $)) (-15 -3310 ($ $)) (-15 -2684 ($ $)) (-15 -2041 ($ $)) (-15 -3151 ($ $))) |%noBranch|))) (-1058)) (T -601))
-((-2359 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-2633 (*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)))) (-3551 (*1 *2 *1) (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-1882 (*1 *2 *1) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3418 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-4 *3 (-1058)) (-5 *1 (-601 *3)))) (-1712 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-601 *3)))) (-3581 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3771 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))) (-2182 (*1 *1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))) (-1312 (*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)))) (-2898 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2046 (*1 *1 *1 *2) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3898 (*1 *1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-601 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1058)))) (-3569 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1626 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2972 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3824 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2320 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2153 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1952 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1516 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1722 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4159 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3901 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1821 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4229 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2873 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4342 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2329 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2598 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3460 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3522 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2006 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2038 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1638 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3310 (*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)))) (-2041 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3151 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(-13 (-1255 |#1| (-570)) (-10 -8 (-15 -2633 ($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -3551 ((-1035 (-849 (-570))) $)) (-15 -1882 ((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $)) (-15 -3418 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -2359 ((-112) $)) (-15 -1712 ($ (-1 |#1| (-570)) $)) (-15 -3581 ((-3 $ "failed") $ $ (-112))) (-15 -3771 ($ $)) (-15 -2182 ($ $ $)) (-15 -1312 ((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $)) (-15 -2046 ($ $ |#1|)) (-15 -3898 ($ $ (-413 (-570)))) (-15 -3569 ($ $)) (-15 -1626 ($ $)) (-15 -2972 ($ $)) (-15 -3824 ($ $)) (-15 -2320 ($ $)) (-15 -2153 ($ $)) (-15 -1952 ($ $)) (-15 -1516 ($ $)) (-15 -1722 ($ $)) (-15 -4159 ($ $)) (-15 -3901 ($ $)) (-15 -1821 ($ $)) (-15 -4229 ($ $)) (-15 -2873 ($ $)) (-15 -4342 ($ $)) (-15 -2329 ($ $)) (-15 -2598 ($ $)) (-15 -3460 ($ $)) (-15 -3522 ($ $)) (-15 -2006 ($ $)) (-15 -2038 ($ $)) (-15 -1638 ($ $)) (-15 -3310 ($ $)) (-15 -2684 ($ $)) (-15 -2041 ($ $)) (-15 -3151 ($ $))) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 63)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3418 (($ (-1166 |#1|)) 9)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) 44)) (-2379 (((-112) $) 56)) (-4323 (((-777) $) 61) (((-777) $ (-777)) 60)) (-4346 (((-112) $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2547 (((-3 $ "failed") $ $) 46 (|has| |#1| (-562)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-1166 |#1|) $) 25)) (-3499 (((-777)) 55 T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) 10 T CONST)) (-1875 (($) 14 T CONST)) (-3022 (((-112) $ $) 24)) (-3111 (($ $) 32) (($ $ $) 16)) (-3101 (($ $ $) 27)) (** (($ $ (-928)) NIL) (($ $ (-777)) 53)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 36) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39) (($ $ (-570)) 38)))
-(((-602 |#1|) (-13 (-1058) (-111 |#1| |#1|) (-10 -8 (-15 -2186 ((-1166 |#1|) $)) (-15 -3418 ($ (-1166 |#1|))) (-15 -2379 ((-112) $)) (-15 -4323 ((-777) $)) (-15 -4323 ((-777) $ (-777))) (-15 * ($ $ (-570))) (IF (|has| |#1| (-562)) (-6 (-562)) |%noBranch|))) (-1058)) (T -602))
-((-2186 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-3418 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-602 *3)))) (-2379 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-4323 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-4323 (*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 -2186 ((-1166 |#1|) $)) (-15 -3418 ($ (-1166 |#1|))) (-15 -2379 ((-112) $)) (-15 -4323 ((-777) $)) (-15 -4323 ((-777) $ (-777))) (-15 * ($ $ (-570))) (IF (|has| |#1| (-562)) (-6 (-562)) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-4081 (($) 8 T CONST)) (-2989 (($) 7 T CONST)) (-3906 (($ $ (-650 $)) 16)) (-1988 (((-1168) $) NIL)) (-2073 (($) 6 T CONST)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ (-1191)) 15) (((-1191) $) 10)) (-2674 (($) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-603) (-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2073 ($) -3725) (-15 -2989 ($) -3725) (-15 -4081 ($) -3725) (-15 -2674 ($) -3725) (-15 -3906 ($ $ (-650 $)))))) (T -603))
-((-2073 (*1 *1) (-5 *1 (-603))) (-2989 (*1 *1) (-5 *1 (-603))) (-4081 (*1 *1) (-5 *1 (-603))) (-2674 (*1 *1) (-5 *1 (-603))) (-3906 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-603))) (-5 *1 (-603)))))
-(-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -2073 ($) -3725) (-15 -2989 ($) -3725) (-15 -4081 ($) -3725) (-15 -2674 ($) -3725) (-15 -3906 ($ $ (-650 $)))))
-((-1356 (((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|)) 15)))
-(((-604 |#1| |#2|) (-10 -7 (-15 -1356 ((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|)))) (-1227) (-1227)) (T -604))
-((-1356 (*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 -1356 ((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|))))
-((-1356 (((-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 -1356 ((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|))) (-15 -1356 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|))) (-15 -1356 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|)))) (-1227) (-1227) (-1227)) (T -605))
-((-1356 (*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)))) (-1356 (*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)))) (-1356 (*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 -1356 ((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|))) (-15 -1356 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|))) (-15 -1356 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|))))
-((-3090 ((|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186))) 57)) (-1717 (((-171 |#2|) |#3|) 121)) (-2295 ((|#3| (-171 |#2|)) 46)) (-3662 ((|#2| |#3|) 21)) (-4424 ((|#3| |#2|) 35)))
-(((-606 |#1| |#2| |#3|) (-10 -7 (-15 -2295 (|#3| (-171 |#2|))) (-15 -3662 (|#2| |#3|)) (-15 -4424 (|#3| |#2|)) (-15 -1717 ((-171 |#2|) |#3|)) (-15 -3090 (|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186))))) (-562) (-13 (-436 |#1|) (-1011) (-1212)) (-13 (-436 (-171 |#1|)) (-1011) (-1212))) (T -606))
-((-3090 (*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))))) (-1717 (*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))))) (-4424 (*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))))) (-3662 (*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))))) (-2295 (*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 -2295 (|#3| (-171 |#2|))) (-15 -3662 (|#2| |#3|)) (-15 -4424 (|#3| |#2|)) (-15 -1717 ((-171 |#2|) |#3|)) (-15 -3090 (|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186)))))
-((-1431 (($ (-1 (-112) |#1|) $) 17)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1347 (($ (-1 |#1| |#1|) |#1|) 9)) (-1404 (($ (-1 (-112) |#1|) $) 13)) (-1417 (($ (-1 (-112) |#1|) $) 15)) (-3811 (((-1166 |#1|) $) 18)) (-3799 (((-868) $) NIL)))
-(((-607 |#1|) (-13 (-619 (-868)) (-10 -8 (-15 -1356 ($ (-1 |#1| |#1|) $)) (-15 -1404 ($ (-1 (-112) |#1|) $)) (-15 -1417 ($ (-1 (-112) |#1|) $)) (-15 -1431 ($ (-1 (-112) |#1|) $)) (-15 -1347 ($ (-1 |#1| |#1|) |#1|)) (-15 -3811 ((-1166 |#1|) $)))) (-1227)) (T -607))
-((-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1404 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1417 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1431 (*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)))) (-3811 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-607 *3)) (-4 *3 (-1227)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -1356 ($ (-1 |#1| |#1|) $)) (-15 -1404 ($ (-1 (-112) |#1|) $)) (-15 -1417 ($ (-1 (-112) |#1|) $)) (-15 -1431 ($ (-1 (-112) |#1|) $)) (-15 -1347 ($ (-1 |#1| |#1|) |#1|)) (-15 -3811 ((-1166 |#1|) $))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3504 (($ (-777)) NIL (|has| |#1| (-23)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-4027 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1378 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4291 (($ (-777) |#1|) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4202 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3231 (((-112) $ (-777)) NIL)) (-1355 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) NIL (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-2609 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3432 (($ $ $) NIL (|has| |#1| (-1058)))) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) NIL)) (-2584 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3111 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3101 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-3321 (((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2|) 23) (((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2| (-1103 |#4|)) 32)))
+(((-600 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3321 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2| (-1103 |#4|))) (-15 -3321 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2|))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|)) (T -600))
+((-3321 (*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)))) (-3321 (*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 -3321 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2| (-1103 |#4|))) (-15 -3321 ((-2 (|:| |num| |#4|) (|:| |den| (-570))) |#4| |#2|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 71)) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1622 (($ $ (-570)) 58) (($ $ (-570) (-570)) 59)) (-3257 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 65)) (-3530 (($ $) 109)) (-1966 (((-3 $ "failed") $ $) NIL)) (-1905 (((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570))) 241)) (-3421 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 36)) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2646 (((-112) $) NIL)) (-3941 (((-570) $) 63) (((-570) $ (-570)) 64)) (-4139 (((-112) $) NIL)) (-3660 (($ $ (-928)) 83)) (-3240 (($ (-1 |#1| (-570)) $) 80)) (-3633 (((-112) $) 26)) (-3915 (($ |#1| (-570)) 22) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-3309 (($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 13)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-2023 (($ $) 161 (|has| |#1| (-38 (-413 (-570)))))) (-2350 (((-3 $ "failed") $ $ (-112)) 108)) (-2418 (($ $ $) 116)) (-3580 (((-1129) $) NIL)) (-2379 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 15)) (-2100 (((-1035 (-849 (-570))) $) 14)) (-3152 (($ $ (-570)) 47)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1771 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-570)))))) (-1942 ((|#1| $ (-570)) 62) (($ $ $) NIL (|has| (-570) (-1121)))) (-3550 (($ $ (-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|)))) (($ $) 77 (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (-3079 (((-570) $) NIL)) (-1682 (($ $) 48)) (-3802 (((-868) $) NIL) (($ (-570)) 29) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 28 (|has| |#1| (-174)))) (-1864 ((|#1| $ (-570)) 61)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) 39 T CONST)) (-2289 ((|#1| $) NIL)) (-4183 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-3216 (($ $) 169 (|has| |#1| (-38 (-413 (-570)))))) (-4096 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-1446 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-3053 (($ $) 201 (|has| |#1| (-38 (-413 (-570)))))) (-1774 (($ $) 173 (|has| |#1| (-38 (-413 (-570)))))) (-2293 (($ $ (-413 (-570))) 177 (|has| |#1| (-38 (-413 (-570)))))) (-3404 (($ $ |#1|) 157 (|has| |#1| (-38 (-413 (-570)))))) (-1754 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2254 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-4171 (($ $) 203 (|has| |#1| (-38 (-413 (-570)))))) (-1923 (($ $) 175 (|has| |#1| (-38 (-413 (-570)))))) (-3659 (($ $) 199 (|has| |#1| (-38 (-413 (-570)))))) (-2118 (($ $) 171 (|has| |#1| (-38 (-413 (-570)))))) (-3293 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-2798 (($ $) 172 (|has| |#1| (-38 (-413 (-570)))))) (-1717 (($ $) 209 (|has| |#1| (-38 (-413 (-570)))))) (-2324 (($ $) 185 (|has| |#1| (-38 (-413 (-570)))))) (-3306 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-3335 (($ $) 181 (|has| |#1| (-38 (-413 (-570)))))) (-3341 (($ $) 213 (|has| |#1| (-38 (-413 (-570)))))) (-2487 (($ $) 189 (|has| |#1| (-38 (-413 (-570)))))) (-2660 (($ $) 215 (|has| |#1| (-38 (-413 (-570)))))) (-1903 (($ $) 191 (|has| |#1| (-38 (-413 (-570)))))) (-3808 (($ $) 211 (|has| |#1| (-38 (-413 (-570)))))) (-3031 (($ $) 187 (|has| |#1| (-38 (-413 (-570)))))) (-3737 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-3014 (($ $) 183 (|has| |#1| (-38 (-413 (-570)))))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-3170 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1862 (($) 30 T CONST)) (-1876 (($) 40 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) 73)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) 91) (($ $ $) 72)) (-3104 (($ $ $) 88)) (** (($ $ (-928)) NIL) (($ $ (-777)) 111)) (* (($ (-928) $) 98) (($ (-777) $) 96) (($ (-570) $) 93) (($ $ $) 104) (($ $ |#1|) NIL) (($ |#1| $) 123) (($ (-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 -3309 ($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -2100 ((-1035 (-849 (-570))) $)) (-15 -2379 ((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $)) (-15 -3421 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -3633 ((-112) $)) (-15 -3240 ($ (-1 |#1| (-570)) $)) (-15 -2350 ((-3 $ "failed") $ $ (-112))) (-15 -3530 ($ $)) (-15 -2418 ($ $ $)) (-15 -1905 ((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $)) (-15 -3404 ($ $ |#1|)) (-15 -2293 ($ $ (-413 (-570)))) (-15 -2254 ($ $)) (-15 -1754 ($ $)) (-15 -1446 ($ $)) (-15 -2798 ($ $)) (-15 -3216 ($ $)) (-15 -2118 ($ $)) (-15 -1774 ($ $)) (-15 -1923 ($ $)) (-15 -3335 ($ $)) (-15 -3014 ($ $)) (-15 -2324 ($ $)) (-15 -3031 ($ $)) (-15 -2487 ($ $)) (-15 -1903 ($ $)) (-15 -4096 ($ $)) (-15 -3293 ($ $)) (-15 -4183 ($ $)) (-15 -3659 ($ $)) (-15 -3053 ($ $)) (-15 -4171 ($ $)) (-15 -3306 ($ $)) (-15 -3737 ($ $)) (-15 -1717 ($ $)) (-15 -3808 ($ $)) (-15 -3341 ($ $)) (-15 -2660 ($ $))) |%noBranch|))) (-1058)) (T -601))
+((-3633 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3309 (*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)))) (-2100 (*1 *2 *1) (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-2379 (*1 *2 *1) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3421 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-4 *3 (-1058)) (-5 *1 (-601 *3)))) (-3240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *3 (-1058)) (-5 *1 (-601 *3)))) (-2350 (*1 *1 *1 *1 *2) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))) (-3530 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))) (-2418 (*1 *1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))) (-1905 (*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)))) (-2023 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3404 (*1 *1 *1 *2) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2293 (*1 *1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-601 *3)) (-4 *3 (-38 *2)) (-4 *3 (-1058)))) (-2254 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1754 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1446 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2798 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3216 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2118 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1774 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1923 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3335 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3014 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2324 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3031 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2487 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1903 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4096 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3293 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4183 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3659 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3053 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-4171 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3306 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3737 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-1717 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3808 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-3341 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))) (-2660 (*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(-13 (-1255 |#1| (-570)) (-10 -8 (-15 -3309 ($ (-1035 (-849 (-570))) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -2100 ((-1035 (-849 (-570))) $)) (-15 -2379 ((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $)) (-15 -3421 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))))) (-15 -3633 ((-112) $)) (-15 -3240 ($ (-1 |#1| (-570)) $)) (-15 -2350 ((-3 $ "failed") $ $ (-112))) (-15 -3530 ($ $)) (-15 -2418 ($ $ $)) (-15 -1905 ((-868) (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) (-1035 (-849 (-570))) (-1186) |#1| (-413 (-570)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $)) (-15 -3404 ($ $ |#1|)) (-15 -2293 ($ $ (-413 (-570)))) (-15 -2254 ($ $)) (-15 -1754 ($ $)) (-15 -1446 ($ $)) (-15 -2798 ($ $)) (-15 -3216 ($ $)) (-15 -2118 ($ $)) (-15 -1774 ($ $)) (-15 -1923 ($ $)) (-15 -3335 ($ $)) (-15 -3014 ($ $)) (-15 -2324 ($ $)) (-15 -3031 ($ $)) (-15 -2487 ($ $)) (-15 -1903 ($ $)) (-15 -4096 ($ $)) (-15 -3293 ($ $)) (-15 -4183 ($ $)) (-15 -3659 ($ $)) (-15 -3053 ($ $)) (-15 -4171 ($ $)) (-15 -3306 ($ $)) (-15 -3737 ($ $)) (-15 -1717 ($ $)) (-15 -3808 ($ $)) (-15 -3341 ($ $)) (-15 -2660 ($ $))) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 63)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3421 (($ (-1166 |#1|)) 9)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) 44)) (-2646 (((-112) $) 56)) (-3941 (((-777) $) 61) (((-777) $ (-777)) 60)) (-4139 (((-112) $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2548 (((-3 $ "failed") $ $) 46 (|has| |#1| (-562)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-1166 |#1|) $) 25)) (-2851 (((-777)) 55 T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) 10 T CONST)) (-1876 (($) 14 T CONST)) (-3025 (((-112) $ $) 24)) (-3114 (($ $) 32) (($ $ $) 16)) (-3104 (($ $ $) 27)) (** (($ $ (-928)) NIL) (($ $ (-777)) 53)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 36) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39) (($ $ (-570)) 38)))
+(((-602 |#1|) (-13 (-1058) (-111 |#1| |#1|) (-10 -8 (-15 -2459 ((-1166 |#1|) $)) (-15 -3421 ($ (-1166 |#1|))) (-15 -2646 ((-112) $)) (-15 -3941 ((-777) $)) (-15 -3941 ((-777) $ (-777))) (-15 * ($ $ (-570))) (IF (|has| |#1| (-562)) (-6 (-562)) |%noBranch|))) (-1058)) (T -602))
+((-2459 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-3421 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-602 *3)))) (-2646 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-3941 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-602 *3)) (-4 *3 (-1058)))) (-3941 (*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 -2459 ((-1166 |#1|) $)) (-15 -3421 ($ (-1166 |#1|))) (-15 -2646 ((-112) $)) (-15 -3941 ((-777) $)) (-15 -3941 ((-777) $ (-777))) (-15 * ($ $ (-570))) (IF (|has| |#1| (-562)) (-6 (-562)) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-3517 (($) 8 T CONST)) (-1659 (($) 7 T CONST)) (-2375 (($ $ (-650 $)) 16)) (-3989 (((-1168) $) NIL)) (-3698 (($) 6 T CONST)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ (-1191)) 15) (((-1191) $) 10)) (-3718 (($) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-603) (-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -3698 ($) -3728) (-15 -1659 ($) -3728) (-15 -3517 ($) -3728) (-15 -3718 ($) -3728) (-15 -2375 ($ $ (-650 $)))))) (T -603))
+((-3698 (*1 *1) (-5 *1 (-603))) (-1659 (*1 *1) (-5 *1 (-603))) (-3517 (*1 *1) (-5 *1 (-603))) (-3718 (*1 *1) (-5 *1 (-603))) (-2375 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-603))) (-5 *1 (-603)))))
+(-13 (-1109) (-496 (-1191)) (-10 -8 (-15 -3698 ($) -3728) (-15 -1659 ($) -3728) (-15 -3517 ($) -3728) (-15 -3718 ($) -3728) (-15 -2375 ($ $ (-650 $)))))
+((-1357 (((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|)) 15)))
+(((-604 |#1| |#2|) (-10 -7 (-15 -1357 ((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|)))) (-1227) (-1227)) (T -604))
+((-1357 (*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 -1357 ((-607 |#2|) (-1 |#2| |#1|) (-607 |#1|))))
+((-1357 (((-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 -1357 ((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|))) (-15 -1357 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|))) (-15 -1357 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|)))) (-1227) (-1227) (-1227)) (T -605))
+((-1357 (*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)))) (-1357 (*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)))) (-1357 (*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 -1357 ((-607 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-607 |#2|))) (-15 -1357 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-607 |#2|))) (-15 -1357 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-607 |#1|) (-1166 |#2|))))
+((-3278 ((|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186))) 57)) (-3282 (((-171 |#2|) |#3|) 121)) (-4143 ((|#3| (-171 |#2|)) 46)) (-1883 ((|#2| |#3|) 21)) (-3648 ((|#3| |#2|) 35)))
+(((-606 |#1| |#2| |#3|) (-10 -7 (-15 -4143 (|#3| (-171 |#2|))) (-15 -1883 (|#2| |#3|)) (-15 -3648 (|#3| |#2|)) (-15 -3282 ((-171 |#2|) |#3|)) (-15 -3278 (|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186))))) (-562) (-13 (-436 |#1|) (-1011) (-1212)) (-13 (-436 (-171 |#1|)) (-1011) (-1212))) (T -606))
+((-3278 (*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))))) (-3282 (*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))))) (-3648 (*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))))) (-1883 (*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))))) (-4143 (*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 -4143 (|#3| (-171 |#2|))) (-15 -1883 (|#2| |#3|)) (-15 -3648 (|#3| |#2|)) (-15 -3282 ((-171 |#2|) |#3|)) (-15 -3278 (|#3| |#3| (-650 (-618 |#3|)) (-650 (-1186)))))
+((-1434 (($ (-1 (-112) |#1|) $) 17)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-1349 (($ (-1 |#1| |#1|) |#1|) 9)) (-1406 (($ (-1 (-112) |#1|) $) 13)) (-1418 (($ (-1 (-112) |#1|) $) 15)) (-3814 (((-1166 |#1|) $) 18)) (-3802 (((-868) $) NIL)))
+(((-607 |#1|) (-13 (-619 (-868)) (-10 -8 (-15 -1357 ($ (-1 |#1| |#1|) $)) (-15 -1406 ($ (-1 (-112) |#1|) $)) (-15 -1418 ($ (-1 (-112) |#1|) $)) (-15 -1434 ($ (-1 (-112) |#1|) $)) (-15 -1349 ($ (-1 |#1| |#1|) |#1|)) (-15 -3814 ((-1166 |#1|) $)))) (-1227)) (T -607))
+((-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1406 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1418 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1434 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-1349 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3)))) (-3814 (*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-607 *3)) (-4 *3 (-1227)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -1357 ($ (-1 |#1| |#1|) $)) (-15 -1406 ($ (-1 (-112) |#1|) $)) (-15 -1418 ($ (-1 (-112) |#1|) $)) (-15 -1434 ($ (-1 (-112) |#1|) $)) (-15 -1349 ($ (-1 |#1| |#1|) |#1|)) (-15 -3814 ((-1166 |#1|) $))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3507 (($ (-777)) NIL (|has| |#1| (-23)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-4029 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-1379 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4294 (($ (-777) |#1|) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2234 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-2193 (((-112) $ (-777)) NIL)) (-1356 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) NIL (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4266 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3385 (($ $ $) NIL (|has| |#1| (-1058)))) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) NIL)) (-2585 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3114 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3104 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-608 |#1| |#2|) (-1275 |#1|) (-1227) (-570)) (T -608))
NIL
(-1275 |#1|)
-((-3851 (((-1282) $ |#2| |#2|) 35)) (-2383 ((|#2| $) 23)) (-1460 ((|#2| $) 21)) (-1502 (($ (-1 |#3| |#3|) $) 32)) (-1356 (($ (-1 |#3| |#3|) $) 30)) (-3543 ((|#3| $) 26)) (-2147 (($ $ |#3|) 33)) (-1868 (((-112) |#3| $) 17)) (-3700 (((-650 |#3|) $) 15)) (-1941 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
-(((-609 |#1| |#2| |#3|) (-10 -8 (-15 -3851 ((-1282) |#1| |#2| |#2|)) (-15 -2147 (|#1| |#1| |#3|)) (-15 -3543 (|#3| |#1|)) (-15 -2383 (|#2| |#1|)) (-15 -1460 (|#2| |#1|)) (-15 -1868 ((-112) |#3| |#1|)) (-15 -3700 ((-650 |#3|) |#1|)) (-15 -1941 (|#3| |#1| |#2|)) (-15 -1941 (|#3| |#1| |#2| |#3|)) (-15 -1502 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1356 (|#1| (-1 |#3| |#3|) |#1|))) (-610 |#2| |#3|) (-1109) (-1227)) (T -609))
+((-3040 (((-1282) $ |#2| |#2|) 35)) (-2685 ((|#2| $) 23)) (-2602 ((|#2| $) 21)) (-1503 (($ (-1 |#3| |#3|) $) 32)) (-1357 (($ (-1 |#3| |#3|) $) 30)) (-3546 ((|#3| $) 26)) (-2061 (($ $ |#3|) 33)) (-2262 (((-112) |#3| $) 17)) (-4049 (((-650 |#3|) $) 15)) (-1942 ((|#3| $ |#2| |#3|) 12) ((|#3| $ |#2|) NIL)))
+(((-609 |#1| |#2| |#3|) (-10 -8 (-15 -3040 ((-1282) |#1| |#2| |#2|)) (-15 -2061 (|#1| |#1| |#3|)) (-15 -3546 (|#3| |#1|)) (-15 -2685 (|#2| |#1|)) (-15 -2602 (|#2| |#1|)) (-15 -2262 ((-112) |#3| |#1|)) (-15 -4049 ((-650 |#3|) |#1|)) (-15 -1942 (|#3| |#1| |#2|)) (-15 -1942 (|#3| |#1| |#2| |#3|)) (-15 -1503 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1357 (|#1| (-1 |#3| |#3|) |#1|))) (-610 |#2| |#3|) (-1109) (-1227)) (T -609))
NIL
-(-10 -8 (-15 -3851 ((-1282) |#1| |#2| |#2|)) (-15 -2147 (|#1| |#1| |#3|)) (-15 -3543 (|#3| |#1|)) (-15 -2383 (|#2| |#1|)) (-15 -1460 (|#2| |#1|)) (-15 -1868 ((-112) |#3| |#1|)) (-15 -3700 ((-650 |#3|) |#1|)) (-15 -1941 (|#3| |#1| |#2|)) (-15 -1941 (|#3| |#1| |#2| |#3|)) (-15 -1502 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1356 (|#1| (-1 |#3| |#3|) |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#2| (-1109)))) (-3851 (((-1282) $ |#1| |#1|) 41 (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4450)))) (-1705 (($) 7 T CONST)) (-1517 ((|#2| $ |#1| |#2|) 54 (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) 52)) (-3627 (((-650 |#2|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2383 ((|#1| $) 44 (|has| |#1| (-856)))) (-2752 (((-650 |#2|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-1460 ((|#1| $) 45 (|has| |#1| (-856)))) (-1502 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#2| |#2|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#2| (-1109)))) (-1805 (((-650 |#1|) $) 47)) (-3939 (((-112) |#1| $) 48)) (-3577 (((-1129) $) 21 (|has| |#2| (-1109)))) (-3543 ((|#2| $) 43 (|has| |#1| (-856)))) (-2147 (($ $ |#2|) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#2| $ |#1| |#2|) 51) ((|#2| $ |#1|) 50)) (-3584 (((-777) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4449))) (((-777) |#2| $) 29 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#2| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#2| (-1109)))) (-4371 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#2| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(-10 -8 (-15 -3040 ((-1282) |#1| |#2| |#2|)) (-15 -2061 (|#1| |#1| |#3|)) (-15 -3546 (|#3| |#1|)) (-15 -2685 (|#2| |#1|)) (-15 -2602 (|#2| |#1|)) (-15 -2262 ((-112) |#3| |#1|)) (-15 -4049 ((-650 |#3|) |#1|)) (-15 -1942 (|#3| |#1| |#2|)) (-15 -1942 (|#3| |#1| |#2| |#3|)) (-15 -1503 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1357 (|#1| (-1 |#3| |#3|) |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#2| (-1109)))) (-3040 (((-1282) $ |#1| |#1|) 41 (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#2| $ |#1| |#2|) 53 (|has| $ (-6 -4453)))) (-3195 (($) 7 T CONST)) (-1518 ((|#2| $ |#1| |#2|) 54 (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) 52)) (-3630 (((-650 |#2|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2685 ((|#1| $) 44 (|has| |#1| (-856)))) (-2052 (((-650 |#2|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#2| $) 28 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452))))) (-2602 ((|#1| $) 45 (|has| |#1| (-856)))) (-1503 (($ (-1 |#2| |#2|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#2| |#2|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#2| (-1109)))) (-2903 (((-650 |#1|) $) 47)) (-1358 (((-112) |#1| $) 48)) (-3580 (((-1129) $) 21 (|has| |#2| (-1109)))) (-3546 ((|#2| $) 43 (|has| |#1| (-856)))) (-2061 (($ $ |#2|) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#2|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#2| $) 46 (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#2| $ |#1| |#2|) 51) ((|#2| $ |#1|) 50)) (-3587 (((-777) (-1 (-112) |#2|) $) 32 (|has| $ (-6 -4452))) (((-777) |#2| $) 29 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#2| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#2| (-1109)))) (-4379 (((-112) (-1 (-112) |#2|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#2| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-610 |#1| |#2|) (-141) (-1109) (-1227)) (T -610))
-((-3700 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-650 *4)))) (-3939 (*1 *2 *3 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-1805 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-650 *3)))) (-1868 (*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)))) (-1460 (*1 *2 *1) (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-2383 (*1 *2 *1) (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3543 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *3 (-856)) (-4 *2 (-1227)))) (-2147 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3851 (*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 -3700 ((-650 |t#2|) $)) (-15 -3939 ((-112) |t#1| $)) (-15 -1805 ((-650 |t#1|) $)) (IF (|has| |t#2| (-1109)) (IF (|has| $ (-6 -4449)) (-15 -1868 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-15 -1460 (|t#1| $)) (-15 -2383 (|t#1| $)) (-15 -3543 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4450)) (PROGN (-15 -2147 ($ $ |t#2|)) (-15 -3851 ((-1282) $ |t#1| |t#1|))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#2| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3799 (((-868) $) 19) (($ (-130)) 13) (((-130) $) 14)))
+((-4049 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-650 *4)))) (-1358 (*1 *2 *3 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112)))) (-2903 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227)) (-5 *2 (-650 *3)))) (-2262 (*1 *2 *3 *1) (-12 (|has| *1 (-6 -4452)) (-4 *1 (-610 *4 *3)) (-4 *4 (-1109)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-2602 (*1 *2 *1) (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-2685 (*1 *2 *1) (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109)) (-4 *2 (-856)))) (-3546 (*1 *2 *1) (-12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *3 (-856)) (-4 *2 (-1227)))) (-2061 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1227)))) (-3040 (*1 *2 *1 *3 *3) (-12 (|has| *1 (-6 -4453)) (-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 -4049 ((-650 |t#2|) $)) (-15 -1358 ((-112) |t#1| $)) (-15 -2903 ((-650 |t#1|) $)) (IF (|has| |t#2| (-1109)) (IF (|has| $ (-6 -4452)) (-15 -2262 ((-112) |t#2| $)) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-856)) (PROGN (-15 -2602 (|t#1| $)) (-15 -2685 (|t#1| $)) (-15 -3546 (|t#2| $))) |%noBranch|) (IF (|has| $ (-6 -4453)) (PROGN (-15 -2061 ($ $ |t#2|)) (-15 -3040 ((-1282) $ |t#1| |t#1|))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#2| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3802 (((-868) $) 19) (($ (-130)) 13) (((-130) $) 14)))
(((-611) (-13 (-619 (-868)) (-496 (-130)))) (T -611))
NIL
(-13 (-619 (-868)) (-496 (-130)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ (-1191)) NIL) (((-1191) $) NIL) (((-1226) $) 14) (($ (-650 (-1226))) 13)) (-2019 (((-650 (-1226)) $) 10)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-612) (-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3799 ($ (-650 (-1226)))) (-15 -2019 ((-650 (-1226)) $))))) (T -612))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-612)))) (-2019 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-612)))))
-(-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3799 ($ (-650 (-1226)))) (-15 -2019 ((-650 (-1226)) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3128 (((-3 $ "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4299 (((-1277 (-695 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-1277 (-695 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-4221 (((-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-1705 (($) NIL T CONST)) (-2983 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2476 (((-3 $ "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3919 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3677 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-1666 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2054 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4404 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-2705 (($ $ (-928)) NIL)) (-3637 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-2036 (((-1182 |#1|) $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1684 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3595 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-1763 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3243 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (($ (-1277 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2875 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4006 (((-928)) NIL (|has| |#2| (-372 |#1|)))) (-4034 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2604 (($ $ (-928)) NIL)) (-2680 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1950 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1907 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2615 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3089 (((-3 $ "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3267 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2339 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-1738 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3259 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3454 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-1575 (($ $ (-928)) NIL)) (-3680 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-2018 (((-1182 |#1|) $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2374 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-1542 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-1830 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1988 (((-1168) $) NIL)) (-4013 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3196 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2601 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3577 (((-1129) $) NIL)) (-3832 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1941 ((|#1| $ (-570)) NIL (|has| |#2| (-423 |#1|)))) (-3424 (((-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|)))) (-1425 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-1277 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-1987 (((-650 (-959 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-650 (-959 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-4391 (($ $ $) NIL)) (-3795 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3799 (((-868) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL (|has| |#2| (-423 |#1|)))) (-3871 (((-650 (-1277 |#1|))) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3764 (($ $ $ $) NIL)) (-2433 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3489 (($ (-695 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3858 (($ $ $) NIL)) (-2826 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4363 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1764 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1861 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3799 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|))) (-174) (-750 |#1|)) (T -613))
-((-3799 (*1 *1 *2) (-12 (-4 *3 (-174)) (-5 *1 (-613 *3 *2)) (-4 *2 (-750 *3)))))
-(-13 (-750 |#1|) (-619 |#2|) (-10 -8 (-15 -3799 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-2391 (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) 39)) (-4279 (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL) (($) NIL)) (-3851 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-1168) |#1|) 49)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 |#1| "failed") (-1168) $) 52)) (-1705 (($) NIL T CONST)) (-2117 (($ $ (-1168)) 25)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-3249 (((-3 |#1| "failed") (-1168) $) 53) (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (($ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL (|has| $ (-6 -4449)))) (-1741 (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (($ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-3624 (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-2080 (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) 38)) (-1517 ((|#1| $ (-1168) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-1168)) NIL)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-2653 (($ $) 54)) (-1762 (($ (-394)) 23) (($ (-394) (-1168)) 22)) (-3600 (((-394) $) 40)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449))) (((-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (((-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-1460 (((-1168) $) NIL (|has| (-1168) (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-2911 (((-650 (-1168)) $) 45)) (-3245 (((-112) (-1168) $) NIL)) (-3767 (((-1168) $) 41)) (-1490 (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-1805 (((-650 (-1168)) $) NIL)) (-3939 (((-112) (-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 ((|#1| $) NIL (|has| (-1168) (-856)))) (-1790 (((-3 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) "failed") (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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 (|:| -2106 (-1168)) (|:| -2340 |#1|))) (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 43)) (-1941 ((|#1| $ (-1168) |#1|) NIL) ((|#1| $ (-1168)) 48)) (-2178 (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL) (($) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (((-777) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (((-777) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL)) (-3799 (((-868) $) 21)) (-3107 (($ $) 26)) (-2335 (((-112) $ $) NIL)) (-2082 (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20)) (-2569 (((-777) $) 47 (|has| $ (-6 -4449)))))
-(((-614 |#1|) (-13 (-369 (-394) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) (-1203 (-1168) |#1|) (-10 -8 (-6 -4449) (-15 -2653 ($ $)))) (-1109)) (T -614))
-((-2653 (*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-1109)))))
-(-13 (-369 (-394) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) (-1203 (-1168) |#1|) (-10 -8 (-6 -4449) (-15 -2653 ($ $))))
-((-4108 (((-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) $) 16)) (-2911 (((-650 |#2|) $) 20)) (-3245 (((-112) |#2| $) 12)))
-(((-615 |#1| |#2| |#3|) (-10 -8 (-15 -2911 ((-650 |#2|) |#1|)) (-15 -3245 ((-112) |#2| |#1|)) (-15 -4108 ((-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|))) (-616 |#2| |#3|) (-1109) (-1109)) (T -615))
-NIL
-(-10 -8 (-15 -2911 ((-650 |#2|) |#1|)) (-15 -3245 ((-112) |#2| |#1|)) (-15 -4108 ((-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)))
-((-2558 (((-112) $ $) 19 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 46 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 56 (|has| $ (-6 -4449)))) (-2496 (((-3 |#2| "failed") |#1| $) 62)) (-1705 (($) 7 T CONST)) (-3579 (($ $) 59 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 47 (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 63)) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 55 (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 57 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 54 (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 53 (|has| $ (-6 -4449)))) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2911 (((-650 |#1|) $) 64)) (-3245 (((-112) |#1| $) 65)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 40)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 41)) (-3577 (((-1129) $) 21 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 52)) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 42)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) 27 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 26 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 25 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 24 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2178 (($) 50) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 49)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 32 (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 51)) (-3799 (((-868) $) 18 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 43)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ (-1191)) NIL) (((-1191) $) NIL) (((-1226) $) 14) (($ (-650 (-1226))) 13)) (-2019 (((-650 (-1226)) $) 10)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-612) (-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3802 ($ (-650 (-1226)))) (-15 -2019 ((-650 (-1226)) $))))) (T -612))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-612)))) (-2019 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-612)))))
+(-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3802 ($ (-650 (-1226)))) (-15 -2019 ((-650 (-1226)) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3635 (((-3 $ "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-1896 (((-1277 (-695 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-1277 (-695 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2403 (((-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3195 (($) NIL T CONST)) (-1587 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2434 (((-3 $ "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2491 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3850 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3993 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3498 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3490 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-2827 (($ $ (-928)) NIL)) (-1563 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3286 (((-1182 |#1|) $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4154 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2476 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-2546 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2322 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (($ (-1277 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-1929 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4009 (((-928)) NIL (|has| |#2| (-372 |#1|)))) (-4211 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4234 (($ $ (-928)) NIL)) (-3772 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1745 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4407 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4329 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3269 (((-3 $ "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2553 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3412 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3524 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2480 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3607 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-4311 (($ $ (-928)) NIL)) (-3879 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-4292 (((-1182 |#1|) $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3775 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2170 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-3100 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3989 (((-1168) $) NIL)) (-4015 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3058 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4203 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3580 (((-1129) $) NIL)) (-2876 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1942 ((|#1| $ (-570)) NIL (|has| |#2| (-423 |#1|)))) (-3314 (((-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|)))) (-1426 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-1277 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3978 (((-650 (-959 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-650 (-959 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3381 (($ $ $) NIL)) (-3762 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3802 (((-868) $) NIL) ((|#2| $) 21) (($ |#2|) 22)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL (|has| |#2| (-423 |#1|)))) (-3203 (((-650 (-1277 |#1|))) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3468 (($ $ $ $) NIL)) (-3169 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3492 (($ (-695 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3107 (($ $ $) NIL)) (-1352 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4298 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2557 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1862 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3802 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|))) (-174) (-750 |#1|)) (T -613))
+((-3802 (*1 *1 *2) (-12 (-4 *3 (-174)) (-5 *1 (-613 *3 *2)) (-4 *2 (-750 *3)))))
+(-13 (-750 |#1|) (-619 |#2|) (-10 -8 (-15 -3802 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-2771 (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) 39)) (-4282 (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL) (($) NIL)) (-3040 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-1168) |#1|) 49)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 |#1| "failed") (-1168) $) 52)) (-3195 (($) NIL T CONST)) (-2960 (($ $ (-1168)) 25)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-2385 (((-3 |#1| "failed") (-1168) $) 53) (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (($ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL (|has| $ (-6 -4452)))) (-1742 (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (($ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-3627 (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-2582 (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) 38)) (-1518 ((|#1| $ (-1168) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-1168)) NIL)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452))) (((-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-3521 (($ $) 54)) (-1765 (($ (-394)) 23) (($ (-394) (-1168)) 22)) (-3602 (((-394) $) 40)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452))) (((-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (((-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-2602 (((-1168) $) NIL (|has| (-1168) (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-2914 (((-650 (-1168)) $) 45)) (-2343 (((-112) (-1168) $) NIL)) (-3499 (((-1168) $) 41)) (-2885 (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-2903 (((-650 (-1168)) $) NIL)) (-1358 (((-112) (-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 ((|#1| $) NIL (|has| (-1168) (-856)))) (-2770 (((-3 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) "failed") (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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 (|:| -2107 (-1168)) (|:| -2340 |#1|))) (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-650 (-298 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 43)) (-1942 ((|#1| $ (-1168) |#1|) NIL) ((|#1| $ (-1168)) 48)) (-2374 (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL) (($) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (((-777) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (((-777) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL)) (-3802 (((-868) $) 21)) (-3443 (($ $) 26)) (-3359 (((-112) $ $) NIL)) (-2603 (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20)) (-2570 (((-777) $) 47 (|has| $ (-6 -4452)))))
+(((-614 |#1|) (-13 (-369 (-394) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) (-1203 (-1168) |#1|) (-10 -8 (-6 -4452) (-15 -3521 ($ $)))) (-1109)) (T -614))
+((-3521 (*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-1109)))))
+(-13 (-369 (-394) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) (-1203 (-1168) |#1|) (-10 -8 (-6 -4452) (-15 -3521 ($ $))))
+((-3767 (((-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) $) 16)) (-2914 (((-650 |#2|) $) 20)) (-2343 (((-112) |#2| $) 12)))
+(((-615 |#1| |#2| |#3|) (-10 -8 (-15 -2914 ((-650 |#2|) |#1|)) (-15 -2343 ((-112) |#2| |#1|)) (-15 -3767 ((-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|))) (-616 |#2| |#3|) (-1109) (-1109)) (T -615))
+NIL
+(-10 -8 (-15 -2914 ((-650 |#2|) |#1|)) (-15 -2343 ((-112) |#2| |#1|)) (-15 -3767 ((-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)))
+((-2560 (((-112) $ $) 19 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 46 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 56 (|has| $ (-6 -4452)))) (-2496 (((-3 |#2| "failed") |#1| $) 62)) (-3195 (($) 7 T CONST)) (-3582 (($ $) 59 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 47 (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) 63)) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 55 (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 57 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 54 (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 53 (|has| $ (-6 -4452)))) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2914 (((-650 |#1|) $) 64)) (-2343 (((-112) |#1| $) 65)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 40)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 41)) (-3580 (((-1129) $) 21 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 52)) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 42)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) 27 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 26 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 25 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 24 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-2374 (($) 50) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 49)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 32 (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 51)) (-3802 (((-868) $) 18 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 43)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-616 |#1| |#2|) (-141) (-1109) (-1109)) (T -616))
-((-3245 (*1 *2 *3 *1) (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-112)))) (-2911 (*1 *2 *1) (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-650 *3)))) (-3249 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-2496 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(-13 (-231 (-2 (|:| -2106 |t#1|) (|:| -2340 |t#2|))) (-10 -8 (-15 -3245 ((-112) |t#1| $)) (-15 -2911 ((-650 |t#1|) $)) (-15 -3249 ((-3 |t#2| "failed") |t#1| $)) (-15 -2496 ((-3 |t#2| "failed") |t#1| $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T) ((-102) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) ((-619 (-868)) -2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868)))) ((-152 #0#) . T) ((-620 (-542)) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-313 #0#) -12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))) ((-495 #0#) . T) ((-520 #0# #0#) -12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))) ((-1109) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) ((-1227) . T))
-((-4206 (((-618 |#2|) |#1|) 17)) (-1323 (((-3 |#1| "failed") (-618 |#2|)) 21)))
-(((-617 |#1| |#2|) (-10 -7 (-15 -4206 ((-618 |#2|) |#1|)) (-15 -1323 ((-3 |#1| "failed") (-618 |#2|)))) (-1109) (-1109)) (T -617))
-((-1323 (*1 *2 *3) (|partial| -12 (-5 *3 (-618 *4)) (-4 *4 (-1109)) (-4 *2 (-1109)) (-5 *1 (-617 *2 *4)))) (-4206 (*1 *2 *3) (-12 (-5 *2 (-618 *4)) (-5 *1 (-617 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
-(-10 -7 (-15 -4206 ((-618 |#2|) |#1|)) (-15 -1323 ((-3 |#1| "failed") (-618 |#2|))))
-((-2558 (((-112) $ $) NIL)) (-3413 (((-3 (-1186) "failed") $) 48)) (-3940 (((-1282) $ (-777)) 24)) (-4027 (((-777) $) 23)) (-3756 (((-115) $) 12)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-1365 (($ (-115) (-650 |#1|) (-777)) 34) (($ (-1186)) 35)) (-3190 (((-112) $ (-115)) 18) (((-112) $ (-1186)) 16)) (-1444 (((-777) $) 20)) (-3577 (((-1129) $) NIL)) (-1425 (((-899 (-570)) $) 96 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 103 (|has| |#1| (-620 (-899 (-384))))) (((-542) $) 89 (|has| |#1| (-620 (-542))))) (-3799 (((-868) $) 73)) (-2335 (((-112) $ $) NIL)) (-1905 (((-650 |#1|) $) 22)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 52)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 54)))
-(((-618 |#1|) (-13 (-133) (-856) (-891 |#1|) (-10 -8 (-15 -3756 ((-115) $)) (-15 -1905 ((-650 |#1|) $)) (-15 -1444 ((-777) $)) (-15 -1365 ($ (-115) (-650 |#1|) (-777))) (-15 -1365 ($ (-1186))) (-15 -3413 ((-3 (-1186) "failed") $)) (-15 -3190 ((-112) $ (-115))) (-15 -3190 ((-112) $ (-1186))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|))) (-1109)) (T -618))
-((-3756 (*1 *2 *1) (-12 (-5 *2 (-115)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1905 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1444 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1365 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-115)) (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-1109)) (-5 *1 (-618 *5)))) (-1365 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-3413 (*1 *2 *1) (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-3190 (*1 *2 *1 *3) (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-618 *4)) (-4 *4 (-1109)))) (-3190 (*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 -3756 ((-115) $)) (-15 -1905 ((-650 |#1|) $)) (-15 -1444 ((-777) $)) (-15 -1365 ($ (-115) (-650 |#1|) (-777))) (-15 -1365 ($ (-1186))) (-15 -3413 ((-3 (-1186) "failed") $)) (-15 -3190 ((-112) $ (-115))) (-15 -3190 ((-112) $ (-1186))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
-((-3799 ((|#1| $) 6)))
+((-2343 (*1 *2 *3 *1) (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-112)))) (-2914 (*1 *2 *1) (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)) (-5 *2 (-650 *3)))) (-2385 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-2496 (*1 *2 *3 *1) (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(-13 (-231 (-2 (|:| -2107 |t#1|) (|:| -2340 |t#2|))) (-10 -8 (-15 -2343 ((-112) |t#1| $)) (-15 -2914 ((-650 |t#1|) $)) (-15 -2385 ((-3 |t#2| "failed") |t#1| $)) (-15 -2496 ((-3 |t#2| "failed") |t#1| $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T) ((-102) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) ((-619 (-868)) -2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868)))) ((-152 #0#) . T) ((-620 (-542)) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-313 #0#) -12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))) ((-495 #0#) . T) ((-520 #0# #0#) -12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))) ((-1109) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) ((-1227) . T))
+((-2266 (((-618 |#2|) |#1|) 17)) (-1751 (((-3 |#1| "failed") (-618 |#2|)) 21)))
+(((-617 |#1| |#2|) (-10 -7 (-15 -2266 ((-618 |#2|) |#1|)) (-15 -1751 ((-3 |#1| "failed") (-618 |#2|)))) (-1109) (-1109)) (T -617))
+((-1751 (*1 *2 *3) (|partial| -12 (-5 *3 (-618 *4)) (-4 *4 (-1109)) (-4 *2 (-1109)) (-5 *1 (-617 *2 *4)))) (-2266 (*1 *2 *3) (-12 (-5 *2 (-618 *4)) (-5 *1 (-617 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
+(-10 -7 (-15 -2266 ((-618 |#2|) |#1|)) (-15 -1751 ((-3 |#1| "failed") (-618 |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3233 (((-3 (-1186) "failed") $) 48)) (-1365 (((-1282) $ (-777)) 24)) (-4029 (((-777) $) 23)) (-3759 (((-115) $) 12)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-1366 (($ (-115) (-650 |#1|) (-777)) 34) (($ (-1186)) 35)) (-3006 (((-112) $ (-115)) 18) (((-112) $ (-1186)) 16)) (-1445 (((-777) $) 20)) (-3580 (((-1129) $) NIL)) (-1426 (((-899 (-570)) $) 96 (|has| |#1| (-620 (-899 (-570))))) (((-899 (-384)) $) 103 (|has| |#1| (-620 (-899 (-384))))) (((-542) $) 89 (|has| |#1| (-620 (-542))))) (-3802 (((-868) $) 73)) (-3359 (((-112) $ $) NIL)) (-4385 (((-650 |#1|) $) 22)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 52)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 54)))
+(((-618 |#1|) (-13 (-133) (-856) (-891 |#1|) (-10 -8 (-15 -3759 ((-115) $)) (-15 -4385 ((-650 |#1|) $)) (-15 -1445 ((-777) $)) (-15 -1366 ($ (-115) (-650 |#1|) (-777))) (-15 -1366 ($ (-1186))) (-15 -3233 ((-3 (-1186) "failed") $)) (-15 -3006 ((-112) $ (-115))) (-15 -3006 ((-112) $ (-1186))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|))) (-1109)) (T -618))
+((-3759 (*1 *2 *1) (-12 (-5 *2 (-115)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-4385 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1445 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-1366 (*1 *1 *2 *3 *4) (-12 (-5 *2 (-115)) (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-1109)) (-5 *1 (-618 *5)))) (-1366 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-3233 (*1 *2 *1) (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))) (-3006 (*1 *2 *1 *3) (-12 (-5 *3 (-115)) (-5 *2 (-112)) (-5 *1 (-618 *4)) (-4 *4 (-1109)))) (-3006 (*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 -3759 ((-115) $)) (-15 -4385 ((-650 |#1|) $)) (-15 -1445 ((-777) $)) (-15 -1366 ($ (-115) (-650 |#1|) (-777))) (-15 -1366 ($ (-1186))) (-15 -3233 ((-3 (-1186) "failed") $)) (-15 -3006 ((-112) $ (-115))) (-15 -3006 ((-112) $ (-1186))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
+((-3802 ((|#1| $) 6)))
(((-619 |#1|) (-141) (-1227)) (T -619))
-((-3799 (*1 *2 *1) (-12 (-4 *1 (-619 *2)) (-4 *2 (-1227)))))
-(-13 (-10 -8 (-15 -3799 (|t#1| $))))
-((-1425 ((|#1| $) 6)))
+((-3802 (*1 *2 *1) (-12 (-4 *1 (-619 *2)) (-4 *2 (-1227)))))
+(-13 (-10 -8 (-15 -3802 (|t#1| $))))
+((-1426 ((|#1| $) 6)))
(((-620 |#1|) (-141) (-1227)) (T -620))
-((-1425 (*1 *2 *1) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1227)))))
-(-13 (-10 -8 (-15 -1425 (|t#1| $))))
-((-1353 (((-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 -1353 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))) (-15 -1353 ((-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))
-((-1353 (*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)))) (-1353 (*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 -1353 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))) (-15 -1353 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 (-424 |#2|) |#2|))))
-((-3799 (($ |#1|) 6)))
+((-1426 (*1 *2 *1) (-12 (-4 *1 (-620 *2)) (-4 *2 (-1227)))))
+(-13 (-10 -8 (-15 -1426 (|t#1| $))))
+((-2071 (((-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 -2071 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))) (-15 -2071 ((-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))
+((-2071 (*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)))) (-2071 (*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 -2071 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))) (-15 -2071 ((-3 (-1182 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 (-424 |#2|) |#2|))))
+((-3802 (($ |#1|) 6)))
(((-622 |#1|) (-141) (-1227)) (T -622))
-((-3799 (*1 *1 *2) (-12 (-4 *1 (-622 *2)) (-4 *2 (-1227)))))
-(-13 (-10 -8 (-15 -3799 ($ |t#1|))))
-((-2558 (((-112) $ $) NIL)) (-1664 (($) 14 T CONST)) (-3106 (($) 15 T CONST)) (-1823 (($ $ $) 29)) (-1795 (($ $) 27)) (-1988 (((-1168) $) NIL)) (-3991 (($ $ $) 30)) (-3577 (((-1129) $) NIL)) (-1954 (($) 11 T CONST)) (-2148 (($ $ $) 31)) (-3799 (((-868) $) 35)) (-1851 (((-112) $ (|[\|\|]| -1954)) 24) (((-112) $ (|[\|\|]| -1664)) 26) (((-112) $ (|[\|\|]| -3106)) 21)) (-2335 (((-112) $ $) NIL)) (-1809 (($ $ $) 28)) (-3022 (((-112) $ $) 18)))
-(((-623) (-13 (-976) (-10 -8 (-15 -1664 ($) -3725) (-15 -1851 ((-112) $ (|[\|\|]| -1954))) (-15 -1851 ((-112) $ (|[\|\|]| -1664))) (-15 -1851 ((-112) $ (|[\|\|]| -3106)))))) (T -623))
-((-1664 (*1 *1) (-5 *1 (-623))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1954)) (-5 *2 (-112)) (-5 *1 (-623)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1664)) (-5 *2 (-112)) (-5 *1 (-623)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3106)) (-5 *2 (-112)) (-5 *1 (-623)))))
-(-13 (-976) (-10 -8 (-15 -1664 ($) -3725) (-15 -1851 ((-112) $ (|[\|\|]| -1954))) (-15 -1851 ((-112) $ (|[\|\|]| -1664))) (-15 -1851 ((-112) $ (|[\|\|]| -3106)))))
-((-1425 (($ |#1|) 6)))
+((-3802 (*1 *1 *2) (-12 (-4 *1 (-622 *2)) (-4 *2 (-1227)))))
+(-13 (-10 -8 (-15 -3802 ($ |t#1|))))
+((-2560 (((-112) $ $) NIL)) (-1664 (($) 14 T CONST)) (-3109 (($) 15 T CONST)) (-1824 (($ $ $) 29)) (-1796 (($ $) 27)) (-3989 (((-1168) $) NIL)) (-1978 (($ $ $) 30)) (-3580 (((-1129) $) NIL)) (-1953 (($) 11 T CONST)) (-2073 (($ $ $) 31)) (-3802 (((-868) $) 35)) (-1851 (((-112) $ (|[\|\|]| -1953)) 24) (((-112) $ (|[\|\|]| -1664)) 26) (((-112) $ (|[\|\|]| -3109)) 21)) (-3359 (((-112) $ $) NIL)) (-1810 (($ $ $) 28)) (-3025 (((-112) $ $) 18)))
+(((-623) (-13 (-976) (-10 -8 (-15 -1664 ($) -3728) (-15 -1851 ((-112) $ (|[\|\|]| -1953))) (-15 -1851 ((-112) $ (|[\|\|]| -1664))) (-15 -1851 ((-112) $ (|[\|\|]| -3109)))))) (T -623))
+((-1664 (*1 *1) (-5 *1 (-623))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1953)) (-5 *2 (-112)) (-5 *1 (-623)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1664)) (-5 *2 (-112)) (-5 *1 (-623)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -3109)) (-5 *2 (-112)) (-5 *1 (-623)))))
+(-13 (-976) (-10 -8 (-15 -1664 ($) -3728) (-15 -1851 ((-112) $ (|[\|\|]| -1953))) (-15 -1851 ((-112) $ (|[\|\|]| -1664))) (-15 -1851 ((-112) $ (|[\|\|]| -3109)))))
+((-1426 (($ |#1|) 6)))
(((-624 |#1|) (-141) (-1227)) (T -624))
-((-1425 (*1 *1 *2) (-12 (-4 *1 (-624 *2)) (-4 *2 (-1227)))))
-(-13 (-10 -8 (-15 -1425 ($ |t#1|))))
-((-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10)))
-(((-625 |#1| |#2|) (-10 -8 (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-626 |#2|) (-1058)) (T -625))
+((-1426 (*1 *1 *2) (-12 (-4 *1 (-624 *2)) (-4 *2 (-1227)))))
+(-13 (-10 -8 (-15 -1426 ($ |t#1|))))
+((-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10)))
+(((-625 |#1| |#2|) (-10 -8 (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-626 |#2|) (-1058)) (T -625))
NIL
-(-10 -8 (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 41)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#1| $) 42)))
+(-10 -8 (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 41)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#1| $) 42)))
(((-626 |#1|) (-141) (-1058)) (T -626))
-((-3799 (*1 *1 *2) (-12 (-4 *1 (-626 *2)) (-4 *2 (-1058)))))
-(-13 (-1058) (-654 |t#1|) (-10 -8 (-15 -3799 ($ |t#1|))))
+((-3802 (*1 *1 *2) (-12 (-4 *1 (-626 *2)) (-4 *2 (-1058)))))
+(-13 (-1058) (-654 |t#1|) (-10 -8 (-15 -3802 ($ |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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4395 (((-570) $) NIL (|has| |#1| (-854)))) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-3903 (((-112) $) NIL (|has| |#1| (-854)))) (-4346 (((-112) $) NIL)) (-4399 ((|#1| $) 13)) (-1479 (((-112) $) NIL (|has| |#1| (-854)))) (-3466 (($ $ $) NIL (|has| |#1| (-854)))) (-2800 (($ $ $) NIL (|has| |#1| (-854)))) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-4413 ((|#3| $) 15)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL)) (-3499 (((-777)) 20 T CONST)) (-2335 (((-112) $ $) NIL)) (-2622 (($ $) NIL (|has| |#1| (-854)))) (-1861 (($) NIL T CONST)) (-1875 (($) 12 T CONST)) (-3072 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3122 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3122 ($ $ |#3|)) (-15 -3122 ($ |#1| |#3|)) (-15 -4399 (|#1| $)) (-15 -4413 (|#3| $)))) (-38 |#2|) (-174) (|SubsetCategory| (-732) |#2|)) (T -627))
-((-3122 (*1 *1 *1 *2) (-12 (-4 *4 (-174)) (-5 *1 (-627 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-732) *4)))) (-3122 (*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 -3122 ($ $ |#3|)) (-15 -3122 ($ |#1| |#3|)) (-15 -4399 (|#1| $)) (-15 -4413 (|#3| $))))
-((-2488 ((|#2| |#2| (-1186) (-1186)) 16)))
-(((-628 |#1| |#2|) (-10 -7 (-15 -2488 (|#2| |#2| (-1186) (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-29 |#1|))) (T -628))
-((-2488 (*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 -2488 (|#2| |#2| (-1186) (-1186))))
-((-2558 (((-112) $ $) 64)) (-3467 (((-112) $) 58)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-2191 ((|#1| $) 55)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-4425 (((-2 (|:| -4288 $) (|:| -1338 (-413 |#2|))) (-413 |#2|)) 111 (|has| |#1| (-368)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) 27)) (-2875 (((-3 $ "failed") $) 88)) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-4323 (((-570) $) 22)) (-4346 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) 40)) (-3912 (($ |#1| (-570)) 24)) (-1927 ((|#1| $) 57)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) 101 (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 116 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2547 (((-3 $ "failed") $ $) 93)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2142 (((-777) $) 115 (|has| |#1| (-368)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 114 (|has| |#1| (-368)))) (-3547 (($ $ (-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)))) (-2130 (((-570) $) 38)) (-1425 (((-413 |#2|) $) 47)) (-3799 (((-868) $) 69) (($ (-570)) 35) (($ $) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 34) (($ |#2|) 25)) (-2249 ((|#1| $ (-570)) 72)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) 9 T CONST)) (-1875 (($) 14 T CONST)) (-2942 (($ $ (-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)))) (-3022 (((-112) $ $) 21)) (-3111 (($ $) 51) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2359 ((-112) $)) (-15 -2130 ((-570) $)) (-15 -4323 ((-570) $)) (-15 -1956 ($ $)) (-15 -1927 (|#1| $)) (-15 -2191 (|#1| $)) (-15 -2249 (|#1| $ (-570))) (-15 -3912 ($ |#1| (-570))) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-311)) (-15 -4425 ((-2 (|:| -4288 $) (|:| -1338 (-413 |#2|))) (-413 |#2|)))) |%noBranch|))) (-562) (-1253 |#1|)) (T -629))
-((-2359 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-2130 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-4323 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-1956 (*1 *1 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-1927 (*1 *2 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-2191 (*1 *2 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-2249 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4)) (-4 *4 (-1253 *2)))) (-3912 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4)) (-4 *4 (-1253 *2)))) (-4425 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *4 (-562)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -4288 (-629 *4 *5)) (|:| -1338 (-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 -2359 ((-112) $)) (-15 -2130 ((-570) $)) (-15 -4323 ((-570) $)) (-15 -1956 ($ $)) (-15 -1927 (|#1| $)) (-15 -2191 (|#1| $)) (-15 -2249 (|#1| $ (-570))) (-15 -3912 ($ |#1| (-570))) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-311)) (-15 -4425 ((-2 (|:| -4288 $) (|:| -1338 (-413 |#2|))) (-413 |#2|)))) |%noBranch|)))
-((-1515 (((-650 |#6|) (-650 |#4|) (-112)) 54)) (-3450 ((|#6| |#6|) 48)))
-(((-630 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3450 (|#6| |#6|)) (-15 -1515 ((-650 |#6|) (-650 |#4|) (-112)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|) (-1118 |#1| |#2| |#3| |#4|)) (T -630))
-((-1515 (*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)))) (-3450 (*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 -3450 (|#6| |#6|)) (-15 -1515 ((-650 |#6|) (-650 |#4|) (-112))))
-((-3892 (((-112) |#3| (-777) (-650 |#3|)) 29)) (-3429 (((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3477 (-650 (-2 (|:| |irr| |#4|) (|:| -3563 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|)) 69)))
-(((-631 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3892 ((-112) |#3| (-777) (-650 |#3|))) (-15 -3429 ((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3477 (-650 (-2 (|:| |irr| |#4|) (|:| -3563 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|)))) (-856) (-799) (-311) (-956 |#3| |#2| |#1|)) (T -631))
-((-3429 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -3477 (-650 (-2 (|:| |irr| *10) (|:| -3563 (-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))))) (-3892 (*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 -3892 ((-112) |#3| (-777) (-650 |#3|))) (-15 -3429 ((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -3477 (-650 (-2 (|:| |irr| |#4|) (|:| -3563 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|))))
-((-2558 (((-112) $ $) NIL)) (-2225 (((-1144) $) 11)) (-2213 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-632) (-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1144) $))))) (T -632))
-((-2213 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632)))) (-2225 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632)))))
-(-13 (-1092) (-10 -8 (-15 -2213 ((-1144) $)) (-15 -2225 ((-1144) $))))
-((-2558 (((-112) $ $) NIL)) (-3179 (((-650 |#1|) $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-3264 (($ $) 77)) (-2789 (((-670 |#1| |#2|) $) 60)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 81)) (-2287 (((-650 (-298 |#2|)) $ $) 42)) (-3577 (((-1129) $) NIL)) (-4387 (($ (-670 |#1| |#2|)) 56)) (-2020 (($ $ $) NIL)) (-4391 (($ $ $) NIL)) (-3799 (((-868) $) 66) (((-1292 |#1| |#2|) $) NIL) (((-1297 |#1| |#2|) $) 74)) (-2335 (((-112) $ $) NIL)) (-1875 (($) 61 T CONST)) (-3587 (((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $) 41)) (-3349 (((-650 (-670 |#1| |#2|)) (-650 |#1|)) 73)) (-4141 (((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $) 46)) (-3022 (((-112) $ $) 62)) (-3122 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 52)))
-(((-633 |#1| |#2| |#3|) (-13 (-479) (-10 -8 (-15 -4387 ($ (-670 |#1| |#2|))) (-15 -2789 ((-670 |#1| |#2|) $)) (-15 -4141 ((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $)) (-15 -3799 ((-1292 |#1| |#2|) $)) (-15 -3799 ((-1297 |#1| |#2|) $)) (-15 -3264 ($ $)) (-15 -3179 ((-650 |#1|) $)) (-15 -3349 ((-650 (-670 |#1| |#2|)) (-650 |#1|))) (-15 -3587 ((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $)) (-15 -2287 ((-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)))) (-2789 (*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)))) (-4141 (*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)))) (-3799 (*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)))) (-3799 (*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)))) (-3264 (*1 *1 *1) (-12 (-5 *1 (-633 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-13 (-174) (-723 (-413 (-570))))) (-14 *4 (-928)))) (-3179 (*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)))) (-3349 (*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)))) (-3587 (*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)))) (-2287 (*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 -2789 ((-670 |#1| |#2|) $)) (-15 -4141 ((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $)) (-15 -3799 ((-1292 |#1| |#2|) $)) (-15 -3799 ((-1297 |#1| |#2|) $)) (-15 -3264 ($ $)) (-15 -3179 ((-650 |#1|) $)) (-15 -3349 ((-650 (-670 |#1| |#2|)) (-650 |#1|))) (-15 -3587 ((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $)) (-15 -2287 ((-650 (-298 |#2|)) $ $))))
-((-1515 (((-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)) (-2669 (((-112) (-650 (-786 |#1| (-870 |#2|)))) 26)) (-3591 (((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)) 102)) (-2424 (((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112)) 76)) (-1857 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|)))) 30)) (-3938 (((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|)))) 29)))
-(((-634 |#1| |#2|) (-10 -7 (-15 -2669 ((-112) (-650 (-786 |#1| (-870 |#2|))))) (-15 -3938 ((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|))))) (-15 -1857 ((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))))) (-15 -2424 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -3591 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1515 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1515 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)))) (-458) (-650 (-1186))) (T -634))
-((-1515 (*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)))) (-1515 (*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)))) (-3591 (*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)))) (-2424 (*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)))) (-1857 (*1 *2 *2) (-12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458)) (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))) (-3938 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458)) (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))) (-2669 (*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 -2669 ((-112) (-650 (-786 |#1| (-870 |#2|))))) (-15 -3938 ((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|))))) (-15 -1857 ((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))))) (-15 -2424 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -3591 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1515 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1515 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))))
-((-2887 (($ $) 38)) (-2751 (($ $) 21)) (-2866 (($ $) 37)) (-2733 (($ $) 22)) (-4107 (($ $) 36)) (-2774 (($ $) 23)) (-1315 (($) 48)) (-2789 (($ $) 45)) (-4162 (($ $) 17)) (-2212 (($ $ (-1101 $)) 7) (($ $ (-1186)) 6)) (-4387 (($ $) 46)) (-2690 (($ $) 15)) (-2722 (($ $) 16)) (-4117 (($ $) 35)) (-2788 (($ $) 24)) (-2899 (($ $) 34)) (-2766 (($ $) 25)) (-2876 (($ $) 33)) (-2740 (($ $) 26)) (-4154 (($ $) 44)) (-2825 (($ $) 32)) (-4129 (($ $) 43)) (-2801 (($ $) 31)) (-4176 (($ $) 42)) (-2845 (($ $) 30)) (-1578 (($ $) 41)) (-2855 (($ $) 29)) (-4163 (($ $) 40)) (-2835 (($ $) 28)) (-4140 (($ $) 39)) (-2814 (($ $) 27)) (-3019 (($ $) 19)) (-2097 (($ $) 20)) (-2921 (($ $) 18)) (** (($ $ $) 47)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3408 (((-570) $) NIL (|has| |#1| (-854)))) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-2346 (((-112) $) NIL (|has| |#1| (-854)))) (-4139 (((-112) $) NIL)) (-4402 ((|#1| $) 13)) (-2788 (((-112) $) NIL (|has| |#1| (-854)))) (-3469 (($ $ $) NIL (|has| |#1| (-854)))) (-2472 (($ $ $) NIL (|has| |#1| (-854)))) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-4416 ((|#3| $) 15)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL)) (-2851 (((-777)) 20 T CONST)) (-3359 (((-112) $ $) NIL)) (-3231 (($ $) NIL (|has| |#1| (-854)))) (-1862 (($) NIL T CONST)) (-1876 (($) 12 T CONST)) (-3075 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3125 (($ $ |#3|) NIL) (($ |#1| |#3|) 11)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3125 ($ $ |#3|)) (-15 -3125 ($ |#1| |#3|)) (-15 -4402 (|#1| $)) (-15 -4416 (|#3| $)))) (-38 |#2|) (-174) (|SubsetCategory| (-732) |#2|)) (T -627))
+((-3125 (*1 *1 *1 *2) (-12 (-4 *4 (-174)) (-5 *1 (-627 *3 *4 *2)) (-4 *3 (-38 *4)) (-4 *2 (|SubsetCategory| (-732) *4)))) (-3125 (*1 *1 *2 *3) (-12 (-4 *4 (-174)) (-5 *1 (-627 *2 *4 *3)) (-4 *2 (-38 *4)) (-4 *3 (|SubsetCategory| (-732) *4)))) (-4402 (*1 *2 *1) (-12 (-4 *3 (-174)) (-4 *2 (-38 *3)) (-5 *1 (-627 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-732) *3)))) (-4416 (*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 -3125 ($ $ |#3|)) (-15 -3125 ($ |#1| |#3|)) (-15 -4402 (|#1| $)) (-15 -4416 (|#3| $))))
+((-2559 ((|#2| |#2| (-1186) (-1186)) 16)))
+(((-628 |#1| |#2|) (-10 -7 (-15 -2559 (|#2| |#2| (-1186) (-1186)))) (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-966) (-29 |#1|))) (T -628))
+((-2559 (*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 -2559 (|#2| |#2| (-1186) (-1186))))
+((-2560 (((-112) $ $) 64)) (-3721 (((-112) $) 58)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2499 ((|#1| $) 55)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3657 (((-2 (|:| -1791 $) (|:| -1922 (-413 |#2|))) (-413 |#2|)) 111 (|has| |#1| (-368)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL) ((|#2| $) NIL)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) 27)) (-1929 (((-3 $ "failed") $) 88)) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3941 (((-570) $) 22)) (-4139 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) 40)) (-3915 (($ |#1| (-570)) 24)) (-1928 ((|#1| $) 57)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) 101 (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 116 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-2548 (((-3 $ "failed") $ $) 93)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2006 (((-777) $) 115 (|has| |#1| (-368)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 114 (|has| |#1| (-368)))) (-3550 (($ $ (-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)))) (-3079 (((-570) $) 38)) (-1426 (((-413 |#2|) $) 47)) (-3802 (((-868) $) 69) (($ (-570)) 35) (($ $) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 34) (($ |#2|) 25)) (-1864 ((|#1| $ (-570)) 72)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) 9 T CONST)) (-1876 (($) 14 T CONST)) (-2945 (($ $ (-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)))) (-3025 (((-112) $ $) 21)) (-3114 (($ $) 51) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3633 ((-112) $)) (-15 -3079 ((-570) $)) (-15 -3941 ((-570) $)) (-15 -1954 ($ $)) (-15 -1928 (|#1| $)) (-15 -2499 (|#1| $)) (-15 -1864 (|#1| $ (-570))) (-15 -3915 ($ |#1| (-570))) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-311)) (-15 -3657 ((-2 (|:| -1791 $) (|:| -1922 (-413 |#2|))) (-413 |#2|)))) |%noBranch|))) (-562) (-1253 |#1|)) (T -629))
+((-3633 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-112)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-3079 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-3941 (*1 *2 *1) (-12 (-4 *3 (-562)) (-5 *2 (-570)) (-5 *1 (-629 *3 *4)) (-4 *4 (-1253 *3)))) (-1954 (*1 *1 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-1928 (*1 *2 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-2499 (*1 *2 *1) (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))) (-1864 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4)) (-4 *4 (-1253 *2)))) (-3915 (*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-4 *2 (-562)) (-5 *1 (-629 *2 *4)) (-4 *4 (-1253 *2)))) (-3657 (*1 *2 *3) (-12 (-4 *4 (-368)) (-4 *4 (-562)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -1791 (-629 *4 *5)) (|:| -1922 (-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 -3633 ((-112) $)) (-15 -3079 ((-570) $)) (-15 -3941 ((-570) $)) (-15 -1954 ($ $)) (-15 -1928 (|#1| $)) (-15 -2499 (|#1| $)) (-15 -1864 (|#1| $ (-570))) (-15 -3915 ($ |#1| (-570))) (IF (|has| |#1| (-148)) (-6 (-148)) |%noBranch|) (IF (|has| |#1| (-146)) (-6 (-146)) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-6 (-311)) (-15 -3657 ((-2 (|:| -1791 $) (|:| -1922 (-413 |#2|))) (-413 |#2|)))) |%noBranch|)))
+((-1911 (((-650 |#6|) (-650 |#4|) (-112)) 54)) (-3560 ((|#6| |#6|) 48)))
+(((-630 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -3560 (|#6| |#6|)) (-15 -1911 ((-650 |#6|) (-650 |#4|) (-112)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|) (-1118 |#1| |#2| |#3| |#4|)) (T -630))
+((-1911 (*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)))) (-3560 (*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 -3560 (|#6| |#6|)) (-15 -1911 ((-650 |#6|) (-650 |#4|) (-112))))
+((-2239 (((-112) |#3| (-777) (-650 |#3|)) 29)) (-3345 (((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2638 (-650 (-2 (|:| |irr| |#4|) (|:| -2199 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|)) 69)))
+(((-631 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2239 ((-112) |#3| (-777) (-650 |#3|))) (-15 -3345 ((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2638 (-650 (-2 (|:| |irr| |#4|) (|:| -2199 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|)))) (-856) (-799) (-311) (-956 |#3| |#2| |#1|)) (T -631))
+((-3345 (*1 *2 *3 *4 *5 *6 *7 *6) (|partial| -12 (-5 *5 (-2 (|:| |contp| *3) (|:| -2638 (-650 (-2 (|:| |irr| *10) (|:| -2199 (-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))))) (-2239 (*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 -2239 ((-112) |#3| (-777) (-650 |#3|))) (-15 -3345 ((-3 (-2 (|:| |polfac| (-650 |#4|)) (|:| |correct| |#3|) (|:| |corrfact| (-650 (-1182 |#3|)))) "failed") |#3| (-650 (-1182 |#3|)) (-2 (|:| |contp| |#3|) (|:| -2638 (-650 (-2 (|:| |irr| |#4|) (|:| -2199 (-570)))))) (-650 |#3|) (-650 |#1|) (-650 |#3|))))
+((-2560 (((-112) $ $) NIL)) (-2226 (((-1144) $) 11)) (-2215 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-632) (-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1144) $))))) (T -632))
+((-2215 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632)))) (-2226 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-632)))))
+(-13 (-1092) (-10 -8 (-15 -2215 ((-1144) $)) (-15 -2226 ((-1144) $))))
+((-2560 (((-112) $ $) NIL)) (-3182 (((-650 |#1|) $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-2523 (($ $) 77)) (-2792 (((-670 |#1| |#2|) $) 60)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 81)) (-4071 (((-650 (-298 |#2|)) $ $) 42)) (-3580 (((-1129) $) NIL)) (-4389 (($ (-670 |#1| |#2|)) 56)) (-4307 (($ $ $) NIL)) (-3381 (($ $ $) NIL)) (-3802 (((-868) $) 66) (((-1292 |#1| |#2|) $) NIL) (((-1297 |#1| |#2|) $) 74)) (-3359 (((-112) $ $) NIL)) (-1876 (($) 61 T CONST)) (-2401 (((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $) 41)) (-3922 (((-650 (-670 |#1| |#2|)) (-650 |#1|)) 73)) (-2884 (((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $) 46)) (-3025 (((-112) $ $) 62)) (-3125 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 52)))
+(((-633 |#1| |#2| |#3|) (-13 (-479) (-10 -8 (-15 -4389 ($ (-670 |#1| |#2|))) (-15 -2792 ((-670 |#1| |#2|) $)) (-15 -2884 ((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $)) (-15 -3802 ((-1292 |#1| |#2|) $)) (-15 -3802 ((-1297 |#1| |#2|) $)) (-15 -2523 ($ $)) (-15 -3182 ((-650 |#1|) $)) (-15 -3922 ((-650 (-670 |#1| |#2|)) (-650 |#1|))) (-15 -2401 ((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $)) (-15 -4071 ((-650 (-298 |#2|)) $ $)))) (-856) (-13 (-174) (-723 (-413 (-570)))) (-928)) (T -633))
+((-4389 (*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)))) (-2792 (*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)))) (-2884 (*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)))) (-3802 (*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)))) (-3802 (*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)))) (-2523 (*1 *1 *1) (-12 (-5 *1 (-633 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-13 (-174) (-723 (-413 (-570))))) (-14 *4 (-928)))) (-3182 (*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)))) (-3922 (*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)))) (-2401 (*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)))) (-4071 (*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 -4389 ($ (-670 |#1| |#2|))) (-15 -2792 ((-670 |#1| |#2|) $)) (-15 -2884 ((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $)) (-15 -3802 ((-1292 |#1| |#2|) $)) (-15 -3802 ((-1297 |#1| |#2|) $)) (-15 -2523 ($ $)) (-15 -3182 ((-650 |#1|) $)) (-15 -3922 ((-650 (-670 |#1| |#2|)) (-650 |#1|))) (-15 -2401 ((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $)) (-15 -4071 ((-650 (-298 |#2|)) $ $))))
+((-1911 (((-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)) (-3665 (((-112) (-650 (-786 |#1| (-870 |#2|)))) 26)) (-2444 (((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)) 102)) (-3084 (((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112)) 76)) (-2154 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|)))) 30)) (-1343 (((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|)))) 29)))
+(((-634 |#1| |#2|) (-10 -7 (-15 -3665 ((-112) (-650 (-786 |#1| (-870 |#2|))))) (-15 -1343 ((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|))))) (-15 -2154 ((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))))) (-15 -3084 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -2444 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1911 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1911 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112)))) (-458) (-650 (-1186))) (T -634))
+((-1911 (*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)))) (-1911 (*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)))) (-2444 (*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)))) (-3084 (*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)))) (-2154 (*1 *2 *2) (-12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458)) (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))) (-1343 (*1 *2 *2) (|partial| -12 (-5 *2 (-650 (-786 *3 (-870 *4)))) (-4 *3 (-458)) (-14 *4 (-650 (-1186))) (-5 *1 (-634 *3 *4)))) (-3665 (*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 -3665 ((-112) (-650 (-786 |#1| (-870 |#2|))))) (-15 -1343 ((-3 (-650 (-786 |#1| (-870 |#2|))) "failed") (-650 (-786 |#1| (-870 |#2|))))) (-15 -2154 ((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))))) (-15 -3084 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -2444 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1911 ((-650 (-1055 |#1| |#2|)) (-650 (-786 |#1| (-870 |#2|))) (-112))) (-15 -1911 ((-650 (-1155 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|)))) (-650 (-786 |#1| (-870 |#2|))) (-112))))
+((-2890 (($ $) 38)) (-2755 (($ $) 21)) (-2869 (($ $) 37)) (-2736 (($ $) 22)) (-4109 (($ $) 36)) (-2777 (($ $) 23)) (-1315 (($) 48)) (-2792 (($ $) 45)) (-4165 (($ $) 17)) (-1411 (($ $ (-1101 $)) 7) (($ $ (-1186)) 6)) (-4389 (($ $) 46)) (-2691 (($ $) 15)) (-2723 (($ $) 16)) (-4120 (($ $) 35)) (-2791 (($ $) 24)) (-2902 (($ $) 34)) (-2768 (($ $) 25)) (-2879 (($ $) 33)) (-2743 (($ $) 26)) (-4157 (($ $) 44)) (-2828 (($ $) 32)) (-4129 (($ $) 43)) (-2804 (($ $) 31)) (-4179 (($ $) 42)) (-2848 (($ $) 30)) (-1579 (($ $) 41)) (-2858 (($ $) 29)) (-4166 (($ $) 40)) (-2838 (($ $) 28)) (-4144 (($ $) 39)) (-2817 (($ $) 27)) (-3816 (($ $) 19)) (-2754 (($ $) 20)) (-2229 (($ $) 18)) (** (($ $ $) 47)))
(((-635) (-141)) (T -635))
-((-2097 (*1 *1 *1) (-4 *1 (-635))) (-3019 (*1 *1 *1) (-4 *1 (-635))) (-2921 (*1 *1 *1) (-4 *1 (-635))) (-4162 (*1 *1 *1) (-4 *1 (-635))) (-2722 (*1 *1 *1) (-4 *1 (-635))) (-2690 (*1 *1 *1) (-4 *1 (-635))))
-(-13 (-966) (-1212) (-10 -8 (-15 -2097 ($ $)) (-15 -3019 ($ $)) (-15 -2921 ($ $)) (-15 -4162 ($ $)) (-15 -2722 ($ $)) (-15 -2690 ($ $))))
+((-2754 (*1 *1 *1) (-4 *1 (-635))) (-3816 (*1 *1 *1) (-4 *1 (-635))) (-2229 (*1 *1 *1) (-4 *1 (-635))) (-4165 (*1 *1 *1) (-4 *1 (-635))) (-2723 (*1 *1 *1) (-4 *1 (-635))) (-2691 (*1 *1 *1) (-4 *1 (-635))))
+(-13 (-966) (-1212) (-10 -8 (-15 -2754 ($ $)) (-15 -3816 ($ $)) (-15 -2229 ($ $)) (-15 -4165 ($ $)) (-15 -2723 ($ $)) (-15 -2691 ($ $))))
(((-35) . T) ((-95) . T) ((-288) . T) ((-499) . T) ((-966) . T) ((-1212) . T) ((-1215) . T))
-((-3756 (((-115) (-115)) 88)) (-4162 ((|#2| |#2|) 28)) (-2212 ((|#2| |#2| (-1101 |#2|)) 84) ((|#2| |#2| (-1186)) 50)) (-2690 ((|#2| |#2|) 27)) (-2722 ((|#2| |#2|) 29)) (-1388 (((-112) (-115)) 33)) (-3019 ((|#2| |#2|) 24)) (-2097 ((|#2| |#2|) 26)) (-2921 ((|#2| |#2|) 25)))
-(((-636 |#1| |#2|) (-10 -7 (-15 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -2097 (|#2| |#2|)) (-15 -3019 (|#2| |#2|)) (-15 -2921 (|#2| |#2|)) (-15 -4162 (|#2| |#2|)) (-15 -2690 (|#2| |#2|)) (-15 -2722 (|#2| |#2|)) (-15 -2212 (|#2| |#2| (-1186))) (-15 -2212 (|#2| |#2| (-1101 |#2|)))) (-562) (-13 (-436 |#1|) (-1011) (-1212))) (T -636))
-((-2212 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1212))) (-4 *4 (-562)) (-5 *1 (-636 *4 *2)))) (-2212 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-636 *4 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1212))))) (-2722 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2690 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-4162 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2921 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-3019 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2097 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-3756 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-636 *3 *4)) (-4 *4 (-13 (-436 *3) (-1011) (-1212))))) (-1388 (*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 -1388 ((-112) (-115))) (-15 -3756 ((-115) (-115))) (-15 -2097 (|#2| |#2|)) (-15 -3019 (|#2| |#2|)) (-15 -2921 (|#2| |#2|)) (-15 -4162 (|#2| |#2|)) (-15 -2690 (|#2| |#2|)) (-15 -2722 (|#2| |#2|)) (-15 -2212 (|#2| |#2| (-1186))) (-15 -2212 (|#2| |#2| (-1101 |#2|))))
-((-1887 (((-487 |#1| |#2|) (-249 |#1| |#2|)) 63)) (-3855 (((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 89)) (-2997 (((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|)) 91) (((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|)) 90)) (-1723 (((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|))) 134)) (-1677 (((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 104)) (-2902 (((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|))) 145)) (-2330 (((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|))) 68)) (-3455 (((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 47)) (-1588 (((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|))) 60)) (-3066 (((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|))) 112)))
-(((-637 |#1| |#2|) (-10 -7 (-15 -1723 ((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|)))) (-15 -2902 ((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|)))) (-15 -3855 ((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -2997 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -2997 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -3455 ((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -2330 ((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|)))) (-15 -3066 ((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -1677 ((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1588 ((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -1887 ((-487 |#1| |#2|) (-249 |#1| |#2|)))) (-650 (-1186)) (-458)) (T -637))
-((-1887 (*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)))) (-1588 (*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)))) (-1677 (*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)))) (-3066 (*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)))) (-2330 (*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)))) (-3455 (*1 *2 *2) (-12 (-5 *2 (-650 (-487 *3 *4))) (-14 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-637 *3 *4)))) (-2997 (*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)))) (-2997 (*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)))) (-3855 (*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)))) (-2902 (*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))))) (-1723 (*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 -1723 ((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|)))) (-15 -2902 ((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|)))) (-15 -3855 ((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -2997 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -2997 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -3455 ((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -2330 ((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|)))) (-15 -3066 ((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -1677 ((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1588 ((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -1887 ((-487 |#1| |#2|) (-249 |#1| |#2|))))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) NIL)) (-3851 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 (((-52) $ (-1168) (-52)) 16) (((-52) $ (-1186) (-52)) 17)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 (-52) "failed") (-1168) $) NIL)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109))))) (-3249 (($ (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-3 (-52) "failed") (-1168) $) NIL)) (-1741 (($ (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $ (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109)))) (((-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $ (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-1517 (((-52) $ (-1168) (-52)) NIL (|has| $ (-6 -4450)))) (-3820 (((-52) $ (-1168)) NIL)) (-3627 (((-650 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-2653 (($ $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2752 (((-650 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-1460 (((-1168) $) NIL (|has| (-1168) (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-4209 (($ (-394)) 9)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109))))) (-2911 (((-650 (-1168)) $) NIL)) (-3245 (((-112) (-1168) $) NIL)) (-1490 (((-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) $) NIL)) (-1385 (($ (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) $) NIL)) (-1805 (((-650 (-1168)) $) NIL)) (-3939 (((-112) (-1168) $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109))))) (-3543 (((-52) $) NIL (|has| (-1168) (-856)))) (-1790 (((-3 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) "failed") (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL)) (-2147 (($ $ (-52)) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109)))) (($ $ (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-3700 (((-650 (-52)) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 (((-52) $ (-1168)) 14) (((-52) $ (-1168) (-52)) NIL) (((-52) $ (-1186)) 15)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 (-52))) (-1109))))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-638) (-13 (-1203 (-1168) (-52)) (-10 -8 (-15 -4209 ($ (-394))) (-15 -2653 ($ $)) (-15 -1941 ((-52) $ (-1186))) (-15 -3932 ((-52) $ (-1186) (-52)))))) (T -638))
-((-4209 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-638)))) (-2653 (*1 *1 *1) (-5 *1 (-638))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-52)) (-5 *1 (-638)))) (-3932 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1186)) (-5 *1 (-638)))))
-(-13 (-1203 (-1168) (-52)) (-10 -8 (-15 -4209 ($ (-394))) (-15 -2653 ($ $)) (-15 -1941 ((-52) $ (-1186))) (-15 -3932 ((-52) $ (-1186) (-52)))))
-((-3122 (($ $ |#2|) 10)))
-(((-639 |#1| |#2|) (-10 -8 (-15 -3122 (|#1| |#1| |#2|))) (-640 |#2|) (-174)) (T -639))
-NIL
-(-10 -8 (-15 -3122 (|#1| |#1| |#2|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3811 (($ $ $) 34)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 33 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+((-3759 (((-115) (-115)) 88)) (-4165 ((|#2| |#2|) 28)) (-1411 ((|#2| |#2| (-1101 |#2|)) 84) ((|#2| |#2| (-1186)) 50)) (-2691 ((|#2| |#2|) 27)) (-2723 ((|#2| |#2|) 29)) (-3200 (((-112) (-115)) 33)) (-3816 ((|#2| |#2|) 24)) (-2754 ((|#2| |#2|) 26)) (-2229 ((|#2| |#2|) 25)))
+(((-636 |#1| |#2|) (-10 -7 (-15 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -2754 (|#2| |#2|)) (-15 -3816 (|#2| |#2|)) (-15 -2229 (|#2| |#2|)) (-15 -4165 (|#2| |#2|)) (-15 -2691 (|#2| |#2|)) (-15 -2723 (|#2| |#2|)) (-15 -1411 (|#2| |#2| (-1186))) (-15 -1411 (|#2| |#2| (-1101 |#2|)))) (-562) (-13 (-436 |#1|) (-1011) (-1212))) (T -636))
+((-1411 (*1 *2 *2 *3) (-12 (-5 *3 (-1101 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1212))) (-4 *4 (-562)) (-5 *1 (-636 *4 *2)))) (-1411 (*1 *2 *2 *3) (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-636 *4 *2)) (-4 *2 (-13 (-436 *4) (-1011) (-1212))))) (-2723 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2691 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-4165 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2229 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-3816 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-2754 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2)) (-4 *2 (-13 (-436 *3) (-1011) (-1212))))) (-3759 (*1 *2 *2) (-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-636 *3 *4)) (-4 *4 (-13 (-436 *3) (-1011) (-1212))))) (-3200 (*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 -3200 ((-112) (-115))) (-15 -3759 ((-115) (-115))) (-15 -2754 (|#2| |#2|)) (-15 -3816 (|#2| |#2|)) (-15 -2229 (|#2| |#2|)) (-15 -4165 (|#2| |#2|)) (-15 -2691 (|#2| |#2|)) (-15 -2723 (|#2| |#2|)) (-15 -1411 (|#2| |#2| (-1186))) (-15 -1411 (|#2| |#2| (-1101 |#2|))))
+((-2422 (((-487 |#1| |#2|) (-249 |#1| |#2|)) 63)) (-3080 (((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 89)) (-1746 (((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|)) 91) (((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|)) 90)) (-3346 (((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|))) 134)) (-4079 (((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 104)) (-2053 (((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|))) 145)) (-3304 (((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|))) 68)) (-3620 (((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|))) 47)) (-1317 (((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|))) 60)) (-4232 (((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|))) 112)))
+(((-637 |#1| |#2|) (-10 -7 (-15 -3346 ((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|)))) (-15 -2053 ((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|)))) (-15 -3080 ((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1746 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -1746 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -3620 ((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -3304 ((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|)))) (-15 -4232 ((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -4079 ((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1317 ((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -2422 ((-487 |#1| |#2|) (-249 |#1| |#2|)))) (-650 (-1186)) (-458)) (T -637))
+((-2422 (*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)))) (-1317 (*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)))) (-4079 (*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)))) (-4232 (*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)))) (-3304 (*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)))) (-3620 (*1 *2 *2) (-12 (-5 *2 (-650 (-487 *3 *4))) (-14 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-637 *3 *4)))) (-1746 (*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)))) (-1746 (*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)))) (-3080 (*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)))) (-2053 (*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))))) (-3346 (*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 -3346 ((-2 (|:| |gblist| (-650 (-249 |#1| |#2|))) (|:| |gvlist| (-650 (-570)))) (-650 (-487 |#1| |#2|)))) (-15 -2053 ((-2 (|:| |glbase| (-650 (-249 |#1| |#2|))) (|:| |glval| (-650 (-570)))) (-650 (-249 |#1| |#2|)))) (-15 -3080 ((-650 (-249 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1746 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -1746 ((-487 |#1| |#2|) (-650 (-487 |#1| |#2|)) (-870 |#1|))) (-15 -3620 ((-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -3304 ((-1277 |#2|) (-487 |#1| |#2|) (-650 (-487 |#1| |#2|)))) (-15 -4232 ((-249 |#1| |#2|) (-650 |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -4079 ((-650 (-487 |#1| |#2|)) (-870 |#1|) (-650 (-487 |#1| |#2|)) (-650 (-487 |#1| |#2|)))) (-15 -1317 ((-249 |#1| |#2|) (-249 |#1| |#2|) (-650 (-249 |#1| |#2|)))) (-15 -2422 ((-487 |#1| |#2|) (-249 |#1| |#2|))))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) NIL)) (-3040 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 (((-52) $ (-1168) (-52)) 16) (((-52) $ (-1186) (-52)) 17)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 (-52) "failed") (-1168) $) NIL)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109))))) (-2385 (($ (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-3 (-52) "failed") (-1168) $) NIL)) (-1742 (($ (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $ (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109)))) (((-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $ (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-1518 (((-52) $ (-1168) (-52)) NIL (|has| $ (-6 -4453)))) (-3824 (((-52) $ (-1168)) NIL)) (-3630 (((-650 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-650 (-52)) $) NIL (|has| $ (-6 -4452)))) (-3521 (($ $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2052 (((-650 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-650 (-52)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109))))) (-2602 (((-1168) $) NIL (|has| (-1168) (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4453))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-4213 (($ (-394)) 9)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109))))) (-2914 (((-650 (-1168)) $) NIL)) (-2343 (((-112) (-1168) $) NIL)) (-2885 (((-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) $) NIL)) (-3502 (($ (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) $) NIL)) (-2903 (((-650 (-1168)) $) NIL)) (-1358 (((-112) (-1168) $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109))))) (-3546 (((-52) $) NIL (|has| (-1168) (-856)))) (-2770 (((-3 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) "failed") (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL)) (-2061 (($ $ (-52)) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109)))) (($ $ (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109))))) (-4049 (((-650 (-52)) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 (((-52) $ (-1168)) 14) (((-52) $ (-1168) (-52)) NIL) (((-52) $ (-1186)) 15)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 (-52))) (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-638) (-13 (-1203 (-1168) (-52)) (-10 -8 (-15 -4213 ($ (-394))) (-15 -3521 ($ $)) (-15 -1942 ((-52) $ (-1186))) (-15 -3935 ((-52) $ (-1186) (-52)))))) (T -638))
+((-4213 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-638)))) (-3521 (*1 *1 *1) (-5 *1 (-638))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-52)) (-5 *1 (-638)))) (-3935 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-52)) (-5 *3 (-1186)) (-5 *1 (-638)))))
+(-13 (-1203 (-1168) (-52)) (-10 -8 (-15 -4213 ($ (-394))) (-15 -3521 ($ $)) (-15 -1942 ((-52) $ (-1186))) (-15 -3935 ((-52) $ (-1186) (-52)))))
+((-3125 (($ $ |#2|) 10)))
+(((-639 |#1| |#2|) (-10 -8 (-15 -3125 (|#1| |#1| |#2|))) (-640 |#2|) (-174)) (T -639))
+NIL
+(-10 -8 (-15 -3125 (|#1| |#1| |#2|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3814 (($ $ $) 34)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 33 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
(((-640 |#1|) (-141) (-174)) (T -640))
-((-3811 (*1 *1 *1 *1) (-12 (-4 *1 (-640 *2)) (-4 *2 (-174)))) (-3122 (*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 -3811 ($ $ $)) (IF (|has| |t#1| (-368)) (-15 -3122 ($ $ |t#1|)) |%noBranch|)))
+((-3814 (*1 *1 *1 *1) (-12 (-4 *1 (-640 *2)) (-4 *2 (-174)))) (-3125 (*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 -3814 ($ $ $)) (IF (|has| |t#1| (-368)) (-15 -3125 ($ $ |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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3128 (((-3 $ "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4299 (((-1277 (-695 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-1277 (-695 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-4221 (((-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-1705 (($) NIL T CONST)) (-2983 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2476 (((-3 $ "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3919 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3677 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-1666 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2054 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4404 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-2705 (($ $ (-928)) NIL)) (-3637 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-2036 (((-1182 |#1|) $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1684 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3595 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-1763 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3243 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (($ (-1277 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2875 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4006 (((-928)) NIL (|has| |#2| (-372 |#1|)))) (-4034 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2604 (($ $ (-928)) NIL)) (-2680 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1950 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1907 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2615 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3089 (((-3 $ "failed")) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3267 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2339 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-1738 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3259 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3454 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-1575 (($ $ (-928)) NIL)) (-3680 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-2018 (((-1182 |#1|) $) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2374 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-1542 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-1830 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1988 (((-1168) $) NIL)) (-4013 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3196 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2601 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3577 (((-1129) $) NIL)) (-3832 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1941 ((|#1| $ (-570)) NIL (|has| |#2| (-423 |#1|)))) (-3424 (((-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|)))) (-1425 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-1277 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-1987 (((-650 (-959 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-650 (-959 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-4391 (($ $ $) NIL)) (-3795 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3799 (((-868) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL (|has| |#2| (-423 |#1|)))) (-3871 (((-650 (-1277 |#1|))) NIL (-2892 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3764 (($ $ $ $) NIL)) (-2433 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3489 (($ (-695 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3858 (($ $ $) NIL)) (-2826 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4363 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1764 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3799 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|))) (-174) (-750 |#1|)) (T -641))
-((-3799 (*1 *1 *2) (-12 (-4 *3 (-174)) (-5 *1 (-641 *3 *2)) (-4 *2 (-750 *3)))))
-(-13 (-750 |#1|) (-619 |#2|) (-10 -8 (-15 -3799 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|)))
-((-3191 (((-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)) (-3793 (((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|))) 136)))
-(((-642 |#1| |#2|) (-10 -7 (-15 -3191 ((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|)))) (-15 -3793 ((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|)))) (-15 -3191 ((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -642))
-((-3191 (*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)))) (-3793 (*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))))) (-3191 (*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 -3191 ((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|)))) (-15 -3793 ((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|)))) (-15 -3191 ((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168))))
-((-3191 (((-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)) (-3793 (((-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 -3191 ((-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 -3191 ((-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 -3793 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|))))) (-15 -3793 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -3191 ((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168)))) (-458)) (T -643))
-((-3191 (*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)))) (-3793 (*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)))) (-3793 (*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))))) (-3191 (*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)))) (-3191 (*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 -3191 ((-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 -3191 ((-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 -3793 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|))))) (-15 -3793 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -3191 ((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168))))
-((-1316 (((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|) 64 (-1795 (|has| |#1| (-368)))) (((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|) 49 (|has| |#1| (-368)))) (-3200 (((-112) (-1277 |#2|)) 33)) (-3253 (((-3 (-1277 |#1|) "failed") (-1277 |#2|)) 40)))
-(((-644 |#1| |#2|) (-10 -7 (-15 -3200 ((-112) (-1277 |#2|))) (-15 -3253 ((-3 (-1277 |#1|) "failed") (-1277 |#2|))) (IF (|has| |#1| (-368)) (-15 -1316 ((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|)) (-15 -1316 ((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|)))) (-562) (-645 |#1|)) (T -644))
-((-1316 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 *5)) (-1795 (-4 *5 (-368))) (-4 *5 (-562)) (-5 *2 (-1277 (-413 *5))) (-5 *1 (-644 *5 *4)))) (-1316 (*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)))) (-3253 (*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)))) (-3200 (*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 -3200 ((-112) (-1277 |#2|))) (-15 -3253 ((-3 (-1277 |#1|) "failed") (-1277 |#2|))) (IF (|has| |#1| (-368)) (-15 -1316 ((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|)) (-15 -1316 ((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-4196 (((-695 |#1|) (-695 $)) 40) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 39)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3635 (((-3 $ "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-1896 (((-1277 (-695 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-1277 (-695 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2403 (((-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3195 (($) NIL T CONST)) (-1587 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2434 (((-3 $ "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2491 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3850 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3993 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3498 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3490 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-2827 (($ $ (-928)) NIL)) (-1563 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3286 (((-1182 |#1|) $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4154 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2476 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-2546 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2322 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (($ (-1277 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-1929 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-4009 (((-928)) NIL (|has| |#2| (-372 |#1|)))) (-4211 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4234 (($ $ (-928)) NIL)) (-3772 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1745 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4407 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4329 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3269 (((-3 $ "failed")) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-2553 (((-695 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3412 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-3524 (((-695 |#1|) $) NIL (|has| |#2| (-423 |#1|))) (((-695 |#1|) $ (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2480 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3607 (((-1182 (-959 |#1|))) NIL (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-368))))) (-4311 (($ $ (-928)) NIL)) (-3879 ((|#1| $) NIL (|has| |#2| (-372 |#1|)))) (-4292 (((-1182 |#1|) $) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3775 ((|#1|) NIL (|has| |#2| (-423 |#1|))) ((|#1| (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-2170 (((-1182 |#1|) $) NIL (|has| |#2| (-372 |#1|)))) (-3100 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3989 (((-1168) $) NIL)) (-4015 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3058 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4203 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3580 (((-1129) $) NIL)) (-2876 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1942 ((|#1| $ (-570)) NIL (|has| |#2| (-423 |#1|)))) (-3314 (((-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|)))) (-1426 (($ (-1277 |#1|)) NIL (|has| |#2| (-423 |#1|))) (((-1277 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3978 (((-650 (-959 |#1|))) NIL (|has| |#2| (-423 |#1|))) (((-650 (-959 |#1|)) (-1277 $)) NIL (|has| |#2| (-372 |#1|)))) (-3381 (($ $ $) NIL)) (-3762 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3802 (((-868) $) NIL) ((|#2| $) 12) (($ |#2|) 13)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL (|has| |#2| (-423 |#1|)))) (-3203 (((-650 (-1277 |#1|))) NIL (-2895 (-12 (|has| |#2| (-372 |#1|)) (|has| |#1| (-562))) (-12 (|has| |#2| (-423 |#1|)) (|has| |#1| (-562)))))) (-3468 (($ $ $ $) NIL)) (-3169 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-3492 (($ (-695 |#1|) $) NIL (|has| |#2| (-423 |#1|)))) (-3107 (($ $ $) NIL)) (-1352 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-4298 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-2557 (((-112)) NIL (|has| |#2| (-372 |#1|)))) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3802 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|))) (-174) (-750 |#1|)) (T -641))
+((-3802 (*1 *1 *2) (-12 (-4 *3 (-174)) (-5 *1 (-641 *3 *2)) (-4 *2 (-750 *3)))))
+(-13 (-750 |#1|) (-619 |#2|) (-10 -8 (-15 -3802 ($ |#2|)) (IF (|has| |#2| (-423 |#1|)) (-6 (-423 |#1|)) |%noBranch|) (IF (|has| |#2| (-372 |#1|)) (-6 (-372 |#1|)) |%noBranch|)))
+((-3016 (((-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)) (-3745 (((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|))) 136)))
+(((-642 |#1| |#2|) (-10 -7 (-15 -3016 ((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|)))) (-15 -3745 ((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|)))) (-15 -3016 ((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168)))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -642))
+((-3016 (*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)))) (-3745 (*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))))) (-3016 (*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 -3016 ((-3 (-849 |#2|) (-2 (|:| |leftHandLimit| (-3 (-849 |#2|) "failed")) (|:| |rightHandLimit| (-3 (-849 |#2|) "failed"))) "failed") |#2| (-298 (-849 |#2|)))) (-15 -3745 ((-3 (-839 |#2|) "failed") |#2| (-298 (-839 |#2|)))) (-15 -3016 ((-3 (-849 |#2|) "failed") |#2| (-298 |#2|) (-1168))))
+((-3016 (((-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)) (-3745 (((-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 -3016 ((-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 -3016 ((-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 -3745 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|))))) (-15 -3745 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -3016 ((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168)))) (-458)) (T -643))
+((-3016 (*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)))) (-3745 (*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)))) (-3745 (*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))))) (-3016 (*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)))) (-3016 (*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 -3016 ((-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 -3016 ((-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 -3745 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-839 (-959 |#1|))))) (-15 -3745 ((-839 (-413 (-959 |#1|))) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -3016 ((-3 (-849 (-413 (-959 |#1|))) "failed") (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))) (-1168))))
+((-1665 (((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|) 64 (-1796 (|has| |#1| (-368)))) (((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|) 49 (|has| |#1| (-368)))) (-3095 (((-112) (-1277 |#2|)) 33)) (-2427 (((-3 (-1277 |#1|) "failed") (-1277 |#2|)) 40)))
+(((-644 |#1| |#2|) (-10 -7 (-15 -3095 ((-112) (-1277 |#2|))) (-15 -2427 ((-3 (-1277 |#1|) "failed") (-1277 |#2|))) (IF (|has| |#1| (-368)) (-15 -1665 ((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|)) (-15 -1665 ((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|)))) (-562) (-645 |#1|)) (T -644))
+((-1665 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 *5)) (-1796 (-4 *5 (-368))) (-4 *5 (-562)) (-5 *2 (-1277 (-413 *5))) (-5 *1 (-644 *5 *4)))) (-1665 (*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)))) (-2427 (*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)))) (-3095 (*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 -3095 ((-112) (-1277 |#2|))) (-15 -2427 ((-3 (-1277 |#1|) "failed") (-1277 |#2|))) (IF (|has| |#1| (-368)) (-15 -1665 ((-3 (-1277 |#1|) "failed") (-1277 |#2|) |#2|)) (-15 -1665 ((-3 (-1277 (-413 |#1|)) "failed") (-1277 |#2|) |#2|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-2179 (((-695 |#1|) (-695 $)) 40) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 39)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-645 |#1|) (-141) (-1058)) (T -645))
-((-4196 (*1 *2 *3) (-12 (-5 *3 (-695 *1)) (-4 *1 (-645 *4)) (-4 *4 (-1058)) (-5 *2 (-695 *4)))) (-4196 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *1)) (-5 *4 (-1277 *1)) (-4 *1 (-645 *5)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -2415 (-695 *5)) (|:| |vec| (-1277 *5)))))))
-(-13 (-1058) (-10 -8 (-15 -4196 ((-695 |t#1|) (-695 $))) (-15 -4196 ((-2 (|:| -2415 (-695 |t#1|)) (|:| |vec| (-1277 |t#1|))) (-695 $) (-1277 $)))))
+((-2179 (*1 *2 *3) (-12 (-5 *3 (-695 *1)) (-4 *1 (-645 *4)) (-4 *4 (-1058)) (-5 *2 (-695 *4)))) (-2179 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *1)) (-5 *4 (-1277 *1)) (-4 *1 (-645 *5)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -2990 (-695 *5)) (|:| |vec| (-1277 *5)))))))
+(-13 (-1058) (-10 -8 (-15 -2179 ((-695 |t#1|) (-695 $))) (-15 -2179 ((-2 (|:| -2990 (-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))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 16 T CONST)) (-3022 (((-112) $ $) 6)) (* (($ |#1| $) 14) (($ $ |#1|) 19)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 16 T CONST)) (-3025 (((-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))
-((-4139 ((|#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 -4139 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|))) (-15 -4139 (|#2| (-650 |#1|) (-650 |#2|) |#1|)) (-15 -4139 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) |#2|)) (-15 -4139 (|#2| (-650 |#1|) (-650 |#2|) |#1| |#2|)) (-15 -4139 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) (-1 |#2| |#1|))) (-15 -4139 (|#2| (-650 |#1|) (-650 |#2|) |#1| (-1 |#2| |#1|)))) (-1109) (-1227)) (T -647))
-((-4139 (*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)))) (-4139 (*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)))) (-4139 (*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)))) (-4139 (*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)))) (-4139 (*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)))) (-4139 (*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 -4139 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|))) (-15 -4139 (|#2| (-650 |#1|) (-650 |#2|) |#1|)) (-15 -4139 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) |#2|)) (-15 -4139 (|#2| (-650 |#1|) (-650 |#2|) |#1| |#2|)) (-15 -4139 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) (-1 |#2| |#1|))) (-15 -4139 (|#2| (-650 |#1|) (-650 |#2|) |#1| (-1 |#2| |#1|))))
-((-3482 (((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|) 16)) (-3624 ((|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|) 18)) (-1356 (((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|)) 13)))
-(((-648 |#1| |#2|) (-10 -7 (-15 -3482 ((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -3624 (|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -1356 ((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|)))) (-1227) (-1227)) (T -648))
-((-1356 (*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)))) (-3624 (*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)))) (-3482 (*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 -3482 ((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -3624 (|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -1356 ((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|))))
-((-1356 (((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|)) 21)))
-(((-649 |#1| |#2| |#3|) (-10 -7 (-15 -1356 ((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|)))) (-1227) (-1227) (-1227)) (T -649))
-((-1356 (*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 -1356 ((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-2698 ((|#1| $) NIL)) (-1602 (($ $) NIL)) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-4004 (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-3393 (($ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-2988 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3986 (($ $ $) NIL (|has| $ (-6 -4450)))) (-2363 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-2869 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3932 ((|#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)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-3478 (($ $ $) 37 (|has| |#1| (-1109)))) (-3468 (($ $ $) 41 (|has| |#1| (-1109)))) (-3457 (($ $ $) 44 (|has| |#1| (-1109)))) (-3753 (($ (-1 (-112) |#1|) $) NIL)) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2686 ((|#1| $) NIL)) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3555 (($ $) 23) (($ $ (-777)) NIL)) (-3110 (($ $) NIL (|has| |#1| (-1109)))) (-3579 (($ $) 36 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3249 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1741 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3624 ((|#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))))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-3414 (((-112) $) NIL)) (-4027 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1782 (((-112) $) 11)) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3139 (($) 9 T CONST)) (-4291 (($ (-777) |#1|) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2168 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2024 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 40 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3420 (($ |#1|) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1769 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-1385 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4290 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) 20) (($ $ (-777)) NIL)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3607 (((-112) $) NIL)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) 39)) (-2380 (($) 38)) (-1941 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) 42) ((|#1| $ (-570) |#1|) NIL)) (-2738 (((-570) $ $) NIL)) (-3459 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4326 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-3817 (((-112) $) NIL)) (-4366 (($ $) NIL)) (-4063 (($ $) NIL (|has| $ (-6 -4450)))) (-2264 (((-777) $) NIL)) (-1839 (($ $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) 53 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) NIL)) (-3758 (($ |#1| $) 12)) (-3276 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2584 (($ $ $) 35) (($ |#1| $) 43) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1924 (($ $ $) 13)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2831 (((-1168) $) 31 (|has| |#1| (-834))) (((-1168) $ (-112)) 32 (|has| |#1| (-834))) (((-1282) (-828) $) 33 (|has| |#1| (-834))) (((-1282) (-828) $ (-112)) 34 (|has| |#1| (-834)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-650 |#1|) (-13 (-672 |#1|) (-10 -8 (-15 -3139 ($) -3725) (-15 -1782 ((-112) $)) (-15 -3758 ($ |#1| $)) (-15 -1924 ($ $ $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -3478 ($ $ $)) (-15 -3468 ($ $ $)) (-15 -3457 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|))) (-1227)) (T -650))
-((-3139 (*1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-1782 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-650 *3)) (-4 *3 (-1227)))) (-3758 (*1 *1 *2 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-1924 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-3478 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))) (-3468 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))) (-3457 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
-(-13 (-672 |#1|) (-10 -8 (-15 -3139 ($) -3725) (-15 -1782 ((-112) $)) (-15 -3758 ($ |#1| $)) (-15 -1924 ($ $ $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -3478 ($ $ $)) (-15 -3468 ($ $ $)) (-15 -3457 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 11) (($ (-1191)) NIL) (((-1191) $) NIL) ((|#1| $) 8)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-4142 ((|#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 -4142 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|))) (-15 -4142 (|#2| (-650 |#1|) (-650 |#2|) |#1|)) (-15 -4142 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) |#2|)) (-15 -4142 (|#2| (-650 |#1|) (-650 |#2|) |#1| |#2|)) (-15 -4142 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) (-1 |#2| |#1|))) (-15 -4142 (|#2| (-650 |#1|) (-650 |#2|) |#1| (-1 |#2| |#1|)))) (-1109) (-1227)) (T -647))
+((-4142 (*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)))) (-4142 (*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)))) (-4142 (*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)))) (-4142 (*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)))) (-4142 (*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)))) (-4142 (*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 -4142 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|))) (-15 -4142 (|#2| (-650 |#1|) (-650 |#2|) |#1|)) (-15 -4142 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) |#2|)) (-15 -4142 (|#2| (-650 |#1|) (-650 |#2|) |#1| |#2|)) (-15 -4142 ((-1 |#2| |#1|) (-650 |#1|) (-650 |#2|) (-1 |#2| |#1|))) (-15 -4142 (|#2| (-650 |#1|) (-650 |#2|) |#1| (-1 |#2| |#1|))))
+((-2677 (((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|) 16)) (-3627 ((|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|) 18)) (-1357 (((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|)) 13)))
+(((-648 |#1| |#2|) (-10 -7 (-15 -2677 ((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -3627 (|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -1357 ((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|)))) (-1227) (-1227)) (T -648))
+((-1357 (*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)))) (-3627 (*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)))) (-2677 (*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 -2677 ((-650 |#2|) (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -3627 (|#2| (-1 |#2| |#1| |#2|) (-650 |#1|) |#2|)) (-15 -1357 ((-650 |#2|) (-1 |#2| |#1|) (-650 |#1|))))
+((-1357 (((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|)) 21)))
+(((-649 |#1| |#2| |#3|) (-10 -7 (-15 -1357 ((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|)))) (-1227) (-1227) (-1227)) (T -649))
+((-1357 (*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 -1357 ((-650 |#3|) (-1 |#3| |#1| |#2|) (-650 |#1|) (-650 |#2|))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-2701 ((|#1| $) NIL)) (-1603 (($ $) NIL)) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) $) NIL (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) NIL)) (-3936 (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856)))) (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-3396 (($ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1647 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1917 (($ $ $) NIL (|has| $ (-6 -4453)))) (-3671 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1854 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ "first" |#1|) NIL (|has| $ (-6 -4453))) (($ $ "rest" $) NIL (|has| $ (-6 -4453))) ((|#1| $ "last" |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3481 (($ $ $) 37 (|has| |#1| (-1109)))) (-3471 (($ $ $) 41 (|has| |#1| (-1109)))) (-3460 (($ $ $) 44 (|has| |#1| (-1109)))) (-3353 (($ (-1 (-112) |#1|) $) NIL)) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-2688 ((|#1| $) NIL)) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3558 (($ $) 23) (($ $ (-777)) NIL)) (-3476 (($ $) NIL (|has| |#1| (-1109)))) (-3582 (($ $) 36 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2385 (($ |#1| $) NIL (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) NIL)) (-1742 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-3242 (((-112) $) NIL)) (-4029 (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109))) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) NIL)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-1782 (((-112) $) 11)) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3141 (($) 9 T CONST)) (-4294 (($ (-777) |#1|) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2270 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-3183 (($ $ $) NIL (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 40 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3423 (($ |#1|) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1770 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-3502 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-4293 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) 20) (($ $ (-777)) NIL)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-2568 (((-112) $) NIL)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) 39)) (-2656 (($) 38)) (-1942 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) 42) ((|#1| $ (-570) |#1|) NIL)) (-3108 (((-570) $ $) NIL)) (-3651 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-4330 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-2759 (((-112) $) NIL)) (-4332 (($ $) NIL)) (-3305 (($ $) NIL (|has| $ (-6 -4453)))) (-3853 (((-777) $) NIL)) (-1991 (($ $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) 53 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) NIL)) (-3761 (($ |#1| $) 12)) (-1319 (($ $ $) NIL) (($ $ |#1|) NIL)) (-2585 (($ $ $) 35) (($ |#1| $) 43) (($ (-650 $)) NIL) (($ $ |#1|) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1926 (($ $ $) 13)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1423 (((-1168) $) 31 (|has| |#1| (-834))) (((-1168) $ (-112)) 32 (|has| |#1| (-834))) (((-1282) (-828) $) 33 (|has| |#1| (-834))) (((-1282) (-828) $ (-112)) 34 (|has| |#1| (-834)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-650 |#1|) (-13 (-672 |#1|) (-10 -8 (-15 -3141 ($) -3728) (-15 -1782 ((-112) $)) (-15 -3761 ($ |#1| $)) (-15 -1926 ($ $ $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -3481 ($ $ $)) (-15 -3471 ($ $ $)) (-15 -3460 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|))) (-1227)) (T -650))
+((-3141 (*1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-1782 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-650 *3)) (-4 *3 (-1227)))) (-3761 (*1 *1 *2 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-1926 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))) (-3481 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))) (-3471 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))) (-3460 (*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
+(-13 (-672 |#1|) (-10 -8 (-15 -3141 ($) -3728) (-15 -1782 ((-112) $)) (-15 -3761 ($ |#1| $)) (-15 -1926 ($ $ $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -3481 ($ $ $)) (-15 -3471 ($ $ $)) (-15 -3460 ($ $ $))) |%noBranch|) (IF (|has| |#1| (-834)) (-6 (-834)) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 11) (($ (-1191)) NIL) (((-1191) $) NIL) ((|#1| $) 8)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-651 |#1|) (-13 (-1092) (-619 |#1|)) (-1109)) (T -651))
NIL
(-13 (-1092) (-619 |#1|))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 16 T CONST)) (-3022 (((-112) $ $) 6)) (* (($ |#1| $) 14)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 16 T CONST)) (-3025 (((-112) $ $) 6)) (* (($ |#1| $) 14)))
(((-652 |#1|) (-141) (-1067)) (T -652))
-((-1861 (*1 *1) (-12 (-4 *1 (-652 *2)) (-4 *2 (-1067)))) (-3467 (*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 (-1861) ($) -3725) (-15 -3467 ((-112) $)) (-15 * ($ |t#1| $))))
+((-1862 (*1 *1) (-12 (-4 *1 (-652 *2)) (-4 *2 (-1067)))) (-3721 (*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 (-1862) ($) -3728) (-15 -3721 ((-112) $)) (-15 * ($ |t#1| $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3567 (($ |#1| |#1| $) 43)) (-4302 (((-112) $ (-777)) NIL)) (-3753 (($ (-1 (-112) |#1|) $) 59 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-3110 (($ $) 45)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3249 (($ |#1| $) 56 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 58 (|has| $ (-6 -4449)))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3627 (((-650 |#1|) $) 9 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 37)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1490 ((|#1| $) 47)) (-1385 (($ |#1| $) 29) (($ |#1| $ (-777)) 42)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3647 ((|#1| $) 50)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 23)) (-2380 (($) 28)) (-2543 (((-112) $) 54)) (-2136 (((-650 (-2 (|:| -2340 |#1|) (|:| -3584 (-777)))) $) 67)) (-2178 (($) 26) (($ (-650 |#1|)) 19)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) 63 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) 20)) (-1425 (((-542) $) 34 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) NIL)) (-3799 (((-868) $) 14 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 24)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 69 (|has| |#1| (-1109)))) (-2569 (((-777) $) 17 (|has| $ (-6 -4449)))))
-(((-653 |#1|) (-13 (-701 |#1|) (-10 -8 (-6 -4449) (-15 -2543 ((-112) $)) (-15 -3567 ($ |#1| |#1| $)))) (-1109)) (T -653))
-((-2543 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-1109)))) (-3567 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-1109)))))
-(-13 (-701 |#1|) (-10 -8 (-6 -4449) (-15 -2543 ((-112) $)) (-15 -3567 ($ |#1| |#1| $))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27)))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3570 (($ |#1| |#1| $) 43)) (-1932 (((-112) $ (-777)) NIL)) (-3353 (($ (-1 (-112) |#1|) $) 59 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-3476 (($ $) 45)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2385 (($ |#1| $) 56 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) 58 (|has| $ (-6 -4452)))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-3630 (((-650 |#1|) $) 9 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) 39 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 37)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2885 ((|#1| $) 47)) (-3502 (($ |#1| $) 29) (($ |#1| $ (-777)) 42)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1684 ((|#1| $) 50)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 23)) (-2656 (($) 28)) (-1858 (((-112) $) 54)) (-3127 (((-650 (-2 (|:| -2340 |#1|) (|:| -3587 (-777)))) $) 67)) (-2374 (($) 26) (($ (-650 |#1|)) 19)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) 63 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) 20)) (-1426 (((-542) $) 34 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) NIL)) (-3802 (((-868) $) 14 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 24)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 69 (|has| |#1| (-1109)))) (-2570 (((-777) $) 17 (|has| $ (-6 -4452)))))
+(((-653 |#1|) (-13 (-701 |#1|) (-10 -8 (-6 -4452) (-15 -1858 ((-112) $)) (-15 -3570 ($ |#1| |#1| $)))) (-1109)) (T -653))
+((-1858 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-1109)))) (-3570 (*1 *1 *2 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-1109)))))
+(-13 (-701 |#1|) (-10 -8 (-6 -4452) (-15 -1858 ((-112) $)) (-15 -3570 ($ |#1| |#1| $))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777) $) 17)) (-3997 (($ $ |#1|) 69)) (-2844 (($ $) 39)) (-2377 (($ $) 37)) (-4380 (((-3 |#1| "failed") $) 61)) (-3216 ((|#1| $) NIL)) (-3293 (($ |#1| |#2| $) 79) (($ $ $) 81)) (-2710 (((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570)) 56)) (-2610 ((|#1| $ (-570)) 35)) (-2517 ((|#2| $ (-570)) 34)) (-2131 (($ (-1 |#1| |#1|) $) 41)) (-2453 (($ (-1 |#2| |#2|) $) 47)) (-1465 (($) 11)) (-3407 (($ |#1| |#2|) 24)) (-3779 (($ (-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|)))) 25)) (-1696 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $) 14)) (-2592 (($ |#1| $) 71)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2069 (((-112) $ $) 76)) (-3799 (((-868) $) 21) (($ |#1|) 18)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 27)))
-(((-655 |#1| |#2| |#3|) (-13 (-1109) (-1047 |#1|) (-10 -8 (-15 -2710 ((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570))) (-15 -1696 ((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $)) (-15 -3407 ($ |#1| |#2|)) (-15 -3779 ($ (-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))))) (-15 -2517 (|#2| $ (-570))) (-15 -2610 (|#1| $ (-570))) (-15 -2377 ($ $)) (-15 -2844 ($ $)) (-15 -3510 ((-777) $)) (-15 -1465 ($)) (-15 -3997 ($ $ |#1|)) (-15 -2592 ($ |#1| $)) (-15 -3293 ($ |#1| |#2| $)) (-15 -3293 ($ $ $)) (-15 -2069 ((-112) $ $)) (-15 -2453 ($ (-1 |#2| |#2|) $)) (-15 -2131 ($ (-1 |#1| |#1|) $)))) (-1109) (-23) |#2|) (T -655))
-((-2710 (*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))) (-1696 (*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))) (-3407 (*1 *1 *2 *3) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3779 (*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)))) (-2517 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-23)) (-5 *1 (-655 *4 *2 *5)) (-4 *4 (-1109)) (-14 *5 *2))) (-2610 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-1109)) (-5 *1 (-655 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-2377 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-2844 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3510 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-1465 (*1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3997 (*1 *1 *1 *2) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-2592 (*1 *1 *2 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3293 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3293 (*1 *1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-2069 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-2453 (*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)))) (-2131 (*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 -2710 ((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570))) (-15 -1696 ((-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))) $)) (-15 -3407 ($ |#1| |#2|)) (-15 -3779 ($ (-650 (-2 (|:| |gen| |#1|) (|:| -4387 |#2|))))) (-15 -2517 (|#2| $ (-570))) (-15 -2610 (|#1| $ (-570))) (-15 -2377 ($ $)) (-15 -2844 ($ $)) (-15 -3510 ((-777) $)) (-15 -1465 ($)) (-15 -3997 ($ $ |#1|)) (-15 -2592 ($ |#1| $)) (-15 -3293 ($ |#1| |#2| $)) (-15 -3293 ($ $ $)) (-15 -2069 ((-112) $ $)) (-15 -2453 ($ (-1 |#2| |#2|) $)) (-15 -2131 ($ (-1 |#1| |#1|) $))))
-((-1460 (((-570) $) 31)) (-4290 (($ |#2| $ (-570)) 27) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) 12)) (-3939 (((-112) (-570) $) 18)) (-2584 (($ $ |#2|) 24) (($ |#2| $) 25) (($ $ $) NIL) (($ (-650 $)) NIL)))
-(((-656 |#1| |#2|) (-10 -8 (-15 -4290 (|#1| |#1| |#1| (-570))) (-15 -4290 (|#1| |#2| |#1| (-570))) (-15 -2584 (|#1| (-650 |#1|))) (-15 -2584 (|#1| |#1| |#1|)) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#2|)) (-15 -1460 ((-570) |#1|)) (-15 -1805 ((-650 (-570)) |#1|)) (-15 -3939 ((-112) (-570) |#1|))) (-657 |#2|) (-1227)) (T -656))
-NIL
-(-10 -8 (-15 -4290 (|#1| |#1| |#1| (-570))) (-15 -4290 (|#1| |#2| |#1| (-570))) (-15 -2584 (|#1| (-650 |#1|))) (-15 -2584 (|#1| |#1| |#1|)) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#2|)) (-15 -1460 ((-570) |#1|)) (-15 -1805 ((-650 (-570)) |#1|)) (-15 -3939 ((-112) (-570) |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3579 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 52)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-4291 (($ (-777) |#1|) 70)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 43 (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2147 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4326 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 71)) (-2584 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777) $) 17)) (-3862 (($ $ |#1|) 69)) (-1582 (($ $) 39)) (-2380 (($ $) 37)) (-4383 (((-3 |#1| "failed") $) 61)) (-3220 ((|#1| $) NIL)) (-3296 (($ |#1| |#2| $) 79) (($ $ $) 81)) (-2878 (((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570)) 56)) (-4275 ((|#1| $ (-570)) 35)) (-1564 ((|#2| $ (-570)) 34)) (-3088 (($ (-1 |#1| |#1|) $) 41)) (-2196 (($ (-1 |#2| |#2|) $) 47)) (-2649 (($) 11)) (-4345 (($ |#1| |#2|) 24)) (-3613 (($ (-650 (-2 (|:| |gen| |#1|) (|:| -4389 |#2|)))) 25)) (-4269 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 |#2|))) $) 14)) (-4115 (($ |#1| $) 71)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3653 (((-112) $ $) 76)) (-3802 (((-868) $) 21) (($ |#1|) 18)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 27)))
+(((-655 |#1| |#2| |#3|) (-13 (-1109) (-1047 |#1|) (-10 -8 (-15 -2878 ((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570))) (-15 -4269 ((-650 (-2 (|:| |gen| |#1|) (|:| -4389 |#2|))) $)) (-15 -4345 ($ |#1| |#2|)) (-15 -3613 ($ (-650 (-2 (|:| |gen| |#1|) (|:| -4389 |#2|))))) (-15 -1564 (|#2| $ (-570))) (-15 -4275 (|#1| $ (-570))) (-15 -2380 ($ $)) (-15 -1582 ($ $)) (-15 -3513 ((-777) $)) (-15 -2649 ($)) (-15 -3862 ($ $ |#1|)) (-15 -4115 ($ |#1| $)) (-15 -3296 ($ |#1| |#2| $)) (-15 -3296 ($ $ $)) (-15 -3653 ((-112) $ $)) (-15 -2196 ($ (-1 |#2| |#2|) $)) (-15 -3088 ($ (-1 |#1| |#1|) $)))) (-1109) (-23) |#2|) (T -655))
+((-2878 (*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))) (-4269 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 *4)))) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-4345 (*1 *1 *2 *3) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3613 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 *4)))) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-655 *3 *4 *5)))) (-1564 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-23)) (-5 *1 (-655 *4 *2 *5)) (-4 *4 (-1109)) (-14 *5 *2))) (-4275 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *2 (-1109)) (-5 *1 (-655 *2 *4 *5)) (-4 *4 (-23)) (-14 *5 *4))) (-2380 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-1582 (*1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3513 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-2649 (*1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3862 (*1 *1 *1 *2) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-4115 (*1 *1 *2 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3296 (*1 *1 *2 *3 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3296 (*1 *1 *1 *1) (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23)) (-14 *4 *3))) (-3653 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))) (-2196 (*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)))) (-3088 (*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 -2878 ((-868) $ (-1 (-868) (-868) (-868)) (-1 (-868) (-868) (-868)) (-570))) (-15 -4269 ((-650 (-2 (|:| |gen| |#1|) (|:| -4389 |#2|))) $)) (-15 -4345 ($ |#1| |#2|)) (-15 -3613 ($ (-650 (-2 (|:| |gen| |#1|) (|:| -4389 |#2|))))) (-15 -1564 (|#2| $ (-570))) (-15 -4275 (|#1| $ (-570))) (-15 -2380 ($ $)) (-15 -1582 ($ $)) (-15 -3513 ((-777) $)) (-15 -2649 ($)) (-15 -3862 ($ $ |#1|)) (-15 -4115 ($ |#1| $)) (-15 -3296 ($ |#1| |#2| $)) (-15 -3296 ($ $ $)) (-15 -3653 ((-112) $ $)) (-15 -2196 ($ (-1 |#2| |#2|) $)) (-15 -3088 ($ (-1 |#1| |#1|) $))))
+((-2602 (((-570) $) 31)) (-4293 (($ |#2| $ (-570)) 27) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) 12)) (-1358 (((-112) (-570) $) 18)) (-2585 (($ $ |#2|) 24) (($ |#2| $) 25) (($ $ $) NIL) (($ (-650 $)) NIL)))
+(((-656 |#1| |#2|) (-10 -8 (-15 -4293 (|#1| |#1| |#1| (-570))) (-15 -4293 (|#1| |#2| |#1| (-570))) (-15 -2585 (|#1| (-650 |#1|))) (-15 -2585 (|#1| |#1| |#1|)) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#2|)) (-15 -2602 ((-570) |#1|)) (-15 -2903 ((-650 (-570)) |#1|)) (-15 -1358 ((-112) (-570) |#1|))) (-657 |#2|) (-1227)) (T -656))
+NIL
+(-10 -8 (-15 -4293 (|#1| |#1| |#1| (-570))) (-15 -4293 (|#1| |#2| |#1| (-570))) (-15 -2585 (|#1| (-650 |#1|))) (-15 -2585 (|#1| |#1| |#1|)) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#2|)) (-15 -2602 ((-570) |#1|)) (-15 -2903 ((-650 (-570)) |#1|)) (-15 -1358 ((-112) (-570) |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3582 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 52)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-4294 (($ (-777) |#1|) 70)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 43 (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2061 (($ $ |#1|) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4330 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 71)) (-2585 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-657 |#1|) (-141) (-1227)) (T -657))
-((-4291 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-2584 (*1 *1 *1 *2) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2584 (*1 *1 *2 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2584 (*1 *1 *1 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2584 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-1356 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-1941 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4326 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4326 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4290 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-4290 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-3932 (*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 -4291 ($ (-777) |t#1|)) (-15 -2584 ($ $ |t#1|)) (-15 -2584 ($ |t#1| $)) (-15 -2584 ($ $ $)) (-15 -2584 ($ (-650 $))) (-15 -1356 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1941 ($ $ (-1244 (-570)))) (-15 -4326 ($ $ (-570))) (-15 -4326 ($ $ (-1244 (-570)))) (-15 -4290 ($ |t#1| $ (-570))) (-15 -4290 ($ $ $ (-570))) (IF (|has| $ (-6 -4450)) (-15 -3932 (|t#1| $ (-1244 (-570)) |t#1|)) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3476 (((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|)) 174) (((-3 (-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) "failed") |#3| |#2| (-1186)) 44)))
-(((-658 |#1| |#2| |#3|) (-10 -7 (-15 -3476 ((-3 (-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) "failed") |#3| |#2| (-1186))) (-15 -3476 ((-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))
-((-3476 (*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)))) (-3476 (*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) (|:| -1972 (-650 *4)))) (-5 *1 (-658 *6 *4 *3)) (-4 *3 (-662 *4)))))
-(-10 -7 (-15 -3476 ((-3 (-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) "failed") |#3| |#2| (-1186))) (-15 -3476 ((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2077 (($ $) NIL (|has| |#1| (-368)))) (-1754 (($ $ $) NIL (|has| |#1| (-368)))) (-1669 (($ $ (-777)) NIL (|has| |#1| (-368)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4022 (($ $ $) NIL (|has| |#1| (-368)))) (-2838 (($ $ $) NIL (|has| |#1| (-368)))) (-4112 (($ $ $) NIL (|has| |#1| (-368)))) (-3518 (($ $ $) NIL (|has| |#1| (-368)))) (-2964 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-4382 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3879 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458)))) (-4346 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) NIL)) (-2378 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-3382 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-2575 (((-777) $) NIL)) (-4001 (($ $ $) NIL (|has| |#1| (-368)))) (-4118 (($ $ $) NIL (|has| |#1| (-368)))) (-2775 (($ $ $) NIL (|has| |#1| (-368)))) (-2834 (($ $ $) NIL (|has| |#1| (-368)))) (-3125 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2134 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2364 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1941 ((|#1| $ |#1|) NIL)) (-4369 (($ $ $) NIL (|has| |#1| (-368)))) (-2130 (((-777) $) NIL)) (-1848 ((|#1| $) NIL (|has| |#1| (-458)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-777)) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-3489 ((|#1| $ |#1| |#1|) NIL)) (-3979 (($ $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($) NIL)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-4294 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-2585 (*1 *1 *1 *2) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2585 (*1 *1 *2 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2585 (*1 *1 *1 *1) (-12 (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-2585 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-1357 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1 *3 *3 *3)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-1942 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4330 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4330 (*1 *1 *1 *2) (-12 (-5 *2 (-1244 (-570))) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-4293 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-657 *2)) (-4 *2 (-1227)))) (-4293 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-657 *3)) (-4 *3 (-1227)))) (-3935 (*1 *2 *1 *3 *2) (-12 (-5 *3 (-1244 (-570))) (|has| *1 (-6 -4453)) (-4 *1 (-657 *2)) (-4 *2 (-1227)))))
+(-13 (-610 (-570) |t#1|) (-152 |t#1|) (-10 -8 (-15 -4294 ($ (-777) |t#1|)) (-15 -2585 ($ $ |t#1|)) (-15 -2585 ($ |t#1| $)) (-15 -2585 ($ $ $)) (-15 -2585 ($ (-650 $))) (-15 -1357 ($ (-1 |t#1| |t#1| |t#1|) $ $)) (-15 -1942 ($ $ (-1244 (-570)))) (-15 -4330 ($ $ (-570))) (-15 -4330 ($ $ (-1244 (-570)))) (-15 -4293 ($ |t#1| $ (-570))) (-15 -4293 ($ $ $ (-570))) (IF (|has| $ (-6 -4453)) (-15 -3935 (|t#1| $ (-1244 (-570)) |t#1|)) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-2627 (((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|)) 174) (((-3 (-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) "failed") |#3| |#2| (-1186)) 44)))
+(((-658 |#1| |#2| |#3|) (-10 -7 (-15 -2627 ((-3 (-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) "failed") |#3| |#2| (-1186))) (-15 -2627 ((-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))
+((-2627 (*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)))) (-2627 (*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) (|:| -3827 (-650 *4)))) (-5 *1 (-658 *6 *4 *3)) (-4 *3 (-662 *4)))))
+(-10 -7 (-15 -2627 ((-3 (-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) "failed") |#3| |#2| (-1186))) (-15 -2627 ((-3 |#2| "failed") |#3| |#2| (-1186) |#2| (-650 |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3733 (($ $) NIL (|has| |#1| (-368)))) (-3658 (($ $ $) NIL (|has| |#1| (-368)))) (-4021 (($ $ (-777)) NIL (|has| |#1| (-368)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4091 (($ $ $) NIL (|has| |#1| (-368)))) (-1508 (($ $ $) NIL (|has| |#1| (-368)))) (-3803 (($ $ $) NIL (|has| |#1| (-368)))) (-3022 (($ $ $) NIL (|has| |#1| (-368)))) (-1333 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3301 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2109 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458)))) (-4139 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) NIL)) (-2639 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-4168 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-3970 (((-777) $) NIL)) (-3904 (($ $ $) NIL (|has| |#1| (-368)))) (-2687 (($ $ $) NIL (|has| |#1| (-368)))) (-2271 (($ $ $) NIL (|has| |#1| (-368)))) (-1469 (($ $ $) NIL (|has| |#1| (-368)))) (-3601 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3118 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3684 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1942 ((|#1| $ |#1|) NIL)) (-4361 (($ $ $) NIL (|has| |#1| (-368)))) (-3079 (((-777) $) NIL)) (-2077 ((|#1| $) NIL (|has| |#1| (-458)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-777)) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3492 ((|#1| $ |#1| |#1|) NIL)) (-1840 (($ $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($) NIL)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2077 (($ $) NIL (|has| |#1| (-368)))) (-1754 (($ $ $) NIL (|has| |#1| (-368)))) (-1669 (($ $ (-777)) NIL (|has| |#1| (-368)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4022 (($ $ $) NIL (|has| |#1| (-368)))) (-2838 (($ $ $) NIL (|has| |#1| (-368)))) (-4112 (($ $ $) NIL (|has| |#1| (-368)))) (-3518 (($ $ $) NIL (|has| |#1| (-368)))) (-2964 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-4382 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3879 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458)))) (-4346 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) NIL)) (-2378 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-3382 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-2575 (((-777) $) NIL)) (-4001 (($ $ $) NIL (|has| |#1| (-368)))) (-4118 (($ $ $) NIL (|has| |#1| (-368)))) (-2775 (($ $ $) NIL (|has| |#1| (-368)))) (-2834 (($ $ $) NIL (|has| |#1| (-368)))) (-3125 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2134 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2364 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1941 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-4369 (($ $ $) NIL (|has| |#1| (-368)))) (-2130 (((-777) $) NIL)) (-1848 ((|#1| $) NIL (|has| |#1| (-458)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-777)) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-3489 ((|#1| $ |#1| |#1|) NIL)) (-3979 (($ $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($) NIL)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3547 ($ $))))) (T -660))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3733 (($ $) NIL (|has| |#1| (-368)))) (-3658 (($ $ $) NIL (|has| |#1| (-368)))) (-4021 (($ $ (-777)) NIL (|has| |#1| (-368)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4091 (($ $ $) NIL (|has| |#1| (-368)))) (-1508 (($ $ $) NIL (|has| |#1| (-368)))) (-3803 (($ $ $) NIL (|has| |#1| (-368)))) (-3022 (($ $ $) NIL (|has| |#1| (-368)))) (-1333 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3301 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2109 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458)))) (-4139 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) NIL)) (-2639 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-4168 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-3970 (((-777) $) NIL)) (-3904 (($ $ $) NIL (|has| |#1| (-368)))) (-2687 (($ $ $) NIL (|has| |#1| (-368)))) (-2271 (($ $ $) NIL (|has| |#1| (-368)))) (-1469 (($ $ $) NIL (|has| |#1| (-368)))) (-3601 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3118 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3684 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1942 ((|#1| $ |#1|) NIL) ((|#2| $ |#2|) 13)) (-4361 (($ $ $) NIL (|has| |#1| (-368)))) (-3079 (((-777) $) NIL)) (-2077 ((|#1| $) NIL (|has| |#1| (-458)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-777)) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3492 ((|#1| $ |#1| |#1|) NIL)) (-1840 (($ $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($) NIL)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3550 ($ $))))) (T -660))
NIL
(-13 (-662 |#1|) (-290 |#2| |#2|))
-((-2077 (($ $) 29)) (-3979 (($ $) 27)) (-2942 (($) 13)))
-(((-661 |#1| |#2|) (-10 -8 (-15 -2077 (|#1| |#1|)) (-15 -3979 (|#1| |#1|)) (-15 -2942 (|#1|))) (-662 |#2|) (-1058)) (T -661))
+((-3733 (($ $) 29)) (-1840 (($ $) 27)) (-2945 (($) 13)))
+(((-661 |#1| |#2|) (-10 -8 (-15 -3733 (|#1| |#1|)) (-15 -1840 (|#1| |#1|)) (-15 -2945 (|#1|))) (-662 |#2|) (-1058)) (T -661))
NIL
-(-10 -8 (-15 -2077 (|#1| |#1|)) (-15 -3979 (|#1| |#1|)) (-15 -2942 (|#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2077 (($ $) 87 (|has| |#1| (-368)))) (-1754 (($ $ $) 89 (|has| |#1| (-368)))) (-1669 (($ $ (-777)) 88 (|has| |#1| (-368)))) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-4022 (($ $ $) 50 (|has| |#1| (-368)))) (-2838 (($ $ $) 51 (|has| |#1| (-368)))) (-4112 (($ $ $) 53 (|has| |#1| (-368)))) (-3518 (($ $ $) 48 (|has| |#1| (-368)))) (-2964 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 47 (|has| |#1| (-368)))) (-4382 (((-3 $ "failed") $ $) 49 (|has| |#1| (-368)))) (-3879 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 52 (|has| |#1| (-368)))) (-4380 (((-3 (-570) "failed") $) 80 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 77 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 74)) (-3216 (((-570) $) 79 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 76 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 75)) (-1956 (($ $) 69)) (-2875 (((-3 $ "failed") $) 37)) (-3988 (($ $) 60 (|has| |#1| (-458)))) (-4346 (((-112) $) 35)) (-3912 (($ |#1| (-777)) 67)) (-2378 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 62 (|has| |#1| (-562)))) (-3382 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63 (|has| |#1| (-562)))) (-2575 (((-777) $) 71)) (-4001 (($ $ $) 57 (|has| |#1| (-368)))) (-4118 (($ $ $) 58 (|has| |#1| (-368)))) (-2775 (($ $ $) 46 (|has| |#1| (-368)))) (-2834 (($ $ $) 55 (|has| |#1| (-368)))) (-3125 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 54 (|has| |#1| (-368)))) (-2134 (((-3 $ "failed") $ $) 56 (|has| |#1| (-368)))) (-2364 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 59 (|has| |#1| (-368)))) (-1927 ((|#1| $) 70)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-562)))) (-1941 ((|#1| $ |#1|) 92)) (-4369 (($ $ $) 86 (|has| |#1| (-368)))) (-2130 (((-777) $) 72)) (-1848 ((|#1| $) 61 (|has| |#1| (-458)))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 78 (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 73)) (-2186 (((-650 |#1|) $) 66)) (-2249 ((|#1| $ (-777)) 68)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-3489 ((|#1| $ |#1| |#1|) 65)) (-3979 (($ $) 90)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($) 91)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
+(-10 -8 (-15 -3733 (|#1| |#1|)) (-15 -1840 (|#1| |#1|)) (-15 -2945 (|#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3733 (($ $) 87 (|has| |#1| (-368)))) (-3658 (($ $ $) 89 (|has| |#1| (-368)))) (-4021 (($ $ (-777)) 88 (|has| |#1| (-368)))) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-4091 (($ $ $) 50 (|has| |#1| (-368)))) (-1508 (($ $ $) 51 (|has| |#1| (-368)))) (-3803 (($ $ $) 53 (|has| |#1| (-368)))) (-3022 (($ $ $) 48 (|has| |#1| (-368)))) (-1333 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 47 (|has| |#1| (-368)))) (-3301 (((-3 $ "failed") $ $) 49 (|has| |#1| (-368)))) (-2109 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 52 (|has| |#1| (-368)))) (-4383 (((-3 (-570) "failed") $) 80 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 77 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 74)) (-3220 (((-570) $) 79 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 76 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 75)) (-1954 (($ $) 69)) (-1929 (((-3 $ "failed") $) 37)) (-1944 (($ $) 60 (|has| |#1| (-458)))) (-4139 (((-112) $) 35)) (-3915 (($ |#1| (-777)) 67)) (-2639 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 62 (|has| |#1| (-562)))) (-4168 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63 (|has| |#1| (-562)))) (-3970 (((-777) $) 71)) (-3904 (($ $ $) 57 (|has| |#1| (-368)))) (-2687 (($ $ $) 58 (|has| |#1| (-368)))) (-2271 (($ $ $) 46 (|has| |#1| (-368)))) (-1469 (($ $ $) 55 (|has| |#1| (-368)))) (-3601 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 54 (|has| |#1| (-368)))) (-3118 (((-3 $ "failed") $ $) 56 (|has| |#1| (-368)))) (-3684 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 59 (|has| |#1| (-368)))) (-1928 ((|#1| $) 70)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-562)))) (-1942 ((|#1| $ |#1|) 92)) (-4361 (($ $ $) 86 (|has| |#1| (-368)))) (-3079 (((-777) $) 72)) (-2077 ((|#1| $) 61 (|has| |#1| (-458)))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 78 (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 73)) (-2459 (((-650 |#1|) $) 66)) (-1864 ((|#1| $ (-777)) 68)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3492 ((|#1| $ |#1| |#1|) 65)) (-1840 (($ $) 90)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($) 91)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
(((-662 |#1|) (-141) (-1058)) (T -662))
-((-2942 (*1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)))) (-3979 (*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)))) (-1754 (*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1669 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-662 *3)) (-4 *3 (-1058)) (-4 *3 (-368)))) (-2077 (*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4369 (*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 -2942 ($)) (-15 -3979 ($ $)) (IF (|has| |t#1| (-368)) (PROGN (-15 -1754 ($ $ $)) (-15 -1669 ($ $ (-777))) (-15 -2077 ($ $)) (-15 -4369 ($ $ $))) |%noBranch|)))
+((-2945 (*1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)))) (-1840 (*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)))) (-3658 (*1 *1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4021 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-662 *3)) (-4 *3 (-1058)) (-4 *3 (-368)))) (-3733 (*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4361 (*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 -2945 ($)) (-15 -1840 ($ $)) (IF (|has| |t#1| (-368)) (PROGN (-15 -3658 ($ $ $)) (-15 -4021 ($ $ (-777))) (-15 -3733 ($ $)) (-15 -4361 ($ $ $))) |%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))
-((-2767 (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))) 85 (|has| |#1| (-27)))) (-3801 (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))) 84 (|has| |#1| (-27))) (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 19)))
-(((-663 |#1| |#2|) (-10 -7 (-15 -3801 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3801 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)))) (-15 -2767 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))))) |%noBranch|)) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -663))
-((-2767 (*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))))) (-3801 (*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))))) (-3801 (*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 -3801 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3801 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)))) (-15 -2767 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))))) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2077 (($ $) NIL (|has| |#1| (-368)))) (-1754 (($ $ $) 28 (|has| |#1| (-368)))) (-1669 (($ $ (-777)) 31 (|has| |#1| (-368)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4022 (($ $ $) NIL (|has| |#1| (-368)))) (-2838 (($ $ $) NIL (|has| |#1| (-368)))) (-4112 (($ $ $) NIL (|has| |#1| (-368)))) (-3518 (($ $ $) NIL (|has| |#1| (-368)))) (-2964 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-4382 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3879 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458)))) (-4346 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) NIL)) (-2378 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-3382 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-2575 (((-777) $) NIL)) (-4001 (($ $ $) NIL (|has| |#1| (-368)))) (-4118 (($ $ $) NIL (|has| |#1| (-368)))) (-2775 (($ $ $) NIL (|has| |#1| (-368)))) (-2834 (($ $ $) NIL (|has| |#1| (-368)))) (-3125 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2134 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2364 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1941 ((|#1| $ |#1|) 24)) (-4369 (($ $ $) 33 (|has| |#1| (-368)))) (-2130 (((-777) $) NIL)) (-1848 ((|#1| $) NIL (|has| |#1| (-458)))) (-3799 (((-868) $) 20) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-777)) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-3489 ((|#1| $ |#1| |#1|) 23)) (-3979 (($ $) NIL)) (-1861 (($) 21 T CONST)) (-1875 (($) 8 T CONST)) (-2942 (($) NIL)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#1|) NIL) (($ |#1| $) NIL)))
+((-2194 (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))) 85 (|has| |#1| (-27)))) (-3804 (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))) 84 (|has| |#1| (-27))) (((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 19)))
+(((-663 |#1| |#2|) (-10 -7 (-15 -3804 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3804 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)))) (-15 -2194 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))))) |%noBranch|)) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -663))
+((-2194 (*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))))) (-3804 (*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))))) (-3804 (*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 -3804 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -3804 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|)))) (-15 -2194 ((-650 (-659 (-413 |#2|))) (-659 (-413 |#2|))))) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3733 (($ $) NIL (|has| |#1| (-368)))) (-3658 (($ $ $) 28 (|has| |#1| (-368)))) (-4021 (($ $ (-777)) 31 (|has| |#1| (-368)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4091 (($ $ $) NIL (|has| |#1| (-368)))) (-1508 (($ $ $) NIL (|has| |#1| (-368)))) (-3803 (($ $ $) NIL (|has| |#1| (-368)))) (-3022 (($ $ $) NIL (|has| |#1| (-368)))) (-1333 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3301 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2109 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458)))) (-4139 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) NIL)) (-2639 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-4168 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-3970 (((-777) $) NIL)) (-3904 (($ $ $) NIL (|has| |#1| (-368)))) (-2687 (($ $ $) NIL (|has| |#1| (-368)))) (-2271 (($ $ $) NIL (|has| |#1| (-368)))) (-1469 (($ $ $) NIL (|has| |#1| (-368)))) (-3601 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3118 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3684 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1942 ((|#1| $ |#1|) 24)) (-4361 (($ $ $) 33 (|has| |#1| (-368)))) (-3079 (((-777) $) NIL)) (-2077 ((|#1| $) NIL (|has| |#1| (-458)))) (-3802 (((-868) $) 20) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-777)) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3492 ((|#1| $ |#1| |#1|) 23)) (-1840 (($ $) NIL)) (-1862 (($) 21 T CONST)) (-1876 (($) 8 T CONST)) (-2945 (($) NIL)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)
-((-1754 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 65)) (-1669 ((|#2| |#2| (-777) (-1 |#1| |#1|)) 45)) (-4369 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 67)))
-(((-665 |#1| |#2|) (-10 -7 (-15 -1754 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1669 (|#2| |#2| (-777) (-1 |#1| |#1|))) (-15 -4369 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-368) (-662 |#1|)) (T -665))
-((-4369 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2)) (-4 *2 (-662 *4)))) (-1669 (*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)))) (-1754 (*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 -1754 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -1669 (|#2| |#2| (-777) (-1 |#1| |#1|))) (-15 -4369 (|#2| |#2| |#2| (-1 |#1| |#1|))))
-((-4420 (($ $ $) 9)))
-(((-666 |#1|) (-10 -8 (-15 -4420 (|#1| |#1| |#1|))) (-667)) (T -666))
-NIL
-(-10 -8 (-15 -4420 (|#1| |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-2579 (($ $) 10)) (-4420 (($ $ $) 8)) (-3022 (((-112) $ $) 6)) (-4407 (($ $ $) 9)))
+((-3658 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 65)) (-4021 ((|#2| |#2| (-777) (-1 |#1| |#1|)) 45)) (-4361 ((|#2| |#2| |#2| (-1 |#1| |#1|)) 67)))
+(((-665 |#1| |#2|) (-10 -7 (-15 -3658 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -4021 (|#2| |#2| (-777) (-1 |#1| |#1|))) (-15 -4361 (|#2| |#2| |#2| (-1 |#1| |#1|)))) (-368) (-662 |#1|)) (T -665))
+((-4361 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-1 *4 *4)) (-4 *4 (-368)) (-5 *1 (-665 *4 *2)) (-4 *2 (-662 *4)))) (-4021 (*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)))) (-3658 (*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 -3658 (|#2| |#2| |#2| (-1 |#1| |#1|))) (-15 -4021 (|#2| |#2| (-777) (-1 |#1| |#1|))) (-15 -4361 (|#2| |#2| |#2| (-1 |#1| |#1|))))
+((-4423 (($ $ $) 9)))
+(((-666 |#1|) (-10 -8 (-15 -4423 (|#1| |#1| |#1|))) (-667)) (T -666))
+NIL
+(-10 -8 (-15 -4423 (|#1| |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-2580 (($ $) 10)) (-4423 (($ $ $) 8)) (-3025 (((-112) $ $) 6)) (-4410 (($ $ $) 9)))
(((-667) (-141)) (T -667))
-((-2579 (*1 *1 *1) (-4 *1 (-667))) (-4407 (*1 *1 *1 *1) (-4 *1 (-667))) (-4420 (*1 *1 *1 *1) (-4 *1 (-667))))
-(-13 (-102) (-10 -8 (-15 -2579 ($ $)) (-15 -4407 ($ $ $)) (-15 -4420 ($ $ $))))
+((-2580 (*1 *1 *1) (-4 *1 (-667))) (-4410 (*1 *1 *1 *1) (-4 *1 (-667))) (-4423 (*1 *1 *1 *1) (-4 *1 (-667))))
+(-13 (-102) (-10 -8 (-15 -2580 ($ $)) (-15 -4410 ($ $ $)) (-15 -4423 ($ $ $))))
(((-102) . T))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 15)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4399 ((|#1| $) 23)) (-3466 (($ $ $) NIL (|has| |#1| (-797)))) (-2800 (($ $ $) NIL (|has| |#1| (-797)))) (-1988 (((-1168) $) 48)) (-3577 (((-1129) $) NIL)) (-4413 ((|#3| $) 24)) (-3799 (((-868) $) 43)) (-2335 (((-112) $ $) 22)) (-1861 (($) 10 T CONST)) (-3072 (((-112) $ $) NIL (|has| |#1| (-797)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-797)))) (-3022 (((-112) $ $) 20)) (-3062 (((-112) $ $) NIL (|has| |#1| (-797)))) (-3042 (((-112) $ $) 26 (|has| |#1| (-797)))) (-3122 (($ $ |#3|) 36) (($ |#1| |#3|) 37)) (-3111 (($ $) 17) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3122 ($ $ |#3|)) (-15 -3122 ($ |#1| |#3|)) (-15 -4399 (|#1| $)) (-15 -4413 (|#3| $)))) (-723 |#2|) (-174) (|SubsetCategory| (-732) |#2|)) (T -668))
-((-3122 (*1 *1 *1 *2) (-12 (-4 *4 (-174)) (-5 *1 (-668 *3 *4 *2)) (-4 *3 (-723 *4)) (-4 *2 (|SubsetCategory| (-732) *4)))) (-3122 (*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 -3122 ($ $ |#3|)) (-15 -3122 ($ |#1| |#3|)) (-15 -4399 (|#1| $)) (-15 -4413 (|#3| $))))
-((-1953 (((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|)) 33)))
-(((-669 |#1|) (-10 -7 (-15 -1953 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|)))) (-916)) (T -669))
-((-1953 (*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 -1953 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3179 (((-650 |#1|) $) 84)) (-4065 (($ $ (-777)) 94)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-1745 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 50)) (-4380 (((-3 (-678 |#1|) "failed") $) NIL)) (-3216 (((-678 |#1|) $) NIL)) (-1956 (($ $) 93)) (-3173 (((-777) $) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3384 (($ (-678 |#1|) |#2|) 70)) (-3264 (($ $) 89)) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-1761 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 49)) (-2492 (((-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1915 (((-678 |#1|) $) NIL)) (-1927 ((|#2| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1770 (($ $ |#1| $) 32) (($ $ (-650 |#1|) (-650 $)) 34)) (-2130 (((-777) $) 91)) (-3811 (($ $ $) 20) (($ (-678 |#1|) (-678 |#1|)) 79) (($ (-678 |#1|) $) 77) (($ $ (-678 |#1|)) 78)) (-3799 (((-868) $) NIL) (($ |#1|) 76) (((-1292 |#1| |#2|) $) 60) (((-1301 |#1| |#2|) $) 43) (($ (-678 |#1|)) 27)) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ (-678 |#1|)) NIL)) (-1452 ((|#2| (-1301 |#1| |#2|) $) 45)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 23 T CONST)) (-4141 (((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $) NIL)) (-4343 (((-3 $ "failed") (-1292 |#1| |#2|)) 62)) (-1611 (($ (-678 |#1|)) 14)) (-3022 (((-112) $ $) 46)) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $) 68) (($ $ $) NIL)) (-3101 (($ $ $) 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 -4343 ((-3 $ "failed") (-1292 |#1| |#2|))) (-15 -3811 ($ (-678 |#1|) (-678 |#1|))) (-15 -3811 ($ (-678 |#1|) $)) (-15 -3811 ($ $ (-678 |#1|))))) (-856) (-174)) (T -670))
-((-4343 (*1 *1 *2) (|partial| -12 (-5 *2 (-1292 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *1 (-670 *3 *4)))) (-3811 (*1 *1 *2 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))) (-3811 (*1 *1 *2 *1) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))) (-3811 (*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 -4343 ((-3 $ "failed") (-1292 |#1| |#2|))) (-15 -3811 ($ (-678 |#1|) (-678 |#1|))) (-15 -3811 ($ (-678 |#1|) $)) (-15 -3811 ($ $ (-678 |#1|)))))
-((-4374 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 61)) (-4004 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-3753 (($ (-1 (-112) |#2|) $) 29)) (-2844 (($ $) 67)) (-3110 (($ $) 76)) (-3249 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 43)) (-3624 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 62) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 64)) (-4027 (((-570) |#2| $ (-570)) 73) (((-570) |#2| $) NIL) (((-570) (-1 (-112) |#2|) $) 56)) (-4291 (($ (-777) |#2|) 65)) (-2168 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 31)) (-2024 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-1356 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 66)) (-3420 (($ |#2|) 15)) (-1385 (($ $ $ (-570)) 42) (($ |#2| $ (-570)) 40)) (-1790 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 53)) (-3459 (($ $ (-1244 (-570))) 51) (($ $ (-570)) 44)) (-2906 (($ $ $ (-570)) 72)) (-3951 (($ $) 70)) (-3042 (((-112) $ $) 78)))
-(((-671 |#1| |#2|) (-10 -8 (-15 -3420 (|#1| |#2|)) (-15 -3459 (|#1| |#1| (-570))) (-15 -3459 (|#1| |#1| (-1244 (-570)))) (-15 -3249 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1385 (|#1| |#2| |#1| (-570))) (-15 -1385 (|#1| |#1| |#1| (-570))) (-15 -2168 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3753 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3249 (|#1| |#2| |#1|)) (-15 -3110 (|#1| |#1|)) (-15 -2168 (|#1| |#1| |#1|)) (-15 -2024 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4374 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4027 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4027 ((-570) |#2| |#1|)) (-15 -4027 ((-570) |#2| |#1| (-570))) (-15 -2024 (|#1| |#1| |#1|)) (-15 -4374 ((-112) |#1|)) (-15 -2906 (|#1| |#1| |#1| (-570))) (-15 -2844 (|#1| |#1|)) (-15 -4004 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4004 (|#1| |#1|)) (-15 -3042 ((-112) |#1| |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1790 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4291 (|#1| (-777) |#2|)) (-15 -1356 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3951 (|#1| |#1|))) (-672 |#2|) (-1227)) (T -671))
-NIL
-(-10 -8 (-15 -3420 (|#1| |#2|)) (-15 -3459 (|#1| |#1| (-570))) (-15 -3459 (|#1| |#1| (-1244 (-570)))) (-15 -3249 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -1385 (|#1| |#2| |#1| (-570))) (-15 -1385 (|#1| |#1| |#1| (-570))) (-15 -2168 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3753 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3249 (|#1| |#2| |#1|)) (-15 -3110 (|#1| |#1|)) (-15 -2168 (|#1| |#1| |#1|)) (-15 -2024 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4374 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4027 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4027 ((-570) |#2| |#1|)) (-15 -4027 ((-570) |#2| |#1| (-570))) (-15 -2024 (|#1| |#1| |#1|)) (-15 -4374 ((-112) |#1|)) (-15 -2906 (|#1| |#1| |#1| (-570))) (-15 -2844 (|#1| |#1|)) (-15 -4004 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -4004 (|#1| |#1|)) (-15 -3042 ((-112) |#1| |#1|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3624 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -1790 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4291 (|#1| (-777) |#2|)) (-15 -1356 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3951 (|#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-2698 ((|#1| $) 66)) (-1602 (($ $) 68)) (-3851 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) 53 (|has| $ (-6 -4450)))) (-4374 (((-112) $) 143 (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) 137)) (-4004 (($ $) 147 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450)))) (($ (-1 (-112) |#1| |#1|) $) 146 (|has| $ (-6 -4450)))) (-3393 (($ $) 142 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) 136)) (-4302 (((-112) $ (-777)) 8)) (-2988 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3986 (($ $ $) 57 (|has| $ (-6 -4450)))) (-2363 ((|#1| $ |#1|) 55 (|has| $ (-6 -4450)))) (-2869 ((|#1| $ |#1|) 59 (|has| $ (-6 -4450)))) (-3932 ((|#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)))) (-2162 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-3753 (($ (-1 (-112) |#1|) $) 130)) (-1431 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4449)))) (-2686 ((|#1| $) 67)) (-1705 (($) 7 T CONST)) (-2844 (($ $) 145 (|has| $ (-6 -4450)))) (-2377 (($ $) 135)) (-3555 (($ $) 74) (($ $ (-777)) 72)) (-3110 (($ $) 132 (|has| |#1| (-1109)))) (-3579 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ |#1| $) 131 (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) 126)) (-1741 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4449))) (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3624 ((|#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))))) (-1517 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 88)) (-3414 (((-112) $) 84)) (-4027 (((-570) |#1| $ (-570)) 140 (|has| |#1| (-1109))) (((-570) |#1| $) 139 (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) 138)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 51)) (-2439 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4291 (($ (-777) |#1|) 109)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 96 (|has| (-570) (-856)))) (-3466 (($ $ $) 148 (|has| |#1| (-856)))) (-2168 (($ $ $) 133 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 129)) (-2024 (($ $ $) 141 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 134)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 95 (|has| (-570) (-856)))) (-2800 (($ $ $) 149 (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3420 (($ |#1|) 123)) (-3231 (((-112) $ (-777)) 10)) (-2403 (((-650 |#1|) $) 46)) (-2606 (((-112) $) 50)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1769 ((|#1| $) 71) (($ $ (-777)) 69)) (-1385 (($ $ $ (-570)) 128) (($ |#1| $ (-570)) 127)) (-4290 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-1805 (((-650 (-570)) $) 93)) (-3939 (((-112) (-570) $) 92)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 77) (($ $ (-777)) 75)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-2147 (($ $ |#1|) 97 (|has| $ (-6 -4450)))) (-3607 (((-112) $) 85)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 91)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-2738 (((-570) $ $) 45)) (-3459 (($ $ (-1244 (-570))) 125) (($ $ (-570)) 124)) (-4326 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-3817 (((-112) $) 47)) (-4366 (($ $) 63)) (-4063 (($ $) 60 (|has| $ (-6 -4450)))) (-2264 (((-777) $) 64)) (-1839 (($ $) 65)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2906 (($ $ $ (-570)) 144 (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 108)) (-3276 (($ $ $) 62) (($ $ |#1|) 61)) (-2584 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 52)) (-3746 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) 151 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 152 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3062 (((-112) $ $) 150 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 153 (|has| |#1| (-856)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 15)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4402 ((|#1| $) 23)) (-3469 (($ $ $) NIL (|has| |#1| (-797)))) (-2472 (($ $ $) NIL (|has| |#1| (-797)))) (-3989 (((-1168) $) 48)) (-3580 (((-1129) $) NIL)) (-4416 ((|#3| $) 24)) (-3802 (((-868) $) 43)) (-3359 (((-112) $ $) 22)) (-1862 (($) 10 T CONST)) (-3075 (((-112) $ $) NIL (|has| |#1| (-797)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-797)))) (-3025 (((-112) $ $) 20)) (-3065 (((-112) $ $) NIL (|has| |#1| (-797)))) (-3045 (((-112) $ $) 26 (|has| |#1| (-797)))) (-3125 (($ $ |#3|) 36) (($ |#1| |#3|) 37)) (-3114 (($ $) 17) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3125 ($ $ |#3|)) (-15 -3125 ($ |#1| |#3|)) (-15 -4402 (|#1| $)) (-15 -4416 (|#3| $)))) (-723 |#2|) (-174) (|SubsetCategory| (-732) |#2|)) (T -668))
+((-3125 (*1 *1 *1 *2) (-12 (-4 *4 (-174)) (-5 *1 (-668 *3 *4 *2)) (-4 *3 (-723 *4)) (-4 *2 (|SubsetCategory| (-732) *4)))) (-3125 (*1 *1 *2 *3) (-12 (-4 *4 (-174)) (-5 *1 (-668 *2 *4 *3)) (-4 *2 (-723 *4)) (-4 *3 (|SubsetCategory| (-732) *4)))) (-4402 (*1 *2 *1) (-12 (-4 *3 (-174)) (-4 *2 (-723 *3)) (-5 *1 (-668 *2 *3 *4)) (-4 *4 (|SubsetCategory| (-732) *3)))) (-4416 (*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 -3125 ($ $ |#3|)) (-15 -3125 ($ |#1| |#3|)) (-15 -4402 (|#1| $)) (-15 -4416 (|#3| $))))
+((-1787 (((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|)) 33)))
+(((-669 |#1|) (-10 -7 (-15 -1787 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|)))) (-916)) (T -669))
+((-1787 (*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 -1787 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3182 (((-650 |#1|) $) 84)) (-3327 (($ $ (-777)) 94)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-3571 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 50)) (-4383 (((-3 (-678 |#1|) "failed") $) NIL)) (-3220 (((-678 |#1|) $) NIL)) (-1954 (($ $) 93)) (-2867 (((-777) $) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3387 (($ (-678 |#1|) |#2|) 70)) (-2523 (($ $) 89)) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-3712 (((-1301 |#1| |#2|) (-1301 |#1| |#2|) $) 49)) (-2598 (((-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1914 (((-678 |#1|) $) NIL)) (-1928 ((|#2| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1771 (($ $ |#1| $) 32) (($ $ (-650 |#1|) (-650 $)) 34)) (-3079 (((-777) $) 91)) (-3814 (($ $ $) 20) (($ (-678 |#1|) (-678 |#1|)) 79) (($ (-678 |#1|) $) 77) (($ $ (-678 |#1|)) 78)) (-3802 (((-868) $) NIL) (($ |#1|) 76) (((-1292 |#1| |#2|) $) 60) (((-1301 |#1| |#2|) $) 43) (($ (-678 |#1|)) 27)) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ (-678 |#1|)) NIL)) (-1453 ((|#2| (-1301 |#1| |#2|) $) 45)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 23 T CONST)) (-2884 (((-650 (-2 (|:| |k| (-678 |#1|)) (|:| |c| |#2|))) $) NIL)) (-4106 (((-3 $ "failed") (-1292 |#1| |#2|)) 62)) (-1581 (($ (-678 |#1|)) 14)) (-3025 (((-112) $ $) 46)) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $) 68) (($ $ $) NIL)) (-3104 (($ $ $) 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 -4106 ((-3 $ "failed") (-1292 |#1| |#2|))) (-15 -3814 ($ (-678 |#1|) (-678 |#1|))) (-15 -3814 ($ (-678 |#1|) $)) (-15 -3814 ($ $ (-678 |#1|))))) (-856) (-174)) (T -670))
+((-4106 (*1 *1 *2) (|partial| -12 (-5 *2 (-1292 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *1 (-670 *3 *4)))) (-3814 (*1 *1 *2 *2) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))) (-3814 (*1 *1 *2 *1) (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-5 *1 (-670 *3 *4)) (-4 *4 (-174)))) (-3814 (*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 -4106 ((-3 $ "failed") (-1292 |#1| |#2|))) (-15 -3814 ($ (-678 |#1|) (-678 |#1|))) (-15 -3814 ($ (-678 |#1|) $)) (-15 -3814 ($ $ (-678 |#1|)))))
+((-4414 (((-112) $) NIL) (((-112) (-1 (-112) |#2| |#2|) $) 61)) (-3936 (($ $) NIL) (($ (-1 (-112) |#2| |#2|) $) 12)) (-3353 (($ (-1 (-112) |#2|) $) 29)) (-1582 (($ $) 67)) (-3476 (($ $) 76)) (-2385 (($ |#2| $) NIL) (($ (-1 (-112) |#2|) $) 43)) (-3627 ((|#2| (-1 |#2| |#2| |#2|) $) 21) ((|#2| (-1 |#2| |#2| |#2|) $ |#2|) 62) ((|#2| (-1 |#2| |#2| |#2|) $ |#2| |#2|) 64)) (-4029 (((-570) |#2| $ (-570)) 73) (((-570) |#2| $) NIL) (((-570) (-1 (-112) |#2|) $) 56)) (-4294 (($ (-777) |#2|) 65)) (-2270 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 31)) (-3183 (($ $ $) NIL) (($ (-1 (-112) |#2| |#2|) $ $) 24)) (-1357 (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) 66)) (-3423 (($ |#2|) 15)) (-3502 (($ $ $ (-570)) 42) (($ |#2| $ (-570)) 40)) (-2770 (((-3 |#2| "failed") (-1 (-112) |#2|) $) 53)) (-3651 (($ $ (-1244 (-570))) 51) (($ $ (-570)) 44)) (-2087 (($ $ $ (-570)) 72)) (-3954 (($ $) 70)) (-3045 (((-112) $ $) 78)))
+(((-671 |#1| |#2|) (-10 -8 (-15 -3423 (|#1| |#2|)) (-15 -3651 (|#1| |#1| (-570))) (-15 -3651 (|#1| |#1| (-1244 (-570)))) (-15 -2385 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3502 (|#1| |#2| |#1| (-570))) (-15 -3502 (|#1| |#1| |#1| (-570))) (-15 -2270 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3353 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2385 (|#1| |#2| |#1|)) (-15 -3476 (|#1| |#1|)) (-15 -2270 (|#1| |#1| |#1|)) (-15 -3183 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4414 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4029 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4029 ((-570) |#2| |#1|)) (-15 -4029 ((-570) |#2| |#1| (-570))) (-15 -3183 (|#1| |#1| |#1|)) (-15 -4414 ((-112) |#1|)) (-15 -2087 (|#1| |#1| |#1| (-570))) (-15 -1582 (|#1| |#1|)) (-15 -3936 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3936 (|#1| |#1|)) (-15 -3045 ((-112) |#1| |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2770 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4294 (|#1| (-777) |#2|)) (-15 -1357 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3954 (|#1| |#1|))) (-672 |#2|) (-1227)) (T -671))
+NIL
+(-10 -8 (-15 -3423 (|#1| |#2|)) (-15 -3651 (|#1| |#1| (-570))) (-15 -3651 (|#1| |#1| (-1244 (-570)))) (-15 -2385 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -3502 (|#1| |#2| |#1| (-570))) (-15 -3502 (|#1| |#1| |#1| (-570))) (-15 -2270 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -3353 (|#1| (-1 (-112) |#2|) |#1|)) (-15 -2385 (|#1| |#2| |#1|)) (-15 -3476 (|#1| |#1|)) (-15 -2270 (|#1| |#1| |#1|)) (-15 -3183 (|#1| (-1 (-112) |#2| |#2|) |#1| |#1|)) (-15 -4414 ((-112) (-1 (-112) |#2| |#2|) |#1|)) (-15 -4029 ((-570) (-1 (-112) |#2|) |#1|)) (-15 -4029 ((-570) |#2| |#1|)) (-15 -4029 ((-570) |#2| |#1| (-570))) (-15 -3183 (|#1| |#1| |#1|)) (-15 -4414 ((-112) |#1|)) (-15 -2087 (|#1| |#1| |#1| (-570))) (-15 -1582 (|#1| |#1|)) (-15 -3936 (|#1| (-1 (-112) |#2| |#2|) |#1|)) (-15 -3936 (|#1| |#1|)) (-15 -3045 ((-112) |#1| |#1|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2| |#2|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1| |#2|)) (-15 -3627 (|#2| (-1 |#2| |#2| |#2|) |#1|)) (-15 -2770 ((-3 |#2| "failed") (-1 (-112) |#2|) |#1|)) (-15 -4294 (|#1| (-777) |#2|)) (-15 -1357 (|#1| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3954 (|#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-2701 ((|#1| $) 66)) (-1603 (($ $) 68)) (-3040 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) 53 (|has| $ (-6 -4453)))) (-4414 (((-112) $) 143 (|has| |#1| (-856))) (((-112) (-1 (-112) |#1| |#1|) $) 137)) (-3936 (($ $) 147 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4453)))) (($ (-1 (-112) |#1| |#1|) $) 146 (|has| $ (-6 -4453)))) (-3396 (($ $) 142 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $) 136)) (-1932 (((-112) $ (-777)) 8)) (-1647 ((|#1| $ |#1|) 40 (|has| $ (-6 -4453)))) (-1917 (($ $ $) 57 (|has| $ (-6 -4453)))) (-3671 ((|#1| $ |#1|) 55 (|has| $ (-6 -4453)))) (-1854 ((|#1| $ |#1|) 59 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4453))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4453))) (($ $ "rest" $) 56 (|has| $ (-6 -4453))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 118 (|has| $ (-6 -4453))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 42 (|has| $ (-6 -4453)))) (-3353 (($ (-1 (-112) |#1|) $) 130)) (-1434 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4452)))) (-2688 ((|#1| $) 67)) (-3195 (($) 7 T CONST)) (-1582 (($ $) 145 (|has| $ (-6 -4453)))) (-2380 (($ $) 135)) (-3558 (($ $) 74) (($ $ (-777)) 72)) (-3476 (($ $) 132 (|has| |#1| (-1109)))) (-3582 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ |#1| $) 131 (|has| |#1| (-1109))) (($ (-1 (-112) |#1|) $) 126)) (-1742 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4452))) (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1518 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 88)) (-3242 (((-112) $) 84)) (-4029 (((-570) |#1| $ (-570)) 140 (|has| |#1| (-1109))) (((-570) |#1| $) 139 (|has| |#1| (-1109))) (((-570) (-1 (-112) |#1|) $) 138)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 51)) (-2045 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4294 (($ (-777) |#1|) 109)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 96 (|has| (-570) (-856)))) (-3469 (($ $ $) 148 (|has| |#1| (-856)))) (-2270 (($ $ $) 133 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 129)) (-3183 (($ $ $) 141 (|has| |#1| (-856))) (($ (-1 (-112) |#1| |#1|) $ $) 134)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 95 (|has| (-570) (-856)))) (-2472 (($ $ $) 149 (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3423 (($ |#1|) 123)) (-2193 (((-112) $ (-777)) 10)) (-2404 (((-650 |#1|) $) 46)) (-4244 (((-112) $) 50)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1770 ((|#1| $) 71) (($ $ (-777)) 69)) (-3502 (($ $ $ (-570)) 128) (($ |#1| $ (-570)) 127)) (-4293 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2903 (((-650 (-570)) $) 93)) (-1358 (((-112) (-570) $) 92)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 77) (($ $ (-777)) 75)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-2061 (($ $ |#1|) 97 (|has| $ (-6 -4453)))) (-2568 (((-112) $) 85)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 91)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-3108 (((-570) $ $) 45)) (-3651 (($ $ (-1244 (-570))) 125) (($ $ (-570)) 124)) (-4330 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-2759 (((-112) $) 47)) (-4332 (($ $) 63)) (-3305 (($ $) 60 (|has| $ (-6 -4453)))) (-3853 (((-777) $) 64)) (-1991 (($ $) 65)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2087 (($ $ $ (-570)) 144 (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 108)) (-1319 (($ $ $) 62) (($ $ |#1|) 61)) (-2585 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 52)) (-3290 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) 151 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 152 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3065 (((-112) $ $) 150 (|has| |#1| (-856)))) (-3045 (((-112) $ $) 153 (|has| |#1| (-856)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-672 |#1|) (-141) (-1227)) (T -672))
-((-3420 (*1 *1 *2) (-12 (-4 *1 (-672 *2)) (-4 *2 (-1227)))))
-(-13 (-1158 |t#1|) (-378 |t#1|) (-286 |t#1|) (-10 -8 (-15 -3420 ($ |t#1|))))
-(((-34) . T) ((-102) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2892 (|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) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1158 |#1|) . T) ((-1227) . T) ((-1265 |#1|) . T))
-((-3476 (((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|))) 22) (((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)) 14)) (-4006 (((-777) (-695 |#1|) (-1277 |#1|)) 30)) (-4400 (((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|)) 24)) (-3629 (((-112) (-695 |#1|) (-1277 |#1|)) 27)))
-(((-673 |#1|) (-10 -7 (-15 -3476 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))) (-15 -3476 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|))) (-15 -3476 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|)))) (-15 -3476 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|)))) (-15 -4400 ((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|))) (-15 -3629 ((-112) (-695 |#1|) (-1277 |#1|))) (-15 -4006 ((-777) (-695 |#1|) (-1277 |#1|)))) (-368)) (T -673))
-((-4006 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-368)) (-5 *2 (-777)) (-5 *1 (-673 *5)))) (-3629 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-368)) (-5 *2 (-112)) (-5 *1 (-673 *5)))) (-4400 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1277 *4)) (-5 *3 (-695 *4)) (-4 *4 (-368)) (-5 *1 (-673 *4)))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -1972 (-650 (-1277 *5)))))) (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5))))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -1972 (-650 (-1277 *5)))))) (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5))))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -1972 (-650 (-1277 *5))))) (-5 *1 (-673 *5)) (-5 *4 (-1277 *5)))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -1972 (-650 (-1277 *5))))) (-5 *1 (-673 *5)) (-5 *4 (-1277 *5)))))
-(-10 -7 (-15 -3476 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))) (-15 -3476 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|))) (-15 -3476 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|)))) (-15 -3476 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|)))) (-15 -4400 ((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|))) (-15 -3629 ((-112) (-695 |#1|) (-1277 |#1|))) (-15 -4006 ((-777) (-695 |#1|) (-1277 |#1|))))
-((-3476 (((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|)))) |#4| (-650 |#3|)) 66) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|))) |#4| |#3|) 60)) (-4006 (((-777) |#4| |#3|) 18)) (-4400 (((-3 |#3| "failed") |#4| |#3|) 21)) (-3629 (((-112) |#4| |#3|) 14)))
-(((-674 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3476 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|))) |#4| |#3|)) (-15 -3476 ((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|)))) |#4| (-650 |#3|))) (-15 -4400 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3629 ((-112) |#4| |#3|)) (-15 -4006 ((-777) |#4| |#3|))) (-368) (-13 (-378 |#1|) (-10 -7 (-6 -4450))) (-13 (-378 |#1|) (-10 -7 (-6 -4450))) (-693 |#1| |#2| |#3|)) (T -674))
-((-4006 (*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)))) (-3629 (*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)))) (-4400 (*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)))) (-3476 (*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")) (|:| -1972 (-650 *7))))) (-5 *1 (-674 *5 *6 *7 *3)) (-5 *4 (-650 *7)) (-4 *3 (-693 *5 *6 *7)))) (-3476 (*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")) (|:| -1972 (-650 *4)))) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
-(-10 -7 (-15 -3476 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|))) |#4| |#3|)) (-15 -3476 ((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|)))) |#4| (-650 |#3|))) (-15 -4400 ((-3 |#3| "failed") |#4| |#3|)) (-15 -3629 ((-112) |#4| |#3|)) (-15 -4006 ((-777) |#4| |#3|)))
-((-3314 (((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -1972 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|)) 51)))
-(((-675 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3314 ((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -1972 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|)))) (-562) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -675))
-((-3314 (*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")) (|:| -1972 (-650 (-1277 (-413 *8)))))) (-5 *1 (-675 *5 *6 *7 *8)))))
-(-10 -7 (-15 -3314 ((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -1972 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3128 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-3207 ((|#2| $) NIL)) (-1735 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4299 (((-1277 (-695 |#2|))) NIL) (((-1277 (-695 |#2|)) (-1277 $)) NIL)) (-4253 (((-112) $) NIL)) (-4221 (((-1277 $)) 42)) (-4302 (((-112) $ (-777)) NIL)) (-2741 (($ |#2|) NIL)) (-1705 (($) NIL T CONST)) (-4089 (($ $) NIL (|has| |#2| (-311)))) (-2219 (((-242 |#1| |#2|) $ (-570)) NIL)) (-2983 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL (|has| |#2| (-562)))) (-2476 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-3919 (((-695 |#2|)) NIL) (((-695 |#2|) (-1277 $)) NIL)) (-3677 ((|#2| $) NIL)) (-1666 (((-695 |#2|) $) NIL) (((-695 |#2|) $ (-1277 $)) NIL)) (-2054 (((-3 $ "failed") $) NIL (|has| |#2| (-562)))) (-4404 (((-1182 (-959 |#2|))) NIL (|has| |#2| (-368)))) (-2705 (($ $ (-928)) NIL)) (-3637 ((|#2| $) NIL)) (-2036 (((-1182 |#2|) $) NIL (|has| |#2| (-562)))) (-1684 ((|#2|) NIL) ((|#2| (-1277 $)) NIL)) (-3595 (((-1182 |#2|) $) NIL)) (-1763 (((-112)) NIL)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-3243 (($ (-1277 |#2|)) NIL) (($ (-1277 |#2|) (-1277 $)) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-4006 (((-777) $) NIL (|has| |#2| (-562))) (((-928)) 43)) (-3820 ((|#2| $ (-570) (-570)) NIL)) (-4034 (((-112)) NIL)) (-2604 (($ $ (-928)) NIL)) (-3627 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4346 (((-112) $) NIL)) (-2206 (((-777) $) NIL (|has| |#2| (-562)))) (-2123 (((-650 (-242 |#1| |#2|)) $) NIL (|has| |#2| (-562)))) (-3316 (((-777) $) NIL)) (-2680 (((-112)) NIL)) (-3328 (((-777) $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-3689 ((|#2| $) NIL (|has| |#2| (-6 (-4451 "*"))))) (-4133 (((-570) $) NIL)) (-2877 (((-570) $) NIL)) (-2752 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1552 (((-570) $) NIL)) (-1732 (((-570) $) NIL)) (-2571 (($ (-650 (-650 |#2|))) NIL)) (-1502 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3575 (((-650 (-650 |#2|)) $) NIL)) (-1950 (((-112)) NIL)) (-1907 (((-112)) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-2615 (((-3 (-2 (|:| |particular| $) (|:| -1972 (-650 $))) "failed")) NIL (|has| |#2| (-562)))) (-3089 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-3267 (((-695 |#2|)) NIL) (((-695 |#2|) (-1277 $)) NIL)) (-2339 ((|#2| $) NIL)) (-1738 (((-695 |#2|) $) NIL) (((-695 |#2|) $ (-1277 $)) NIL)) (-3259 (((-3 $ "failed") $) NIL (|has| |#2| (-562)))) (-3454 (((-1182 (-959 |#2|))) NIL (|has| |#2| (-368)))) (-1575 (($ $ (-928)) NIL)) (-3680 ((|#2| $) NIL)) (-2018 (((-1182 |#2|) $) NIL (|has| |#2| (-562)))) (-2374 ((|#2|) NIL) ((|#2| (-1277 $)) NIL)) (-1542 (((-1182 |#2|) $) NIL)) (-1830 (((-112)) NIL)) (-1988 (((-1168) $) NIL)) (-4013 (((-112)) NIL)) (-3196 (((-112)) NIL)) (-2601 (((-112)) NIL)) (-3490 (((-3 $ "failed") $) NIL (|has| |#2| (-368)))) (-3577 (((-1129) $) NIL)) (-3832 (((-112)) NIL)) (-2547 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-3642 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ (-570) (-570) |#2|) NIL) ((|#2| $ (-570) (-570)) 28) ((|#2| $ (-570)) NIL)) (-3547 (($ $ (-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)))) (-1789 ((|#2| $) NIL)) (-2173 (($ (-650 |#2|)) NIL)) (-3285 (((-112) $) NIL)) (-2748 (((-242 |#1| |#2|) $) NIL)) (-2137 ((|#2| $) NIL (|has| |#2| (-6 (-4451 "*"))))) (-3584 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3951 (($ $) NIL)) (-3424 (((-695 |#2|) (-1277 $)) NIL) (((-1277 |#2|) $) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $ (-1277 $)) 31)) (-1425 (($ (-1277 |#2|)) NIL) (((-1277 |#2|) $) NIL)) (-1987 (((-650 (-959 |#2|))) NIL) (((-650 (-959 |#2|)) (-1277 $)) NIL)) (-4391 (($ $ $) NIL)) (-3795 (((-112)) NIL)) (-1508 (((-242 |#1| |#2|) $ (-570)) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (((-695 |#2|) $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) 41)) (-3871 (((-650 (-1277 |#2|))) NIL (|has| |#2| (-562)))) (-3764 (($ $ $ $) NIL)) (-2433 (((-112)) NIL)) (-3489 (($ (-695 |#2|) $) NIL)) (-4371 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2841 (((-112) $) NIL)) (-3858 (($ $ $) NIL)) (-2826 (((-112)) NIL)) (-4363 (((-112)) NIL)) (-1764 (((-112)) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-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)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-3423 (*1 *1 *2) (-12 (-4 *1 (-672 *2)) (-4 *2 (-1227)))))
+(-13 (-1158 |t#1|) (-378 |t#1|) (-286 |t#1|) (-10 -8 (-15 -3423 ($ |t#1|))))
+(((-34) . T) ((-102) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2895 (|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) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1158 |#1|) . T) ((-1227) . T) ((-1265 |#1|) . T))
+((-2627 (((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|))) 22) (((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|))) 21) (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|)) 18) (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)) 14)) (-4009 (((-777) (-695 |#1|) (-1277 |#1|)) 30)) (-3448 (((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|)) 24)) (-1462 (((-112) (-695 |#1|) (-1277 |#1|)) 27)))
+(((-673 |#1|) (-10 -7 (-15 -2627 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))) (-15 -2627 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|))) (-15 -2627 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|)))) (-15 -2627 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|)))) (-15 -3448 ((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|))) (-15 -1462 ((-112) (-695 |#1|) (-1277 |#1|))) (-15 -4009 ((-777) (-695 |#1|) (-1277 |#1|)))) (-368)) (T -673))
+((-4009 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-368)) (-5 *2 (-777)) (-5 *1 (-673 *5)))) (-1462 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *5 (-368)) (-5 *2 (-112)) (-5 *1 (-673 *5)))) (-3448 (*1 *2 *3 *2) (|partial| -12 (-5 *2 (-1277 *4)) (-5 *3 (-695 *4)) (-4 *4 (-368)) (-5 *1 (-673 *4)))) (-2627 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -3827 (-650 (-1277 *5)))))) (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5))))) (-2627 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-650 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -3827 (-650 (-1277 *5)))))) (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5))))) (-2627 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -3827 (-650 (-1277 *5))))) (-5 *1 (-673 *5)) (-5 *4 (-1277 *5)))) (-2627 (*1 *2 *3 *4) (-12 (-5 *3 (-695 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *5) "failed")) (|:| -3827 (-650 (-1277 *5))))) (-5 *1 (-673 *5)) (-5 *4 (-1277 *5)))))
+(-10 -7 (-15 -2627 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))) (-15 -2627 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-650 (-650 |#1|)) (-1277 |#1|))) (-15 -2627 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|))))) (-695 |#1|) (-650 (-1277 |#1|)))) (-15 -2627 ((-650 (-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|))))) (-650 (-650 |#1|)) (-650 (-1277 |#1|)))) (-15 -3448 ((-3 (-1277 |#1|) "failed") (-695 |#1|) (-1277 |#1|))) (-15 -1462 ((-112) (-695 |#1|) (-1277 |#1|))) (-15 -4009 ((-777) (-695 |#1|) (-1277 |#1|))))
+((-2627 (((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|)))) |#4| (-650 |#3|)) 66) (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|))) |#4| |#3|) 60)) (-4009 (((-777) |#4| |#3|) 18)) (-3448 (((-3 |#3| "failed") |#4| |#3|) 21)) (-1462 (((-112) |#4| |#3|) 14)))
+(((-674 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2627 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|))) |#4| |#3|)) (-15 -2627 ((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|)))) |#4| (-650 |#3|))) (-15 -3448 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1462 ((-112) |#4| |#3|)) (-15 -4009 ((-777) |#4| |#3|))) (-368) (-13 (-378 |#1|) (-10 -7 (-6 -4453))) (-13 (-378 |#1|) (-10 -7 (-6 -4453))) (-693 |#1| |#2| |#3|)) (T -674))
+((-4009 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-5 *2 (-777)) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-1462 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-5 *2 (-112)) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-3448 (*1 *2 *3 *2) (|partial| -12 (-4 *4 (-368)) (-4 *5 (-13 (-378 *4) (-10 -7 (-6 -4453)))) (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4453)))) (-5 *1 (-674 *4 *5 *2 *3)) (-4 *3 (-693 *4 *5 *2)))) (-2627 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-4 *7 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-5 *2 (-650 (-2 (|:| |particular| (-3 *7 "failed")) (|:| -3827 (-650 *7))))) (-5 *1 (-674 *5 *6 *7 *3)) (-5 *4 (-650 *7)) (-4 *3 (-693 *5 *6 *7)))) (-2627 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3827 (-650 *4)))) (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
+(-10 -7 (-15 -2627 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|))) |#4| |#3|)) (-15 -2627 ((-650 (-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|)))) |#4| (-650 |#3|))) (-15 -3448 ((-3 |#3| "failed") |#4| |#3|)) (-15 -1462 ((-112) |#4| |#3|)) (-15 -4009 ((-777) |#4| |#3|)))
+((-1769 (((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -3827 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|)) 51)))
+(((-675 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1769 ((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -3827 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|)))) (-562) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -675))
+((-1769 (*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")) (|:| -3827 (-650 (-1277 (-413 *8)))))) (-5 *1 (-675 *5 *6 *7 *8)))))
+(-10 -7 (-15 -1769 ((-2 (|:| |particular| (-3 (-1277 (-413 |#4|)) "failed")) (|:| -3827 (-650 (-1277 (-413 |#4|))))) (-650 |#4|) (-650 |#3|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3635 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-3211 ((|#2| $) NIL)) (-3493 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-1896 (((-1277 (-695 |#2|))) NIL) (((-1277 (-695 |#2|)) (-1277 $)) NIL)) (-1407 (((-112) $) NIL)) (-2403 (((-1277 $)) 42)) (-1932 (((-112) $ (-777)) NIL)) (-3130 (($ |#2|) NIL)) (-3195 (($) NIL T CONST)) (-3610 (($ $) NIL (|has| |#2| (-311)))) (-1494 (((-242 |#1| |#2|) $ (-570)) NIL)) (-1587 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL (|has| |#2| (-562)))) (-2434 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-2491 (((-695 |#2|)) NIL) (((-695 |#2|) (-1277 $)) NIL)) (-3850 ((|#2| $) NIL)) (-3993 (((-695 |#2|) $) NIL) (((-695 |#2|) $ (-1277 $)) NIL)) (-3498 (((-3 $ "failed") $) NIL (|has| |#2| (-562)))) (-3490 (((-1182 (-959 |#2|))) NIL (|has| |#2| (-368)))) (-2827 (($ $ (-928)) NIL)) (-1563 ((|#2| $) NIL)) (-3286 (((-1182 |#2|) $) NIL (|has| |#2| (-562)))) (-4154 ((|#2|) NIL) ((|#2| (-1277 $)) NIL)) (-2476 (((-1182 |#2|) $) NIL)) (-2546 (((-112)) NIL)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-2322 (($ (-1277 |#2|)) NIL) (($ (-1277 |#2|) (-1277 $)) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-4009 (((-777) $) NIL (|has| |#2| (-562))) (((-928)) 43)) (-3824 ((|#2| $ (-570) (-570)) NIL)) (-4211 (((-112)) NIL)) (-4234 (($ $ (-928)) NIL)) (-3630 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-4139 (((-112) $) NIL)) (-1330 (((-777) $) NIL (|has| |#2| (-562)))) (-3017 (((-650 (-242 |#1| |#2|)) $) NIL (|has| |#2| (-562)))) (-3318 (((-777) $) NIL)) (-3772 (((-112)) NIL)) (-3330 (((-777) $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-3949 ((|#2| $) NIL (|has| |#2| (-6 (-4454 "*"))))) (-2822 (((-570) $) NIL)) (-1943 (((-570) $) NIL)) (-2052 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2278 (((-570) $) NIL)) (-3461 (((-570) $) NIL)) (-2572 (($ (-650 (-650 |#2|))) NIL)) (-1503 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2309 (((-650 (-650 |#2|)) $) NIL)) (-1745 (((-112)) NIL)) (-4407 (((-112)) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-4329 (((-3 (-2 (|:| |particular| $) (|:| -3827 (-650 $))) "failed")) NIL (|has| |#2| (-562)))) (-3269 (((-3 $ "failed")) NIL (|has| |#2| (-562)))) (-2553 (((-695 |#2|)) NIL) (((-695 |#2|) (-1277 $)) NIL)) (-3412 ((|#2| $) NIL)) (-3524 (((-695 |#2|) $) NIL) (((-695 |#2|) $ (-1277 $)) NIL)) (-2480 (((-3 $ "failed") $) NIL (|has| |#2| (-562)))) (-3607 (((-1182 (-959 |#2|))) NIL (|has| |#2| (-368)))) (-4311 (($ $ (-928)) NIL)) (-3879 ((|#2| $) NIL)) (-4292 (((-1182 |#2|) $) NIL (|has| |#2| (-562)))) (-3775 ((|#2|) NIL) ((|#2| (-1277 $)) NIL)) (-2170 (((-1182 |#2|) $) NIL)) (-3100 (((-112)) NIL)) (-3989 (((-1168) $) NIL)) (-4015 (((-112)) NIL)) (-3058 (((-112)) NIL)) (-4203 (((-112)) NIL)) (-2751 (((-3 $ "failed") $) NIL (|has| |#2| (-368)))) (-3580 (((-1129) $) NIL)) (-2876 (((-112)) NIL)) (-2548 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-1627 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ (-570) (-570) |#2|) NIL) ((|#2| $ (-570) (-570)) 28) ((|#2| $ (-570)) NIL)) (-3550 (($ $ (-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)))) (-2760 ((|#2| $) NIL)) (-2323 (($ (-650 |#2|)) NIL)) (-1424 (((-112) $) NIL)) (-3193 (((-242 |#1| |#2|) $) NIL)) (-3136 ((|#2| $) NIL (|has| |#2| (-6 (-4454 "*"))))) (-3587 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-3954 (($ $) NIL)) (-3314 (((-695 |#2|) (-1277 $)) NIL) (((-1277 |#2|) $) NIL) (((-695 |#2|) (-1277 $) (-1277 $)) NIL) (((-1277 |#2|) $ (-1277 $)) 31)) (-1426 (($ (-1277 |#2|)) NIL) (((-1277 |#2|) $) NIL)) (-3978 (((-650 (-959 |#2|))) NIL) (((-650 (-959 |#2|)) (-1277 $)) NIL)) (-3381 (($ $ $) NIL)) (-3762 (((-112)) NIL)) (-3057 (((-242 |#1| |#2|) $ (-570)) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (((-695 |#2|) $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) 41)) (-3203 (((-650 (-1277 |#2|))) NIL (|has| |#2| (-562)))) (-3468 (($ $ $ $) NIL)) (-3169 (((-112)) NIL)) (-3492 (($ (-695 |#2|) $) NIL)) (-4379 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1548 (((-112) $) NIL)) (-3107 (($ $ $) NIL)) (-1352 (((-112)) NIL)) (-4298 (((-112)) NIL)) (-2557 (((-112)) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-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)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-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|))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2976 (((-650 (-1144)) $) 10)) (-3799 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-677) (-13 (-1092) (-10 -8 (-15 -2976 ((-650 (-1144)) $))))) (T -677))
-((-2976 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-677)))))
-(-13 (-1092) (-10 -8 (-15 -2976 ((-650 (-1144)) $))))
-((-2558 (((-112) $ $) NIL)) (-3179 (((-650 |#1|) $) NIL)) (-4410 (($ $) 62)) (-3936 (((-112) $) NIL)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-4042 (((-3 $ "failed") (-825 |#1|)) 27)) (-4024 (((-112) (-825 |#1|)) 17)) (-2382 (($ (-825 |#1|)) 28)) (-1909 (((-112) $ $) 36)) (-1355 (((-928) $) 43)) (-4397 (($ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3801 (((-650 $) (-825 |#1|)) 19)) (-3799 (((-868) $) 51) (($ |#1|) 40) (((-825 |#1|) $) 47) (((-683 |#1|) $) 52)) (-2335 (((-112) $ $) NIL)) (-4240 (((-59 (-650 $)) (-650 |#1|) (-928)) 67)) (-2714 (((-650 $) (-650 |#1|) (-928)) 70)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 63)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 46)))
-(((-678 |#1|) (-13 (-856) (-1047 |#1|) (-10 -8 (-15 -3936 ((-112) $)) (-15 -4397 ($ $)) (-15 -4410 ($ $)) (-15 -1355 ((-928) $)) (-15 -1909 ((-112) $ $)) (-15 -3799 ((-825 |#1|) $)) (-15 -3799 ((-683 |#1|) $)) (-15 -3801 ((-650 $) (-825 |#1|))) (-15 -4024 ((-112) (-825 |#1|))) (-15 -2382 ($ (-825 |#1|))) (-15 -4042 ((-3 $ "failed") (-825 |#1|))) (-15 -3179 ((-650 |#1|) $)) (-15 -4240 ((-59 (-650 $)) (-650 |#1|) (-928))) (-15 -2714 ((-650 $) (-650 |#1|) (-928))))) (-856)) (T -678))
-((-3936 (*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)))) (-1355 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-1909 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-683 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3801 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-678 *4))) (-5 *1 (-678 *4)))) (-4024 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-112)) (-5 *1 (-678 *4)))) (-2382 (*1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))) (-4042 (*1 *1 *2) (|partial| -12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-4240 (*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)))) (-2714 (*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 -3936 ((-112) $)) (-15 -4397 ($ $)) (-15 -4410 ($ $)) (-15 -1355 ((-928) $)) (-15 -1909 ((-112) $ $)) (-15 -3799 ((-825 |#1|) $)) (-15 -3799 ((-683 |#1|) $)) (-15 -3801 ((-650 $) (-825 |#1|))) (-15 -4024 ((-112) (-825 |#1|))) (-15 -2382 ($ (-825 |#1|))) (-15 -4042 ((-3 $ "failed") (-825 |#1|))) (-15 -3179 ((-650 |#1|) $)) (-15 -4240 ((-59 (-650 $)) (-650 |#1|) (-928))) (-15 -2714 ((-650 $) (-650 |#1|) (-928)))))
-((-2308 ((|#2| $) 100)) (-1602 (($ $) 121)) (-4302 (((-112) $ (-777)) 35)) (-3555 (($ $) 109) (($ $ (-777)) 112)) (-3414 (((-112) $) 122)) (-3880 (((-650 $) $) 96)) (-2439 (((-112) $ $) 92)) (-2929 (((-112) $ (-777)) 33)) (-2383 (((-570) $) 66)) (-1460 (((-570) $) 65)) (-3231 (((-112) $ (-777)) 31)) (-2606 (((-112) $) 98)) (-1769 ((|#2| $) 113) (($ $ (-777)) 117)) (-4290 (($ $ $ (-570)) 83) (($ |#2| $ (-570)) 82)) (-1805 (((-650 (-570)) $) 64)) (-3939 (((-112) (-570) $) 59)) (-3543 ((|#2| $) NIL) (($ $ (-777)) 108)) (-2431 (($ $ (-570)) 125)) (-3607 (((-112) $) 124)) (-3642 (((-112) (-1 (-112) |#2|) $) 42)) (-3700 (((-650 |#2|) $) 46)) (-1941 ((|#2| $ "value") NIL) ((|#2| $ "first") 107) (($ $ "rest") 111) ((|#2| $ "last") 120) (($ $ (-1244 (-570))) 79) ((|#2| $ (-570)) 57) ((|#2| $ (-570) |#2|) 58)) (-2738 (((-570) $ $) 91)) (-4326 (($ $ (-1244 (-570))) 78) (($ $ (-570)) 72)) (-3817 (((-112) $) 87)) (-4366 (($ $) 105)) (-2264 (((-777) $) 104)) (-1839 (($ $) 103)) (-3811 (($ (-650 |#2|)) 53)) (-2853 (($ $) 126)) (-3397 (((-650 $) $) 90)) (-3746 (((-112) $ $) 89)) (-4371 (((-112) (-1 (-112) |#2|) $) 41)) (-3022 (((-112) $ $) 20)) (-2569 (((-777) $) 39)))
-(((-679 |#1| |#2|) (-10 -8 (-15 -2853 (|#1| |#1|)) (-15 -2431 (|#1| |#1| (-570))) (-15 -3414 ((-112) |#1|)) (-15 -3607 ((-112) |#1|)) (-15 -1941 (|#2| |#1| (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570))) (-15 -3700 ((-650 |#2|) |#1|)) (-15 -3939 ((-112) (-570) |#1|)) (-15 -1805 ((-650 (-570)) |#1|)) (-15 -1460 ((-570) |#1|)) (-15 -2383 ((-570) |#1|)) (-15 -3811 (|#1| (-650 |#2|))) (-15 -1941 (|#1| |#1| (-1244 (-570)))) (-15 -4326 (|#1| |#1| (-570))) (-15 -4326 (|#1| |#1| (-1244 (-570)))) (-15 -4290 (|#1| |#2| |#1| (-570))) (-15 -4290 (|#1| |#1| |#1| (-570))) (-15 -4366 (|#1| |#1|)) (-15 -2264 ((-777) |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1602 (|#1| |#1|)) (-15 -1769 (|#1| |#1| (-777))) (-15 -1941 (|#2| |#1| "last")) (-15 -1769 (|#2| |#1|)) (-15 -3555 (|#1| |#1| (-777))) (-15 -1941 (|#1| |#1| "rest")) (-15 -3555 (|#1| |#1|)) (-15 -3543 (|#1| |#1| (-777))) (-15 -1941 (|#2| |#1| "first")) (-15 -3543 (|#2| |#1|)) (-15 -2439 ((-112) |#1| |#1|)) (-15 -3746 ((-112) |#1| |#1|)) (-15 -2738 ((-570) |#1| |#1|)) (-15 -3817 ((-112) |#1|)) (-15 -1941 (|#2| |#1| "value")) (-15 -2308 (|#2| |#1|)) (-15 -2606 ((-112) |#1|)) (-15 -3880 ((-650 |#1|) |#1|)) (-15 -3397 ((-650 |#1|) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2569 ((-777) |#1|)) (-15 -4302 ((-112) |#1| (-777))) (-15 -2929 ((-112) |#1| (-777))) (-15 -3231 ((-112) |#1| (-777)))) (-680 |#2|) (-1227)) (T -679))
-NIL
-(-10 -8 (-15 -2853 (|#1| |#1|)) (-15 -2431 (|#1| |#1| (-570))) (-15 -3414 ((-112) |#1|)) (-15 -3607 ((-112) |#1|)) (-15 -1941 (|#2| |#1| (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570))) (-15 -3700 ((-650 |#2|) |#1|)) (-15 -3939 ((-112) (-570) |#1|)) (-15 -1805 ((-650 (-570)) |#1|)) (-15 -1460 ((-570) |#1|)) (-15 -2383 ((-570) |#1|)) (-15 -3811 (|#1| (-650 |#2|))) (-15 -1941 (|#1| |#1| (-1244 (-570)))) (-15 -4326 (|#1| |#1| (-570))) (-15 -4326 (|#1| |#1| (-1244 (-570)))) (-15 -4290 (|#1| |#2| |#1| (-570))) (-15 -4290 (|#1| |#1| |#1| (-570))) (-15 -4366 (|#1| |#1|)) (-15 -2264 ((-777) |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -1602 (|#1| |#1|)) (-15 -1769 (|#1| |#1| (-777))) (-15 -1941 (|#2| |#1| "last")) (-15 -1769 (|#2| |#1|)) (-15 -3555 (|#1| |#1| (-777))) (-15 -1941 (|#1| |#1| "rest")) (-15 -3555 (|#1| |#1|)) (-15 -3543 (|#1| |#1| (-777))) (-15 -1941 (|#2| |#1| "first")) (-15 -3543 (|#2| |#1|)) (-15 -2439 ((-112) |#1| |#1|)) (-15 -3746 ((-112) |#1| |#1|)) (-15 -2738 ((-570) |#1| |#1|)) (-15 -3817 ((-112) |#1|)) (-15 -1941 (|#2| |#1| "value")) (-15 -2308 (|#2| |#1|)) (-15 -2606 ((-112) |#1|)) (-15 -3880 ((-650 |#1|) |#1|)) (-15 -3397 ((-650 |#1|) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -3642 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2569 ((-777) |#1|)) (-15 -4302 ((-112) |#1| (-777))) (-15 -2929 ((-112) |#1| (-777))) (-15 -3231 ((-112) |#1| (-777))))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-2698 ((|#1| $) 66)) (-1602 (($ $) 68)) (-3851 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) 53 (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) 8)) (-2988 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3986 (($ $ $) 57 (|has| $ (-6 -4450)))) (-2363 ((|#1| $ |#1|) 55 (|has| $ (-6 -4450)))) (-2869 ((|#1| $ |#1|) 59 (|has| $ (-6 -4450)))) (-3932 ((|#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)))) (-2162 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) 103)) (-2686 ((|#1| $) 67)) (-1705 (($) 7 T CONST)) (-1555 (($ $) 125)) (-3555 (($ $) 74) (($ $ (-777)) 72)) (-3579 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 104)) (-3624 ((|#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))))) (-1517 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 88)) (-3414 (((-112) $) 84)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3367 (((-777) $) 124)) (-3880 (((-650 $) $) 51)) (-2439 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4291 (($ (-777) |#1|) 109)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 96 (|has| (-570) (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 95 (|has| (-570) (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3231 (((-112) $ (-777)) 10)) (-2403 (((-650 |#1|) $) 46)) (-2606 (((-112) $) 50)) (-2070 (($ $) 127)) (-2482 (((-112) $) 128)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1769 ((|#1| $) 71) (($ $ (-777)) 69)) (-4290 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-1805 (((-650 (-570)) $) 93)) (-3939 (((-112) (-570) $) 92)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3826 ((|#1| $) 126)) (-3543 ((|#1| $) 77) (($ $ (-777)) 75)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-2147 (($ $ |#1|) 97 (|has| $ (-6 -4450)))) (-2431 (($ $ (-570)) 123)) (-3607 (((-112) $) 85)) (-1637 (((-112) $) 129)) (-4230 (((-112) $) 130)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 91)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-2738 (((-570) $ $) 45)) (-4326 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-3817 (((-112) $) 47)) (-4366 (($ $) 63)) (-4063 (($ $) 60 (|has| $ (-6 -4450)))) (-2264 (((-777) $) 64)) (-1839 (($ $) 65)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 108)) (-3276 (($ $ $) 62 (|has| $ (-6 -4450))) (($ $ |#1|) 61 (|has| $ (-6 -4450)))) (-2584 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-2853 (($ $) 122)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 52)) (-3746 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1499 (((-650 (-1144)) $) 10)) (-3802 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-677) (-13 (-1092) (-10 -8 (-15 -1499 ((-650 (-1144)) $))))) (T -677))
+((-1499 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-677)))))
+(-13 (-1092) (-10 -8 (-15 -1499 ((-650 (-1144)) $))))
+((-2560 (((-112) $ $) NIL)) (-3182 (((-650 |#1|) $) NIL)) (-4413 (($ $) 62)) (-2635 (((-112) $) NIL)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-4281 (((-3 $ "failed") (-825 |#1|)) 27)) (-4112 (((-112) (-825 |#1|)) 17)) (-2676 (($ (-825 |#1|)) 28)) (-1312 (((-112) $ $) 36)) (-1356 (((-928) $) 43)) (-4400 (($ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3804 (((-650 $) (-825 |#1|)) 19)) (-3802 (((-868) $) 51) (($ |#1|) 40) (((-825 |#1|) $) 47) (((-683 |#1|) $) 52)) (-3359 (((-112) $ $) NIL)) (-2591 (((-59 (-650 $)) (-650 |#1|) (-928)) 67)) (-2911 (((-650 $) (-650 |#1|) (-928)) 70)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 63)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 46)))
+(((-678 |#1|) (-13 (-856) (-1047 |#1|) (-10 -8 (-15 -2635 ((-112) $)) (-15 -4400 ($ $)) (-15 -4413 ($ $)) (-15 -1356 ((-928) $)) (-15 -1312 ((-112) $ $)) (-15 -3802 ((-825 |#1|) $)) (-15 -3802 ((-683 |#1|) $)) (-15 -3804 ((-650 $) (-825 |#1|))) (-15 -4112 ((-112) (-825 |#1|))) (-15 -2676 ($ (-825 |#1|))) (-15 -4281 ((-3 $ "failed") (-825 |#1|))) (-15 -3182 ((-650 |#1|) $)) (-15 -2591 ((-59 (-650 $)) (-650 |#1|) (-928))) (-15 -2911 ((-650 $) (-650 |#1|) (-928))))) (-856)) (T -678))
+((-2635 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-4400 (*1 *1 *1) (-12 (-5 *1 (-678 *2)) (-4 *2 (-856)))) (-4413 (*1 *1 *1) (-12 (-5 *1 (-678 *2)) (-4 *2 (-856)))) (-1356 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-1312 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-683 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-3804 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-650 (-678 *4))) (-5 *1 (-678 *4)))) (-4112 (*1 *2 *3) (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-112)) (-5 *1 (-678 *4)))) (-2676 (*1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))) (-4281 (*1 *1 *2) (|partial| -12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))) (-3182 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-678 *3)) (-4 *3 (-856)))) (-2591 (*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)))) (-2911 (*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 -2635 ((-112) $)) (-15 -4400 ($ $)) (-15 -4413 ($ $)) (-15 -1356 ((-928) $)) (-15 -1312 ((-112) $ $)) (-15 -3802 ((-825 |#1|) $)) (-15 -3802 ((-683 |#1|) $)) (-15 -3804 ((-650 $) (-825 |#1|))) (-15 -4112 ((-112) (-825 |#1|))) (-15 -2676 ($ (-825 |#1|))) (-15 -4281 ((-3 $ "failed") (-825 |#1|))) (-15 -3182 ((-650 |#1|) $)) (-15 -2591 ((-59 (-650 $)) (-650 |#1|) (-928))) (-15 -2911 ((-650 $) (-650 |#1|) (-928)))))
+((-2308 ((|#2| $) 100)) (-1603 (($ $) 121)) (-1932 (((-112) $ (-777)) 35)) (-3558 (($ $) 109) (($ $ (-777)) 112)) (-3242 (((-112) $) 122)) (-2119 (((-650 $) $) 96)) (-2045 (((-112) $ $) 92)) (-2317 (((-112) $ (-777)) 33)) (-2685 (((-570) $) 66)) (-2602 (((-570) $) 65)) (-2193 (((-112) $ (-777)) 31)) (-4244 (((-112) $) 98)) (-1770 ((|#2| $) 113) (($ $ (-777)) 117)) (-4293 (($ $ $ (-570)) 83) (($ |#2| $ (-570)) 82)) (-2903 (((-650 (-570)) $) 64)) (-1358 (((-112) (-570) $) 59)) (-3546 ((|#2| $) NIL) (($ $ (-777)) 108)) (-3152 (($ $ (-570)) 125)) (-2568 (((-112) $) 124)) (-1627 (((-112) (-1 (-112) |#2|) $) 42)) (-4049 (((-650 |#2|) $) 46)) (-1942 ((|#2| $ "value") NIL) ((|#2| $ "first") 107) (($ $ "rest") 111) ((|#2| $ "last") 120) (($ $ (-1244 (-570))) 79) ((|#2| $ (-570)) 57) ((|#2| $ (-570) |#2|) 58)) (-3108 (((-570) $ $) 91)) (-4330 (($ $ (-1244 (-570))) 78) (($ $ (-570)) 72)) (-2759 (((-112) $) 87)) (-4332 (($ $) 105)) (-3853 (((-777) $) 104)) (-1991 (($ $) 103)) (-3814 (($ (-650 |#2|)) 53)) (-1682 (($ $) 126)) (-4259 (((-650 $) $) 90)) (-3290 (((-112) $ $) 89)) (-4379 (((-112) (-1 (-112) |#2|) $) 41)) (-3025 (((-112) $ $) 20)) (-2570 (((-777) $) 39)))
+(((-679 |#1| |#2|) (-10 -8 (-15 -1682 (|#1| |#1|)) (-15 -3152 (|#1| |#1| (-570))) (-15 -3242 ((-112) |#1|)) (-15 -2568 ((-112) |#1|)) (-15 -1942 (|#2| |#1| (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570))) (-15 -4049 ((-650 |#2|) |#1|)) (-15 -1358 ((-112) (-570) |#1|)) (-15 -2903 ((-650 (-570)) |#1|)) (-15 -2602 ((-570) |#1|)) (-15 -2685 ((-570) |#1|)) (-15 -3814 (|#1| (-650 |#2|))) (-15 -1942 (|#1| |#1| (-1244 (-570)))) (-15 -4330 (|#1| |#1| (-570))) (-15 -4330 (|#1| |#1| (-1244 (-570)))) (-15 -4293 (|#1| |#2| |#1| (-570))) (-15 -4293 (|#1| |#1| |#1| (-570))) (-15 -4332 (|#1| |#1|)) (-15 -3853 ((-777) |#1|)) (-15 -1991 (|#1| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -1770 (|#1| |#1| (-777))) (-15 -1942 (|#2| |#1| "last")) (-15 -1770 (|#2| |#1|)) (-15 -3558 (|#1| |#1| (-777))) (-15 -1942 (|#1| |#1| "rest")) (-15 -3558 (|#1| |#1|)) (-15 -3546 (|#1| |#1| (-777))) (-15 -1942 (|#2| |#1| "first")) (-15 -3546 (|#2| |#1|)) (-15 -2045 ((-112) |#1| |#1|)) (-15 -3290 ((-112) |#1| |#1|)) (-15 -3108 ((-570) |#1| |#1|)) (-15 -2759 ((-112) |#1|)) (-15 -1942 (|#2| |#1| "value")) (-15 -2308 (|#2| |#1|)) (-15 -4244 ((-112) |#1|)) (-15 -2119 ((-650 |#1|) |#1|)) (-15 -4259 ((-650 |#1|) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2570 ((-777) |#1|)) (-15 -1932 ((-112) |#1| (-777))) (-15 -2317 ((-112) |#1| (-777))) (-15 -2193 ((-112) |#1| (-777)))) (-680 |#2|) (-1227)) (T -679))
+NIL
+(-10 -8 (-15 -1682 (|#1| |#1|)) (-15 -3152 (|#1| |#1| (-570))) (-15 -3242 ((-112) |#1|)) (-15 -2568 ((-112) |#1|)) (-15 -1942 (|#2| |#1| (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570))) (-15 -4049 ((-650 |#2|) |#1|)) (-15 -1358 ((-112) (-570) |#1|)) (-15 -2903 ((-650 (-570)) |#1|)) (-15 -2602 ((-570) |#1|)) (-15 -2685 ((-570) |#1|)) (-15 -3814 (|#1| (-650 |#2|))) (-15 -1942 (|#1| |#1| (-1244 (-570)))) (-15 -4330 (|#1| |#1| (-570))) (-15 -4330 (|#1| |#1| (-1244 (-570)))) (-15 -4293 (|#1| |#2| |#1| (-570))) (-15 -4293 (|#1| |#1| |#1| (-570))) (-15 -4332 (|#1| |#1|)) (-15 -3853 ((-777) |#1|)) (-15 -1991 (|#1| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -1770 (|#1| |#1| (-777))) (-15 -1942 (|#2| |#1| "last")) (-15 -1770 (|#2| |#1|)) (-15 -3558 (|#1| |#1| (-777))) (-15 -1942 (|#1| |#1| "rest")) (-15 -3558 (|#1| |#1|)) (-15 -3546 (|#1| |#1| (-777))) (-15 -1942 (|#2| |#1| "first")) (-15 -3546 (|#2| |#1|)) (-15 -2045 ((-112) |#1| |#1|)) (-15 -3290 ((-112) |#1| |#1|)) (-15 -3108 ((-570) |#1| |#1|)) (-15 -2759 ((-112) |#1|)) (-15 -1942 (|#2| |#1| "value")) (-15 -2308 (|#2| |#1|)) (-15 -4244 ((-112) |#1|)) (-15 -2119 ((-650 |#1|) |#1|)) (-15 -4259 ((-650 |#1|) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -1627 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#2|) |#1|)) (-15 -2570 ((-777) |#1|)) (-15 -1932 ((-112) |#1| (-777))) (-15 -2317 ((-112) |#1| (-777))) (-15 -2193 ((-112) |#1| (-777))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-2701 ((|#1| $) 66)) (-1603 (($ $) 68)) (-3040 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) 53 (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) 8)) (-1647 ((|#1| $ |#1|) 40 (|has| $ (-6 -4453)))) (-1917 (($ $ $) 57 (|has| $ (-6 -4453)))) (-3671 ((|#1| $ |#1|) 55 (|has| $ (-6 -4453)))) (-1854 ((|#1| $ |#1|) 59 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4453))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4453))) (($ $ "rest" $) 56 (|has| $ (-6 -4453))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 118 (|has| $ (-6 -4453))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 42 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) 103)) (-2688 ((|#1| $) 67)) (-3195 (($) 7 T CONST)) (-2311 (($ $) 125)) (-3558 (($ $) 74) (($ $ (-777)) 72)) (-3582 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 104)) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1518 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 88)) (-3242 (((-112) $) 84)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-4062 (((-777) $) 124)) (-2119 (((-650 $) $) 51)) (-2045 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4294 (($ (-777) |#1|) 109)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 96 (|has| (-570) (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 95 (|has| (-570) (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-2193 (((-112) $ (-777)) 10)) (-2404 (((-650 |#1|) $) 46)) (-4244 (((-112) $) 50)) (-3664 (($ $) 127)) (-2497 (((-112) $) 128)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1770 ((|#1| $) 71) (($ $ (-777)) 69)) (-4293 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2903 (((-650 (-570)) $) 93)) (-1358 (((-112) (-570) $) 92)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2825 ((|#1| $) 126)) (-3546 ((|#1| $) 77) (($ $ (-777)) 75)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-2061 (($ $ |#1|) 97 (|has| $ (-6 -4453)))) (-3152 (($ $ (-570)) 123)) (-2568 (((-112) $) 85)) (-3727 (((-112) $) 129)) (-2498 (((-112) $) 130)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 91)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-3108 (((-570) $ $) 45)) (-4330 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-2759 (((-112) $) 47)) (-4332 (($ $) 63)) (-3305 (($ $) 60 (|has| $ (-6 -4453)))) (-3853 (((-777) $) 64)) (-1991 (($ $) 65)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 108)) (-1319 (($ $ $) 62 (|has| $ (-6 -4453))) (($ $ |#1|) 61 (|has| $ (-6 -4453)))) (-2585 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-1682 (($ $) 122)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 52)) (-3290 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-680 |#1|) (-141) (-1227)) (T -680))
-((-1741 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-1431 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-4230 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-1637 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2482 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2070 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-3826 (*1 *2 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-1555 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-3367 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-2431 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-2853 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
-(-13 (-1158 |t#1|) (-10 -8 (-15 -1741 ($ (-1 (-112) |t#1|) $)) (-15 -1431 ($ (-1 (-112) |t#1|) $)) (-15 -4230 ((-112) $)) (-15 -1637 ((-112) $)) (-15 -2482 ((-112) $)) (-15 -2070 ($ $)) (-15 -3826 (|t#1| $)) (-15 -1555 ($ $)) (-15 -3367 ((-777) $)) (-15 -2431 ($ $ (-570))) (-15 -2853 ($ $))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1674 (($ (-777) (-777) (-777)) 53 (|has| |#1| (-1058)))) (-4302 (((-112) $ (-777)) NIL)) (-1714 ((|#1| $ (-777) (-777) (-777) |#1|) 47)) (-1705 (($) NIL T CONST)) (-3293 (($ $ $) 57 (|has| |#1| (-1058)))) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3114 (((-1277 (-777)) $) 12)) (-1535 (($ (-1186) $ $) 34)) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3800 (($ (-777)) 55 (|has| |#1| (-1058)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-777) (-777) (-777)) 44)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-3811 (($ (-650 (-650 (-650 |#1|)))) 67)) (-3799 (($ (-965 (-965 (-965 |#1|)))) 23) (((-965 (-965 (-965 |#1|))) $) 19) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-681 |#1|) (-13 (-495 |#1|) (-10 -8 (IF (|has| |#1| (-1058)) (PROGN (-15 -1674 ($ (-777) (-777) (-777))) (-15 -3800 ($ (-777))) (-15 -3293 ($ $ $))) |%noBranch|) (-15 -3811 ($ (-650 (-650 (-650 |#1|))))) (-15 -1941 (|#1| $ (-777) (-777) (-777))) (-15 -1714 (|#1| $ (-777) (-777) (-777) |#1|)) (-15 -3799 ($ (-965 (-965 (-965 |#1|))))) (-15 -3799 ((-965 (-965 (-965 |#1|))) $)) (-15 -1535 ($ (-1186) $ $)) (-15 -3114 ((-1277 (-777)) $)))) (-1109)) (T -681))
-((-1674 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058)) (-4 *3 (-1109)))) (-3800 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058)) (-4 *3 (-1109)))) (-3293 (*1 *1 *1 *1) (-12 (-5 *1 (-681 *2)) (-4 *2 (-1058)) (-4 *2 (-1109)))) (-3811 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-650 *3)))) (-4 *3 (-1109)) (-5 *1 (-681 *3)))) (-1941 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))) (-1714 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-965 (-965 (-965 *3)))) (-4 *3 (-1109)) (-5 *1 (-681 *3)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-965 (-965 (-965 *3)))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))) (-1535 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-681 *3)) (-4 *3 (-1109)))) (-3114 (*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 -1674 ($ (-777) (-777) (-777))) (-15 -3800 ($ (-777))) (-15 -3293 ($ $ $))) |%noBranch|) (-15 -3811 ($ (-650 (-650 (-650 |#1|))))) (-15 -1941 (|#1| $ (-777) (-777) (-777))) (-15 -1714 (|#1| $ (-777) (-777) (-777) |#1|)) (-15 -3799 ($ (-965 (-965 (-965 |#1|))))) (-15 -3799 ((-965 (-965 (-965 |#1|))) $)) (-15 -1535 ($ (-1186) $ $)) (-15 -3114 ((-1277 (-777)) $))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-1311 (((-489) $) 10)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-1144) $) 12)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-682) (-13 (-1092) (-10 -8 (-15 -1311 ((-489) $)) (-15 -3613 ((-1144) $))))) (T -682))
-((-1311 (*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-682)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-682)))))
-(-13 (-1092) (-10 -8 (-15 -1311 ((-489) $)) (-15 -3613 ((-1144) $))))
-((-2558 (((-112) $ $) NIL)) (-3179 (((-650 |#1|) $) 15)) (-4410 (($ $) 19)) (-3936 (((-112) $) 20)) (-4380 (((-3 |#1| "failed") $) 23)) (-3216 ((|#1| $) 21)) (-3555 (($ $) 37)) (-3264 (($ $) 25)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1909 (((-112) $ $) 47)) (-1355 (((-928) $) 40)) (-4397 (($ $) 18)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 ((|#1| $) 36)) (-3799 (((-868) $) 32) (($ |#1|) 24) (((-825 |#1|) $) 28)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 13)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 44)) (* (($ $ $) 35)))
-(((-683 |#1|) (-13 (-856) (-1047 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3799 ((-825 |#1|) $)) (-15 -3543 (|#1| $)) (-15 -4397 ($ $)) (-15 -1355 ((-928) $)) (-15 -1909 ((-112) $ $)) (-15 -3264 ($ $)) (-15 -3555 ($ $)) (-15 -3936 ((-112) $)) (-15 -4410 ($ $)) (-15 -3179 ((-650 |#1|) $)))) (-856)) (T -683))
-((* (*1 *1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-3543 (*1 *2 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-4397 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-1355 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-1909 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-3264 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3555 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3936 (*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)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-683 *3)) (-4 *3 (-856)))))
-(-13 (-856) (-1047 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3799 ((-825 |#1|) $)) (-15 -3543 (|#1| $)) (-15 -4397 ($ $)) (-15 -1355 ((-928) $)) (-15 -1909 ((-112) $ $)) (-15 -3264 ($ $)) (-15 -3555 ($ $)) (-15 -3936 ((-112) $)) (-15 -4410 ($ $)) (-15 -3179 ((-650 |#1|) $))))
-((-1466 ((|#1| (-1 |#1| (-777) |#1|) (-777) |#1|) 11)) (-4315 ((|#1| (-1 |#1| |#1|) (-777) |#1|) 9)))
-(((-684 |#1|) (-10 -7 (-15 -4315 (|#1| (-1 |#1| |#1|) (-777) |#1|)) (-15 -1466 (|#1| (-1 |#1| (-777) |#1|) (-777) |#1|))) (-1109)) (T -684))
-((-1466 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-777) *2)) (-5 *4 (-777)) (-4 *2 (-1109)) (-5 *1 (-684 *2)))) (-4315 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-777)) (-4 *2 (-1109)) (-5 *1 (-684 *2)))))
-(-10 -7 (-15 -4315 (|#1| (-1 |#1| |#1|) (-777) |#1|)) (-15 -1466 (|#1| (-1 |#1| (-777) |#1|) (-777) |#1|)))
-((-4106 ((|#2| |#1| |#2|) 9)) (-4095 ((|#1| |#1| |#2|) 8)))
-(((-685 |#1| |#2|) (-10 -7 (-15 -4095 (|#1| |#1| |#2|)) (-15 -4106 (|#2| |#1| |#2|))) (-1109) (-1109)) (T -685))
-((-4106 (*1 *2 *3 *2) (-12 (-5 *1 (-685 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-4095 (*1 *2 *2 *3) (-12 (-5 *1 (-685 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -4095 (|#1| |#1| |#2|)) (-15 -4106 (|#2| |#1| |#2|)))
-((-3370 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
-(((-686 |#1| |#2| |#3|) (-10 -7 (-15 -3370 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1109) (-1109) (-1109)) (T -686))
-((-3370 (*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 -3370 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3863 (((-1226) $) 21)) (-3816 (((-650 (-1226)) $) 19)) (-3409 (($ (-650 (-1226)) (-1226)) 14)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 29) (($ (-1191)) NIL) (((-1191) $) NIL) (((-1226) $) 22) (($ (-1127)) 10)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-687) (-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3799 ($ (-1127))) (-15 -3409 ($ (-650 (-1226)) (-1226))) (-15 -3816 ((-650 (-1226)) $)) (-15 -3863 ((-1226) $))))) (T -687))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1127)) (-5 *1 (-687)))) (-3409 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1226))) (-5 *3 (-1226)) (-5 *1 (-687)))) (-3816 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-687)))) (-3863 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-687)))))
-(-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3799 ($ (-1127))) (-15 -3409 ($ (-650 (-1226)) (-1226))) (-15 -3816 ((-650 (-1226)) $)) (-15 -3863 ((-1226) $))))
-((-1466 (((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|)) 26)) (-1577 (((-1 |#1|) |#1|) 8)) (-4260 ((|#1| |#1|) 19)) (-3798 (((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570)) 18) ((|#1| (-1 |#1| |#1|)) 11)) (-3799 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-777)) 23)))
-(((-688 |#1|) (-10 -7 (-15 -1577 ((-1 |#1|) |#1|)) (-15 -3799 ((-1 |#1|) |#1|)) (-15 -3798 (|#1| (-1 |#1| |#1|))) (-15 -3798 ((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570))) (-15 -4260 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-777))) (-15 -1466 ((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|)))) (-1109)) (T -688))
-((-1466 (*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)))) (-4260 (*1 *2 *2) (-12 (-5 *1 (-688 *2)) (-4 *2 (-1109)))) (-3798 (*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)))) (-3798 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-688 *2)) (-4 *2 (-1109)))) (-3799 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))) (-1577 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -1577 ((-1 |#1|) |#1|)) (-15 -3799 ((-1 |#1|) |#1|)) (-15 -3798 (|#1| (-1 |#1| |#1|))) (-15 -3798 ((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570))) (-15 -4260 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-777))) (-15 -1466 ((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|))))
-((-4114 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-4049 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-3725 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-2395 (((-1 |#2| |#1|) |#2|) 11)))
-(((-689 |#1| |#2|) (-10 -7 (-15 -2395 ((-1 |#2| |#1|) |#2|)) (-15 -4049 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -3725 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -4114 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1109) (-1109)) (T -689))
-((-4114 (*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)))) (-3725 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1109)) (-5 *2 (-1 *5 *4)) (-5 *1 (-689 *4 *5)) (-4 *4 (-1109)))) (-4049 (*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)))) (-2395 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-689 *4 *3)) (-4 *4 (-1109)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -2395 ((-1 |#2| |#1|) |#2|)) (-15 -4049 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -3725 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -4114 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
-((-2557 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-3150 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-3502 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-2796 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-3648 (((-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 -3150 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3502 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2796 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3648 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -2557 ((-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)))) (-2557 (*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)))) (-3648 (*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)))) (-2796 (*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)))) (-3502 (*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)))) (-3150 (*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 -3150 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -3502 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2796 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -3648 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -2557 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
-((-3624 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-1356 (((-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 -1356 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1356 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3624 (|#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))
-((-3624 (*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)))) (-1356 (*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)))) (-1356 (*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 -1356 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1356 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3624 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
-((-3504 (($ (-777) (-777)) 42)) (-2133 (($ $ $) 71)) (-3244 (($ |#3|) 66) (($ $) 67)) (-1735 (((-112) $) 36)) (-4088 (($ $ (-570) (-570)) 82)) (-1773 (($ $ (-570) (-570)) 83)) (-4317 (($ $ (-570) (-570) (-570) (-570)) 88)) (-1885 (($ $) 69)) (-4253 (((-112) $) 15)) (-2265 (($ $ (-570) (-570) $) 89)) (-3932 ((|#2| $ (-570) (-570) |#2|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) 87)) (-2741 (($ (-777) |#2|) 53)) (-2571 (($ (-650 (-650 |#2|))) 51)) (-3575 (((-650 (-650 |#2|)) $) 78)) (-2721 (($ $ $) 70)) (-2547 (((-3 $ "failed") $ |#2|) 120)) (-1941 ((|#2| $ (-570) (-570)) NIL) ((|#2| $ (-570) (-570) |#2|) NIL) (($ $ (-650 (-570)) (-650 (-570))) 86)) (-2173 (($ (-650 |#2|)) 54) (($ (-650 $)) 56)) (-3285 (((-112) $) 28)) (-3799 (($ |#4|) 61) (((-868) $) NIL)) (-2841 (((-112) $) 38)) (-3122 (($ $ |#2|) 122)) (-3111 (($ $ $) 93) (($ $) 96)) (-3101 (($ $ $) 91)) (** (($ $ (-777)) 109) (($ $ (-570)) 126)) (* (($ $ $) 102) (($ |#2| $) 98) (($ $ |#2|) 99) (($ (-570) $) 101) ((|#4| $ |#4|) 113) ((|#3| |#3| $) 117)))
-(((-692 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3799 ((-868) |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3122 (|#1| |#1| |#2|)) (-15 -2547 ((-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 -3111 (|#1| |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3101 (|#1| |#1| |#1|)) (-15 -2265 (|#1| |#1| (-570) (-570) |#1|)) (-15 -4317 (|#1| |#1| (-570) (-570) (-570) (-570))) (-15 -1773 (|#1| |#1| (-570) (-570))) (-15 -4088 (|#1| |#1| (-570) (-570))) (-15 -3932 (|#1| |#1| (-650 (-570)) (-650 (-570)) |#1|)) (-15 -1941 (|#1| |#1| (-650 (-570)) (-650 (-570)))) (-15 -3575 ((-650 (-650 |#2|)) |#1|)) (-15 -2133 (|#1| |#1| |#1|)) (-15 -2721 (|#1| |#1| |#1|)) (-15 -1885 (|#1| |#1|)) (-15 -3244 (|#1| |#1|)) (-15 -3244 (|#1| |#3|)) (-15 -3799 (|#1| |#4|)) (-15 -2173 (|#1| (-650 |#1|))) (-15 -2173 (|#1| (-650 |#2|))) (-15 -2741 (|#1| (-777) |#2|)) (-15 -2571 (|#1| (-650 (-650 |#2|)))) (-15 -3504 (|#1| (-777) (-777))) (-15 -2841 ((-112) |#1|)) (-15 -1735 ((-112) |#1|)) (-15 -3285 ((-112) |#1|)) (-15 -4253 ((-112) |#1|)) (-15 -3932 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570) (-570)))) (-693 |#2| |#3| |#4|) (-1058) (-378 |#2|) (-378 |#2|)) (T -692))
-NIL
-(-10 -8 (-15 -3799 ((-868) |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3122 (|#1| |#1| |#2|)) (-15 -2547 ((-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 -3111 (|#1| |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3101 (|#1| |#1| |#1|)) (-15 -2265 (|#1| |#1| (-570) (-570) |#1|)) (-15 -4317 (|#1| |#1| (-570) (-570) (-570) (-570))) (-15 -1773 (|#1| |#1| (-570) (-570))) (-15 -4088 (|#1| |#1| (-570) (-570))) (-15 -3932 (|#1| |#1| (-650 (-570)) (-650 (-570)) |#1|)) (-15 -1941 (|#1| |#1| (-650 (-570)) (-650 (-570)))) (-15 -3575 ((-650 (-650 |#2|)) |#1|)) (-15 -2133 (|#1| |#1| |#1|)) (-15 -2721 (|#1| |#1| |#1|)) (-15 -1885 (|#1| |#1|)) (-15 -3244 (|#1| |#1|)) (-15 -3244 (|#1| |#3|)) (-15 -3799 (|#1| |#4|)) (-15 -2173 (|#1| (-650 |#1|))) (-15 -2173 (|#1| (-650 |#2|))) (-15 -2741 (|#1| (-777) |#2|)) (-15 -2571 (|#1| (-650 (-650 |#2|)))) (-15 -3504 (|#1| (-777) (-777))) (-15 -2841 ((-112) |#1|)) (-15 -1735 ((-112) |#1|)) (-15 -3285 ((-112) |#1|)) (-15 -4253 ((-112) |#1|)) (-15 -3932 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570) (-570))))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3504 (($ (-777) (-777)) 98)) (-2133 (($ $ $) 88)) (-3244 (($ |#2|) 92) (($ $) 91)) (-1735 (((-112) $) 100)) (-4088 (($ $ (-570) (-570)) 84)) (-1773 (($ $ (-570) (-570)) 83)) (-4317 (($ $ (-570) (-570) (-570) (-570)) 82)) (-1885 (($ $) 90)) (-4253 (((-112) $) 102)) (-4302 (((-112) $ (-777)) 8)) (-2265 (($ $ (-570) (-570) $) 81)) (-3932 ((|#1| $ (-570) (-570) |#1|) 45) (($ $ (-650 (-570)) (-650 (-570)) $) 85)) (-4419 (($ $ (-570) |#2|) 43)) (-2361 (($ $ (-570) |#3|) 42)) (-2741 (($ (-777) |#1|) 96)) (-1705 (($) 7 T CONST)) (-4089 (($ $) 68 (|has| |#1| (-311)))) (-2219 ((|#2| $ (-570)) 47)) (-4006 (((-777) $) 67 (|has| |#1| (-562)))) (-1517 ((|#1| $ (-570) (-570) |#1|) 44)) (-3820 ((|#1| $ (-570) (-570)) 49)) (-3627 (((-650 |#1|) $) 31)) (-2206 (((-777) $) 66 (|has| |#1| (-562)))) (-2123 (((-650 |#3|) $) 65 (|has| |#1| (-562)))) (-3316 (((-777) $) 52)) (-4291 (($ (-777) (-777) |#1|) 58)) (-3328 (((-777) $) 51)) (-2929 (((-112) $ (-777)) 9)) (-3689 ((|#1| $) 63 (|has| |#1| (-6 (-4451 "*"))))) (-4133 (((-570) $) 56)) (-2877 (((-570) $) 54)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1552 (((-570) $) 55)) (-1732 (((-570) $) 53)) (-2571 (($ (-650 (-650 |#1|))) 97)) (-1502 (($ (-1 |#1| |#1|) $) 35)) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-3575 (((-650 (-650 |#1|)) $) 87)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3490 (((-3 $ "failed") $) 62 (|has| |#1| (-368)))) (-2721 (($ $ $) 89)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2147 (($ $ |#1|) 57)) (-2547 (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-562)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) (-570)) 50) ((|#1| $ (-570) (-570) |#1|) 48) (($ $ (-650 (-570)) (-650 (-570))) 86)) (-2173 (($ (-650 |#1|)) 95) (($ (-650 $)) 94)) (-3285 (((-112) $) 101)) (-2137 ((|#1| $) 64 (|has| |#1| (-6 (-4451 "*"))))) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1508 ((|#3| $ (-570)) 46)) (-3799 (($ |#3|) 93) (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-2841 (((-112) $) 99)) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3122 (($ $ |#1|) 69 (|has| |#1| (-368)))) (-3111 (($ $ $) 79) (($ $) 78)) (-3101 (($ $ $) 80)) (** (($ $ (-777)) 71) (($ $ (-570)) 61 (|has| |#1| (-368)))) (* (($ $ $) 77) (($ |#1| $) 76) (($ $ |#1|) 75) (($ (-570) $) 74) ((|#3| $ |#3|) 73) ((|#2| |#2| $) 72)) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-1742 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-1434 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-2498 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-3727 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2497 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-3664 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-2825 (*1 *2 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-2311 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))) (-4062 (*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-3152 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-680 *3)) (-4 *3 (-1227)))) (-1682 (*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
+(-13 (-1158 |t#1|) (-10 -8 (-15 -1742 ($ (-1 (-112) |t#1|) $)) (-15 -1434 ($ (-1 (-112) |t#1|) $)) (-15 -2498 ((-112) $)) (-15 -3727 ((-112) $)) (-15 -2497 ((-112) $)) (-15 -3664 ($ $)) (-15 -2825 (|t#1| $)) (-15 -2311 ($ $)) (-15 -4062 ((-777) $)) (-15 -3152 ($ $ (-570))) (-15 -1682 ($ $))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4060 (($ (-777) (-777) (-777)) 53 (|has| |#1| (-1058)))) (-1932 (((-112) $ (-777)) NIL)) (-3255 ((|#1| $ (-777) (-777) (-777) |#1|) 47)) (-3195 (($) NIL T CONST)) (-3296 (($ $ $) 57 (|has| |#1| (-1058)))) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3497 (((-1277 (-777)) $) 12)) (-2104 (($ (-1186) $ $) 34)) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3798 (($ (-777)) 55 (|has| |#1| (-1058)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-777) (-777) (-777)) 44)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3814 (($ (-650 (-650 (-650 |#1|)))) 67)) (-3802 (($ (-965 (-965 (-965 |#1|)))) 23) (((-965 (-965 (-965 |#1|))) $) 19) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-681 |#1|) (-13 (-495 |#1|) (-10 -8 (IF (|has| |#1| (-1058)) (PROGN (-15 -4060 ($ (-777) (-777) (-777))) (-15 -3798 ($ (-777))) (-15 -3296 ($ $ $))) |%noBranch|) (-15 -3814 ($ (-650 (-650 (-650 |#1|))))) (-15 -1942 (|#1| $ (-777) (-777) (-777))) (-15 -3255 (|#1| $ (-777) (-777) (-777) |#1|)) (-15 -3802 ($ (-965 (-965 (-965 |#1|))))) (-15 -3802 ((-965 (-965 (-965 |#1|))) $)) (-15 -2104 ($ (-1186) $ $)) (-15 -3497 ((-1277 (-777)) $)))) (-1109)) (T -681))
+((-4060 (*1 *1 *2 *2 *2) (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058)) (-4 *3 (-1109)))) (-3798 (*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058)) (-4 *3 (-1109)))) (-3296 (*1 *1 *1 *1) (-12 (-5 *1 (-681 *2)) (-4 *2 (-1058)) (-4 *2 (-1109)))) (-3814 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-650 *3)))) (-4 *3 (-1109)) (-5 *1 (-681 *3)))) (-1942 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))) (-3255 (*1 *2 *1 *3 *3 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-965 (-965 (-965 *3)))) (-4 *3 (-1109)) (-5 *1 (-681 *3)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-965 (-965 (-965 *3)))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))) (-2104 (*1 *1 *2 *1 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-681 *3)) (-4 *3 (-1109)))) (-3497 (*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 -4060 ($ (-777) (-777) (-777))) (-15 -3798 ($ (-777))) (-15 -3296 ($ $ $))) |%noBranch|) (-15 -3814 ($ (-650 (-650 (-650 |#1|))))) (-15 -1942 (|#1| $ (-777) (-777) (-777))) (-15 -3255 (|#1| $ (-777) (-777) (-777) |#1|)) (-15 -3802 ($ (-965 (-965 (-965 |#1|))))) (-15 -3802 ((-965 (-965 (-965 |#1|))) $)) (-15 -2104 ($ (-1186) $ $)) (-15 -3497 ((-1277 (-777)) $))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-1586 (((-489) $) 10)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 19) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-1144) $) 12)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-682) (-13 (-1092) (-10 -8 (-15 -1586 ((-489) $)) (-15 -3616 ((-1144) $))))) (T -682))
+((-1586 (*1 *2 *1) (-12 (-5 *2 (-489)) (-5 *1 (-682)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-682)))))
+(-13 (-1092) (-10 -8 (-15 -1586 ((-489) $)) (-15 -3616 ((-1144) $))))
+((-2560 (((-112) $ $) NIL)) (-3182 (((-650 |#1|) $) 15)) (-4413 (($ $) 19)) (-2635 (((-112) $) 20)) (-4383 (((-3 |#1| "failed") $) 23)) (-3220 ((|#1| $) 21)) (-3558 (($ $) 37)) (-2523 (($ $) 25)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-1312 (((-112) $ $) 47)) (-1356 (((-928) $) 40)) (-4400 (($ $) 18)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 ((|#1| $) 36)) (-3802 (((-868) $) 32) (($ |#1|) 24) (((-825 |#1|) $) 28)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 13)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 44)) (* (($ $ $) 35)))
+(((-683 |#1|) (-13 (-856) (-1047 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3802 ((-825 |#1|) $)) (-15 -3546 (|#1| $)) (-15 -4400 ($ $)) (-15 -1356 ((-928) $)) (-15 -1312 ((-112) $ $)) (-15 -2523 ($ $)) (-15 -3558 ($ $)) (-15 -2635 ((-112) $)) (-15 -4413 ($ $)) (-15 -3182 ((-650 |#1|) $)))) (-856)) (T -683))
+((* (*1 *1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-3546 (*1 *2 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-4400 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-1356 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-1312 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-2523 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3558 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-2635 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-683 *3)) (-4 *3 (-856)))) (-4413 (*1 *1 *1) (-12 (-5 *1 (-683 *2)) (-4 *2 (-856)))) (-3182 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-683 *3)) (-4 *3 (-856)))))
+(-13 (-856) (-1047 |#1|) (-10 -8 (-15 * ($ $ $)) (-15 -3802 ((-825 |#1|) $)) (-15 -3546 (|#1| $)) (-15 -4400 ($ $)) (-15 -1356 ((-928) $)) (-15 -1312 ((-112) $ $)) (-15 -2523 ($ $)) (-15 -3558 ($ $)) (-15 -2635 ((-112) $)) (-15 -4413 ($ $)) (-15 -3182 ((-650 |#1|) $))))
+((-2658 ((|#1| (-1 |#1| (-777) |#1|) (-777) |#1|) 11)) (-4320 ((|#1| (-1 |#1| |#1|) (-777) |#1|) 9)))
+(((-684 |#1|) (-10 -7 (-15 -4320 (|#1| (-1 |#1| |#1|) (-777) |#1|)) (-15 -2658 (|#1| (-1 |#1| (-777) |#1|) (-777) |#1|))) (-1109)) (T -684))
+((-2658 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 (-777) *2)) (-5 *4 (-777)) (-4 *2 (-1109)) (-5 *1 (-684 *2)))) (-4320 (*1 *2 *3 *4 *2) (-12 (-5 *3 (-1 *2 *2)) (-5 *4 (-777)) (-4 *2 (-1109)) (-5 *1 (-684 *2)))))
+(-10 -7 (-15 -4320 (|#1| (-1 |#1| |#1|) (-777) |#1|)) (-15 -2658 (|#1| (-1 |#1| (-777) |#1|) (-777) |#1|)))
+((-4108 ((|#2| |#1| |#2|) 9)) (-4098 ((|#1| |#1| |#2|) 8)))
+(((-685 |#1| |#2|) (-10 -7 (-15 -4098 (|#1| |#1| |#2|)) (-15 -4108 (|#2| |#1| |#2|))) (-1109) (-1109)) (T -685))
+((-4108 (*1 *2 *3 *2) (-12 (-5 *1 (-685 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-4098 (*1 *2 *2 *3) (-12 (-5 *1 (-685 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -4098 (|#1| |#1| |#2|)) (-15 -4108 (|#2| |#1| |#2|)))
+((-3373 ((|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|) 11)))
+(((-686 |#1| |#2| |#3|) (-10 -7 (-15 -3373 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|))) (-1109) (-1109) (-1109)) (T -686))
+((-3373 (*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 -3373 (|#3| (-1 |#3| |#2|) (-1 |#2| |#1|) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3866 (((-1226) $) 21)) (-3818 (((-650 (-1226)) $) 19)) (-3194 (($ (-650 (-1226)) (-1226)) 14)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 29) (($ (-1191)) NIL) (((-1191) $) NIL) (((-1226) $) 22) (($ (-1127)) 10)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-687) (-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3802 ($ (-1127))) (-15 -3194 ($ (-650 (-1226)) (-1226))) (-15 -3818 ((-650 (-1226)) $)) (-15 -3866 ((-1226) $))))) (T -687))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1127)) (-5 *1 (-687)))) (-3194 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1226))) (-5 *3 (-1226)) (-5 *1 (-687)))) (-3818 (*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-687)))) (-3866 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-687)))))
+(-13 (-1092) (-619 (-1226)) (-10 -8 (-15 -3802 ($ (-1127))) (-15 -3194 ($ (-650 (-1226)) (-1226))) (-15 -3818 ((-650 (-1226)) $)) (-15 -3866 ((-1226) $))))
+((-2658 (((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|)) 26)) (-4333 (((-1 |#1|) |#1|) 8)) (-4263 ((|#1| |#1|) 19)) (-3789 (((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570)) 18) ((|#1| (-1 |#1| |#1|)) 11)) (-3802 (((-1 |#1|) |#1|) 9)) (** (((-1 |#1| |#1|) (-1 |#1| |#1|) (-777)) 23)))
+(((-688 |#1|) (-10 -7 (-15 -4333 ((-1 |#1|) |#1|)) (-15 -3802 ((-1 |#1|) |#1|)) (-15 -3789 (|#1| (-1 |#1| |#1|))) (-15 -3789 ((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570))) (-15 -4263 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-777))) (-15 -2658 ((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|)))) (-1109)) (T -688))
+((-2658 (*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)))) (-4263 (*1 *2 *2) (-12 (-5 *1 (-688 *2)) (-4 *2 (-1109)))) (-3789 (*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)))) (-3789 (*1 *2 *3) (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-688 *2)) (-4 *2 (-1109)))) (-3802 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))) (-4333 (*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -4333 ((-1 |#1|) |#1|)) (-15 -3802 ((-1 |#1|) |#1|)) (-15 -3789 (|#1| (-1 |#1| |#1|))) (-15 -3789 ((-650 |#1|) (-1 (-650 |#1|) (-650 |#1|)) (-570))) (-15 -4263 (|#1| |#1|)) (-15 ** ((-1 |#1| |#1|) (-1 |#1| |#1|) (-777))) (-15 -2658 ((-1 |#1| (-777) |#1|) (-1 |#1| (-777) |#1|))))
+((-3823 (((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)) 16)) (-4356 (((-1 |#2|) (-1 |#2| |#1|) |#1|) 13)) (-3728 (((-1 |#2| |#1|) (-1 |#2|)) 14)) (-2807 (((-1 |#2| |#1|) |#2|) 11)))
+(((-689 |#1| |#2|) (-10 -7 (-15 -2807 ((-1 |#2| |#1|) |#2|)) (-15 -4356 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -3728 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3823 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|)))) (-1109) (-1109)) (T -689))
+((-3823 (*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)))) (-3728 (*1 *2 *3) (-12 (-5 *3 (-1 *5)) (-4 *5 (-1109)) (-5 *2 (-1 *5 *4)) (-5 *1 (-689 *4 *5)) (-4 *4 (-1109)))) (-4356 (*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)))) (-2807 (*1 *2 *3) (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-689 *4 *3)) (-4 *4 (-1109)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -2807 ((-1 |#2| |#1|) |#2|)) (-15 -4356 ((-1 |#2|) (-1 |#2| |#1|) |#1|)) (-15 -3728 ((-1 |#2| |#1|) (-1 |#2|))) (-15 -3823 ((-1 |#2| |#1|) (-1 |#2| |#1| |#1|))))
+((-3830 (((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|)) 17)) (-2650 (((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|) 11)) (-2882 (((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|) 13)) (-2440 (((-1 |#3| |#1| |#2|) (-1 |#3| |#1|)) 14)) (-1699 (((-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 -2650 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2882 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2440 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1699 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3830 ((-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)))) (-3830 (*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)))) (-1699 (*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)))) (-2440 (*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)))) (-2882 (*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)))) (-2650 (*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 -2650 ((-1 |#3| |#1|) (-1 |#3| |#1| |#2|) |#2|)) (-15 -2882 ((-1 |#3| |#2|) (-1 |#3| |#1| |#2|) |#1|)) (-15 -2440 ((-1 |#3| |#1| |#2|) (-1 |#3| |#1|))) (-15 -1699 ((-1 |#3| |#1| |#2|) (-1 |#3| |#2|))) (-15 -3830 ((-1 |#3| |#2| |#1|) (-1 |#3| |#1| |#2|))) (-15 * ((-1 |#3| |#1|) (-1 |#3| |#2|) (-1 |#2| |#1|))))
+((-3627 ((|#5| (-1 |#5| |#1| |#5|) |#4| |#5|) 39)) (-1357 (((-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 -1357 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1357 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3627 (|#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))
+((-3627 (*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)))) (-1357 (*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)))) (-1357 (*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 -1357 (|#8| (-1 |#5| |#1|) |#4|)) (-15 -1357 ((-3 |#8| "failed") (-1 (-3 |#5| "failed") |#1|) |#4|)) (-15 -3627 (|#5| (-1 |#5| |#1| |#5|) |#4| |#5|)))
+((-3507 (($ (-777) (-777)) 42)) (-3105 (($ $ $) 71)) (-2333 (($ |#3|) 66) (($ $) 67)) (-3493 (((-112) $) 36)) (-3597 (($ $ (-570) (-570)) 82)) (-2616 (($ $ (-570) (-570)) 83)) (-2057 (($ $ (-570) (-570) (-570) (-570)) 88)) (-2411 (($ $) 69)) (-1407 (((-112) $) 15)) (-3861 (($ $ (-570) (-570) $) 89)) (-3935 ((|#2| $ (-570) (-570) |#2|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) 87)) (-3130 (($ (-777) |#2|) 53)) (-2572 (($ (-650 (-650 |#2|))) 51)) (-2309 (((-650 (-650 |#2|)) $) 78)) (-2979 (($ $ $) 70)) (-2548 (((-3 $ "failed") $ |#2|) 120)) (-1942 ((|#2| $ (-570) (-570)) NIL) ((|#2| $ (-570) (-570) |#2|) NIL) (($ $ (-650 (-570)) (-650 (-570))) 86)) (-2323 (($ (-650 |#2|)) 54) (($ (-650 $)) 56)) (-1424 (((-112) $) 28)) (-3802 (($ |#4|) 61) (((-868) $) NIL)) (-1548 (((-112) $) 38)) (-3125 (($ $ |#2|) 122)) (-3114 (($ $ $) 93) (($ $) 96)) (-3104 (($ $ $) 91)) (** (($ $ (-777)) 109) (($ $ (-570)) 126)) (* (($ $ $) 102) (($ |#2| $) 98) (($ $ |#2|) 99) (($ (-570) $) 101) ((|#4| $ |#4|) 113) ((|#3| |#3| $) 117)))
+(((-692 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3802 ((-868) |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3125 (|#1| |#1| |#2|)) (-15 -2548 ((-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 -3114 (|#1| |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3104 (|#1| |#1| |#1|)) (-15 -3861 (|#1| |#1| (-570) (-570) |#1|)) (-15 -2057 (|#1| |#1| (-570) (-570) (-570) (-570))) (-15 -2616 (|#1| |#1| (-570) (-570))) (-15 -3597 (|#1| |#1| (-570) (-570))) (-15 -3935 (|#1| |#1| (-650 (-570)) (-650 (-570)) |#1|)) (-15 -1942 (|#1| |#1| (-650 (-570)) (-650 (-570)))) (-15 -2309 ((-650 (-650 |#2|)) |#1|)) (-15 -3105 (|#1| |#1| |#1|)) (-15 -2979 (|#1| |#1| |#1|)) (-15 -2411 (|#1| |#1|)) (-15 -2333 (|#1| |#1|)) (-15 -2333 (|#1| |#3|)) (-15 -3802 (|#1| |#4|)) (-15 -2323 (|#1| (-650 |#1|))) (-15 -2323 (|#1| (-650 |#2|))) (-15 -3130 (|#1| (-777) |#2|)) (-15 -2572 (|#1| (-650 (-650 |#2|)))) (-15 -3507 (|#1| (-777) (-777))) (-15 -1548 ((-112) |#1|)) (-15 -3493 ((-112) |#1|)) (-15 -1424 ((-112) |#1|)) (-15 -1407 ((-112) |#1|)) (-15 -3935 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570) (-570)))) (-693 |#2| |#3| |#4|) (-1058) (-378 |#2|) (-378 |#2|)) (T -692))
+NIL
+(-10 -8 (-15 -3802 ((-868) |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3125 (|#1| |#1| |#2|)) (-15 -2548 ((-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 -3114 (|#1| |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3104 (|#1| |#1| |#1|)) (-15 -3861 (|#1| |#1| (-570) (-570) |#1|)) (-15 -2057 (|#1| |#1| (-570) (-570) (-570) (-570))) (-15 -2616 (|#1| |#1| (-570) (-570))) (-15 -3597 (|#1| |#1| (-570) (-570))) (-15 -3935 (|#1| |#1| (-650 (-570)) (-650 (-570)) |#1|)) (-15 -1942 (|#1| |#1| (-650 (-570)) (-650 (-570)))) (-15 -2309 ((-650 (-650 |#2|)) |#1|)) (-15 -3105 (|#1| |#1| |#1|)) (-15 -2979 (|#1| |#1| |#1|)) (-15 -2411 (|#1| |#1|)) (-15 -2333 (|#1| |#1|)) (-15 -2333 (|#1| |#3|)) (-15 -3802 (|#1| |#4|)) (-15 -2323 (|#1| (-650 |#1|))) (-15 -2323 (|#1| (-650 |#2|))) (-15 -3130 (|#1| (-777) |#2|)) (-15 -2572 (|#1| (-650 (-650 |#2|)))) (-15 -3507 (|#1| (-777) (-777))) (-15 -1548 ((-112) |#1|)) (-15 -3493 ((-112) |#1|)) (-15 -1424 ((-112) |#1|)) (-15 -1407 ((-112) |#1|)) (-15 -3935 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570) (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570) (-570))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3507 (($ (-777) (-777)) 98)) (-3105 (($ $ $) 88)) (-2333 (($ |#2|) 92) (($ $) 91)) (-3493 (((-112) $) 100)) (-3597 (($ $ (-570) (-570)) 84)) (-2616 (($ $ (-570) (-570)) 83)) (-2057 (($ $ (-570) (-570) (-570) (-570)) 82)) (-2411 (($ $) 90)) (-1407 (((-112) $) 102)) (-1932 (((-112) $ (-777)) 8)) (-3861 (($ $ (-570) (-570) $) 81)) (-3935 ((|#1| $ (-570) (-570) |#1|) 45) (($ $ (-650 (-570)) (-650 (-570)) $) 85)) (-3605 (($ $ (-570) |#2|) 43)) (-3650 (($ $ (-570) |#3|) 42)) (-3130 (($ (-777) |#1|) 96)) (-3195 (($) 7 T CONST)) (-3610 (($ $) 68 (|has| |#1| (-311)))) (-1494 ((|#2| $ (-570)) 47)) (-4009 (((-777) $) 67 (|has| |#1| (-562)))) (-1518 ((|#1| $ (-570) (-570) |#1|) 44)) (-3824 ((|#1| $ (-570) (-570)) 49)) (-3630 (((-650 |#1|) $) 31)) (-1330 (((-777) $) 66 (|has| |#1| (-562)))) (-3017 (((-650 |#3|) $) 65 (|has| |#1| (-562)))) (-3318 (((-777) $) 52)) (-4294 (($ (-777) (-777) |#1|) 58)) (-3330 (((-777) $) 51)) (-2317 (((-112) $ (-777)) 9)) (-3949 ((|#1| $) 63 (|has| |#1| (-6 (-4454 "*"))))) (-2822 (((-570) $) 56)) (-1943 (((-570) $) 54)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2278 (((-570) $) 55)) (-3461 (((-570) $) 53)) (-2572 (($ (-650 (-650 |#1|))) 97)) (-1503 (($ (-1 |#1| |#1|) $) 35)) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 41) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) 40)) (-2309 (((-650 (-650 |#1|)) $) 87)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2751 (((-3 $ "failed") $) 62 (|has| |#1| (-368)))) (-2979 (($ $ $) 89)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2061 (($ $ |#1|) 57)) (-2548 (((-3 $ "failed") $ |#1|) 70 (|has| |#1| (-562)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) (-570)) 50) ((|#1| $ (-570) (-570) |#1|) 48) (($ $ (-650 (-570)) (-650 (-570))) 86)) (-2323 (($ (-650 |#1|)) 95) (($ (-650 $)) 94)) (-1424 (((-112) $) 101)) (-3136 ((|#1| $) 64 (|has| |#1| (-6 (-4454 "*"))))) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3057 ((|#3| $ (-570)) 46)) (-3802 (($ |#3|) 93) (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-1548 (((-112) $) 99)) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3125 (($ $ |#1|) 69 (|has| |#1| (-368)))) (-3114 (($ $ $) 79) (($ $) 78)) (-3104 (($ $ $) 80)) (** (($ $ (-777)) 71) (($ $ (-570)) 61 (|has| |#1| (-368)))) (* (($ $ $) 77) (($ |#1| $) 76) (($ $ |#1|) 75) (($ (-570) $) 74) ((|#3| $ |#3|) 73) ((|#2| |#2| $) 72)) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-693 |#1| |#2| |#3|) (-141) (-1058) (-378 |t#1|) (-378 |t#1|)) (T -693))
-((-4253 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3285 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-1735 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-2841 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3504 (*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)))) (-2571 (*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)))) (-2741 (*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)))) (-2173 (*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)))) (-2173 (*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)))) (-3799 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *2)) (-4 *4 (-378 *3)) (-4 *2 (-378 *3)))) (-3244 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *2 *4)) (-4 *2 (-378 *3)) (-4 *4 (-378 *3)))) (-3244 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-1885 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2721 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2133 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3575 (*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))))) (-1941 (*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)))) (-3932 (*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)))) (-4088 (*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)))) (-1773 (*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)))) (-4317 (*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)))) (-2265 (*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)))) (-3101 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3111 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3111 (*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)))) (-2547 (*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)))) (-3122 (*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)))) (-4089 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-311)))) (-4006 (*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)))) (-2206 (*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)))) (-2123 (*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)))) (-2137 (*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)))) (-3689 (*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)))) (-3490 (*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 -4253 ((-112) $)) (-15 -3285 ((-112) $)) (-15 -1735 ((-112) $)) (-15 -2841 ((-112) $)) (-15 -3504 ($ (-777) (-777))) (-15 -2571 ($ (-650 (-650 |t#1|)))) (-15 -2741 ($ (-777) |t#1|)) (-15 -2173 ($ (-650 |t#1|))) (-15 -2173 ($ (-650 $))) (-15 -3799 ($ |t#3|)) (-15 -3244 ($ |t#2|)) (-15 -3244 ($ $)) (-15 -1885 ($ $)) (-15 -2721 ($ $ $)) (-15 -2133 ($ $ $)) (-15 -3575 ((-650 (-650 |t#1|)) $)) (-15 -1941 ($ $ (-650 (-570)) (-650 (-570)))) (-15 -3932 ($ $ (-650 (-570)) (-650 (-570)) $)) (-15 -4088 ($ $ (-570) (-570))) (-15 -1773 ($ $ (-570) (-570))) (-15 -4317 ($ $ (-570) (-570) (-570) (-570))) (-15 -2265 ($ $ (-570) (-570) $)) (-15 -3101 ($ $ $)) (-15 -3111 ($ $ $)) (-15 -3111 ($ $)) (-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 -2547 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -3122 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-311)) (-15 -4089 ($ $)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -4006 ((-777) $)) (-15 -2206 ((-777) $)) (-15 -2123 ((-650 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4451 "*"))) (PROGN (-15 -2137 (|t#1| $)) (-15 -3689 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-15 -3490 ((-3 $ "failed") $)) (-15 ** ($ $ (-570)))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-4089 ((|#4| |#4|) 92 (|has| |#1| (-311)))) (-4006 (((-777) |#4|) 120 (|has| |#1| (-562)))) (-2206 (((-777) |#4|) 96 (|has| |#1| (-562)))) (-2123 (((-650 |#3|) |#4|) 103 (|has| |#1| (-562)))) (-3212 (((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|) 135 (|has| |#1| (-311)))) (-3689 ((|#1| |#4|) 52)) (-2276 (((-3 |#4| "failed") |#4|) 84 (|has| |#1| (-562)))) (-3490 (((-3 |#4| "failed") |#4|) 100 (|has| |#1| (-368)))) (-2004 ((|#4| |#4|) 88 (|has| |#1| (-562)))) (-2198 ((|#4| |#4| |#1| (-570) (-570)) 60)) (-3494 ((|#4| |#4| (-570) (-570)) 55)) (-3155 ((|#4| |#4| |#1| (-570) (-570)) 65)) (-2137 ((|#1| |#4|) 98)) (-3979 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 89 (|has| |#1| (-562)))))
-(((-694 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2137 (|#1| |#4|)) (-15 -3689 (|#1| |#4|)) (-15 -3494 (|#4| |#4| (-570) (-570))) (-15 -2198 (|#4| |#4| |#1| (-570) (-570))) (-15 -3155 (|#4| |#4| |#1| (-570) (-570))) (IF (|has| |#1| (-562)) (PROGN (-15 -4006 ((-777) |#4|)) (-15 -2206 ((-777) |#4|)) (-15 -2123 ((-650 |#3|) |#4|)) (-15 -2004 (|#4| |#4|)) (-15 -2276 ((-3 |#4| "failed") |#4|)) (-15 -3979 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-311)) (PROGN (-15 -4089 (|#4| |#4|)) (-15 -3212 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -3490 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-174) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -694))
-((-3490 (*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)))) (-3212 (*1 *2 *3 *3) (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-694 *3 *4 *5 *6)) (-4 *6 (-693 *3 *4 *5)))) (-4089 (*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)))) (-3979 (*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)))) (-2276 (*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)))) (-2004 (*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)))) (-2123 (*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)))) (-2206 (*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)))) (-4006 (*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)))) (-3155 (*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)))) (-2198 (*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)))) (-3494 (*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)))) (-3689 (*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)))) (-2137 (*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 -2137 (|#1| |#4|)) (-15 -3689 (|#1| |#4|)) (-15 -3494 (|#4| |#4| (-570) (-570))) (-15 -2198 (|#4| |#4| |#1| (-570) (-570))) (-15 -3155 (|#4| |#4| |#1| (-570) (-570))) (IF (|has| |#1| (-562)) (PROGN (-15 -4006 ((-777) |#4|)) (-15 -2206 ((-777) |#4|)) (-15 -2123 ((-650 |#3|) |#4|)) (-15 -2004 (|#4| |#4|)) (-15 -2276 ((-3 |#4| "failed") |#4|)) (-15 -3979 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-311)) (PROGN (-15 -4089 (|#4| |#4|)) (-15 -3212 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -3490 ((-3 |#4| "failed") |#4|)) |%noBranch|))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3504 (($ (-777) (-777)) 64)) (-2133 (($ $ $) NIL)) (-3244 (($ (-1277 |#1|)) NIL) (($ $) NIL)) (-1735 (((-112) $) NIL)) (-4088 (($ $ (-570) (-570)) 22)) (-1773 (($ $ (-570) (-570)) NIL)) (-4317 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-1885 (($ $) NIL)) (-4253 (((-112) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-2265 (($ $ (-570) (-570) $) NIL)) (-3932 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-4419 (($ $ (-570) (-1277 |#1|)) NIL)) (-2361 (($ $ (-570) (-1277 |#1|)) NIL)) (-2741 (($ (-777) |#1|) 37)) (-1705 (($) NIL T CONST)) (-4089 (($ $) 46 (|has| |#1| (-311)))) (-2219 (((-1277 |#1|) $ (-570)) NIL)) (-4006 (((-777) $) 48 (|has| |#1| (-562)))) (-1517 ((|#1| $ (-570) (-570) |#1|) 69)) (-3820 ((|#1| $ (-570) (-570)) NIL)) (-3627 (((-650 |#1|) $) NIL)) (-2206 (((-777) $) 50 (|has| |#1| (-562)))) (-2123 (((-650 (-1277 |#1|)) $) 53 (|has| |#1| (-562)))) (-3316 (((-777) $) 32)) (-4291 (($ (-777) (-777) |#1|) 28)) (-3328 (((-777) $) 33)) (-2929 (((-112) $ (-777)) NIL)) (-3689 ((|#1| $) 44 (|has| |#1| (-6 (-4451 "*"))))) (-4133 (((-570) $) 10)) (-2877 (((-570) $) 11)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1552 (((-570) $) 14)) (-1732 (((-570) $) 65)) (-2571 (($ (-650 (-650 |#1|))) NIL)) (-1502 (($ (-1 |#1| |#1|) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-3575 (((-650 (-650 |#1|)) $) 76)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3490 (((-3 $ "failed") $) 60 (|has| |#1| (-368)))) (-2721 (($ $ $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2147 (($ $ |#1|) NIL)) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2173 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL) (($ (-1277 |#1|)) 70)) (-3285 (((-112) $) NIL)) (-2137 ((|#1| $) 42 (|has| |#1| (-6 (-4451 "*"))))) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-1425 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-1508 (((-1277 |#1|) $ (-570)) NIL)) (-3799 (($ (-1277 |#1|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-2841 (((-112) $) NIL)) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $ $) NIL) (($ $) NIL)) (-3101 (($ $ $) 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)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-695 |#1|) (-13 (-693 |#1| (-1277 |#1|) (-1277 |#1|)) (-10 -8 (-15 -2173 ($ (-1277 |#1|))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -3490 ((-3 $ "failed") $)) |%noBranch|))) (-1058)) (T -695))
-((-3490 (*1 *1 *1) (|partial| -12 (-5 *1 (-695 *2)) (-4 *2 (-368)) (-4 *2 (-1058)))) (-2173 (*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 -2173 ($ (-1277 |#1|))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -3490 ((-3 $ "failed") $)) |%noBranch|)))
-((-1539 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 37)) (-3523 (((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|) 32)) (-2513 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777)) 43)) (-4191 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 25)) (-1749 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 29) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 27)) (-4072 (((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|)) 31)) (-1342 (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 23)) (** (((-695 |#1|) (-695 |#1|) (-777)) 46)))
-(((-696 |#1|) (-10 -7 (-15 -1342 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -4191 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1749 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1749 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -4072 ((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|))) (-15 -3523 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -1539 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2513 ((-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)))) (-2513 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-696 *4)))) (-1539 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-3523 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-4072 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-1749 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-1749 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-4191 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-1342 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
-(-10 -7 (-15 -1342 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -4191 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1749 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1749 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -4072 ((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|))) (-15 -3523 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -1539 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2513 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777))) (-15 ** ((-695 |#1|) (-695 |#1|) (-777))))
-((-4380 (((-3 |#1| "failed") $) 18)) (-3216 ((|#1| $) NIL)) (-1623 (($) 7 T CONST)) (-3999 (($ |#1|) 8)) (-3799 (($ |#1|) 16) (((-868) $) 23)) (-1851 (((-112) $ (|[\|\|]| |#1|)) 14) (((-112) $ (|[\|\|]| -1623)) 11)) (-3983 ((|#1| $) 15)))
-(((-697 |#1|) (-13 (-1272) (-1047 |#1|) (-619 (-868)) (-10 -8 (-15 -3999 ($ |#1|)) (-15 -1851 ((-112) $ (|[\|\|]| |#1|))) (-15 -1851 ((-112) $ (|[\|\|]| -1623))) (-15 -3983 (|#1| $)) (-15 -1623 ($) -3725))) (-619 (-868))) (T -697))
-((-3999 (*1 *1 *2) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-619 (-868))) (-5 *2 (-112)) (-5 *1 (-697 *4)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1623)) (-5 *2 (-112)) (-5 *1 (-697 *4)) (-4 *4 (-619 (-868))))) (-3983 (*1 *2 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))) (-1623 (*1 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
-(-13 (-1272) (-1047 |#1|) (-619 (-868)) (-10 -8 (-15 -3999 ($ |#1|)) (-15 -1851 ((-112) $ (|[\|\|]| |#1|))) (-15 -1851 ((-112) $ (|[\|\|]| -1623))) (-15 -3983 (|#1| $)) (-15 -1623 ($) -3725)))
-((-2791 ((|#2| |#2| |#4|) 29)) (-2189 (((-695 |#2|) |#3| |#4|) 35)) (-1925 (((-695 |#2|) |#2| |#4|) 34)) (-3016 (((-1277 |#2|) |#2| |#4|) 16)) (-2325 ((|#2| |#3| |#4|) 28)) (-2870 (((-695 |#2|) |#3| |#4| (-777) (-777)) 47)) (-2272 (((-695 |#2|) |#2| |#4| (-777)) 46)))
-(((-698 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3016 ((-1277 |#2|) |#2| |#4|)) (-15 -2325 (|#2| |#3| |#4|)) (-15 -2791 (|#2| |#2| |#4|)) (-15 -1925 ((-695 |#2|) |#2| |#4|)) (-15 -2272 ((-695 |#2|) |#2| |#4| (-777))) (-15 -2189 ((-695 |#2|) |#3| |#4|)) (-15 -2870 ((-695 |#2|) |#3| |#4| (-777) (-777)))) (-1109) (-907 |#1|) (-378 |#2|) (-13 (-378 |#1|) (-10 -7 (-6 -4449)))) (T -698))
-((-2870 (*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)))))) (-2189 (*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)))))) (-2272 (*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)))))) (-1925 (*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)))))) (-2791 (*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)))))) (-2325 (*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)))))) (-3016 (*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 -3016 ((-1277 |#2|) |#2| |#4|)) (-15 -2325 (|#2| |#3| |#4|)) (-15 -2791 (|#2| |#2| |#4|)) (-15 -1925 ((-695 |#2|) |#2| |#4|)) (-15 -2272 ((-695 |#2|) |#2| |#4| (-777))) (-15 -2189 ((-695 |#2|) |#3| |#4|)) (-15 -2870 ((-695 |#2|) |#3| |#4| (-777) (-777))))
-((-3644 (((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|)) 20)) (-2171 ((|#1| (-695 |#2|)) 9)) (-1916 (((-695 |#1|) (-695 |#2|)) 18)))
-(((-699 |#1| |#2|) (-10 -7 (-15 -2171 (|#1| (-695 |#2|))) (-15 -1916 ((-695 |#1|) (-695 |#2|))) (-15 -3644 ((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|)))) (-562) (-1001 |#1|)) (T -699))
-((-3644 (*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)))) (-1916 (*1 *2 *3) (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562)) (-5 *2 (-695 *4)) (-5 *1 (-699 *4 *5)))) (-2171 (*1 *2 *3) (-12 (-5 *3 (-695 *4)) (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-699 *2 *4)))))
-(-10 -7 (-15 -2171 (|#1| (-695 |#2|))) (-15 -1916 ((-695 |#1|) (-695 |#2|))) (-15 -3644 ((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1806 (((-695 (-705))) NIL) (((-695 (-705)) (-1277 $)) NIL)) (-3207 (((-705) $) NIL)) (-2887 (($ $) NIL (|has| (-705) (-1212)))) (-2751 (($ $) NIL (|has| (-705) (-1212)))) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-705) (-354)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-4364 (($ $) NIL (-2892 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-1652 (((-424 $) $) NIL (-2892 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-3814 (($ $) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1212))))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-3473 (((-112) $ $) NIL (|has| (-705) (-311)))) (-3510 (((-777)) NIL (|has| (-705) (-373)))) (-2866 (($ $) NIL (|has| (-705) (-1212)))) (-2733 (($ $) NIL (|has| (-705) (-1212)))) (-4107 (($ $) NIL (|has| (-705) (-1212)))) (-2774 (($ $) NIL (|has| (-705) (-1212)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL) (((-3 (-705) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-705) (-1047 (-413 (-570)))))) (-3216 (((-570) $) NIL) (((-705) $) NIL) (((-413 (-570)) $) NIL (|has| (-705) (-1047 (-413 (-570)))))) (-3243 (($ (-1277 (-705))) NIL) (($ (-1277 (-705)) (-1277 $)) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-705) (-354)))) (-2506 (($ $ $) NIL (|has| (-705) (-311)))) (-2818 (((-695 (-705)) $) NIL) (((-695 (-705)) $ (-1277 $)) NIL)) (-4196 (((-695 (-705)) (-695 $)) NIL) (((-2 (|:| -2415 (-695 (-705))) (|:| |vec| (-1277 (-705)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-705) (-645 (-570)))) (((-695 (-570)) (-695 $)) NIL (|has| (-705) (-645 (-570))))) (-3624 (((-3 $ "failed") (-413 (-1182 (-705)))) NIL (|has| (-705) (-368))) (($ (-1182 (-705))) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3823 (((-705) $) 29)) (-2805 (((-3 (-413 (-570)) "failed") $) NIL (|has| (-705) (-551)))) (-3242 (((-112) $) NIL (|has| (-705) (-551)))) (-2068 (((-413 (-570)) $) NIL (|has| (-705) (-551)))) (-4006 (((-928)) NIL)) (-3446 (($) NIL (|has| (-705) (-373)))) (-2518 (($ $ $) NIL (|has| (-705) (-311)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| (-705) (-311)))) (-2652 (($) NIL (|has| (-705) (-354)))) (-2542 (((-112) $) NIL (|has| (-705) (-354)))) (-2063 (($ $) NIL (|has| (-705) (-354))) (($ $ (-777)) NIL (|has| (-705) (-354)))) (-3618 (((-112) $) NIL (-2892 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-4094 (((-2 (|:| |r| (-705)) (|:| |phi| (-705))) $) NIL (-12 (|has| (-705) (-1069)) (|has| (-705) (-1212))))) (-1315 (($) NIL (|has| (-705) (-1212)))) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-705) (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-705) (-893 (-570))))) (-4323 (((-839 (-928)) $) NIL (|has| (-705) (-354))) (((-928) $) NIL (|has| (-705) (-354)))) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1212))))) (-2959 (((-705) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| (-705) (-354)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-705) (-311)))) (-3521 (((-1182 (-705)) $) NIL (|has| (-705) (-368)))) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1356 (($ (-1 (-705) (-705)) $) NIL)) (-1884 (((-928) $) NIL (|has| (-705) (-373)))) (-2789 (($ $) NIL (|has| (-705) (-1212)))) (-3612 (((-1182 (-705)) $) NIL)) (-1899 (($ (-650 $)) NIL (|has| (-705) (-311))) (($ $ $) NIL (|has| (-705) (-311)))) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| (-705) (-368)))) (-2438 (($) NIL (|has| (-705) (-354)) CONST)) (-2268 (($ (-928)) NIL (|has| (-705) (-373)))) (-1501 (($) NIL)) (-3833 (((-705) $) 31)) (-3577 (((-1129) $) NIL)) (-2466 (($) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-705) (-311)))) (-1942 (($ (-650 $)) NIL (|has| (-705) (-311))) (($ $ $) NIL (|has| (-705) (-311)))) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| (-705) (-354)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-3801 (((-424 $) $) NIL (-2892 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-705) (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| (-705) (-311)))) (-2547 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-705)) NIL (|has| (-705) (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-705) (-311)))) (-4387 (($ $) NIL (|has| (-705) (-1212)))) (-1770 (($ $ (-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))))) (-2142 (((-777) $) NIL (|has| (-705) (-311)))) (-1941 (($ $ (-705)) NIL (|has| (-705) (-290 (-705) (-705))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| (-705) (-311)))) (-3570 (((-705)) NIL) (((-705) (-1277 $)) NIL)) (-2289 (((-3 (-777) "failed") $ $) NIL (|has| (-705) (-354))) (((-777) $) NIL (|has| (-705) (-354)))) (-3547 (($ $ (-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)))) (-1998 (((-695 (-705)) (-1277 $) (-1 (-705) (-705))) NIL (|has| (-705) (-368)))) (-2755 (((-1182 (-705))) NIL)) (-4117 (($ $) NIL (|has| (-705) (-1212)))) (-2788 (($ $) NIL (|has| (-705) (-1212)))) (-4003 (($) NIL (|has| (-705) (-354)))) (-2899 (($ $) NIL (|has| (-705) (-1212)))) (-2766 (($ $) NIL (|has| (-705) (-1212)))) (-2876 (($ $) NIL (|has| (-705) (-1212)))) (-2740 (($ $) NIL (|has| (-705) (-1212)))) (-3424 (((-695 (-705)) (-1277 $)) NIL) (((-1277 (-705)) $) NIL) (((-695 (-705)) (-1277 $) (-1277 $)) NIL) (((-1277 (-705)) $ (-1277 $)) NIL)) (-1425 (((-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)) (-2020 (($ $) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-2892 (-12 (|has| (-705) (-311)) (|has| $ (-146)) (|has| (-705) (-916))) (|has| (-705) (-354))))) (-3175 (($ (-705) (-705)) 12)) (-3799 (((-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 (-2892 (|has| (-705) (-1047 (-413 (-570)))) (|has| (-705) (-368))))) (-3532 (($ $) NIL (|has| (-705) (-354))) (((-3 $ "failed") $) NIL (-2892 (-12 (|has| (-705) (-311)) (|has| $ (-146)) (|has| (-705) (-916))) (|has| (-705) (-146))))) (-3553 (((-1182 (-705)) $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL)) (-4154 (($ $) NIL (|has| (-705) (-1212)))) (-2825 (($ $) NIL (|has| (-705) (-1212)))) (-2029 (((-112) $ $) NIL)) (-4129 (($ $) NIL (|has| (-705) (-1212)))) (-2801 (($ $) NIL (|has| (-705) (-1212)))) (-4176 (($ $) NIL (|has| (-705) (-1212)))) (-2845 (($ $) NIL (|has| (-705) (-1212)))) (-1905 (((-705) $) NIL (|has| (-705) (-1212)))) (-1578 (($ $) NIL (|has| (-705) (-1212)))) (-2855 (($ $) NIL (|has| (-705) (-1212)))) (-4163 (($ $) NIL (|has| (-705) (-1212)))) (-2835 (($ $) NIL (|has| (-705) (-1212)))) (-4140 (($ $) NIL (|has| (-705) (-1212)))) (-2814 (($ $) NIL (|has| (-705) (-1212)))) (-2622 (($ $) NIL (|has| (-705) (-1069)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-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)))) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL (|has| (-705) (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3799 ($ (-171 (-384)))) (-15 -3799 ($ (-171 (-570)))) (-15 -3799 ($ (-171 (-705)))) (-15 -3799 ($ (-171 (-707)))) (-15 -3799 ((-171 (-384)) $))))) (T -700))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-700)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-171 (-570))) (-5 *1 (-700)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-171 (-705))) (-5 *1 (-700)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-171 (-707))) (-5 *1 (-700)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-700)))))
-(-13 (-393) (-167 (-705)) (-10 -8 (-15 -3799 ($ (-171 (-384)))) (-15 -3799 ($ (-171 (-570)))) (-15 -3799 ($ (-171 (-705)))) (-15 -3799 ($ (-171 (-707)))) (-15 -3799 ((-171 (-384)) $))))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-3753 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3110 (($ $) 63)) (-3579 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1741 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2136 (((-650 (-2 (|:| -2340 |#1|) (|:| -3584 (-777)))) $) 62)) (-2178 (($) 50) (($ (-650 |#1|)) 49)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 51)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-1407 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-1424 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3493 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-1548 (*1 *2 *1) (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-112)))) (-3507 (*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)))) (-2572 (*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)))) (-3130 (*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)))) (-2323 (*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)))) (-2323 (*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)))) (-3802 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *4 *2)) (-4 *4 (-378 *3)) (-4 *2 (-378 *3)))) (-2333 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *1 (-693 *3 *2 *4)) (-4 *2 (-378 *3)) (-4 *4 (-378 *3)))) (-2333 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2411 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2979 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3105 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-2309 (*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))))) (-1942 (*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)))) (-3935 (*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)))) (-3597 (*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)))) (-2616 (*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)))) (-2057 (*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)))) (-3861 (*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)))) (-3104 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3114 (*1 *1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)))) (-3114 (*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)))) (-2548 (*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)))) (-3125 (*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)))) (-3610 (*1 *1 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (-4 *2 (-311)))) (-4009 (*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)))) (-1330 (*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)))) (-3017 (*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)))) (-3136 (*1 *2 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (|has| *2 (-6 (-4454 "*"))) (-4 *2 (-1058)))) (-3949 (*1 *2 *1) (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2)) (|has| *2 (-6 (-4454 "*"))) (-4 *2 (-1058)))) (-2751 (*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 -4453) (-6 -4452) (-15 -1407 ((-112) $)) (-15 -1424 ((-112) $)) (-15 -3493 ((-112) $)) (-15 -1548 ((-112) $)) (-15 -3507 ($ (-777) (-777))) (-15 -2572 ($ (-650 (-650 |t#1|)))) (-15 -3130 ($ (-777) |t#1|)) (-15 -2323 ($ (-650 |t#1|))) (-15 -2323 ($ (-650 $))) (-15 -3802 ($ |t#3|)) (-15 -2333 ($ |t#2|)) (-15 -2333 ($ $)) (-15 -2411 ($ $)) (-15 -2979 ($ $ $)) (-15 -3105 ($ $ $)) (-15 -2309 ((-650 (-650 |t#1|)) $)) (-15 -1942 ($ $ (-650 (-570)) (-650 (-570)))) (-15 -3935 ($ $ (-650 (-570)) (-650 (-570)) $)) (-15 -3597 ($ $ (-570) (-570))) (-15 -2616 ($ $ (-570) (-570))) (-15 -2057 ($ $ (-570) (-570) (-570) (-570))) (-15 -3861 ($ $ (-570) (-570) $)) (-15 -3104 ($ $ $)) (-15 -3114 ($ $ $)) (-15 -3114 ($ $)) (-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 -2548 ((-3 $ "failed") $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -3125 ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-311)) (-15 -3610 ($ $)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -4009 ((-777) $)) (-15 -1330 ((-777) $)) (-15 -3017 ((-650 |t#3|) $))) |%noBranch|) (IF (|has| |t#1| (-6 (-4454 "*"))) (PROGN (-15 -3136 (|t#1| $)) (-15 -3949 (|t#1| $))) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-15 -2751 ((-3 $ "failed") $)) (-15 ** ($ $ (-570)))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3610 ((|#4| |#4|) 92 (|has| |#1| (-311)))) (-4009 (((-777) |#4|) 120 (|has| |#1| (-562)))) (-1330 (((-777) |#4|) 96 (|has| |#1| (-562)))) (-3017 (((-650 |#3|) |#4|) 103 (|has| |#1| (-562)))) (-2029 (((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|) 135 (|has| |#1| (-311)))) (-3949 ((|#1| |#4|) 52)) (-3965 (((-3 |#4| "failed") |#4|) 84 (|has| |#1| (-562)))) (-2751 (((-3 |#4| "failed") |#4|) 100 (|has| |#1| (-368)))) (-4148 ((|#4| |#4|) 88 (|has| |#1| (-562)))) (-4373 ((|#4| |#4| |#1| (-570) (-570)) 60)) (-2796 ((|#4| |#4| (-570) (-570)) 55)) (-2692 ((|#4| |#4| |#1| (-570) (-570)) 65)) (-3136 ((|#1| |#4|) 98)) (-1840 (((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|) 89 (|has| |#1| (-562)))))
+(((-694 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3136 (|#1| |#4|)) (-15 -3949 (|#1| |#4|)) (-15 -2796 (|#4| |#4| (-570) (-570))) (-15 -4373 (|#4| |#4| |#1| (-570) (-570))) (-15 -2692 (|#4| |#4| |#1| (-570) (-570))) (IF (|has| |#1| (-562)) (PROGN (-15 -4009 ((-777) |#4|)) (-15 -1330 ((-777) |#4|)) (-15 -3017 ((-650 |#3|) |#4|)) (-15 -4148 (|#4| |#4|)) (-15 -3965 ((-3 |#4| "failed") |#4|)) (-15 -1840 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-311)) (PROGN (-15 -3610 (|#4| |#4|)) (-15 -2029 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2751 ((-3 |#4| "failed") |#4|)) |%noBranch|)) (-174) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -694))
+((-2751 (*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)))) (-2029 (*1 *2 *3 *3) (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3)) (-4 *5 (-378 *3)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-694 *3 *4 *5 *6)) (-4 *6 (-693 *3 *4 *5)))) (-3610 (*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)))) (-1840 (*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)))) (-3965 (*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)))) (-4148 (*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)))) (-3017 (*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)))) (-1330 (*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)))) (-4009 (*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)))) (-2692 (*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)))) (-4373 (*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)))) (-2796 (*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)))) (-3949 (*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)))) (-3136 (*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 -3136 (|#1| |#4|)) (-15 -3949 (|#1| |#4|)) (-15 -2796 (|#4| |#4| (-570) (-570))) (-15 -4373 (|#4| |#4| |#1| (-570) (-570))) (-15 -2692 (|#4| |#4| |#1| (-570) (-570))) (IF (|has| |#1| (-562)) (PROGN (-15 -4009 ((-777) |#4|)) (-15 -1330 ((-777) |#4|)) (-15 -3017 ((-650 |#3|) |#4|)) (-15 -4148 (|#4| |#4|)) (-15 -3965 ((-3 |#4| "failed") |#4|)) (-15 -1840 ((-2 (|:| |adjMat| |#4|) (|:| |detMat| |#1|)) |#4|))) |%noBranch|) (IF (|has| |#1| (-311)) (PROGN (-15 -3610 (|#4| |#4|)) (-15 -2029 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2751 ((-3 |#4| "failed") |#4|)) |%noBranch|))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3507 (($ (-777) (-777)) 64)) (-3105 (($ $ $) NIL)) (-2333 (($ (-1277 |#1|)) NIL) (($ $) NIL)) (-3493 (((-112) $) NIL)) (-3597 (($ $ (-570) (-570)) 22)) (-2616 (($ $ (-570) (-570)) NIL)) (-2057 (($ $ (-570) (-570) (-570) (-570)) NIL)) (-2411 (($ $) NIL)) (-1407 (((-112) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3861 (($ $ (-570) (-570) $) NIL)) (-3935 ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570)) $) NIL)) (-3605 (($ $ (-570) (-1277 |#1|)) NIL)) (-3650 (($ $ (-570) (-1277 |#1|)) NIL)) (-3130 (($ (-777) |#1|) 37)) (-3195 (($) NIL T CONST)) (-3610 (($ $) 46 (|has| |#1| (-311)))) (-1494 (((-1277 |#1|) $ (-570)) NIL)) (-4009 (((-777) $) 48 (|has| |#1| (-562)))) (-1518 ((|#1| $ (-570) (-570) |#1|) 69)) (-3824 ((|#1| $ (-570) (-570)) NIL)) (-3630 (((-650 |#1|) $) NIL)) (-1330 (((-777) $) 50 (|has| |#1| (-562)))) (-3017 (((-650 (-1277 |#1|)) $) 53 (|has| |#1| (-562)))) (-3318 (((-777) $) 32)) (-4294 (($ (-777) (-777) |#1|) 28)) (-3330 (((-777) $) 33)) (-2317 (((-112) $ (-777)) NIL)) (-3949 ((|#1| $) 44 (|has| |#1| (-6 (-4454 "*"))))) (-2822 (((-570) $) 10)) (-1943 (((-570) $) 11)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2278 (((-570) $) 14)) (-3461 (((-570) $) 65)) (-2572 (($ (-650 (-650 |#1|))) NIL)) (-1503 (($ (-1 |#1| |#1|) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL) (($ (-1 |#1| |#1| |#1|) $ $ |#1|) NIL)) (-2309 (((-650 (-650 |#1|)) $) 76)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2751 (((-3 $ "failed") $) 60 (|has| |#1| (-368)))) (-2979 (($ $ $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2061 (($ $ |#1|) NIL)) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) (-570)) NIL) ((|#1| $ (-570) (-570) |#1|) NIL) (($ $ (-650 (-570)) (-650 (-570))) NIL)) (-2323 (($ (-650 |#1|)) NIL) (($ (-650 $)) NIL) (($ (-1277 |#1|)) 70)) (-1424 (((-112) $) NIL)) (-3136 ((|#1| $) 42 (|has| |#1| (-6 (-4454 "*"))))) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-1426 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3057 (((-1277 |#1|) $ (-570)) NIL)) (-3802 (($ (-1277 |#1|)) NIL) (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1548 (((-112) $) NIL)) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $ $) NIL) (($ $) NIL)) (-3104 (($ $ $) 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)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-695 |#1|) (-13 (-693 |#1| (-1277 |#1|) (-1277 |#1|)) (-10 -8 (-15 -2323 ($ (-1277 |#1|))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2751 ((-3 $ "failed") $)) |%noBranch|))) (-1058)) (T -695))
+((-2751 (*1 *1 *1) (|partial| -12 (-5 *1 (-695 *2)) (-4 *2 (-368)) (-4 *2 (-1058)))) (-2323 (*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 -2323 ($ (-1277 |#1|))) (IF (|has| |#1| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|) (IF (|has| |#1| (-368)) (-15 -2751 ((-3 $ "failed") $)) |%noBranch|)))
+((-2138 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 37)) (-3063 (((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|) 32)) (-1510 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777)) 43)) (-2137 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 25)) (-3619 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|)) 29) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 27)) (-3414 (((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|)) 31)) (-1973 (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 23)) (** (((-695 |#1|) (-695 |#1|) (-777)) 46)))
+(((-696 |#1|) (-10 -7 (-15 -1973 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2137 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3619 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3619 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3414 ((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|))) (-15 -3063 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -2138 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1510 ((-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)))) (-1510 (*1 *2 *2 *2 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-696 *4)))) (-2138 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-3063 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-3414 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-3619 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-3619 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-2137 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))) (-1973 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+(-10 -7 (-15 -1973 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -2137 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3619 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3619 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3414 ((-695 |#1|) (-695 |#1|) |#1| (-695 |#1|))) (-15 -3063 ((-695 |#1|) (-695 |#1|) (-695 |#1|) |#1|)) (-15 -2138 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -1510 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-695 |#1|) (-777))) (-15 ** ((-695 |#1|) (-695 |#1|) (-777))))
+((-4383 (((-3 |#1| "failed") $) 18)) (-3220 ((|#1| $) NIL)) (-1624 (($) 7 T CONST)) (-3884 (($ |#1|) 8)) (-3802 (($ |#1|) 16) (((-868) $) 23)) (-1851 (((-112) $ (|[\|\|]| |#1|)) 14) (((-112) $ (|[\|\|]| -1624)) 11)) (-3985 ((|#1| $) 15)))
+(((-697 |#1|) (-13 (-1272) (-1047 |#1|) (-619 (-868)) (-10 -8 (-15 -3884 ($ |#1|)) (-15 -1851 ((-112) $ (|[\|\|]| |#1|))) (-15 -1851 ((-112) $ (|[\|\|]| -1624))) (-15 -3985 (|#1| $)) (-15 -1624 ($) -3728))) (-619 (-868))) (T -697))
+((-3884 (*1 *1 *2) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-619 (-868))) (-5 *2 (-112)) (-5 *1 (-697 *4)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| -1624)) (-5 *2 (-112)) (-5 *1 (-697 *4)) (-4 *4 (-619 (-868))))) (-3985 (*1 *2 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))) (-1624 (*1 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
+(-13 (-1272) (-1047 |#1|) (-619 (-868)) (-10 -8 (-15 -3884 ($ |#1|)) (-15 -1851 ((-112) $ (|[\|\|]| |#1|))) (-15 -1851 ((-112) $ (|[\|\|]| -1624))) (-15 -3985 (|#1| $)) (-15 -1624 ($) -3728)))
+((-2386 ((|#2| |#2| |#4|) 29)) (-2479 (((-695 |#2|) |#3| |#4|) 35)) (-1498 (((-695 |#2|) |#2| |#4|) 34)) (-3796 (((-1277 |#2|) |#2| |#4|) 16)) (-3256 ((|#2| |#3| |#4|) 28)) (-1865 (((-695 |#2|) |#3| |#4| (-777) (-777)) 47)) (-3923 (((-695 |#2|) |#2| |#4| (-777)) 46)))
+(((-698 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3796 ((-1277 |#2|) |#2| |#4|)) (-15 -3256 (|#2| |#3| |#4|)) (-15 -2386 (|#2| |#2| |#4|)) (-15 -1498 ((-695 |#2|) |#2| |#4|)) (-15 -3923 ((-695 |#2|) |#2| |#4| (-777))) (-15 -2479 ((-695 |#2|) |#3| |#4|)) (-15 -1865 ((-695 |#2|) |#3| |#4| (-777) (-777)))) (-1109) (-907 |#1|) (-378 |#2|) (-13 (-378 |#1|) (-10 -7 (-6 -4452)))) (T -698))
+((-1865 (*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 -4452)))))) (-2479 (*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 -4452)))))) (-3923 (*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 -4452)))))) (-1498 (*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 -4452)))))) (-2386 (*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 -4452)))))) (-3256 (*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 -4452)))))) (-3796 (*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 -4452)))))))
+(-10 -7 (-15 -3796 ((-1277 |#2|) |#2| |#4|)) (-15 -3256 (|#2| |#3| |#4|)) (-15 -2386 (|#2| |#2| |#4|)) (-15 -1498 ((-695 |#2|) |#2| |#4|)) (-15 -3923 ((-695 |#2|) |#2| |#4| (-777))) (-15 -2479 ((-695 |#2|) |#3| |#4|)) (-15 -1865 ((-695 |#2|) |#3| |#4| (-777) (-777))))
+((-1650 (((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|)) 20)) (-2302 ((|#1| (-695 |#2|)) 9)) (-1391 (((-695 |#1|) (-695 |#2|)) 18)))
+(((-699 |#1| |#2|) (-10 -7 (-15 -2302 (|#1| (-695 |#2|))) (-15 -1391 ((-695 |#1|) (-695 |#2|))) (-15 -1650 ((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|)))) (-562) (-1001 |#1|)) (T -699))
+((-1650 (*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)))) (-1391 (*1 *2 *3) (-12 (-5 *3 (-695 *5)) (-4 *5 (-1001 *4)) (-4 *4 (-562)) (-5 *2 (-695 *4)) (-5 *1 (-699 *4 *5)))) (-2302 (*1 *2 *3) (-12 (-5 *3 (-695 *4)) (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-699 *2 *4)))))
+(-10 -7 (-15 -2302 (|#1| (-695 |#2|))) (-15 -1391 ((-695 |#1|) (-695 |#2|))) (-15 -1650 ((-2 (|:| |num| (-695 |#1|)) (|:| |den| |#1|)) (-695 |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2913 (((-695 (-705))) NIL) (((-695 (-705)) (-1277 $)) NIL)) (-3211 (((-705) $) NIL)) (-2890 (($ $) NIL (|has| (-705) (-1212)))) (-2755 (($ $) NIL (|has| (-705) (-1212)))) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-705) (-354)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-4310 (($ $) NIL (-2895 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-3871 (((-424 $) $) NIL (-2895 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-3817 (($ $) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1212))))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-3765 (((-112) $ $) NIL (|has| (-705) (-311)))) (-3513 (((-777)) NIL (|has| (-705) (-373)))) (-2869 (($ $) NIL (|has| (-705) (-1212)))) (-2736 (($ $) NIL (|has| (-705) (-1212)))) (-4109 (($ $) NIL (|has| (-705) (-1212)))) (-2777 (($ $) NIL (|has| (-705) (-1212)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL) (((-3 (-705) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL (|has| (-705) (-1047 (-413 (-570)))))) (-3220 (((-570) $) NIL) (((-705) $) NIL) (((-413 (-570)) $) NIL (|has| (-705) (-1047 (-413 (-570)))))) (-2322 (($ (-1277 (-705))) NIL) (($ (-1277 (-705)) (-1277 $)) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-705) (-354)))) (-2504 (($ $ $) NIL (|has| (-705) (-311)))) (-2595 (((-695 (-705)) $) NIL) (((-695 (-705)) $ (-1277 $)) NIL)) (-2179 (((-695 (-705)) (-695 $)) NIL) (((-2 (|:| -2990 (-695 (-705))) (|:| |vec| (-1277 (-705)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-705) (-645 (-570)))) (((-695 (-570)) (-695 $)) NIL (|has| (-705) (-645 (-570))))) (-3627 (((-3 $ "failed") (-413 (-1182 (-705)))) NIL (|has| (-705) (-368))) (($ (-1182 (-705))) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3826 (((-705) $) 29)) (-2502 (((-3 (-413 (-570)) "failed") $) NIL (|has| (-705) (-551)))) (-2313 (((-112) $) NIL (|has| (-705) (-551)))) (-3645 (((-413 (-570)) $) NIL (|has| (-705) (-551)))) (-4009 (((-928)) NIL)) (-3449 (($) NIL (|has| (-705) (-373)))) (-2519 (($ $ $) NIL (|has| (-705) (-311)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| (-705) (-311)))) (-3511 (($) NIL (|has| (-705) (-354)))) (-1843 (((-112) $) NIL (|has| (-705) (-354)))) (-3599 (($ $) NIL (|has| (-705) (-354))) (($ $ (-777)) NIL (|has| (-705) (-354)))) (-1336 (((-112) $) NIL (-2895 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-3661 (((-2 (|:| |r| (-705)) (|:| |phi| (-705))) $) NIL (-12 (|has| (-705) (-1069)) (|has| (-705) (-1212))))) (-1315 (($) NIL (|has| (-705) (-1212)))) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-705) (-893 (-384)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-705) (-893 (-570))))) (-3941 (((-839 (-928)) $) NIL (|has| (-705) (-354))) (((-928) $) NIL (|has| (-705) (-354)))) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (-12 (|has| (-705) (-1011)) (|has| (-705) (-1212))))) (-4399 (((-705) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| (-705) (-354)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-705) (-311)))) (-3043 (((-1182 (-705)) $) NIL (|has| (-705) (-368)))) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-1357 (($ (-1 (-705) (-705)) $) NIL)) (-2400 (((-928) $) NIL (|has| (-705) (-373)))) (-2792 (($ $) NIL (|has| (-705) (-1212)))) (-3615 (((-1182 (-705)) $) NIL)) (-1901 (($ (-650 $)) NIL (|has| (-705) (-311))) (($ $ $) NIL (|has| (-705) (-311)))) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| (-705) (-368)))) (-2439 (($) NIL (|has| (-705) (-354)) CONST)) (-2267 (($ (-928)) NIL (|has| (-705) (-373)))) (-2995 (($) NIL)) (-3836 (((-705) $) 31)) (-3580 (((-1129) $) NIL)) (-2467 (($) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-705) (-311)))) (-1939 (($ (-650 $)) NIL (|has| (-705) (-311))) (($ $ $) NIL (|has| (-705) (-311)))) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| (-705) (-354)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-705) (-311)) (|has| (-705) (-916))))) (-3804 (((-424 $) $) NIL (-2895 (-12 (|has| (-705) (-311)) (|has| (-705) (-916))) (|has| (-705) (-368))))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-705) (-311))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| (-705) (-311)))) (-2548 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ (-705)) NIL (|has| (-705) (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-705) (-311)))) (-4389 (($ $) NIL (|has| (-705) (-1212)))) (-1771 (($ $ (-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))))) (-2006 (((-777) $) NIL (|has| (-705) (-311)))) (-1942 (($ $ (-705)) NIL (|has| (-705) (-290 (-705) (-705))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| (-705) (-311)))) (-2265 (((-705)) NIL) (((-705) (-1277 $)) NIL)) (-4080 (((-3 (-777) "failed") $ $) NIL (|has| (-705) (-354))) (((-777) $) NIL (|has| (-705) (-354)))) (-3550 (($ $ (-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)))) (-4083 (((-695 (-705)) (-1277 $) (-1 (-705) (-705))) NIL (|has| (-705) (-368)))) (-2075 (((-1182 (-705))) NIL)) (-4120 (($ $) NIL (|has| (-705) (-1212)))) (-2791 (($ $) NIL (|has| (-705) (-1212)))) (-3924 (($) NIL (|has| (-705) (-354)))) (-2902 (($ $) NIL (|has| (-705) (-1212)))) (-2768 (($ $) NIL (|has| (-705) (-1212)))) (-2879 (($ $) NIL (|has| (-705) (-1212)))) (-2743 (($ $) NIL (|has| (-705) (-1212)))) (-3314 (((-695 (-705)) (-1277 $)) NIL) (((-1277 (-705)) $) NIL) (((-695 (-705)) (-1277 $) (-1277 $)) NIL) (((-1277 (-705)) $ (-1277 $)) NIL)) (-1426 (((-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)) (-4307 (($ $) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-2895 (-12 (|has| (-705) (-311)) (|has| $ (-146)) (|has| (-705) (-916))) (|has| (-705) (-354))))) (-3178 (($ (-705) (-705)) 12)) (-3802 (((-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 (-2895 (|has| (-705) (-1047 (-413 (-570)))) (|has| (-705) (-368))))) (-3132 (($ $) NIL (|has| (-705) (-354))) (((-3 $ "failed") $) NIL (-2895 (-12 (|has| (-705) (-311)) (|has| $ (-146)) (|has| (-705) (-916))) (|has| (-705) (-146))))) (-2124 (((-1182 (-705)) $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL)) (-4157 (($ $) NIL (|has| (-705) (-1212)))) (-2828 (($ $) NIL (|has| (-705) (-1212)))) (-3228 (((-112) $ $) NIL)) (-4129 (($ $) NIL (|has| (-705) (-1212)))) (-2804 (($ $) NIL (|has| (-705) (-1212)))) (-4179 (($ $) NIL (|has| (-705) (-1212)))) (-2848 (($ $) NIL (|has| (-705) (-1212)))) (-4385 (((-705) $) NIL (|has| (-705) (-1212)))) (-1579 (($ $) NIL (|has| (-705) (-1212)))) (-2858 (($ $) NIL (|has| (-705) (-1212)))) (-4166 (($ $) NIL (|has| (-705) (-1212)))) (-2838 (($ $) NIL (|has| (-705) (-1212)))) (-4144 (($ $) NIL (|has| (-705) (-1212)))) (-2817 (($ $) NIL (|has| (-705) (-1212)))) (-3231 (($ $) NIL (|has| (-705) (-1069)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-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)))) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL (|has| (-705) (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3802 ($ (-171 (-384)))) (-15 -3802 ($ (-171 (-570)))) (-15 -3802 ($ (-171 (-705)))) (-15 -3802 ($ (-171 (-707)))) (-15 -3802 ((-171 (-384)) $))))) (T -700))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-700)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-171 (-570))) (-5 *1 (-700)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-171 (-705))) (-5 *1 (-700)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-171 (-707))) (-5 *1 (-700)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-700)))))
+(-13 (-393) (-167 (-705)) (-10 -8 (-15 -3802 ($ (-171 (-384)))) (-15 -3802 ($ (-171 (-570)))) (-15 -3802 ($ (-171 (-705)))) (-15 -3802 ($ (-171 (-707)))) (-15 -3802 ((-171 (-384)) $))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3353 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3476 (($ $) 63)) (-3582 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ |#1| $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4452)))) (-1742 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4452)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-3127 (((-650 (-2 (|:| -2340 |#1|) (|:| -3587 (-777)))) $) 62)) (-2374 (($) 50) (($ (-650 |#1|)) 49)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 51)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-701 |#1|) (-141) (-1109)) (T -701))
-((-1385 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-701 *2)) (-4 *2 (-1109)))) (-3110 (*1 *1 *1) (-12 (-4 *1 (-701 *2)) (-4 *2 (-1109)))) (-2136 (*1 *2 *1) (-12 (-4 *1 (-701 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-2 (|:| -2340 *3) (|:| -3584 (-777))))))))
-(-13 (-237 |t#1|) (-10 -8 (-15 -1385 ($ |t#1| $ (-777))) (-15 -3110 ($ $)) (-15 -2136 ((-650 (-2 (|:| -2340 |t#1|) (|:| -3584 (-777)))) $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3346 (((-650 |#1|) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))) (-570)) 65)) (-2908 ((|#1| |#1| (-570)) 62)) (-1942 ((|#1| |#1| |#1| (-570)) 46)) (-3801 (((-650 |#1|) |#1| (-570)) 49)) (-2958 ((|#1| |#1| (-570) |#1| (-570)) 40)) (-4401 (((-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))) |#1| (-570)) 61)))
-(((-702 |#1|) (-10 -7 (-15 -1942 (|#1| |#1| |#1| (-570))) (-15 -2908 (|#1| |#1| (-570))) (-15 -3801 ((-650 |#1|) |#1| (-570))) (-15 -4401 ((-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))) |#1| (-570))) (-15 -3346 ((-650 |#1|) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))) (-570))) (-15 -2958 (|#1| |#1| (-570) |#1| (-570)))) (-1253 (-570))) (T -702))
-((-2958 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))) (-3346 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| -3801 *5) (|:| -2130 (-570))))) (-5 *4 (-570)) (-4 *5 (-1253 *4)) (-5 *2 (-650 *5)) (-5 *1 (-702 *5)))) (-4401 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-650 (-2 (|:| -3801 *3) (|:| -2130 *4)))) (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))) (-3801 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-650 *3)) (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))) (-2908 (*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))) (-1942 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))))
-(-10 -7 (-15 -1942 (|#1| |#1| |#1| (-570))) (-15 -2908 (|#1| |#1| (-570))) (-15 -3801 ((-650 |#1|) |#1| (-570))) (-15 -4401 ((-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))) |#1| (-570))) (-15 -3346 ((-650 |#1|) (-650 (-2 (|:| -3801 |#1|) (|:| -2130 (-570)))) (-570))) (-15 -2958 (|#1| |#1| (-570) |#1| (-570))))
-((-2155 (((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227))) 17)) (-2651 (((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 53) (((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 55) (((-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))) 57)) (-1494 (((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266))) NIL)) (-1944 (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 58)))
-(((-703) (-10 -7 (-15 -2651 ((-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 -2651 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2651 ((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1944 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1494 ((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2155 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))) (T -703))
-((-2155 (*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)))) (-1494 (*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)))) (-1944 (*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)))) (-2651 (*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)))) (-2651 (*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)))) (-2651 (*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 -2651 ((-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 -2651 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2651 ((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1944 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1494 ((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2155 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))
-((-3801 (((-424 (-1182 |#4|)) (-1182 |#4|)) 86) (((-424 |#4|) |#4|) 266)))
-(((-704 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3801 ((-424 |#4|) |#4|)) (-15 -3801 ((-424 (-1182 |#4|)) (-1182 |#4|)))) (-856) (-799) (-354) (-956 |#3| |#2| |#1|)) (T -704))
-((-3801 (*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)))) (-3801 (*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 -3801 ((-424 |#4|) |#4|)) (-15 -3801 ((-424 (-1182 |#4|)) (-1182 |#4|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 97)) (-1733 (((-570) $) 34)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1447 (($ $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3814 (($ $) NIL)) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL)) (-1705 (($) NIL T CONST)) (-1529 (($ $) NIL)) (-4380 (((-3 (-570) "failed") $) 85) (((-3 (-413 (-570)) "failed") $) 28) (((-3 (-384) "failed") $) 82)) (-3216 (((-570) $) 87) (((-413 (-570)) $) 79) (((-384) $) 80)) (-2506 (($ $ $) 109)) (-2875 (((-3 $ "failed") $) 100)) (-2518 (($ $ $) 108)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4152 (((-928)) 89) (((-928) (-928)) 88)) (-3903 (((-112) $) NIL)) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-4323 (((-570) $) NIL)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL)) (-2959 (($ $) NIL)) (-1479 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4422 (((-570) (-570)) 94) (((-570)) 95)) (-3466 (($ $ $) NIL) (($) NIL (-12 (-1795 (|has| $ (-6 -4432))) (-1795 (|has| $ (-6 -4440)))))) (-3204 (((-570) (-570)) 92) (((-570)) 93)) (-2800 (($ $ $) NIL) (($) NIL (-12 (-1795 (|has| $ (-6 -4432))) (-1795 (|has| $ (-6 -4440)))))) (-3120 (((-570) $) 17)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 104)) (-2280 (((-928) (-570)) NIL (|has| $ (-6 -4440)))) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL)) (-3665 (($ $) NIL)) (-2693 (($ (-570) (-570)) NIL) (($ (-570) (-570) (-928)) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) 105)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3357 (((-570) $) 24)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 107)) (-2737 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-2904 (((-928) (-570)) NIL (|has| $ (-6 -4440)))) (-1425 (((-384) $) NIL) (((-227) $) NIL) (((-899 (-384)) $) NIL)) (-3799 (((-868) $) 63) (($ (-570)) 75) (($ $) NIL) (($ (-413 (-570))) 78) (($ (-570)) 75) (($ (-413 (-570))) 78) (($ (-384)) 72) (((-384) $) 61) (($ (-707)) 66)) (-3499 (((-777)) 119 T CONST)) (-2075 (($ (-570) (-570) (-928)) 54)) (-1313 (($ $) NIL)) (-1660 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4440)))) (-2335 (((-112) $ $) NIL)) (-4406 (((-928)) 91) (((-928) (-928)) 90)) (-2029 (((-112) $ $) NIL)) (-2622 (($ $) NIL)) (-1861 (($) 37 T CONST)) (-1875 (($) 18 T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 96)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 118)) (-3122 (($ $ $) 77)) (-3111 (($ $) 115) (($ $ $) 116)) (-3101 (($ $ $) 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 -4152 ((-928) (-928))) (-15 -4152 ((-928))) (-15 -4406 ((-928) (-928))) (-15 -3204 ((-570) (-570))) (-15 -3204 ((-570))) (-15 -4422 ((-570) (-570))) (-15 -4422 ((-570))) (-15 -3799 ((-384) $)) (-15 -3799 ($ (-707))) (-15 -3120 ((-570) $)) (-15 -3357 ((-570) $)) (-15 -2075 ($ (-570) (-570) (-928)))))) (T -705))
-((-3357 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3120 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-4152 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-4152 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-4406 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-3204 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3204 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-4422 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-4422 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-384)) (-5 *1 (-705)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-707)) (-5 *1 (-705)))) (-2075 (*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 -4152 ((-928) (-928))) (-15 -4152 ((-928))) (-15 -4406 ((-928) (-928))) (-15 -3204 ((-570) (-570))) (-15 -3204 ((-570))) (-15 -4422 ((-570) (-570))) (-15 -4422 ((-570))) (-15 -3799 ((-384) $)) (-15 -3799 ($ (-707))) (-15 -3120 ((-570) $)) (-15 -3357 ((-570) $)) (-15 -2075 ($ (-570) (-570) (-928)))))
-((-2138 (((-695 |#1|) (-695 |#1|) |#1| |#1|) 85)) (-4089 (((-695 |#1|) (-695 |#1|) |#1|) 66)) (-3869 (((-695 |#1|) (-695 |#1|) |#1|) 86)) (-1546 (((-695 |#1|) (-695 |#1|)) 67)) (-3212 (((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|) 84)))
-(((-706 |#1|) (-10 -7 (-15 -1546 ((-695 |#1|) (-695 |#1|))) (-15 -4089 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -3869 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -2138 ((-695 |#1|) (-695 |#1|) |#1| |#1|)) (-15 -3212 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|))) (-311)) (T -706))
-((-3212 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-706 *3)) (-4 *3 (-311)))) (-2138 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-3869 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-4089 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-1546 (*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
-(-10 -7 (-15 -1546 ((-695 |#1|) (-695 |#1|))) (-15 -4089 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -3869 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -2138 ((-695 |#1|) (-695 |#1|) |#1| |#1|)) (-15 -3212 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3687 (($ $ $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1520 (($ $ $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL)) (-3160 (($ $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) 31)) (-3216 (((-570) $) 29)) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2805 (((-3 (-413 (-570)) "failed") $) NIL)) (-3242 (((-112) $) NIL)) (-2068 (((-413 (-570)) $) NIL)) (-3446 (($ $) NIL) (($) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4228 (($ $ $ $) NIL)) (-2702 (($ $ $) NIL)) (-3903 (((-112) $) NIL)) (-4071 (($ $ $) NIL)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4346 (((-112) $) NIL)) (-2110 (((-112) $) NIL)) (-2619 (((-3 $ "failed") $) NIL)) (-1479 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2120 (($ $ $ $) NIL)) (-3466 (($ $ $) NIL)) (-3583 (((-928) (-928)) 10) (((-928)) 9)) (-2800 (($ $ $) NIL)) (-2735 (($ $) NIL)) (-1355 (($ $) NIL)) (-1899 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-2784 (($ $ $) NIL)) (-2438 (($) NIL T CONST)) (-3615 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4365 (($ $) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3273 (((-112) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) NIL) (($ $ (-777)) NIL)) (-2574 (($ $) NIL)) (-3951 (($ $) NIL)) (-1425 (((-227) $) NIL) (((-384) $) NIL) (((-899 (-570)) $) NIL) (((-542) $) NIL) (((-570) $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) 28) (($ $) NIL) (($ (-570)) 28) (((-320 $) (-320 (-570))) 18)) (-3499 (((-777)) NIL T CONST)) (-2282 (((-112) $ $) NIL)) (-2858 (($ $ $) NIL)) (-2335 (((-112) $ $) NIL)) (-4406 (($) NIL)) (-2029 (((-112) $ $) NIL)) (-1613 (($ $ $ $) NIL)) (-2622 (($ $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $) NIL) (($ $ (-777)) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
-(((-707) (-13 (-393) (-551) (-10 -8 (-15 -3583 ((-928) (-928))) (-15 -3583 ((-928))) (-15 -3799 ((-320 $) (-320 (-570))))))) (T -707))
-((-3583 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))) (-3583 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))) (-3799 (*1 *2 *3) (-12 (-5 *3 (-320 (-570))) (-5 *2 (-320 (-707))) (-5 *1 (-707)))))
-(-13 (-393) (-551) (-10 -8 (-15 -3583 ((-928) (-928))) (-15 -3583 ((-928))) (-15 -3799 ((-320 $) (-320 (-570))))))
-((-3836 (((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186)) 19)) (-3041 (((-1 |#4| |#2| |#3|) (-1186)) 12)))
-(((-708 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3041 ((-1 |#4| |#2| |#3|) (-1186))) (-15 -3836 ((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186)))) (-620 (-542)) (-1227) (-1227) (-1227)) (T -708))
-((-3836 (*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)))) (-3041 (*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 -3041 ((-1 |#4| |#2| |#3|) (-1186))) (-15 -3836 ((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186))))
-((-2804 (((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186)) 43) (((-1 (-227) (-227)) |#1| (-1186)) 48)))
-(((-709 |#1|) (-10 -7 (-15 -2804 ((-1 (-227) (-227)) |#1| (-1186))) (-15 -2804 ((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186)))) (-620 (-542))) (T -709))
-((-2804 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))) (-2804 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227))) (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))))
-(-10 -7 (-15 -2804 ((-1 (-227) (-227)) |#1| (-1186))) (-15 -2804 ((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186))))
-((-1739 (((-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 -1739 ((-1186) |#1| (-1186))) (-15 -1739 ((-1186) |#1| (-1186) (-1186))) (-15 -1739 ((-1186) |#1| (-1186) (-1186) (-1186))) (-15 -1739 ((-1186) |#1| (-1186) (-650 (-1186))))) (-620 (-542))) (T -710))
-((-1739 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1739 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1739 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1739 (*1 *2 *3 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))))
-(-10 -7 (-15 -1739 ((-1186) |#1| (-1186))) (-15 -1739 ((-1186) |#1| (-1186) (-1186))) (-15 -1739 ((-1186) |#1| (-1186) (-1186) (-1186))) (-15 -1739 ((-1186) |#1| (-1186) (-650 (-1186)))))
+((-3502 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-701 *2)) (-4 *2 (-1109)))) (-3476 (*1 *1 *1) (-12 (-4 *1 (-701 *2)) (-4 *2 (-1109)))) (-3127 (*1 *2 *1) (-12 (-4 *1 (-701 *3)) (-4 *3 (-1109)) (-5 *2 (-650 (-2 (|:| -2340 *3) (|:| -3587 (-777))))))))
+(-13 (-237 |t#1|) (-10 -8 (-15 -3502 ($ |t#1| $ (-777))) (-15 -3476 ($ $)) (-15 -3127 ((-650 (-2 (|:| -2340 |t#1|) (|:| -3587 (-777)))) $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3902 (((-650 |#1|) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))) (-570)) 65)) (-2110 ((|#1| |#1| (-570)) 62)) (-1939 ((|#1| |#1| |#1| (-570)) 46)) (-3804 (((-650 |#1|) |#1| (-570)) 49)) (-4386 ((|#1| |#1| (-570) |#1| (-570)) 40)) (-3459 (((-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))) |#1| (-570)) 61)))
+(((-702 |#1|) (-10 -7 (-15 -1939 (|#1| |#1| |#1| (-570))) (-15 -2110 (|#1| |#1| (-570))) (-15 -3804 ((-650 |#1|) |#1| (-570))) (-15 -3459 ((-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))) |#1| (-570))) (-15 -3902 ((-650 |#1|) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))) (-570))) (-15 -4386 (|#1| |#1| (-570) |#1| (-570)))) (-1253 (-570))) (T -702))
+((-4386 (*1 *2 *2 *3 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))) (-3902 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| -3804 *5) (|:| -3079 (-570))))) (-5 *4 (-570)) (-4 *5 (-1253 *4)) (-5 *2 (-650 *5)) (-5 *1 (-702 *5)))) (-3459 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-650 (-2 (|:| -3804 *3) (|:| -3079 *4)))) (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))) (-3804 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-650 *3)) (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))) (-2110 (*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))) (-1939 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))))
+(-10 -7 (-15 -1939 (|#1| |#1| |#1| (-570))) (-15 -2110 (|#1| |#1| (-570))) (-15 -3804 ((-650 |#1|) |#1| (-570))) (-15 -3459 ((-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))) |#1| (-570))) (-15 -3902 ((-650 |#1|) (-650 (-2 (|:| -3804 |#1|) (|:| -3079 (-570)))) (-570))) (-15 -4386 (|#1| |#1| (-570) |#1| (-570))))
+((-2139 (((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227))) 17)) (-3500 (((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 53) (((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 55) (((-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))) 57)) (-2928 (((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266))) NIL)) (-1674 (((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266))) 58)))
+(((-703) (-10 -7 (-15 -3500 ((-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 -3500 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -3500 ((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1674 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2928 ((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2139 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))) (T -703))
+((-2139 (*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)))) (-2928 (*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)))) (-1674 (*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)))) (-3500 (*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)))) (-3500 (*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)))) (-3500 (*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 -3500 ((-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 -3500 ((-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -3500 ((-1142 (-227)) (-1142 (-227)) (-1 (-950 (-227)) (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -1674 ((-1142 (-227)) (-1 (-227) (-227) (-227)) (-3 (-1 (-227) (-227) (-227) (-227)) "undefined") (-1103 (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2928 ((-1142 (-227)) (-320 (-570)) (-320 (-570)) (-320 (-570)) (-1 (-227) (-227)) (-1103 (-227)) (-650 (-266)))) (-15 -2139 ((-1 (-950 (-227)) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227)) (-1 (-227) (-227) (-227) (-227)))))
+((-3804 (((-424 (-1182 |#4|)) (-1182 |#4|)) 86) (((-424 |#4|) |#4|) 266)))
+(((-704 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3804 ((-424 |#4|) |#4|)) (-15 -3804 ((-424 (-1182 |#4|)) (-1182 |#4|)))) (-856) (-799) (-354) (-956 |#3| |#2| |#1|)) (T -704))
+((-3804 (*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)))) (-3804 (*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 -3804 ((-424 |#4|) |#4|)) (-15 -3804 ((-424 (-1182 |#4|)) (-1182 |#4|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 97)) (-3472 (((-570) $) 34)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1622 (($ $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3817 (($ $) NIL)) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL)) (-3195 (($) NIL T CONST)) (-2048 (($ $) NIL)) (-4383 (((-3 (-570) "failed") $) 85) (((-3 (-413 (-570)) "failed") $) 28) (((-3 (-384) "failed") $) 82)) (-3220 (((-570) $) 87) (((-413 (-570)) $) 79) (((-384) $) 80)) (-2504 (($ $ $) 109)) (-1929 (((-3 $ "failed") $) 100)) (-2519 (($ $ $) 108)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-4156 (((-928)) 89) (((-928) (-928)) 88)) (-2346 (((-112) $) NIL)) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL)) (-3941 (((-570) $) NIL)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL)) (-4399 (($ $) NIL)) (-2788 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3629 (((-570) (-570)) 94) (((-570)) 95)) (-3469 (($ $ $) NIL) (($) NIL (-12 (-1796 (|has| $ (-6 -4435))) (-1796 (|has| $ (-6 -4443)))))) (-3135 (((-570) (-570)) 92) (((-570)) 93)) (-2472 (($ $ $) NIL) (($) NIL (-12 (-1796 (|has| $ (-6 -4435))) (-1796 (|has| $ (-6 -4443)))))) (-3123 (((-570) $) 17)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 104)) (-4004 (((-928) (-570)) NIL (|has| $ (-6 -4443)))) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL)) (-1920 (($ $) NIL)) (-2695 (($ (-570) (-570)) NIL) (($ (-570) (-570) (-928)) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) 105)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3994 (((-570) $) 24)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 107)) (-3098 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4443)))) (-2064 (((-928) (-570)) NIL (|has| $ (-6 -4443)))) (-1426 (((-384) $) NIL) (((-227) $) NIL) (((-899 (-384)) $) NIL)) (-3802 (((-868) $) 63) (($ (-570)) 75) (($ $) NIL) (($ (-413 (-570))) 78) (($ (-570)) 75) (($ (-413 (-570))) 78) (($ (-384)) 72) (((-384) $) 61) (($ (-707)) 66)) (-2851 (((-777)) 119 T CONST)) (-3716 (($ (-570) (-570) (-928)) 54)) (-1918 (($ $) NIL)) (-3942 (((-928)) NIL) (((-928) (-928)) NIL (|has| $ (-6 -4443)))) (-3359 (((-112) $ $) NIL)) (-4409 (((-928)) 91) (((-928) (-928)) 90)) (-3228 (((-112) $ $) NIL)) (-3231 (($ $) NIL)) (-1862 (($) 37 T CONST)) (-1876 (($) 18 T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 96)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 118)) (-3125 (($ $ $) 77)) (-3114 (($ $) 115) (($ $ $) 116)) (-3104 (($ $ $) 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 -4156 ((-928) (-928))) (-15 -4156 ((-928))) (-15 -4409 ((-928) (-928))) (-15 -3135 ((-570) (-570))) (-15 -3135 ((-570))) (-15 -3629 ((-570) (-570))) (-15 -3629 ((-570))) (-15 -3802 ((-384) $)) (-15 -3802 ($ (-707))) (-15 -3123 ((-570) $)) (-15 -3994 ((-570) $)) (-15 -3716 ($ (-570) (-570) (-928)))))) (T -705))
+((-3994 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3123 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-4156 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-4156 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-4409 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-705)))) (-3135 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3135 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3629 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3629 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-384)) (-5 *1 (-705)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-707)) (-5 *1 (-705)))) (-3716 (*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 -4156 ((-928) (-928))) (-15 -4156 ((-928))) (-15 -4409 ((-928) (-928))) (-15 -3135 ((-570) (-570))) (-15 -3135 ((-570))) (-15 -3629 ((-570) (-570))) (-15 -3629 ((-570))) (-15 -3802 ((-384) $)) (-15 -3802 ($ (-707))) (-15 -3123 ((-570) $)) (-15 -3994 ((-570) $)) (-15 -3716 ($ (-570) (-570) (-928)))))
+((-3146 (((-695 |#1|) (-695 |#1|) |#1| |#1|) 85)) (-3610 (((-695 |#1|) (-695 |#1|) |#1|) 66)) (-3186 (((-695 |#1|) (-695 |#1|) |#1|) 86)) (-2213 (((-695 |#1|) (-695 |#1|)) 67)) (-2029 (((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|) 84)))
+(((-706 |#1|) (-10 -7 (-15 -2213 ((-695 |#1|) (-695 |#1|))) (-15 -3610 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -3186 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -3146 ((-695 |#1|) (-695 |#1|) |#1| |#1|)) (-15 -2029 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|))) (-311)) (T -706))
+((-2029 (*1 *2 *3 *3) (-12 (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-706 *3)) (-4 *3 (-311)))) (-3146 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-3186 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-3610 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))) (-2213 (*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
+(-10 -7 (-15 -2213 ((-695 |#1|) (-695 |#1|))) (-15 -3610 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -3186 ((-695 |#1|) (-695 |#1|) |#1|)) (-15 -3146 ((-695 |#1|) (-695 |#1|) |#1| |#1|)) (-15 -2029 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-3925 (($ $ $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-1964 (($ $ $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL)) (-3163 (($ $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) 31)) (-3220 (((-570) $) 29)) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2502 (((-3 (-413 (-570)) "failed") $) NIL)) (-2313 (((-112) $) NIL)) (-3645 (((-413 (-570)) $) NIL)) (-3449 (($ $) NIL) (($) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2477 (($ $ $ $) NIL)) (-2787 (($ $ $) NIL)) (-2346 (((-112) $) NIL)) (-3401 (($ $ $) NIL)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4139 (((-112) $) NIL)) (-2888 (((-112) $) NIL)) (-4369 (((-3 $ "failed") $) NIL)) (-2788 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2986 (($ $ $ $) NIL)) (-3469 (($ $ $) NIL)) (-2369 (((-928) (-928)) 10) (((-928)) 9)) (-2472 (($ $ $) NIL)) (-2738 (($ $) NIL)) (-1356 (($ $) NIL)) (-1901 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-2345 (($ $ $) NIL)) (-2439 (($) NIL T CONST)) (-3618 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ (-650 $)) NIL) (($ $ $) NIL)) (-4322 (($ $) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4418 (((-112) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) NIL) (($ $ (-777)) NIL)) (-2574 (($ $) NIL)) (-3954 (($ $) NIL)) (-1426 (((-227) $) NIL) (((-384) $) NIL) (((-899 (-570)) $) NIL) (((-542) $) NIL) (((-570) $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) 28) (($ $) NIL) (($ (-570)) 28) (((-320 $) (-320 (-570))) 18)) (-2851 (((-777)) NIL T CONST)) (-4022 (((-112) $ $) NIL)) (-1730 (($ $ $) NIL)) (-3359 (((-112) $ $) NIL)) (-4409 (($) NIL)) (-3228 (((-112) $ $) NIL)) (-1605 (($ $ $ $) NIL)) (-3231 (($ $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $) NIL) (($ $ (-777)) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
+(((-707) (-13 (-393) (-551) (-10 -8 (-15 -2369 ((-928) (-928))) (-15 -2369 ((-928))) (-15 -3802 ((-320 $) (-320 (-570))))))) (T -707))
+((-2369 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))) (-2369 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))) (-3802 (*1 *2 *3) (-12 (-5 *3 (-320 (-570))) (-5 *2 (-320 (-707))) (-5 *1 (-707)))))
+(-13 (-393) (-551) (-10 -8 (-15 -2369 ((-928) (-928))) (-15 -2369 ((-928))) (-15 -3802 ((-320 $) (-320 (-570))))))
+((-2912 (((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186)) 19)) (-4007 (((-1 |#4| |#2| |#3|) (-1186)) 12)))
+(((-708 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4007 ((-1 |#4| |#2| |#3|) (-1186))) (-15 -2912 ((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186)))) (-620 (-542)) (-1227) (-1227) (-1227)) (T -708))
+((-2912 (*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)))) (-4007 (*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 -4007 ((-1 |#4| |#2| |#3|) (-1186))) (-15 -2912 ((-1 |#4| |#2| |#3|) |#1| (-1186) (-1186))))
+((-2492 (((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186)) 43) (((-1 (-227) (-227)) |#1| (-1186)) 48)))
+(((-709 |#1|) (-10 -7 (-15 -2492 ((-1 (-227) (-227)) |#1| (-1186))) (-15 -2492 ((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186)))) (-620 (-542))) (T -709))
+((-2492 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227) (-227))) (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))) (-2492 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-1 (-227) (-227))) (-5 *1 (-709 *3)) (-4 *3 (-620 (-542))))))
+(-10 -7 (-15 -2492 ((-1 (-227) (-227)) |#1| (-1186))) (-15 -2492 ((-1 (-227) (-227) (-227)) |#1| (-1186) (-1186))))
+((-1743 (((-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 -1743 ((-1186) |#1| (-1186))) (-15 -1743 ((-1186) |#1| (-1186) (-1186))) (-15 -1743 ((-1186) |#1| (-1186) (-1186) (-1186))) (-15 -1743 ((-1186) |#1| (-1186) (-650 (-1186))))) (-620 (-542))) (T -710))
+((-1743 (*1 *2 *3 *2 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1743 (*1 *2 *3 *2 *2 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1743 (*1 *2 *3 *2 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))) (-1743 (*1 *2 *3 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542))))))
+(-10 -7 (-15 -1743 ((-1186) |#1| (-1186))) (-15 -1743 ((-1186) |#1| (-1186) (-1186))) (-15 -1743 ((-1186) |#1| (-1186) (-1186) (-1186))) (-15 -1743 ((-1186) |#1| (-1186) (-650 (-1186)))))
((-1511 (((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|) 9)))
(((-711 |#1| |#2|) (-10 -7 (-15 -1511 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|))) (-1227) (-1227)) (T -711))
((-1511 (*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 -1511 ((-2 (|:| |part1| |#1|) (|:| |part2| |#2|)) |#1| |#2|)))
-((-3718 (((-1 |#3| |#2|) (-1186)) 11)) (-3836 (((-1 |#3| |#2|) |#1| (-1186)) 21)))
-(((-712 |#1| |#2| |#3|) (-10 -7 (-15 -3718 ((-1 |#3| |#2|) (-1186))) (-15 -3836 ((-1 |#3| |#2|) |#1| (-1186)))) (-620 (-542)) (-1227) (-1227)) (T -712))
-((-3836 (*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)))) (-3718 (*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 -3718 ((-1 |#3| |#2|) (-1186))) (-15 -3836 ((-1 |#3| |#2|) |#1| (-1186))))
-((-2504 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -3154 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|) 92)) (-3123 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|) 110)) (-3351 (((-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 -3351 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1277 (-650 (-1182 |#3|))) |#3|)) (-15 -3123 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|)) (-15 -2504 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -3154 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -713))
-((-2504 (*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 (|:| -3154 (-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)))) (-3123 (*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)))) (-3351 (*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 -3351 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1277 (-650 (-1182 |#3|))) |#3|)) (-15 -3123 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|)) (-15 -2504 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -3154 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1956 (($ $) 48)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-3912 (($ |#1| (-777)) 46)) (-2575 (((-777) $) 50)) (-1927 ((|#1| $) 49)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2130 (((-777) $) 51)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 45 (|has| |#1| (-174)))) (-2249 ((|#1| $ (-777)) 47)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 53) (($ |#1| $) 52)))
+((-4225 (((-1 |#3| |#2|) (-1186)) 11)) (-2912 (((-1 |#3| |#2|) |#1| (-1186)) 21)))
+(((-712 |#1| |#2| |#3|) (-10 -7 (-15 -4225 ((-1 |#3| |#2|) (-1186))) (-15 -2912 ((-1 |#3| |#2|) |#1| (-1186)))) (-620 (-542)) (-1227) (-1227)) (T -712))
+((-2912 (*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)))) (-4225 (*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 -4225 ((-1 |#3| |#2|) (-1186))) (-15 -2912 ((-1 |#3| |#2|) |#1| (-1186))))
+((-1403 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -2680 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|) 92)) (-3577 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|) 110)) (-3944 (((-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 -3944 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1277 (-650 (-1182 |#3|))) |#3|)) (-15 -3577 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|)) (-15 -1403 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -2680 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -713))
+((-1403 (*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 (|:| -2680 (-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)))) (-3577 (*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)))) (-3944 (*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 -3944 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 |#3|) (-650 (-777)) (-650 (-1182 |#4|)) (-1277 (-650 (-1182 |#3|))) |#3|)) (-15 -3577 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#3|)) (-650 |#3|) (-650 |#4|) (-650 (-777)) |#3|)) (-15 -1403 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-650 |#2|) (-650 (-1182 |#4|)) (-650 |#3|) (-650 |#4|) (-650 (-650 (-2 (|:| -2680 (-777)) (|:| |pcoef| |#4|)))) (-650 (-777)) (-1277 (-650 (-1182 |#3|))) |#3|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1954 (($ $) 48)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3915 (($ |#1| (-777)) 46)) (-3970 (((-777) $) 50)) (-1928 ((|#1| $) 49)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3079 (((-777) $) 51)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 45 (|has| |#1| (-174)))) (-1864 ((|#1| $ (-777)) 47)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 53) (($ |#1| $) 52)))
(((-714 |#1|) (-141) (-1058)) (T -714))
-((-2130 (*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2575 (*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-1927 (*1 *2 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-1956 (*1 *1 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-2249 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-3912 (*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 -2130 ((-777) $)) (-15 -2575 ((-777) $)) (-15 -1927 (|t#1| $)) (-15 -1956 ($ $)) (-15 -2249 (|t#1| $ (-777))) (-15 -3912 ($ |t#1| (-777)))))
+((-3079 (*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-3970 (*1 *2 *1) (-12 (-4 *1 (-714 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-1928 (*1 *2 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-1954 (*1 *1 *1) (-12 (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-1864 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-714 *2)) (-4 *2 (-1058)))) (-3915 (*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 -3079 ((-777) $)) (-15 -3970 ((-777) $)) (-15 -1928 (|t#1| $)) (-15 -1954 ($ $)) (-15 -1864 (|t#1| $ (-777))) (-15 -3915 ($ |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))
-((-1356 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
-(((-715 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1356 (|#6| (-1 |#4| |#1|) |#3|))) (-562) (-1253 |#1|) (-1253 (-413 |#2|)) (-562) (-1253 |#4|) (-1253 (-413 |#5|))) (T -715))
-((-1356 (*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 -1356 (|#6| (-1 |#4| |#1|) |#3|)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3262 (((-1168) (-868)) 38)) (-4147 (((-1282) (-1168)) 31)) (-3646 (((-1168) (-868)) 28)) (-3917 (((-1168) (-868)) 29)) (-3799 (((-868) $) NIL) (((-1168) (-868)) 27)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-716) (-13 (-1109) (-10 -7 (-15 -3799 ((-1168) (-868))) (-15 -3646 ((-1168) (-868))) (-15 -3917 ((-1168) (-868))) (-15 -3262 ((-1168) (-868))) (-15 -4147 ((-1282) (-1168)))))) (T -716))
-((-3799 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-3646 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-3917 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-3262 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-4147 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-716)))))
-(-13 (-1109) (-10 -7 (-15 -3799 ((-1168) (-868))) (-15 -3646 ((-1168) (-868))) (-15 -3917 ((-1168) (-868))) (-15 -3262 ((-1168) (-868))) (-15 -4147 ((-1282) (-1168)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-2506 (($ $ $) NIL)) (-3624 (($ |#1| |#2|) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4346 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1932 ((|#2| $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4046 (((-3 $ "failed") $ $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) ((|#1| $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1932 (|#2| $)) (-15 -3799 (|#1| $)) (-15 -3624 ($ |#1| |#2|)) (-15 -4046 ((-3 $ "failed") $ $)))) (-174) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -717))
-((-1932 (*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)))) (-3799 (*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)))) (-3624 (*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)))) (-4046 (*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 -1932 (|#2| $)) (-15 -3799 (|#1| $)) (-15 -3624 ($ |#1| |#2|)) (-15 -4046 ((-3 $ "failed") $ $))))
-((-2558 (((-112) $ $) 87)) (-3467 (((-112) $) 36)) (-2277 (((-1277 |#1|) $ (-777)) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-3985 (($ (-1182 |#1|)) NIL)) (-3775 (((-1182 $) $ (-1091)) NIL) (((-1182 |#1|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-2022 (($ $ $) NIL (|has| |#1| (-562)))) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3510 (((-777)) 54 (|has| |#1| (-373)))) (-1576 (($ $ (-777)) NIL)) (-2347 (($ $ (-777)) NIL)) (-3626 ((|#2| |#2|) 50)) (-4425 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL)) (-4322 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) NIL (|has| |#1| (-174)))) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) 40)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3624 (($ |#2|) 48)) (-2875 (((-3 $ "failed") $) 97)) (-3446 (($) 58 (|has| |#1| (-373)))) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3239 (($ $ $) NIL)) (-2677 (($ $ $) NIL (|has| |#1| (-562)))) (-3640 (((-2 (|:| -1452 |#1|) (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3988 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-3563 (((-965 $)) 89)) (-3720 (($ $ |#1| (-777) $) NIL)) (-2842 (((-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)))))) (-4323 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1742 (($ (-1182 |#1|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-2362 (($ $ (-777)) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) 85) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-1091)) NIL) (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-1932 ((|#2|) 51)) (-2575 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1918 (($ (-1 (-777) (-777)) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3900 (((-1182 |#1|) $) NIL)) (-3362 (((-3 (-1091) "failed") $) NIL)) (-1884 (((-928) $) NIL (|has| |#1| (-373)))) (-3612 ((|#2| $) 47)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) 34)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1988 (((-1168) $) NIL)) (-3213 (((-2 (|:| -2573 $) (|:| -3691 $)) $ (-777)) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-1091)) (|:| -3357 (-777))) "failed") $) NIL)) (-2898 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2438 (($) NIL (|has| |#1| (-1161)) CONST)) (-2268 (($ (-928)) NIL (|has| |#1| (-373)))) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3610 (($ $) 88 (|has| |#1| (-354)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-916)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 96 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1770 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-2527 (((-3 $ "failed") $ (-777)) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 98 (|has| |#1| (-368)))) (-3570 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) NIL (|has| |#1| (-174)))) (-3547 (($ $ (-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)) (-2130 (((-777) $) 38) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1425 (((-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)))))) (-1848 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-2334 (((-965 $)) 42)) (-2105 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3799 (((-868) $) 68) (($ (-570)) NIL) (($ |#1|) 65) (($ (-1091)) NIL) (($ |#2|) 75) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-777)) 70) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) 25 T CONST)) (-3840 (((-1277 |#1|) $) 83)) (-1556 (($ (-1277 |#1|)) 57)) (-1875 (($) 8 T CONST)) (-2942 (($ $ (-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)) (-2132 (((-1277 |#1|) $) NIL)) (-3022 (((-112) $ $) 76)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) 79) (($ $ $) NIL)) (-3101 (($ $ $) 39)) (** (($ $ (-928)) NIL) (($ $ (-777)) 92)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 64) (($ $ $) 82) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 62) (($ $ |#1|) NIL)))
-(((-718 |#1| |#2|) (-13 (-1253 |#1|) (-622 |#2|) (-10 -8 (-15 -3626 (|#2| |#2|)) (-15 -1932 (|#2|)) (-15 -3624 ($ |#2|)) (-15 -3612 (|#2| $)) (-15 -3840 ((-1277 |#1|) $)) (-15 -1556 ($ (-1277 |#1|))) (-15 -2132 ((-1277 |#1|) $)) (-15 -3563 ((-965 $))) (-15 -2334 ((-965 $))) (IF (|has| |#1| (-354)) (-15 -3610 ($ $)) |%noBranch|) (IF (|has| |#1| (-373)) (-6 (-373)) |%noBranch|))) (-1058) (-1253 |#1|)) (T -718))
-((-3626 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))) (-1932 (*1 *2) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058)))) (-3624 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))) (-3612 (*1 *2 *1) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058)))) (-3840 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-1556 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1058)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-2132 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-3563 (*1 *2) (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-2334 (*1 *2) (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-3610 (*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 -3626 (|#2| |#2|)) (-15 -1932 (|#2|)) (-15 -3624 ($ |#2|)) (-15 -3612 (|#2| $)) (-15 -3840 ((-1277 |#1|) $)) (-15 -1556 ($ (-1277 |#1|))) (-15 -2132 ((-1277 |#1|) $)) (-15 -3563 ((-965 $))) (-15 -2334 ((-965 $))) (IF (|has| |#1| (-354)) (-15 -3610 ($ $)) |%noBranch|) (IF (|has| |#1| (-373)) (-6 (-373)) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 ((|#1| $) 13)) (-3577 (((-1129) $) NIL)) (-3357 ((|#2| $) 12)) (-3811 (($ |#1| |#2|) 16)) (-3799 (((-868) $) NIL) (($ (-2 (|:| -2268 |#1|) (|:| -3357 |#2|))) 15) (((-2 (|:| -2268 |#1|) (|:| -3357 |#2|)) $) 14)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 11)))
-(((-719 |#1| |#2| |#3|) (-13 (-856) (-496 (-2 (|:| -2268 |#1|) (|:| -3357 |#2|))) (-10 -8 (-15 -3357 (|#2| $)) (-15 -2268 (|#1| $)) (-15 -3811 ($ |#1| |#2|)))) (-856) (-1109) (-1 (-112) (-2 (|:| -2268 |#1|) (|:| -3357 |#2|)) (-2 (|:| -2268 |#1|) (|:| -3357 |#2|)))) (T -719))
-((-3357 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-719 *3 *2 *4)) (-4 *3 (-856)) (-14 *4 (-1 (-112) (-2 (|:| -2268 *3) (|:| -3357 *2)) (-2 (|:| -2268 *3) (|:| -3357 *2)))))) (-2268 (*1 *2 *1) (-12 (-4 *2 (-856)) (-5 *1 (-719 *2 *3 *4)) (-4 *3 (-1109)) (-14 *4 (-1 (-112) (-2 (|:| -2268 *2) (|:| -3357 *3)) (-2 (|:| -2268 *2) (|:| -3357 *3)))))) (-3811 (*1 *1 *2 *3) (-12 (-5 *1 (-719 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-1109)) (-14 *4 (-1 (-112) (-2 (|:| -2268 *2) (|:| -3357 *3)) (-2 (|:| -2268 *2) (|:| -3357 *3)))))))
-(-13 (-856) (-496 (-2 (|:| -2268 |#1|) (|:| -3357 |#2|))) (-10 -8 (-15 -3357 (|#2| $)) (-15 -2268 (|#1| $)) (-15 -3811 ($ |#1| |#2|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 66)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) 102) (((-3 (-115) "failed") $) 108)) (-3216 ((|#1| $) NIL) (((-115) $) 39)) (-2875 (((-3 $ "failed") $) 103)) (-3984 ((|#2| (-115) |#2|) 93)) (-4346 (((-112) $) NIL)) (-1570 (($ |#1| (-366 (-115))) 14)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3163 (($ $ (-1 |#2| |#2|)) 65)) (-2448 (($ $ (-1 |#2| |#2|)) 44)) (-1941 ((|#2| $ |#2|) 33)) (-1522 ((|#1| |#1|) 118 (|has| |#1| (-174)))) (-3799 (((-868) $) 73) (($ (-570)) 18) (($ |#1|) 17) (($ (-115)) 23)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) 37 T CONST)) (-2335 (((-112) $ $) NIL)) (-3979 (($ $) 112 (|has| |#1| (-174))) (($ $ $) 116 (|has| |#1| (-174)))) (-1861 (($) 21 T CONST)) (-1875 (($) 9 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) 48) (($ $ $) NIL)) (-3101 (($ $ $) 83)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ (-115) (-570)) NIL) (($ $ (-570)) 64)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 111) (($ $ $) 53) (($ |#1| $) 109 (|has| |#1| (-174))) (($ $ |#1|) 110 (|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 -3979 ($ $)) (-15 -3979 ($ $ $)) (-15 -1522 (|#1| |#1|))) |%noBranch|) (-15 -2448 ($ $ (-1 |#2| |#2|))) (-15 -3163 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -3984 (|#2| (-115) |#2|)) (-15 -1570 ($ |#1| (-366 (-115)))))) (-1058) (-654 |#1|)) (T -720))
-((-3979 (*1 *1 *1) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-3979 (*1 *1 *1 *1) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1522 (*1 *2 *2) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-2448 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058)) (-5 *1 (-720 *3 *4)))) (-3163 (*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)))) (-3984 (*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-4 *4 (-1058)) (-5 *1 (-720 *4 *2)) (-4 *2 (-654 *4)))) (-1570 (*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 -3979 ($ $)) (-15 -3979 ($ $ $)) (-15 -1522 (|#1| |#1|))) |%noBranch|) (-15 -2448 ($ $ (-1 |#2| |#2|))) (-15 -3163 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -3984 (|#2| (-115) |#2|)) (-15 -1570 ($ |#1| (-366 (-115))))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 33)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-3624 (($ |#1| |#2|) 25)) (-2875 (((-3 $ "failed") $) 51)) (-4346 (((-112) $) 35)) (-1932 ((|#2| $) 12)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 52)) (-3577 (((-1129) $) NIL)) (-4046 (((-3 $ "failed") $ $) 50)) (-3799 (((-868) $) 24) (($ (-570)) 19) ((|#1| $) 13)) (-3499 (((-777)) 28 T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 16 T CONST)) (-1875 (($) 30 T CONST)) (-3022 (((-112) $ $) 41)) (-3111 (($ $) 46) (($ $ $) 40)) (-3101 (($ $ $) 43)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 21) (($ $ $) 20)))
-(((-721 |#1| |#2| |#3| |#4| |#5|) (-13 (-1058) (-10 -8 (-15 -1932 (|#2| $)) (-15 -3799 (|#1| $)) (-15 -3624 ($ |#1| |#2|)) (-15 -4046 ((-3 $ "failed") $ $)) (-15 -2875 ((-3 $ "failed") $)) (-15 -1877 ($ $)))) (-174) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -721))
-((-2875 (*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)))) (-1932 (*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)))) (-3799 (*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)))) (-3624 (*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)))) (-4046 (*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)))) (-1877 (*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 -1932 (|#2| $)) (-15 -3799 (|#1| $)) (-15 -3624 ($ |#1| |#2|)) (-15 -4046 ((-3 $ "failed") $ $)) (-15 -2875 ((-3 $ "failed") $)) (-15 -1877 ($ $))))
+((-1357 ((|#6| (-1 |#4| |#1|) |#3|) 23)))
+(((-715 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1357 (|#6| (-1 |#4| |#1|) |#3|))) (-562) (-1253 |#1|) (-1253 (-413 |#2|)) (-562) (-1253 |#4|) (-1253 (-413 |#5|))) (T -715))
+((-1357 (*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 -1357 (|#6| (-1 |#4| |#1|) |#3|)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2500 (((-1168) (-868)) 38)) (-4150 (((-1282) (-1168)) 31)) (-1675 (((-1168) (-868)) 28)) (-2471 (((-1168) (-868)) 29)) (-3802 (((-868) $) NIL) (((-1168) (-868)) 27)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-716) (-13 (-1109) (-10 -7 (-15 -3802 ((-1168) (-868))) (-15 -1675 ((-1168) (-868))) (-15 -2471 ((-1168) (-868))) (-15 -2500 ((-1168) (-868))) (-15 -4150 ((-1282) (-1168)))))) (T -716))
+((-3802 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-1675 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-2471 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-2500 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))) (-4150 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-716)))))
+(-13 (-1109) (-10 -7 (-15 -3802 ((-1168) (-868))) (-15 -1675 ((-1168) (-868))) (-15 -2471 ((-1168) (-868))) (-15 -2500 ((-1168) (-868))) (-15 -4150 ((-1282) (-1168)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2504 (($ $ $) NIL)) (-3627 (($ |#1| |#2|) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-4139 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1574 ((|#2| $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4326 (((-3 $ "failed") $ $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) ((|#1| $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1574 (|#2| $)) (-15 -3802 (|#1| $)) (-15 -3627 ($ |#1| |#2|)) (-15 -4326 ((-3 $ "failed") $ $)))) (-174) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -717))
+((-1574 (*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)))) (-3802 (*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)))) (-3627 (*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)))) (-4326 (*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 -1574 (|#2| $)) (-15 -3802 (|#1| $)) (-15 -3627 ($ |#1| |#2|)) (-15 -4326 ((-3 $ "failed") $ $))))
+((-2560 (((-112) $ $) 87)) (-3721 (((-112) $) 36)) (-3975 (((-1277 |#1|) $ (-777)) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-1904 (($ (-1182 |#1|)) NIL)) (-3778 (((-1182 $) $ (-1091)) NIL) (((-1182 |#1|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3162 (($ $ $) NIL (|has| |#1| (-562)))) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3513 (((-777)) 54 (|has| |#1| (-373)))) (-4323 (($ $ (-777)) NIL)) (-3495 (($ $ (-777)) NIL)) (-1431 ((|#2| |#2|) 50)) (-3657 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL)) (-3930 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) NIL (|has| |#1| (-174)))) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) 40)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-3627 (($ |#2|) 48)) (-1929 (((-3 $ "failed") $) 97)) (-3449 (($) 58 (|has| |#1| (-373)))) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-2280 (($ $ $) NIL)) (-3746 (($ $ $) NIL (|has| |#1| (-562)))) (-1601 (((-2 (|:| -1453 |#1|) (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1944 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-2199 (((-965 $)) 89)) (-4243 (($ $ |#1| (-777) $) NIL)) (-1557 (((-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)))))) (-3941 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1744 (($ (-1182 |#1|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-3660 (($ $ (-777)) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) 85) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-1091)) NIL) (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-1574 ((|#2|) 51)) (-3970 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1414 (($ (-1 (-777) (-777)) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2315 (((-1182 |#1|) $) NIL)) (-4023 (((-3 (-1091) "failed") $) NIL)) (-2400 (((-928) $) NIL (|has| |#1| (-373)))) (-3615 ((|#2| $) 47)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) 34)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3989 (((-1168) $) NIL)) (-2041 (((-2 (|:| -3959 $) (|:| -3971 $)) $ (-777)) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-1091)) (|:| -3994 (-777))) "failed") $) NIL)) (-2023 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2439 (($) NIL (|has| |#1| (-1161)) CONST)) (-2267 (($ (-928)) NIL (|has| |#1| (-373)))) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-2599 (($ $) 88 (|has| |#1| (-354)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-916)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 96 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1771 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-1662 (((-3 $ "failed") $ (-777)) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 98 (|has| |#1| (-368)))) (-2265 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) NIL (|has| |#1| (-174)))) (-3550 (($ $ (-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)) (-3079 (((-777) $) 38) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1426 (((-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)))))) (-2077 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3347 (((-965 $)) 42)) (-2846 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3802 (((-868) $) 68) (($ (-570)) NIL) (($ |#1|) 65) (($ (-1091)) NIL) (($ |#2|) 75) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-777)) 70) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) 25 T CONST)) (-2953 (((-1277 |#1|) $) 83)) (-2321 (($ (-1277 |#1|)) 57)) (-1876 (($) 8 T CONST)) (-2945 (($ $ (-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)) (-3096 (((-1277 |#1|) $) NIL)) (-3025 (((-112) $ $) 76)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) 79) (($ $ $) NIL)) (-3104 (($ $ $) 39)) (** (($ $ (-928)) NIL) (($ $ (-777)) 92)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 64) (($ $ $) 82) (($ $ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ (-413 (-570)) $) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#1| $) 62) (($ $ |#1|) NIL)))
+(((-718 |#1| |#2|) (-13 (-1253 |#1|) (-622 |#2|) (-10 -8 (-15 -1431 (|#2| |#2|)) (-15 -1574 (|#2|)) (-15 -3627 ($ |#2|)) (-15 -3615 (|#2| $)) (-15 -2953 ((-1277 |#1|) $)) (-15 -2321 ($ (-1277 |#1|))) (-15 -3096 ((-1277 |#1|) $)) (-15 -2199 ((-965 $))) (-15 -3347 ((-965 $))) (IF (|has| |#1| (-354)) (-15 -2599 ($ $)) |%noBranch|) (IF (|has| |#1| (-373)) (-6 (-373)) |%noBranch|))) (-1058) (-1253 |#1|)) (T -718))
+((-1431 (*1 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))) (-1574 (*1 *2) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058)))) (-3627 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))) (-3615 (*1 *2 *1) (-12 (-4 *2 (-1253 *3)) (-5 *1 (-718 *3 *2)) (-4 *3 (-1058)))) (-2953 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-2321 (*1 *1 *2) (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1058)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-3096 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-2199 (*1 *2) (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-3347 (*1 *2) (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4)) (-4 *4 (-1253 *3)))) (-2599 (*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 -1431 (|#2| |#2|)) (-15 -1574 (|#2|)) (-15 -3627 ($ |#2|)) (-15 -3615 (|#2| $)) (-15 -2953 ((-1277 |#1|) $)) (-15 -2321 ($ (-1277 |#1|))) (-15 -3096 ((-1277 |#1|) $)) (-15 -2199 ((-965 $))) (-15 -3347 ((-965 $))) (IF (|has| |#1| (-354)) (-15 -2599 ($ $)) |%noBranch|) (IF (|has| |#1| (-373)) (-6 (-373)) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 ((|#1| $) 13)) (-3580 (((-1129) $) NIL)) (-3994 ((|#2| $) 12)) (-3814 (($ |#1| |#2|) 16)) (-3802 (((-868) $) NIL) (($ (-2 (|:| -2267 |#1|) (|:| -3994 |#2|))) 15) (((-2 (|:| -2267 |#1|) (|:| -3994 |#2|)) $) 14)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 11)))
+(((-719 |#1| |#2| |#3|) (-13 (-856) (-496 (-2 (|:| -2267 |#1|) (|:| -3994 |#2|))) (-10 -8 (-15 -3994 (|#2| $)) (-15 -2267 (|#1| $)) (-15 -3814 ($ |#1| |#2|)))) (-856) (-1109) (-1 (-112) (-2 (|:| -2267 |#1|) (|:| -3994 |#2|)) (-2 (|:| -2267 |#1|) (|:| -3994 |#2|)))) (T -719))
+((-3994 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-719 *3 *2 *4)) (-4 *3 (-856)) (-14 *4 (-1 (-112) (-2 (|:| -2267 *3) (|:| -3994 *2)) (-2 (|:| -2267 *3) (|:| -3994 *2)))))) (-2267 (*1 *2 *1) (-12 (-4 *2 (-856)) (-5 *1 (-719 *2 *3 *4)) (-4 *3 (-1109)) (-14 *4 (-1 (-112) (-2 (|:| -2267 *2) (|:| -3994 *3)) (-2 (|:| -2267 *2) (|:| -3994 *3)))))) (-3814 (*1 *1 *2 *3) (-12 (-5 *1 (-719 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-1109)) (-14 *4 (-1 (-112) (-2 (|:| -2267 *2) (|:| -3994 *3)) (-2 (|:| -2267 *2) (|:| -3994 *3)))))))
+(-13 (-856) (-496 (-2 (|:| -2267 |#1|) (|:| -3994 |#2|))) (-10 -8 (-15 -3994 (|#2| $)) (-15 -2267 (|#1| $)) (-15 -3814 ($ |#1| |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 66)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) 102) (((-3 (-115) "failed") $) 108)) (-3220 ((|#1| $) NIL) (((-115) $) 39)) (-1929 (((-3 $ "failed") $) 103)) (-1890 ((|#2| (-115) |#2|) 93)) (-4139 (((-112) $) NIL)) (-2468 (($ |#1| (-366 (-115))) 14)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2766 (($ $ (-1 |#2| |#2|)) 65)) (-2146 (($ $ (-1 |#2| |#2|)) 44)) (-1942 ((|#2| $ |#2|) 33)) (-1984 ((|#1| |#1|) 118 (|has| |#1| (-174)))) (-3802 (((-868) $) 73) (($ (-570)) 18) (($ |#1|) 17) (($ (-115)) 23)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) 37 T CONST)) (-3359 (((-112) $ $) NIL)) (-1840 (($ $) 112 (|has| |#1| (-174))) (($ $ $) 116 (|has| |#1| (-174)))) (-1862 (($) 21 T CONST)) (-1876 (($) 9 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) 48) (($ $ $) NIL)) (-3104 (($ $ $) 83)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ (-115) (-570)) NIL) (($ $ (-570)) 64)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 111) (($ $ $) 53) (($ |#1| $) 109 (|has| |#1| (-174))) (($ $ |#1|) 110 (|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 -1840 ($ $)) (-15 -1840 ($ $ $)) (-15 -1984 (|#1| |#1|))) |%noBranch|) (-15 -2146 ($ $ (-1 |#2| |#2|))) (-15 -2766 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -1890 (|#2| (-115) |#2|)) (-15 -2468 ($ |#1| (-366 (-115)))))) (-1058) (-654 |#1|)) (T -720))
+((-1840 (*1 *1 *1) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1840 (*1 *1 *1 *1) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-1984 (*1 *2 *2) (-12 (-4 *2 (-174)) (-4 *2 (-1058)) (-5 *1 (-720 *2 *3)) (-4 *3 (-654 *2)))) (-2146 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *4 *4)) (-4 *4 (-654 *3)) (-4 *3 (-1058)) (-5 *1 (-720 *3 *4)))) (-2766 (*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)))) (-1890 (*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-4 *4 (-1058)) (-5 *1 (-720 *4 *2)) (-4 *2 (-654 *4)))) (-2468 (*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 -1840 ($ $)) (-15 -1840 ($ $ $)) (-15 -1984 (|#1| |#1|))) |%noBranch|) (-15 -2146 ($ $ (-1 |#2| |#2|))) (-15 -2766 ($ $ (-1 |#2| |#2|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -1890 (|#2| (-115) |#2|)) (-15 -2468 ($ |#1| (-366 (-115))))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 33)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-3627 (($ |#1| |#2|) 25)) (-1929 (((-3 $ "failed") $) 51)) (-4139 (((-112) $) 35)) (-1574 ((|#2| $) 12)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 52)) (-3580 (((-1129) $) NIL)) (-4326 (((-3 $ "failed") $ $) 50)) (-3802 (((-868) $) 24) (($ (-570)) 19) ((|#1| $) 13)) (-2851 (((-777)) 28 T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 16 T CONST)) (-1876 (($) 30 T CONST)) (-3025 (((-112) $ $) 41)) (-3114 (($ $) 46) (($ $ $) 40)) (-3104 (($ $ $) 43)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 21) (($ $ $) 20)))
+(((-721 |#1| |#2| |#3| |#4| |#5|) (-13 (-1058) (-10 -8 (-15 -1574 (|#2| $)) (-15 -3802 (|#1| $)) (-15 -3627 ($ |#1| |#2|)) (-15 -4326 ((-3 $ "failed") $ $)) (-15 -1929 ((-3 $ "failed") $)) (-15 -1878 ($ $)))) (-174) (-23) (-1 |#1| |#1| |#2|) (-1 (-3 |#2| "failed") |#2| |#2|) (-1 (-3 |#1| "failed") |#1| |#1| |#2|)) (T -721))
+((-1929 (*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)))) (-1574 (*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)))) (-3802 (*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)))) (-3627 (*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)))) (-4326 (*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)))) (-1878 (*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 -1574 (|#2| $)) (-15 -3802 (|#1| $)) (-15 -3627 ($ |#1| |#2|)) (-15 -4326 ((-3 $ "failed") $ $)) (-15 -1929 ((-3 $ "failed") $)) (-15 -1878 ($ $))))
((* (($ (-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|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2558 (((-112) $ $) NIL)) (-3160 (($ |#1|) 17) (($ $ |#1|) 20)) (-2548 (($ |#1|) 18) (($ $ |#1|) 21)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-4346 (((-112) $) NIL)) (-3408 (($ |#1| |#1| |#1| |#1|) 8)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 16)) (-3577 (((-1129) $) NIL)) (-1770 ((|#1| $ |#1|) 24) (((-839 |#1|) $ (-839 |#1|)) 32)) (-2020 (($ $ $) NIL)) (-4391 (($ $ $) NIL)) (-3799 (((-868) $) 39)) (-2335 (((-112) $ $) NIL)) (-1875 (($) 9 T CONST)) (-3022 (((-112) $ $) 48)) (-3122 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 14)))
-(((-724 |#1|) (-13 (-479) (-10 -8 (-15 -3408 ($ |#1| |#1| |#1| |#1|)) (-15 -3160 ($ |#1|)) (-15 -2548 ($ |#1|)) (-15 -2875 ($)) (-15 -3160 ($ $ |#1|)) (-15 -2548 ($ $ |#1|)) (-15 -2875 ($ $)) (-15 -1770 (|#1| $ |#1|)) (-15 -1770 ((-839 |#1|) $ (-839 |#1|))))) (-368)) (T -724))
-((-3408 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3160 (*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-2548 (*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-2875 (*1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3160 (*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-2548 (*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-2875 (*1 *1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1770 (*1 *2 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1770 (*1 *2 *1 *2) (-12 (-5 *2 (-839 *3)) (-4 *3 (-368)) (-5 *1 (-724 *3)))))
-(-13 (-479) (-10 -8 (-15 -3408 ($ |#1| |#1| |#1| |#1|)) (-15 -3160 ($ |#1|)) (-15 -2548 ($ |#1|)) (-15 -2875 ($)) (-15 -3160 ($ $ |#1|)) (-15 -2548 ($ $ |#1|)) (-15 -2875 ($ $)) (-15 -1770 (|#1| $ |#1|)) (-15 -1770 ((-839 |#1|) $ (-839 |#1|)))))
-((-2705 (($ $ (-928)) 19)) (-1575 (($ $ (-928)) 20)) (** (($ $ (-928)) 10)))
-(((-725 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-928))) (-15 -1575 (|#1| |#1| (-928))) (-15 -2705 (|#1| |#1| (-928)))) (-726)) (T -725))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-928))) (-15 -1575 (|#1| |#1| (-928))) (-15 -2705 (|#1| |#1| (-928))))
-((-2558 (((-112) $ $) 7)) (-2705 (($ $ (-928)) 16)) (-1575 (($ $ (-928)) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)) (** (($ $ (-928)) 14)) (* (($ $ $) 17)))
+((-2560 (((-112) $ $) NIL)) (-3163 (($ |#1|) 17) (($ $ |#1|) 20)) (-1909 (($ |#1|) 18) (($ $ |#1|) 21)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL) (($) 19) (($ $) 22)) (-4139 (((-112) $) NIL)) (-4355 (($ |#1| |#1| |#1| |#1|) 8)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 16)) (-3580 (((-1129) $) NIL)) (-1771 ((|#1| $ |#1|) 24) (((-839 |#1|) $ (-839 |#1|)) 32)) (-4307 (($ $ $) NIL)) (-3381 (($ $ $) NIL)) (-3802 (((-868) $) 39)) (-3359 (((-112) $ $) NIL)) (-1876 (($) 9 T CONST)) (-3025 (((-112) $ $) 48)) (-3125 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 14)))
+(((-724 |#1|) (-13 (-479) (-10 -8 (-15 -4355 ($ |#1| |#1| |#1| |#1|)) (-15 -3163 ($ |#1|)) (-15 -1909 ($ |#1|)) (-15 -1929 ($)) (-15 -3163 ($ $ |#1|)) (-15 -1909 ($ $ |#1|)) (-15 -1929 ($ $)) (-15 -1771 (|#1| $ |#1|)) (-15 -1771 ((-839 |#1|) $ (-839 |#1|))))) (-368)) (T -724))
+((-4355 (*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3163 (*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1909 (*1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1929 (*1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-3163 (*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1909 (*1 *1 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1929 (*1 *1 *1) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1771 (*1 *2 *1 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))) (-1771 (*1 *2 *1 *2) (-12 (-5 *2 (-839 *3)) (-4 *3 (-368)) (-5 *1 (-724 *3)))))
+(-13 (-479) (-10 -8 (-15 -4355 ($ |#1| |#1| |#1| |#1|)) (-15 -3163 ($ |#1|)) (-15 -1909 ($ |#1|)) (-15 -1929 ($)) (-15 -3163 ($ $ |#1|)) (-15 -1909 ($ $ |#1|)) (-15 -1929 ($ $)) (-15 -1771 (|#1| $ |#1|)) (-15 -1771 ((-839 |#1|) $ (-839 |#1|)))))
+((-2827 (($ $ (-928)) 19)) (-4311 (($ $ (-928)) 20)) (** (($ $ (-928)) 10)))
+(((-725 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-928))) (-15 -4311 (|#1| |#1| (-928))) (-15 -2827 (|#1| |#1| (-928)))) (-726)) (T -725))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-928))) (-15 -4311 (|#1| |#1| (-928))) (-15 -2827 (|#1| |#1| (-928))))
+((-2560 (((-112) $ $) 7)) (-2827 (($ $ (-928)) 16)) (-4311 (($ $ (-928)) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)) (** (($ $ (-928)) 14)) (* (($ $ $) 17)))
(((-726) (-141)) (T -726))
-((* (*1 *1 *1 *1) (-4 *1 (-726))) (-2705 (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928)))) (-1575 (*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 -2705 ($ $ (-928))) (-15 -1575 ($ $ (-928))) (-15 ** ($ $ (-928)))))
+((* (*1 *1 *1 *1) (-4 *1 (-726))) (-2827 (*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928)))) (-4311 (*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 -2827 ($ $ (-928))) (-15 -4311 ($ $ (-928))) (-15 ** ($ $ (-928)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2705 (($ $ (-928)) NIL) (($ $ (-777)) 18)) (-4346 (((-112) $) 10)) (-1575 (($ $ (-928)) NIL) (($ $ (-777)) 19)) (** (($ $ (-928)) NIL) (($ $ (-777)) 16)))
-(((-727 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-777))) (-15 -1575 (|#1| |#1| (-777))) (-15 -2705 (|#1| |#1| (-777))) (-15 -4346 ((-112) |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -1575 (|#1| |#1| (-928))) (-15 -2705 (|#1| |#1| (-928)))) (-728)) (T -727))
+((-2827 (($ $ (-928)) NIL) (($ $ (-777)) 18)) (-4139 (((-112) $) 10)) (-4311 (($ $ (-928)) NIL) (($ $ (-777)) 19)) (** (($ $ (-928)) NIL) (($ $ (-777)) 16)))
+(((-727 |#1|) (-10 -8 (-15 ** (|#1| |#1| (-777))) (-15 -4311 (|#1| |#1| (-777))) (-15 -2827 (|#1| |#1| (-777))) (-15 -4139 ((-112) |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -4311 (|#1| |#1| (-928))) (-15 -2827 (|#1| |#1| (-928)))) (-728)) (T -727))
NIL
-(-10 -8 (-15 ** (|#1| |#1| (-777))) (-15 -1575 (|#1| |#1| (-777))) (-15 -2705 (|#1| |#1| (-777))) (-15 -4346 ((-112) |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -1575 (|#1| |#1| (-928))) (-15 -2705 (|#1| |#1| (-928))))
-((-2558 (((-112) $ $) 7)) (-2054 (((-3 $ "failed") $) 18)) (-2705 (($ $ (-928)) 16) (($ $ (-777)) 23)) (-2875 (((-3 $ "failed") $) 20)) (-4346 (((-112) $) 24)) (-3259 (((-3 $ "failed") $) 19)) (-1575 (($ $ (-928)) 15) (($ $ (-777)) 22)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1875 (($) 25 T CONST)) (-3022 (((-112) $ $) 6)) (** (($ $ (-928)) 14) (($ $ (-777)) 21)) (* (($ $ $) 17)))
+(-10 -8 (-15 ** (|#1| |#1| (-777))) (-15 -4311 (|#1| |#1| (-777))) (-15 -2827 (|#1| |#1| (-777))) (-15 -4139 ((-112) |#1|)) (-15 ** (|#1| |#1| (-928))) (-15 -4311 (|#1| |#1| (-928))) (-15 -2827 (|#1| |#1| (-928))))
+((-2560 (((-112) $ $) 7)) (-3498 (((-3 $ "failed") $) 18)) (-2827 (($ $ (-928)) 16) (($ $ (-777)) 23)) (-1929 (((-3 $ "failed") $) 20)) (-4139 (((-112) $) 24)) (-2480 (((-3 $ "failed") $) 19)) (-4311 (($ $ (-928)) 15) (($ $ (-777)) 22)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1876 (($) 25 T CONST)) (-3025 (((-112) $ $) 6)) (** (($ $ (-928)) 14) (($ $ (-777)) 21)) (* (($ $ $) 17)))
(((-728) (-141)) (T -728))
-((-1875 (*1 *1) (-4 *1 (-728))) (-4346 (*1 *2 *1) (-12 (-4 *1 (-728)) (-5 *2 (-112)))) (-2705 (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (-1575 (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (-2875 (*1 *1 *1) (|partial| -4 *1 (-728))) (-3259 (*1 *1 *1) (|partial| -4 *1 (-728))) (-2054 (*1 *1 *1) (|partial| -4 *1 (-728))))
-(-13 (-726) (-10 -8 (-15 (-1875) ($) -3725) (-15 -4346 ((-112) $)) (-15 -2705 ($ $ (-777))) (-15 -1575 ($ $ (-777))) (-15 ** ($ $ (-777))) (-15 -2875 ((-3 $ "failed") $)) (-15 -3259 ((-3 $ "failed") $)) (-15 -2054 ((-3 $ "failed") $))))
+((-1876 (*1 *1) (-4 *1 (-728))) (-4139 (*1 *2 *1) (-12 (-4 *1 (-728)) (-5 *2 (-112)))) (-2827 (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (-4311 (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))) (-1929 (*1 *1 *1) (|partial| -4 *1 (-728))) (-2480 (*1 *1 *1) (|partial| -4 *1 (-728))) (-3498 (*1 *1 *1) (|partial| -4 *1 (-728))))
+(-13 (-726) (-10 -8 (-15 (-1876) ($) -3728) (-15 -4139 ((-112) $)) (-15 -2827 ($ $ (-777))) (-15 -4311 ($ $ (-777))) (-15 ** ($ $ (-777))) (-15 -1929 ((-3 $ "failed") $)) (-15 -2480 ((-3 $ "failed") $)) (-15 -3498 ((-3 $ "failed") $))))
(((-102) . T) ((-619 (-868)) . T) ((-726) . T) ((-1109) . T))
-((-3510 (((-777)) 39)) (-4380 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 26)) (-3216 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 23)) (-3624 (($ |#3|) NIL) (((-3 $ "failed") (-413 |#3|)) 49)) (-2875 (((-3 $ "failed") $) 69)) (-3446 (($) 43)) (-2959 ((|#2| $) 21)) (-2466 (($) 18)) (-3547 (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 57) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-1998 (((-695 |#2|) (-1277 $) (-1 |#2| |#2|)) 64)) (-1425 (((-1277 |#2|) $) NIL) (($ (-1277 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-3553 ((|#3| $) 36)) (-1972 (((-1277 $)) 33)))
-(((-729 |#1| |#2| |#3|) (-10 -8 (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3446 (|#1|)) (-15 -3510 ((-777))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -1998 ((-695 |#2|) (-1277 |#1|) (-1 |#2| |#2|))) (-15 -3624 ((-3 |#1| "failed") (-413 |#3|))) (-15 -1425 (|#1| |#3|)) (-15 -3624 (|#1| |#3|)) (-15 -2466 (|#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -1425 (|#3| |#1|)) (-15 -1425 (|#1| (-1277 |#2|))) (-15 -1425 ((-1277 |#2|) |#1|)) (-15 -1972 ((-1277 |#1|))) (-15 -3553 (|#3| |#1|)) (-15 -2959 (|#2| |#1|)) (-15 -2875 ((-3 |#1| "failed") |#1|))) (-730 |#2| |#3|) (-174) (-1253 |#2|)) (T -729))
-((-3510 (*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 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3446 (|#1|)) (-15 -3510 ((-777))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -1998 ((-695 |#2|) (-1277 |#1|) (-1 |#2| |#2|))) (-15 -3624 ((-3 |#1| "failed") (-413 |#3|))) (-15 -1425 (|#1| |#3|)) (-15 -3624 (|#1| |#3|)) (-15 -2466 (|#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -1425 (|#3| |#1|)) (-15 -1425 (|#1| (-1277 |#2|))) (-15 -1425 ((-1277 |#2|) |#1|)) (-15 -1972 ((-1277 |#1|))) (-15 -3553 (|#3| |#1|)) (-15 -2959 (|#2| |#1|)) (-15 -2875 ((-3 |#1| "failed") |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 102 (|has| |#1| (-368)))) (-3074 (($ $) 103 (|has| |#1| (-368)))) (-3475 (((-112) $) 105 (|has| |#1| (-368)))) (-1806 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3207 ((|#1| $) 59)) (-2640 (((-1199 (-928) (-777)) (-570)) 155 (|has| |#1| (-354)))) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 122 (|has| |#1| (-368)))) (-1652 (((-424 $) $) 123 (|has| |#1| (-368)))) (-3473 (((-112) $ $) 113 (|has| |#1| (-368)))) (-3510 (((-777)) 96 (|has| |#1| (-373)))) (-1705 (($) 18 T CONST)) (-4380 (((-3 (-570) "failed") $) 178 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 173)) (-3216 (((-570) $) 177 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 174)) (-3243 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-354)))) (-2506 (($ $ $) 117 (|has| |#1| (-368)))) (-2818 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-4196 (((-695 (-570)) (-695 $)) 172 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 170) (((-695 |#1|) (-695 $)) 169)) (-3624 (($ |#2|) 166) (((-3 $ "failed") (-413 |#2|)) 163 (|has| |#1| (-368)))) (-2875 (((-3 $ "failed") $) 37)) (-4006 (((-928)) 61)) (-3446 (($) 99 (|has| |#1| (-373)))) (-2518 (($ $ $) 116 (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 111 (|has| |#1| (-368)))) (-2652 (($) 157 (|has| |#1| (-354)))) (-2542 (((-112) $) 158 (|has| |#1| (-354)))) (-2063 (($ $ (-777)) 149 (|has| |#1| (-354))) (($ $) 148 (|has| |#1| (-354)))) (-3618 (((-112) $) 124 (|has| |#1| (-368)))) (-4323 (((-928) $) 160 (|has| |#1| (-354))) (((-839 (-928)) $) 146 (|has| |#1| (-354)))) (-4346 (((-112) $) 35)) (-2959 ((|#1| $) 58)) (-2619 (((-3 $ "failed") $) 150 (|has| |#1| (-354)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| |#1| (-368)))) (-3521 ((|#2| $) 51 (|has| |#1| (-368)))) (-1884 (((-928) $) 98 (|has| |#1| (-373)))) (-3612 ((|#2| $) 164)) (-1899 (($ (-650 $)) 109 (|has| |#1| (-368))) (($ $ $) 108 (|has| |#1| (-368)))) (-1988 (((-1168) $) 10)) (-1877 (($ $) 125 (|has| |#1| (-368)))) (-2438 (($) 151 (|has| |#1| (-354)) CONST)) (-2268 (($ (-928)) 97 (|has| |#1| (-373)))) (-3577 (((-1129) $) 11)) (-2466 (($) 168)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 110 (|has| |#1| (-368)))) (-1942 (($ (-650 $)) 107 (|has| |#1| (-368))) (($ $ $) 106 (|has| |#1| (-368)))) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) 154 (|has| |#1| (-354)))) (-3801 (((-424 $) $) 121 (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 118 (|has| |#1| (-368)))) (-2547 (((-3 $ "failed") $ $) 101 (|has| |#1| (-368)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| |#1| (-368)))) (-2142 (((-777) $) 114 (|has| |#1| (-368)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 115 (|has| |#1| (-368)))) (-3570 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-2289 (((-777) $) 159 (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) 147 (|has| |#1| (-354)))) (-3547 (($ $) 145 (-2892 (-1809 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) 143 (-2892 (-1809 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) 141 (-1809 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186))) 140 (-1809 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1186) (-777)) 139 (-1809 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-777))) 138 (-1809 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1 |#1| |#1|) (-777)) 131 (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) 130 (|has| |#1| (-368)))) (-1998 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-368)))) (-2755 ((|#2|) 167)) (-4003 (($) 156 (|has| |#1| (-354)))) (-3424 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1425 (((-1277 |#1|) $) 70) (($ (-1277 |#1|)) 69) ((|#2| $) 179) (($ |#2|) 165)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 153 (|has| |#1| (-354)))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ $) 100 (|has| |#1| (-368))) (($ (-413 (-570))) 95 (-2892 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3532 (($ $) 152 (|has| |#1| (-354))) (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-3553 ((|#2| $) 52)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1972 (((-1277 $)) 74)) (-2029 (((-112) $ $) 104 (|has| |#1| (-368)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $) 144 (-2892 (-1809 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) 142 (-2892 (-1809 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) 137 (-1809 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186))) 136 (-1809 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1186) (-777)) 135 (-1809 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-777))) 134 (-1809 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1 |#1| |#1|) (-777)) 133 (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) 132 (|has| |#1| (-368)))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 129 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))
+((-3513 (((-777)) 39)) (-4383 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 26)) (-3220 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 23)) (-3627 (($ |#3|) NIL) (((-3 $ "failed") (-413 |#3|)) 49)) (-1929 (((-3 $ "failed") $) 69)) (-3449 (($) 43)) (-4399 ((|#2| $) 21)) (-2467 (($) 18)) (-3550 (($ $ (-1 |#2| |#2|) (-777)) NIL) (($ $ (-1 |#2| |#2|)) 57) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186)) NIL) (($ $ (-777)) NIL) (($ $) NIL)) (-4083 (((-695 |#2|) (-1277 $) (-1 |#2| |#2|)) 64)) (-1426 (((-1277 |#2|) $) NIL) (($ (-1277 |#2|)) NIL) ((|#3| $) 10) (($ |#3|) 12)) (-2124 ((|#3| $) 36)) (-3827 (((-1277 $)) 33)))
+(((-729 |#1| |#2| |#3|) (-10 -8 (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3449 (|#1|)) (-15 -3513 ((-777))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -4083 ((-695 |#2|) (-1277 |#1|) (-1 |#2| |#2|))) (-15 -3627 ((-3 |#1| "failed") (-413 |#3|))) (-15 -1426 (|#1| |#3|)) (-15 -3627 (|#1| |#3|)) (-15 -2467 (|#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -1426 (|#3| |#1|)) (-15 -1426 (|#1| (-1277 |#2|))) (-15 -1426 ((-1277 |#2|) |#1|)) (-15 -3827 ((-1277 |#1|))) (-15 -2124 (|#3| |#1|)) (-15 -4399 (|#2| |#1|)) (-15 -1929 ((-3 |#1| "failed") |#1|))) (-730 |#2| |#3|) (-174) (-1253 |#2|)) (T -729))
+((-3513 (*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 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3449 (|#1|)) (-15 -3513 ((-777))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -4083 ((-695 |#2|) (-1277 |#1|) (-1 |#2| |#2|))) (-15 -3627 ((-3 |#1| "failed") (-413 |#3|))) (-15 -1426 (|#1| |#3|)) (-15 -3627 (|#1| |#3|)) (-15 -2467 (|#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -1426 (|#3| |#1|)) (-15 -1426 (|#1| (-1277 |#2|))) (-15 -1426 ((-1277 |#2|) |#1|)) (-15 -3827 ((-1277 |#1|))) (-15 -2124 (|#3| |#1|)) (-15 -4399 (|#2| |#1|)) (-15 -1929 ((-3 |#1| "failed") |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 102 (|has| |#1| (-368)))) (-4306 (($ $) 103 (|has| |#1| (-368)))) (-2617 (((-112) $) 105 (|has| |#1| (-368)))) (-2913 (((-695 |#1|) (-1277 $)) 53) (((-695 |#1|)) 68)) (-3211 ((|#1| $) 59)) (-3379 (((-1199 (-928) (-777)) (-570)) 155 (|has| |#1| (-354)))) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 122 (|has| |#1| (-368)))) (-3871 (((-424 $) $) 123 (|has| |#1| (-368)))) (-3765 (((-112) $ $) 113 (|has| |#1| (-368)))) (-3513 (((-777)) 96 (|has| |#1| (-373)))) (-3195 (($) 18 T CONST)) (-4383 (((-3 (-570) "failed") $) 178 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 176 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 173)) (-3220 (((-570) $) 177 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 175 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 174)) (-2322 (($ (-1277 |#1|) (-1277 $)) 55) (($ (-1277 |#1|)) 71)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) 161 (|has| |#1| (-354)))) (-2504 (($ $ $) 117 (|has| |#1| (-368)))) (-2595 (((-695 |#1|) $ (-1277 $)) 60) (((-695 |#1|) $) 66)) (-2179 (((-695 (-570)) (-695 $)) 172 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 171 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 170) (((-695 |#1|) (-695 $)) 169)) (-3627 (($ |#2|) 166) (((-3 $ "failed") (-413 |#2|)) 163 (|has| |#1| (-368)))) (-1929 (((-3 $ "failed") $) 37)) (-4009 (((-928)) 61)) (-3449 (($) 99 (|has| |#1| (-373)))) (-2519 (($ $ $) 116 (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 111 (|has| |#1| (-368)))) (-3511 (($) 157 (|has| |#1| (-354)))) (-1843 (((-112) $) 158 (|has| |#1| (-354)))) (-3599 (($ $ (-777)) 149 (|has| |#1| (-354))) (($ $) 148 (|has| |#1| (-354)))) (-1336 (((-112) $) 124 (|has| |#1| (-368)))) (-3941 (((-928) $) 160 (|has| |#1| (-354))) (((-839 (-928)) $) 146 (|has| |#1| (-354)))) (-4139 (((-112) $) 35)) (-4399 ((|#1| $) 58)) (-4369 (((-3 $ "failed") $) 150 (|has| |#1| (-354)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 120 (|has| |#1| (-368)))) (-3043 ((|#2| $) 51 (|has| |#1| (-368)))) (-2400 (((-928) $) 98 (|has| |#1| (-373)))) (-3615 ((|#2| $) 164)) (-1901 (($ (-650 $)) 109 (|has| |#1| (-368))) (($ $ $) 108 (|has| |#1| (-368)))) (-3989 (((-1168) $) 10)) (-1878 (($ $) 125 (|has| |#1| (-368)))) (-2439 (($) 151 (|has| |#1| (-354)) CONST)) (-2267 (($ (-928)) 97 (|has| |#1| (-373)))) (-3580 (((-1129) $) 11)) (-2467 (($) 168)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 110 (|has| |#1| (-368)))) (-1939 (($ (-650 $)) 107 (|has| |#1| (-368))) (($ $ $) 106 (|has| |#1| (-368)))) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) 154 (|has| |#1| (-354)))) (-3804 (((-424 $) $) 121 (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 118 (|has| |#1| (-368)))) (-2548 (((-3 $ "failed") $ $) 101 (|has| |#1| (-368)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 112 (|has| |#1| (-368)))) (-2006 (((-777) $) 114 (|has| |#1| (-368)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 115 (|has| |#1| (-368)))) (-2265 ((|#1| (-1277 $)) 54) ((|#1|) 67)) (-4080 (((-777) $) 159 (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) 147 (|has| |#1| (-354)))) (-3550 (($ $) 145 (-2895 (-1810 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) 143 (-2895 (-1810 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) 141 (-1810 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186))) 140 (-1810 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1186) (-777)) 139 (-1810 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-777))) 138 (-1810 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1 |#1| |#1|) (-777)) 131 (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) 130 (|has| |#1| (-368)))) (-4083 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) 162 (|has| |#1| (-368)))) (-2075 ((|#2|) 167)) (-3924 (($) 156 (|has| |#1| (-354)))) (-3314 (((-1277 |#1|) $ (-1277 $)) 57) (((-695 |#1|) (-1277 $) (-1277 $)) 56) (((-1277 |#1|) $) 73) (((-695 |#1|) (-1277 $)) 72)) (-1426 (((-1277 |#1|) $) 70) (($ (-1277 |#1|)) 69) ((|#2| $) 179) (($ |#2|) 165)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 153 (|has| |#1| (-354)))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ $) 100 (|has| |#1| (-368))) (($ (-413 (-570))) 95 (-2895 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3132 (($ $) 152 (|has| |#1| (-354))) (((-3 $ "failed") $) 50 (|has| |#1| (-146)))) (-2124 ((|#2| $) 52)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3827 (((-1277 $)) 74)) (-3228 (((-112) $ $) 104 (|has| |#1| (-368)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $) 144 (-2895 (-1810 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) 142 (-2895 (-1810 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-1186)) 137 (-1810 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186))) 136 (-1810 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1186) (-777)) 135 (-1810 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 (-777))) 134 (-1810 (|has| |#1| (-907 (-1186))) (|has| |#1| (-368)))) (($ $ (-1 |#1| |#1|) (-777)) 133 (|has| |#1| (-368))) (($ $ (-1 |#1| |#1|)) 132 (|has| |#1| (-368)))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 129 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2466 (*1 *1) (-12 (-4 *2 (-174)) (-4 *1 (-730 *2 *3)) (-4 *3 (-1253 *2)))) (-2755 (*1 *2) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-3624 (*1 *1 *2) (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1253 *3)))) (-1425 (*1 *1 *2) (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1253 *3)))) (-3612 (*1 *2 *1) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-3624 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-368)) (-4 *3 (-174)) (-4 *1 (-730 *3 *4)))) (-1998 (*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 -2466 ($)) (-15 -2755 (|t#2|)) (-15 -3624 ($ |t#2|)) (-15 -1425 ($ |t#2|)) (-15 -3612 (|t#2| $)) (IF (|has| |t#1| (-373)) (-6 (-373)) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-6 (-368)) (-6 (-233 |t#1|)) (-15 -3624 ((-3 $ "failed") (-413 |t#2|))) (-15 -1998 ((-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))) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-38 |#1|) . T) ((-38 $) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-102) . T) ((-111 #0# #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2892 (|has| |#1| (-354)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) -2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-354)) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) . T) ((-620 |#2|) . T) ((-233 |#1|) |has| |#1| (-368)) ((-235) -2892 (|has| |#1| (-354)) (-12 (|has| |#1| (-235)) (|has| |#1| (-368)))) ((-245) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-294) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-311) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-368) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-408) |has| |#1| (-354)) ((-373) -2892 (|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) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-562) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-646 |#1|) . T) ((-646 $) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-723 |#1|) . T) ((-723 $) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186)))) ((-927) -2892 (|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#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-354)) ((-1231) -2892 (|has| |#1| (-354)) (|has| |#1| (-368))))
-((-1705 (($) 11)) (-2875 (((-3 $ "failed") $) 14)) (-4346 (((-112) $) 10)) (** (($ $ (-928)) NIL) (($ $ (-777)) 20)))
-(((-731 |#1|) (-10 -8 (-15 -2875 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 -4346 ((-112) |#1|)) (-15 -1705 (|#1|)) (-15 ** (|#1| |#1| (-928)))) (-732)) (T -731))
-NIL
-(-10 -8 (-15 -2875 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 -4346 ((-112) |#1|)) (-15 -1705 (|#1|)) (-15 ** (|#1| |#1| (-928))))
-((-2558 (((-112) $ $) 7)) (-1705 (($) 19 T CONST)) (-2875 (((-3 $ "failed") $) 16)) (-4346 (((-112) $) 18)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1875 (($) 20 T CONST)) (-3022 (((-112) $ $) 6)) (** (($ $ (-928)) 14) (($ $ (-777)) 17)) (* (($ $ $) 15)))
+((-2467 (*1 *1) (-12 (-4 *2 (-174)) (-4 *1 (-730 *2 *3)) (-4 *3 (-1253 *2)))) (-2075 (*1 *2) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-3627 (*1 *1 *2) (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1253 *3)))) (-1426 (*1 *1 *2) (-12 (-4 *3 (-174)) (-4 *1 (-730 *3 *2)) (-4 *2 (-1253 *3)))) (-3615 (*1 *2 *1) (-12 (-4 *1 (-730 *3 *2)) (-4 *3 (-174)) (-4 *2 (-1253 *3)))) (-3627 (*1 *1 *2) (|partial| -12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-368)) (-4 *3 (-174)) (-4 *1 (-730 *3 *4)))) (-4083 (*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 -2467 ($)) (-15 -2075 (|t#2|)) (-15 -3627 ($ |t#2|)) (-15 -1426 ($ |t#2|)) (-15 -3615 (|t#2| $)) (IF (|has| |t#1| (-373)) (-6 (-373)) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-6 (-368)) (-6 (-233 |t#1|)) (-15 -3627 ((-3 $ "failed") (-413 |t#2|))) (-15 -4083 ((-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))) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-38 |#1|) . T) ((-38 $) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-102) . T) ((-111 #0# #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-111 |#1| |#1|) . T) ((-111 $ $) . T) ((-132) . T) ((-146) -2895 (|has| |#1| (-354)) (|has| |#1| (-146))) ((-148) |has| |#1| (-148)) ((-622 #0#) -2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-354)) (|has| |#1| (-368))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 $) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) . T) ((-620 |#2|) . T) ((-233 |#1|) |has| |#1| (-368)) ((-235) -2895 (|has| |#1| (-354)) (-12 (|has| |#1| (-235)) (|has| |#1| (-368)))) ((-245) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-294) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-311) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-368) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-408) |has| |#1| (-354)) ((-373) -2895 (|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) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-562) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-646 |#1|) . T) ((-646 $) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-645 (-570)) |has| |#1| (-645 (-570))) ((-645 |#1|) . T) ((-723 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-723 |#1|) . T) ((-723 $) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-732) . T) ((-907 (-1186)) -12 (|has| |#1| (-368)) (|has| |#1| (-907 (-1186)))) ((-927) -2895 (|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#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1060 |#1|) . T) ((-1060 $) . T) ((-1065 #0#) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))) ((-1065 |#1|) . T) ((-1065 $) . T) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1161) |has| |#1| (-354)) ((-1231) -2895 (|has| |#1| (-354)) (|has| |#1| (-368))))
+((-3195 (($) 11)) (-1929 (((-3 $ "failed") $) 14)) (-4139 (((-112) $) 10)) (** (($ $ (-928)) NIL) (($ $ (-777)) 20)))
+(((-731 |#1|) (-10 -8 (-15 -1929 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 -4139 ((-112) |#1|)) (-15 -3195 (|#1|)) (-15 ** (|#1| |#1| (-928)))) (-732)) (T -731))
+NIL
+(-10 -8 (-15 -1929 ((-3 |#1| "failed") |#1|)) (-15 ** (|#1| |#1| (-777))) (-15 -4139 ((-112) |#1|)) (-15 -3195 (|#1|)) (-15 ** (|#1| |#1| (-928))))
+((-2560 (((-112) $ $) 7)) (-3195 (($) 19 T CONST)) (-1929 (((-3 $ "failed") $) 16)) (-4139 (((-112) $) 18)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1876 (($) 20 T CONST)) (-3025 (((-112) $ $) 6)) (** (($ $ (-928)) 14) (($ $ (-777)) 17)) (* (($ $ $) 15)))
(((-732) (-141)) (T -732))
-((-1875 (*1 *1) (-4 *1 (-732))) (-1705 (*1 *1) (-4 *1 (-732))) (-4346 (*1 *2 *1) (-12 (-4 *1 (-732)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-732)) (-5 *2 (-777)))) (-2875 (*1 *1 *1) (|partial| -4 *1 (-732))))
-(-13 (-1121) (-10 -8 (-15 (-1875) ($) -3725) (-15 -1705 ($) -3725) (-15 -4346 ((-112) $)) (-15 ** ($ $ (-777))) (-15 -2875 ((-3 $ "failed") $))))
+((-1876 (*1 *1) (-4 *1 (-732))) (-3195 (*1 *1) (-4 *1 (-732))) (-4139 (*1 *2 *1) (-12 (-4 *1 (-732)) (-5 *2 (-112)))) (** (*1 *1 *1 *2) (-12 (-4 *1 (-732)) (-5 *2 (-777)))) (-1929 (*1 *1 *1) (|partial| -4 *1 (-732))))
+(-13 (-1121) (-10 -8 (-15 (-1876) ($) -3728) (-15 -3195 ($) -3728) (-15 -4139 ((-112) $)) (-15 ** ($ $ (-777))) (-15 -1929 ((-3 $ "failed") $))))
(((-102) . T) ((-619 (-868)) . T) ((-1121) . T) ((-1109) . T))
-((-1649 (((-2 (|:| -3399 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|)) 39)) (-3774 (((-2 (|:| -3399 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-3295 ((|#2| (-413 |#2|) (-1 |#2| |#2|)) 13)) (-4226 (((-2 (|:| |poly| |#2|) (|:| -3399 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|)) 48)))
-(((-733 |#1| |#2|) (-10 -7 (-15 -3774 ((-2 (|:| -3399 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1649 ((-2 (|:| -3399 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3295 (|#2| (-413 |#2|) (-1 |#2| |#2|))) (-15 -4226 ((-2 (|:| |poly| |#2|) (|:| -3399 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -733))
-((-4226 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |poly| *6) (|:| -3399 (-413 *6)) (|:| |special| (-413 *6)))) (-5 *1 (-733 *5 *6)) (-5 *3 (-413 *6)))) (-3295 (*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)))) (-1649 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3399 (-424 *3)) (|:| |special| (-424 *3)))) (-5 *1 (-733 *5 *3)))) (-3774 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3399 *3) (|:| |special| *3))) (-5 *1 (-733 *5 *3)))))
-(-10 -7 (-15 -3774 ((-2 (|:| -3399 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -1649 ((-2 (|:| -3399 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -3295 (|#2| (-413 |#2|) (-1 |#2| |#2|))) (-15 -4226 ((-2 (|:| |poly| |#2|) (|:| -3399 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|))))
-((-3923 ((|#7| (-650 |#5|) |#6|) NIL)) (-1356 ((|#7| (-1 |#5| |#4|) |#6|) 27)))
-(((-734 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1356 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3923 (|#7| (-650 |#5|) |#6|))) (-856) (-799) (-799) (-1058) (-1058) (-956 |#4| |#2| |#1|) (-956 |#5| |#3| |#1|)) (T -734))
-((-3923 (*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)))) (-1356 (*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 -1356 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3923 (|#7| (-650 |#5|) |#6|)))
-((-1356 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
-(((-735 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1356 (|#7| (-1 |#2| |#1|) |#6|))) (-856) (-856) (-799) (-799) (-1058) (-956 |#5| |#3| |#1|) (-956 |#5| |#4| |#2|)) (T -735))
-((-1356 (*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 -1356 (|#7| (-1 |#2| |#1|) |#6|)))
-((-3801 (((-424 |#4|) |#4|) 42)))
-(((-736 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3801 ((-424 |#4|) |#4|))) (-799) (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-3 $ "failed") (-1186))))) (-311) (-956 (-959 |#3|) |#1| |#2|)) (T -736))
-((-3801 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-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 -3801 ((-424 |#4|) |#4|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-870 |#1|)) $) NIL)) (-3775 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3074 (($ $) NIL (|has| |#2| (-562)))) (-3475 (((-112) $) NIL (|has| |#2| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4364 (($ $) NIL (|has| |#2| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-4322 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#2| (-916)))) (-3720 (($ $ |#2| (-537 (-870 |#1|)) $) NIL)) (-2842 (((-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)))))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-1742 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#2| (-537 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-870 |#1|)) NIL)) (-2575 (((-537 (-870 |#1|)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1918 (($ (-1 (-537 (-870 |#1|)) (-537 (-870 |#1|))) $) NIL)) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-3362 (((-3 (-870 |#1|) "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#2| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1988 (((-1168) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3357 (-777))) "failed") $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#2| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2547 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1770 (($ $ (-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)) (-3570 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3547 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-2130 (((-537 (-870 |#1|)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1425 (((-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)))))) (-1848 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ $) NIL (|has| |#2| (-562))) (($ (-413 (-570))) NIL (-2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))))) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ (-537 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))
+((-3841 (((-2 (|:| -3402 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|)) 39)) (-3568 (((-2 (|:| -3402 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|)) 12)) (-1546 ((|#2| (-413 |#2|) (-1 |#2| |#2|)) 13)) (-2456 (((-2 (|:| |poly| |#2|) (|:| -3402 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|)) 48)))
+(((-733 |#1| |#2|) (-10 -7 (-15 -3568 ((-2 (|:| -3402 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3841 ((-2 (|:| -3402 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -1546 (|#2| (-413 |#2|) (-1 |#2| |#2|))) (-15 -2456 ((-2 (|:| |poly| |#2|) (|:| -3402 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|)))) (-368) (-1253 |#1|)) (T -733))
+((-2456 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| |poly| *6) (|:| -3402 (-413 *6)) (|:| |special| (-413 *6)))) (-5 *1 (-733 *5 *6)) (-5 *3 (-413 *6)))) (-1546 (*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)))) (-3841 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3402 (-424 *3)) (|:| |special| (-424 *3)))) (-5 *1 (-733 *5 *3)))) (-3568 (*1 *2 *3 *4) (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -3402 *3) (|:| |special| *3))) (-5 *1 (-733 *5 *3)))))
+(-10 -7 (-15 -3568 ((-2 (|:| -3402 |#2|) (|:| |special| |#2|)) |#2| (-1 |#2| |#2|))) (-15 -3841 ((-2 (|:| -3402 (-424 |#2|)) (|:| |special| (-424 |#2|))) |#2| (-1 |#2| |#2|))) (-15 -1546 (|#2| (-413 |#2|) (-1 |#2| |#2|))) (-15 -2456 ((-2 (|:| |poly| |#2|) (|:| -3402 (-413 |#2|)) (|:| |special| (-413 |#2|))) (-413 |#2|) (-1 |#2| |#2|))))
+((-3928 ((|#7| (-650 |#5|) |#6|) NIL)) (-1357 ((|#7| (-1 |#5| |#4|) |#6|) 27)))
+(((-734 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1357 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3928 (|#7| (-650 |#5|) |#6|))) (-856) (-799) (-799) (-1058) (-1058) (-956 |#4| |#2| |#1|) (-956 |#5| |#3| |#1|)) (T -734))
+((-3928 (*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)))) (-1357 (*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 -1357 (|#7| (-1 |#5| |#4|) |#6|)) (-15 -3928 (|#7| (-650 |#5|) |#6|)))
+((-1357 ((|#7| (-1 |#2| |#1|) |#6|) 28)))
+(((-735 |#1| |#2| |#3| |#4| |#5| |#6| |#7|) (-10 -7 (-15 -1357 (|#7| (-1 |#2| |#1|) |#6|))) (-856) (-856) (-799) (-799) (-1058) (-956 |#5| |#3| |#1|) (-956 |#5| |#4| |#2|)) (T -735))
+((-1357 (*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 -1357 (|#7| (-1 |#2| |#1|) |#6|)))
+((-3804 (((-424 |#4|) |#4|) 42)))
+(((-736 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3804 ((-424 |#4|) |#4|))) (-799) (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-3 $ "failed") (-1186))))) (-311) (-956 (-959 |#3|) |#1| |#2|)) (T -736))
+((-3804 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-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 -3804 ((-424 |#4|) |#4|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-870 |#1|)) $) NIL)) (-3778 (((-1182 $) $ (-870 |#1|)) NIL) (((-1182 |#2|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-4306 (($ $) NIL (|has| |#2| (-562)))) (-2617 (((-112) $) NIL (|has| |#2| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-870 |#1|))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4310 (($ $) NIL (|has| |#2| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#2| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-870 |#1|) $) NIL)) (-3930 (($ $ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#2| (-916)))) (-4243 (($ $ |#2| (-537 (-870 |#1|)) $) NIL)) (-1557 (((-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)))))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-1744 (($ (-1182 |#2|) (-870 |#1|)) NIL) (($ (-1182 $) (-870 |#1|)) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#2| (-537 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-870 |#1|)) NIL)) (-3970 (((-537 (-870 |#1|)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1414 (($ (-1 (-537 (-870 |#1|)) (-537 (-870 |#1|))) $) NIL)) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-4023 (((-3 (-870 |#1|) "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#2| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-3989 (((-1168) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-870 |#1|)) (|:| -3994 (-777))) "failed") $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#2| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#2| (-916)))) (-2548 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-1771 (($ $ (-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)) (-2265 (($ $ (-870 |#1|)) NIL (|has| |#2| (-174)))) (-3550 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3079 (((-537 (-870 |#1|)) $) NIL) (((-777) $ (-870 |#1|)) NIL) (((-650 (-777)) $ (-650 (-870 |#1|))) NIL)) (-1426 (((-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)))))) (-2077 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-870 |#1|)) NIL (|has| |#2| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-870 |#1|)) NIL) (($ $) NIL (|has| |#2| (-562))) (($ (-413 (-570))) NIL (-2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570))))))) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ (-537 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-870 |#1|)) NIL) (($ $ (-650 (-870 |#1|))) NIL) (($ $ (-870 |#1|) (-777)) NIL) (($ $ (-650 (-870 |#1|)) (-650 (-777))) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|))
-((-3685 (((-2 (|:| -3744 (-959 |#3|)) (|:| -2461 (-959 |#3|))) |#4|) 14)) (-2620 ((|#4| |#4| |#2|) 33)) (-3505 ((|#4| (-413 (-959 |#3|)) |#2|) 64)) (-2323 ((|#4| (-1182 (-959 |#3|)) |#2|) 77)) (-2221 ((|#4| (-1182 |#4|) |#2|) 51)) (-2343 ((|#4| |#4| |#2|) 54)) (-3801 (((-424 |#4|) |#4|) 40)))
-(((-738 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3685 ((-2 (|:| -3744 (-959 |#3|)) (|:| -2461 (-959 |#3|))) |#4|)) (-15 -2343 (|#4| |#4| |#2|)) (-15 -2221 (|#4| (-1182 |#4|) |#2|)) (-15 -2620 (|#4| |#4| |#2|)) (-15 -2323 (|#4| (-1182 (-959 |#3|)) |#2|)) (-15 -3505 (|#4| (-413 (-959 |#3|)) |#2|)) (-15 -3801 ((-424 |#4|) |#4|))) (-799) (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)))) (-562) (-956 (-413 (-959 |#3|)) |#1| |#2|)) (T -738))
-((-3801 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $))))) (-4 *6 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))) (-3505 (*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 -1425 ((-1186) $))))))) (-2323 (*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 -1425 ((-1186) $))))))) (-2620 (*1 *2 *2 *3) (-12 (-4 *4 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $))))) (-4 *5 (-562)) (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3)))) (-2221 (*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 -1425 ((-1186) $))))) (-4 *6 (-562)))) (-2343 (*1 *2 *2 *3) (-12 (-4 *4 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $))))) (-4 *5 (-562)) (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3)))) (-3685 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $))))) (-4 *6 (-562)) (-5 *2 (-2 (|:| -3744 (-959 *6)) (|:| -2461 (-959 *6)))) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))))
-(-10 -7 (-15 -3685 ((-2 (|:| -3744 (-959 |#3|)) (|:| -2461 (-959 |#3|))) |#4|)) (-15 -2343 (|#4| |#4| |#2|)) (-15 -2221 (|#4| (-1182 |#4|) |#2|)) (-15 -2620 (|#4| |#4| |#2|)) (-15 -2323 (|#4| (-1182 (-959 |#3|)) |#2|)) (-15 -3505 (|#4| (-413 (-959 |#3|)) |#2|)) (-15 -3801 ((-424 |#4|) |#4|)))
-((-3801 (((-424 |#4|) |#4|) 54)))
-(((-739 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3801 ((-424 |#4|) |#4|))) (-799) (-856) (-13 (-311) (-148)) (-956 (-413 |#3|) |#1| |#2|)) (T -739))
-((-3801 (*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 -3801 ((-424 |#4|) |#4|)))
-((-1356 (((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|)) 18)))
-(((-740 |#1| |#2| |#3|) (-10 -7 (-15 -1356 ((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|)))) (-1058) (-1058) (-732)) (T -740))
-((-1356 (*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 -1356 ((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 36)) (-3416 (((-650 (-2 (|:| -1452 |#1|) (|:| -3384 |#2|))) $) 37)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3510 (((-777)) 22 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#2| "failed") $) 76) (((-3 |#1| "failed") $) 79)) (-3216 ((|#2| $) NIL) ((|#1| $) NIL)) (-1956 (($ $) 102 (|has| |#2| (-856)))) (-2875 (((-3 $ "failed") $) 85)) (-3446 (($) 48 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) 70)) (-4008 (((-650 $) $) 52)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| |#2|) 17)) (-1356 (($ (-1 |#1| |#1|) $) 68)) (-1884 (((-928) $) 43 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-1915 ((|#2| $) 101 (|has| |#2| (-856)))) (-1927 ((|#1| $) 100 (|has| |#2| (-856)))) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) 35 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 99) (($ (-570)) 59) (($ |#2|) 55) (($ |#1|) 56) (($ (-650 (-2 (|:| -1452 |#1|) (|:| -3384 |#2|)))) 11)) (-2186 (((-650 |#1|) $) 54)) (-2249 ((|#1| $ |#2|) 115)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 12 T CONST)) (-1875 (($) 44 T CONST)) (-3022 (((-112) $ $) 105)) (-3111 (($ $) 61) (($ $ $) NIL)) (-3101 (($ $ $) 33)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 66) (($ $ $) 118) (($ |#1| $) 63 (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
-(((-741 |#1| |#2|) (-13 (-1058) (-1047 |#2|) (-1047 |#1|) (-10 -8 (-15 -3912 ($ |#1| |#2|)) (-15 -2249 (|#1| $ |#2|)) (-15 -3799 ($ (-650 (-2 (|:| -1452 |#1|) (|:| -3384 |#2|))))) (-15 -3416 ((-650 (-2 (|:| -1452 |#1|) (|:| -3384 |#2|))) $)) (-15 -1356 ($ (-1 |#1| |#1|) $)) (-15 -2359 ((-112) $)) (-15 -2186 ((-650 |#1|) $)) (-15 -4008 ((-650 $) $)) (-15 -3173 ((-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 -1915 (|#2| $)) (-15 -1927 (|#1| $)) (-15 -1956 ($ $))) |%noBranch|))) (-1058) (-732)) (T -741))
-((-3912 (*1 *1 *2 *3) (-12 (-5 *1 (-741 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-732)))) (-2249 (*1 *2 *1 *3) (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-732)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -1452 *3) (|:| -3384 *4)))) (-4 *3 (-1058)) (-4 *4 (-732)) (-5 *1 (-741 *3 *4)))) (-3416 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -1452 *3) (|:| -3384 *4)))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-741 *3 *4)) (-4 *4 (-732)))) (-2359 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-2186 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-4008 (*1 *2 *1) (-12 (-5 *2 (-650 (-741 *3 *4))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-3173 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1915 (*1 *2 *1) (-12 (-4 *2 (-732)) (-4 *2 (-856)) (-5 *1 (-741 *3 *2)) (-4 *3 (-1058)))) (-1927 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-856)) (-4 *3 (-732)))) (-1956 (*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 -3912 ($ |#1| |#2|)) (-15 -2249 (|#1| $ |#2|)) (-15 -3799 ($ (-650 (-2 (|:| -1452 |#1|) (|:| -3384 |#2|))))) (-15 -3416 ((-650 (-2 (|:| -1452 |#1|) (|:| -3384 |#2|))) $)) (-15 -1356 ($ (-1 |#1| |#1|) $)) (-15 -2359 ((-112) $)) (-15 -2186 ((-650 |#1|) $)) (-15 -4008 ((-650 $) $)) (-15 -3173 ((-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 -1915 (|#2| $)) (-15 -1927 (|#1| $)) (-15 -1956 ($ $))) |%noBranch|)))
-((-2558 (((-112) $ $) 19)) (-3959 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-3886 (($ $ $) 73)) (-4165 (((-112) $ $) 74)) (-4302 (((-112) $ (-777)) 8)) (-4249 (($ (-650 |#1|)) 69) (($) 68)) (-3753 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3110 (($ $) 63)) (-3579 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1741 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2192 (((-112) $ $) 65)) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22)) (-2730 (($ $ $) 70)) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3577 (((-1129) $) 21)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2136 (((-650 (-2 (|:| -2340 |#1|) (|:| -3584 (-777)))) $) 62)) (-4031 (($ $ |#1|) 72) (($ $ $) 71)) (-2178 (($) 50) (($ (-650 |#1|)) 49)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 51)) (-3799 (((-868) $) 18)) (-3861 (($ (-650 |#1|)) 67) (($) 66)) (-2335 (((-112) $ $) 23)) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20)) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-3907 (((-2 (|:| -3271 (-959 |#3|)) (|:| -2286 (-959 |#3|))) |#4|) 14)) (-4378 ((|#4| |#4| |#2|) 33)) (-2904 ((|#4| (-413 (-959 |#3|)) |#2|) 64)) (-3241 ((|#4| (-1182 (-959 |#3|)) |#2|) 77)) (-1522 ((|#4| (-1182 |#4|) |#2|) 51)) (-3453 ((|#4| |#4| |#2|) 54)) (-3804 (((-424 |#4|) |#4|) 40)))
+(((-738 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3907 ((-2 (|:| -3271 (-959 |#3|)) (|:| -2286 (-959 |#3|))) |#4|)) (-15 -3453 (|#4| |#4| |#2|)) (-15 -1522 (|#4| (-1182 |#4|) |#2|)) (-15 -4378 (|#4| |#4| |#2|)) (-15 -3241 (|#4| (-1182 (-959 |#3|)) |#2|)) (-15 -2904 (|#4| (-413 (-959 |#3|)) |#2|)) (-15 -3804 ((-424 |#4|) |#4|))) (-799) (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)))) (-562) (-956 (-413 (-959 |#3|)) |#1| |#2|)) (T -738))
+((-3804 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $))))) (-4 *6 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))) (-2904 (*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 -1426 ((-1186) $))))))) (-3241 (*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 -1426 ((-1186) $))))))) (-4378 (*1 *2 *2 *3) (-12 (-4 *4 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $))))) (-4 *5 (-562)) (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3)))) (-1522 (*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 -1426 ((-1186) $))))) (-4 *6 (-562)))) (-3453 (*1 *2 *2 *3) (-12 (-4 *4 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $))))) (-4 *5 (-562)) (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3)))) (-3907 (*1 *2 *3) (-12 (-4 *4 (-799)) (-4 *5 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $))))) (-4 *6 (-562)) (-5 *2 (-2 (|:| -3271 (-959 *6)) (|:| -2286 (-959 *6)))) (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))))
+(-10 -7 (-15 -3907 ((-2 (|:| -3271 (-959 |#3|)) (|:| -2286 (-959 |#3|))) |#4|)) (-15 -3453 (|#4| |#4| |#2|)) (-15 -1522 (|#4| (-1182 |#4|) |#2|)) (-15 -4378 (|#4| |#4| |#2|)) (-15 -3241 (|#4| (-1182 (-959 |#3|)) |#2|)) (-15 -2904 (|#4| (-413 (-959 |#3|)) |#2|)) (-15 -3804 ((-424 |#4|) |#4|)))
+((-3804 (((-424 |#4|) |#4|) 54)))
+(((-739 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3804 ((-424 |#4|) |#4|))) (-799) (-856) (-13 (-311) (-148)) (-956 (-413 |#3|) |#1| |#2|)) (T -739))
+((-3804 (*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 -3804 ((-424 |#4|) |#4|)))
+((-1357 (((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|)) 18)))
+(((-740 |#1| |#2| |#3|) (-10 -7 (-15 -1357 ((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|)))) (-1058) (-1058) (-732)) (T -740))
+((-1357 (*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 -1357 ((-741 |#2| |#3|) (-1 |#2| |#1|) (-741 |#1| |#3|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 36)) (-3257 (((-650 (-2 (|:| -1453 |#1|) (|:| -3387 |#2|))) $) 37)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3513 (((-777)) 22 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#2| "failed") $) 76) (((-3 |#1| "failed") $) 79)) (-3220 ((|#2| $) NIL) ((|#1| $) NIL)) (-1954 (($ $) 102 (|has| |#2| (-856)))) (-1929 (((-3 $ "failed") $) 85)) (-3449 (($) 48 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) 70)) (-3967 (((-650 $) $) 52)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| |#2|) 17)) (-1357 (($ (-1 |#1| |#1|) $) 68)) (-2400 (((-928) $) 43 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-1914 ((|#2| $) 101 (|has| |#2| (-856)))) (-1928 ((|#1| $) 100 (|has| |#2| (-856)))) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) 35 (-12 (|has| |#2| (-373)) (|has| |#1| (-373))))) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 99) (($ (-570)) 59) (($ |#2|) 55) (($ |#1|) 56) (($ (-650 (-2 (|:| -1453 |#1|) (|:| -3387 |#2|)))) 11)) (-2459 (((-650 |#1|) $) 54)) (-1864 ((|#1| $ |#2|) 115)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 12 T CONST)) (-1876 (($) 44 T CONST)) (-3025 (((-112) $ $) 105)) (-3114 (($ $) 61) (($ $ $) NIL)) (-3104 (($ $ $) 33)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 66) (($ $ $) 118) (($ |#1| $) 63 (|has| |#1| (-174))) (($ $ |#1|) NIL (|has| |#1| (-174)))))
+(((-741 |#1| |#2|) (-13 (-1058) (-1047 |#2|) (-1047 |#1|) (-10 -8 (-15 -3915 ($ |#1| |#2|)) (-15 -1864 (|#1| $ |#2|)) (-15 -3802 ($ (-650 (-2 (|:| -1453 |#1|) (|:| -3387 |#2|))))) (-15 -3257 ((-650 (-2 (|:| -1453 |#1|) (|:| -3387 |#2|))) $)) (-15 -1357 ($ (-1 |#1| |#1|) $)) (-15 -3633 ((-112) $)) (-15 -2459 ((-650 |#1|) $)) (-15 -3967 ((-650 $) $)) (-15 -2867 ((-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 -1914 (|#2| $)) (-15 -1928 (|#1| $)) (-15 -1954 ($ $))) |%noBranch|))) (-1058) (-732)) (T -741))
+((-3915 (*1 *1 *2 *3) (-12 (-5 *1 (-741 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-732)))) (-1864 (*1 *2 *1 *3) (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-732)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -1453 *3) (|:| -3387 *4)))) (-4 *3 (-1058)) (-4 *4 (-732)) (-5 *1 (-741 *3 *4)))) (-3257 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -1453 *3) (|:| -3387 *4)))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-741 *3 *4)) (-4 *4 (-732)))) (-3633 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-2459 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-3967 (*1 *2 *1) (-12 (-5 *2 (-650 (-741 *3 *4))) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-2867 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732)))) (-1914 (*1 *2 *1) (-12 (-4 *2 (-732)) (-4 *2 (-856)) (-5 *1 (-741 *3 *2)) (-4 *3 (-1058)))) (-1928 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-741 *2 *3)) (-4 *3 (-856)) (-4 *3 (-732)))) (-1954 (*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 -3915 ($ |#1| |#2|)) (-15 -1864 (|#1| $ |#2|)) (-15 -3802 ($ (-650 (-2 (|:| -1453 |#1|) (|:| -3387 |#2|))))) (-15 -3257 ((-650 (-2 (|:| -1453 |#1|) (|:| -3387 |#2|))) $)) (-15 -1357 ($ (-1 |#1| |#1|) $)) (-15 -3633 ((-112) $)) (-15 -2459 ((-650 |#1|) $)) (-15 -3967 ((-650 $) $)) (-15 -2867 ((-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 -1914 (|#2| $)) (-15 -1928 (|#1| $)) (-15 -1954 ($ $))) |%noBranch|)))
+((-2560 (((-112) $ $) 19)) (-3962 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-2184 (($ $ $) 73)) (-3056 (((-112) $ $) 74)) (-1932 (((-112) $ (-777)) 8)) (-4253 (($ (-650 |#1|)) 69) (($) 68)) (-3353 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3476 (($ $) 63)) (-3582 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ |#1| $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4452)))) (-1742 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4452)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2511 (((-112) $ $) 65)) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22)) (-3051 (($ $ $) 70)) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3580 (((-1129) $) 21)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-3127 (((-650 (-2 (|:| -2340 |#1|) (|:| -3587 (-777)))) $) 62)) (-4180 (($ $ |#1|) 72) (($ $ $) 71)) (-2374 (($) 50) (($ (-650 |#1|)) 49)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 51)) (-3802 (((-868) $) 18)) (-3864 (($ (-650 |#1|)) 67) (($) 66)) (-3359 (((-112) $ $) 23)) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20)) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-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) ((-1227) . T))
-((-2558 (((-112) $ $) NIL)) (-3959 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 92)) (-3886 (($ $ $) 96)) (-4165 (((-112) $ $) 104)) (-4302 (((-112) $ (-777)) NIL)) (-4249 (($ (-650 |#1|)) 26) (($) 17)) (-3753 (($ (-1 (-112) |#1|) $) 83 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-3110 (($ $) 85)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3249 (($ |#1| $) 70 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 77 (|has| $ (-6 -4449))) (($ |#1| $ (-570)) 75) (($ (-1 (-112) |#1|) $ (-570)) 78)) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (($ |#1| $ (-570)) 80) (($ (-1 (-112) |#1|) $ (-570)) 81)) (-3624 ((|#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)))) (-3627 (((-650 |#1|) $) 32 (|has| $ (-6 -4449)))) (-2192 (((-112) $ $) 103)) (-2090 (($) 15) (($ |#1|) 28) (($ (-650 |#1|)) 23)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) 38)) (-4108 (((-112) |#1| $) 65 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) 88 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 89)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-2730 (($ $ $) 94)) (-1490 ((|#1| $) 62)) (-1385 (($ |#1| $) 63) (($ |#1| $ (-777)) 86)) (-3577 (((-1129) $) NIL)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-3647 ((|#1| $) 61)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 56)) (-2380 (($) 14)) (-2136 (((-650 (-2 (|:| -2340 |#1|) (|:| -3584 (-777)))) $) 55)) (-4031 (($ $ |#1|) NIL) (($ $ $) 95)) (-2178 (($) 16) (($ (-650 |#1|)) 25)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) 68 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) 79)) (-1425 (((-542) $) 36 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 22)) (-3799 (((-868) $) 49)) (-3861 (($ (-650 |#1|)) 27) (($) 18)) (-2335 (((-112) $ $) NIL)) (-2082 (($ (-650 |#1|)) 24)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 100)) (-2569 (((-777) $) 67 (|has| $ (-6 -4449)))))
-(((-743 |#1|) (-13 (-742 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -2090 ($)) (-15 -2090 ($ |#1|)) (-15 -2090 ($ (-650 |#1|))) (-15 -2752 ((-650 |#1|) $)) (-15 -1741 ($ |#1| $ (-570))) (-15 -1741 ($ (-1 (-112) |#1|) $ (-570))) (-15 -3249 ($ |#1| $ (-570))) (-15 -3249 ($ (-1 (-112) |#1|) $ (-570))))) (-1109)) (T -743))
-((-2090 (*1 *1) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-2090 (*1 *1 *2) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-2090 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-743 *3)))) (-2752 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-743 *3)) (-4 *3 (-1109)))) (-1741 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-1741 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109)) (-5 *1 (-743 *4)))) (-3249 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-3249 (*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 -2090 ($)) (-15 -2090 ($ |#1|)) (-15 -2090 ($ (-650 |#1|))) (-15 -2752 ((-650 |#1|) $)) (-15 -1741 ($ |#1| $ (-570))) (-15 -1741 ($ (-1 (-112) |#1|) $ (-570))) (-15 -3249 ($ |#1| $ (-570))) (-15 -3249 ($ (-1 (-112) |#1|) $ (-570)))))
-((-3359 (((-1282) (-1168)) 8)))
-(((-744) (-10 -7 (-15 -3359 ((-1282) (-1168))))) (T -744))
-((-3359 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-744)))))
-(-10 -7 (-15 -3359 ((-1282) (-1168))))
-((-3020 (((-650 |#1|) (-650 |#1|) (-650 |#1|)) 15)))
-(((-745 |#1|) (-10 -7 (-15 -3020 ((-650 |#1|) (-650 |#1|) (-650 |#1|)))) (-856)) (T -745))
-((-3020 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-745 *3)))))
-(-10 -7 (-15 -3020 ((-650 |#1|) (-650 |#1|) (-650 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 |#2|) $) 148)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 141 (|has| |#1| (-562)))) (-3074 (($ $) 140 (|has| |#1| (-562)))) (-3475 (((-112) $) 138 (|has| |#1| (-562)))) (-2887 (($ $) 97 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 80 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) 20)) (-3814 (($ $) 79 (|has| |#1| (-38 (-413 (-570)))))) (-2866 (($ $) 96 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 81 (|has| |#1| (-38 (-413 (-570)))))) (-4107 (($ $) 95 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 82 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) 18 T CONST)) (-1956 (($ $) 132)) (-2875 (((-3 $ "failed") $) 37)) (-3372 (((-959 |#1|) $ (-777)) 110) (((-959 |#1|) $ (-777) (-777)) 109)) (-2379 (((-112) $) 149)) (-1315 (($) 107 (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-777) $ |#2|) 112) (((-777) $ |#2| (-777)) 111)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 78 (|has| |#1| (-38 (-413 (-570)))))) (-2359 (((-112) $) 130)) (-3912 (($ $ (-650 |#2|) (-650 (-537 |#2|))) 147) (($ $ |#2| (-537 |#2|)) 146) (($ |#1| (-537 |#2|)) 131) (($ $ |#2| (-777)) 114) (($ $ (-650 |#2|) (-650 (-777))) 113)) (-1356 (($ (-1 |#1| |#1|) $) 129)) (-2789 (($ $) 104 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) 127)) (-1927 ((|#1| $) 126)) (-1988 (((-1168) $) 10)) (-2898 (($ $ |#2|) 108 (|has| |#1| (-38 (-413 (-570)))))) (-3577 (((-1129) $) 11)) (-2431 (($ $ (-777)) 115)) (-2547 (((-3 $ "failed") $ $) 142 (|has| |#1| (-562)))) (-4387 (($ $) 105 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (($ $ |#2| $) 123) (($ $ (-650 |#2|) (-650 $)) 122) (($ $ (-650 (-298 $))) 121) (($ $ (-298 $)) 120) (($ $ $ $) 119) (($ $ (-650 $) (-650 $)) 118)) (-3547 (($ $ |#2|) 46) (($ $ (-650 |#2|)) 45) (($ $ |#2| (-777)) 44) (($ $ (-650 |#2|) (-650 (-777))) 43)) (-2130 (((-537 |#2|) $) 128)) (-4117 (($ $) 94 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 83 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 93 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 84 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 92 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 85 (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 150)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 145 (|has| |#1| (-174))) (($ $) 143 (|has| |#1| (-562))) (($ (-413 (-570))) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2249 ((|#1| $ (-537 |#2|)) 133) (($ $ |#2| (-777)) 117) (($ $ (-650 |#2|) (-650 (-777))) 116)) (-3532 (((-3 $ "failed") $) 144 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-4154 (($ $) 103 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 91 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) 139 (|has| |#1| (-562)))) (-4129 (($ $) 102 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 90 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 101 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 89 (|has| |#1| (-38 (-413 (-570)))))) (-1578 (($ $) 100 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 88 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 99 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 87 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 98 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 86 (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ |#2|) 42) (($ $ (-650 |#2|)) 41) (($ $ |#2| (-777)) 40) (($ $ (-650 |#2|) (-650 (-777))) 39)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 134 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))
+((-2560 (((-112) $ $) NIL)) (-3962 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 92)) (-2184 (($ $ $) 96)) (-3056 (((-112) $ $) 104)) (-1932 (((-112) $ (-777)) NIL)) (-4253 (($ (-650 |#1|)) 26) (($) 17)) (-3353 (($ (-1 (-112) |#1|) $) 83 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-3476 (($ $) 85)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2385 (($ |#1| $) 70 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) 77 (|has| $ (-6 -4452))) (($ |#1| $ (-570)) 75) (($ (-1 (-112) |#1|) $ (-570)) 78)) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (($ |#1| $ (-570)) 80) (($ (-1 (-112) |#1|) $ (-570)) 81)) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-3630 (((-650 |#1|) $) 32 (|has| $ (-6 -4452)))) (-2511 (((-112) $ $) 103)) (-2679 (($) 15) (($ |#1|) 28) (($ (-650 |#1|)) 23)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) 38)) (-3767 (((-112) |#1| $) 65 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) 88 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 89)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-3051 (($ $ $) 94)) (-2885 ((|#1| $) 62)) (-3502 (($ |#1| $) 63) (($ |#1| $ (-777)) 86)) (-3580 (((-1129) $) NIL)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1684 ((|#1| $) 61)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 56)) (-2656 (($) 14)) (-3127 (((-650 (-2 (|:| -2340 |#1|) (|:| -3587 (-777)))) $) 55)) (-4180 (($ $ |#1|) NIL) (($ $ $) 95)) (-2374 (($) 16) (($ (-650 |#1|)) 25)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) 68 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) 79)) (-1426 (((-542) $) 36 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 22)) (-3802 (((-868) $) 49)) (-3864 (($ (-650 |#1|)) 27) (($) 18)) (-3359 (((-112) $ $) NIL)) (-2603 (($ (-650 |#1|)) 24)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 100)) (-2570 (((-777) $) 67 (|has| $ (-6 -4452)))))
+(((-743 |#1|) (-13 (-742 |#1|) (-10 -8 (-6 -4452) (-6 -4453) (-15 -2679 ($)) (-15 -2679 ($ |#1|)) (-15 -2679 ($ (-650 |#1|))) (-15 -2052 ((-650 |#1|) $)) (-15 -1742 ($ |#1| $ (-570))) (-15 -1742 ($ (-1 (-112) |#1|) $ (-570))) (-15 -2385 ($ |#1| $ (-570))) (-15 -2385 ($ (-1 (-112) |#1|) $ (-570))))) (-1109)) (T -743))
+((-2679 (*1 *1) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-2679 (*1 *1 *2) (-12 (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-2679 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-743 *3)))) (-2052 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-743 *3)) (-4 *3 (-1109)))) (-1742 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-1742 (*1 *1 *2 *1 *3) (-12 (-5 *2 (-1 (-112) *4)) (-5 *3 (-570)) (-4 *4 (-1109)) (-5 *1 (-743 *4)))) (-2385 (*1 *1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *1 (-743 *2)) (-4 *2 (-1109)))) (-2385 (*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 -4452) (-6 -4453) (-15 -2679 ($)) (-15 -2679 ($ |#1|)) (-15 -2679 ($ (-650 |#1|))) (-15 -2052 ((-650 |#1|) $)) (-15 -1742 ($ |#1| $ (-570))) (-15 -1742 ($ (-1 (-112) |#1|) $ (-570))) (-15 -2385 ($ |#1| $ (-570))) (-15 -2385 ($ (-1 (-112) |#1|) $ (-570)))))
+((-3362 (((-1282) (-1168)) 8)))
+(((-744) (-10 -7 (-15 -3362 ((-1282) (-1168))))) (T -744))
+((-3362 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-744)))))
+(-10 -7 (-15 -3362 ((-1282) (-1168))))
+((-3828 (((-650 |#1|) (-650 |#1|) (-650 |#1|)) 15)))
+(((-745 |#1|) (-10 -7 (-15 -3828 ((-650 |#1|) (-650 |#1|) (-650 |#1|)))) (-856)) (T -745))
+((-3828 (*1 *2 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-745 *3)))))
+(-10 -7 (-15 -3828 ((-650 |#1|) (-650 |#1|) (-650 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 |#2|) $) 148)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 141 (|has| |#1| (-562)))) (-4306 (($ $) 140 (|has| |#1| (-562)))) (-2617 (((-112) $) 138 (|has| |#1| (-562)))) (-2890 (($ $) 97 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 80 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) 20)) (-3817 (($ $) 79 (|has| |#1| (-38 (-413 (-570)))))) (-2869 (($ $) 96 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 81 (|has| |#1| (-38 (-413 (-570)))))) (-4109 (($ $) 95 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 82 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) 18 T CONST)) (-1954 (($ $) 132)) (-1929 (((-3 $ "failed") $) 37)) (-3375 (((-959 |#1|) $ (-777)) 110) (((-959 |#1|) $ (-777) (-777)) 109)) (-2646 (((-112) $) 149)) (-1315 (($) 107 (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-777) $ |#2|) 112) (((-777) $ |#2| (-777)) 111)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 78 (|has| |#1| (-38 (-413 (-570)))))) (-3633 (((-112) $) 130)) (-3915 (($ $ (-650 |#2|) (-650 (-537 |#2|))) 147) (($ $ |#2| (-537 |#2|)) 146) (($ |#1| (-537 |#2|)) 131) (($ $ |#2| (-777)) 114) (($ $ (-650 |#2|) (-650 (-777))) 113)) (-1357 (($ (-1 |#1| |#1|) $) 129)) (-2792 (($ $) 104 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) 127)) (-1928 ((|#1| $) 126)) (-3989 (((-1168) $) 10)) (-2023 (($ $ |#2|) 108 (|has| |#1| (-38 (-413 (-570)))))) (-3580 (((-1129) $) 11)) (-3152 (($ $ (-777)) 115)) (-2548 (((-3 $ "failed") $ $) 142 (|has| |#1| (-562)))) (-4389 (($ $) 105 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (($ $ |#2| $) 123) (($ $ (-650 |#2|) (-650 $)) 122) (($ $ (-650 (-298 $))) 121) (($ $ (-298 $)) 120) (($ $ $ $) 119) (($ $ (-650 $) (-650 $)) 118)) (-3550 (($ $ |#2|) 46) (($ $ (-650 |#2|)) 45) (($ $ |#2| (-777)) 44) (($ $ (-650 |#2|) (-650 (-777))) 43)) (-3079 (((-537 |#2|) $) 128)) (-4120 (($ $) 94 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 83 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 93 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 84 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 92 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 85 (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 150)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 145 (|has| |#1| (-174))) (($ $) 143 (|has| |#1| (-562))) (($ (-413 (-570))) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1864 ((|#1| $ (-537 |#2|)) 133) (($ $ |#2| (-777)) 117) (($ $ (-650 |#2|) (-650 (-777))) 116)) (-3132 (((-3 $ "failed") $) 144 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-4157 (($ $) 103 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 91 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) 139 (|has| |#1| (-562)))) (-4129 (($ $) 102 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 90 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 101 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 89 (|has| |#1| (-38 (-413 (-570)))))) (-1579 (($ $) 100 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 88 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 99 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 87 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 98 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 86 (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ |#2|) 42) (($ $ (-650 |#2|)) 41) (($ $ |#2| (-777)) 40) (($ $ (-650 |#2|) (-650 (-777))) 39)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 134 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2249 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058)) (-4 *2 (-856)))) (-2249 (*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)))) (-2431 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-746 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-856)))) (-3912 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058)) (-4 *2 (-856)))) (-3912 (*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)))) (-4323 (*1 *2 *1 *3) (-12 (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856)) (-5 *2 (-777)))) (-4323 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-777)) (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856)))) (-3372 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)) (-5 *2 (-959 *4)))) (-3372 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)) (-5 *2 (-959 *4)))) (-2898 (*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 -2249 ($ $ |t#2| (-777))) (-15 -2249 ($ $ (-650 |t#2|) (-650 (-777)))) (-15 -2431 ($ $ (-777))) (-15 -3912 ($ $ |t#2| (-777))) (-15 -3912 ($ $ (-650 |t#2|) (-650 (-777)))) (-15 -4323 ((-777) $ |t#2|)) (-15 -4323 ((-777) $ |t#2| (-777))) (-15 -3372 ((-959 |t#1|) $ (-777))) (-15 -3372 ((-959 |t#1|) $ (-777) (-777))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $ |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 $ $) -2892 (|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) -2892 (|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 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|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)))))
-((-3801 (((-424 (-1182 |#4|)) (-1182 |#4|)) 30) (((-424 |#4|) |#4|) 26)))
-(((-747 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3801 ((-424 |#4|) |#4|)) (-15 -3801 ((-424 (-1182 |#4|)) (-1182 |#4|)))) (-856) (-799) (-13 (-311) (-148)) (-956 |#3| |#2| |#1|)) (T -747))
-((-3801 (*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)))) (-3801 (*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 -3801 ((-424 |#4|) |#4|)) (-15 -3801 ((-424 (-1182 |#4|)) (-1182 |#4|))))
-((-4084 (((-424 |#4|) |#4| |#2|) 140)) (-2822 (((-424 |#4|) |#4|) NIL)) (-1652 (((-424 (-1182 |#4|)) (-1182 |#4|)) 127) (((-424 |#4|) |#4|) 52)) (-2967 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3801 (-1182 |#4|)) (|:| -3357 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|))) 81)) (-4270 (((-1182 |#3|) (-1182 |#3|) (-570)) 166)) (-3403 (((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777)) 75)) (-3612 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|)) 79)) (-3645 (((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|))) 27)) (-1581 (((-2 (|:| -3423 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570)) 72)) (-1505 (((-570) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570))))) 162)) (-3714 ((|#4| (-570) (-424 |#4|)) 73)) (-2644 (((-112) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570)))) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570))))) NIL)))
-(((-748 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1652 ((-424 |#4|) |#4|)) (-15 -1652 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2822 ((-424 |#4|) |#4|)) (-15 -1505 ((-570) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570)))))) (-15 -4084 ((-424 |#4|) |#4| |#2|)) (-15 -1581 ((-2 (|:| -3423 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570))) (-15 -2967 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3801 (-1182 |#4|)) (|:| -3357 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -3645 ((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -3714 (|#4| (-570) (-424 |#4|))) (-15 -2644 ((-112) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570)))) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570)))))) (-15 -3612 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|))) (-15 -3403 ((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777))) (-15 -4270 ((-1182 |#3|) (-1182 |#3|) (-570)))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -748))
-((-4270 (*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)))) (-3403 (*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)))) (-3612 (*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)))) (-2644 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-2 (|:| -3801 (-1182 *6)) (|:| -3357 (-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)))) (-3714 (*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)))) (-3645 (*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 (|:| -3801 (-1182 *8)) (|:| -3357 (-570))))) (|:| |ctpol| *8))) (-5 *1 (-748 *6 *7 *8 *9)))) (-2967 (*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 (|:| -3801 (-1182 *9)) (|:| -3357 (-570))))))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)))) (-1581 (*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 (|:| -3423 (-1182 *9)) (|:| |polval| (-1182 *8)))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)) (-5 *4 (-1182 *8)))) (-4084 (*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)))) (-1505 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3801 (-1182 *6)) (|:| -3357 (-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)))) (-2822 (*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)))) (-1652 (*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)))) (-1652 (*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 -1652 ((-424 |#4|) |#4|)) (-15 -1652 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2822 ((-424 |#4|) |#4|)) (-15 -1505 ((-570) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570)))))) (-15 -4084 ((-424 |#4|) |#4| |#2|)) (-15 -1581 ((-2 (|:| -3423 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570))) (-15 -2967 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3801 (-1182 |#4|)) (|:| -3357 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -3645 ((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -3714 (|#4| (-570) (-424 |#4|))) (-15 -2644 ((-112) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570)))) (-650 (-2 (|:| -3801 (-1182 |#3|)) (|:| -3357 (-570)))))) (-15 -3612 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|))) (-15 -3403 ((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777))) (-15 -4270 ((-1182 |#3|) (-1182 |#3|) (-570))))
-((-2604 (($ $ (-928)) 17)))
-(((-749 |#1| |#2|) (-10 -8 (-15 -2604 (|#1| |#1| (-928)))) (-750 |#2|) (-174)) (T -749))
-NIL
-(-10 -8 (-15 -2604 (|#1| |#1| (-928))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2705 (($ $ (-928)) 31)) (-2604 (($ $ (-928)) 38)) (-1575 (($ $ (-928)) 32)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4391 (($ $ $) 28)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3764 (($ $ $ $) 29)) (-3858 (($ $ $) 27)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
+((-1864 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058)) (-4 *2 (-856)))) (-1864 (*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)))) (-3152 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-746 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-856)))) (-3915 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *2)) (-4 *4 (-1058)) (-4 *2 (-856)))) (-3915 (*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)))) (-3941 (*1 *2 *1 *3) (-12 (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3941 (*1 *2 *1 *3 *2) (-12 (-5 *2 (-777)) (-4 *1 (-746 *4 *3)) (-4 *4 (-1058)) (-4 *3 (-856)))) (-3375 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)) (-5 *2 (-959 *4)))) (-3375 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058)) (-4 *5 (-856)) (-5 *2 (-959 *4)))) (-2023 (*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 -1864 ($ $ |t#2| (-777))) (-15 -1864 ($ $ (-650 |t#2|) (-650 (-777)))) (-15 -3152 ($ $ (-777))) (-15 -3915 ($ $ |t#2| (-777))) (-15 -3915 ($ $ (-650 |t#2|) (-650 (-777)))) (-15 -3941 ((-777) $ |t#2|)) (-15 -3941 ((-777) $ |t#2| (-777))) (-15 -3375 ((-959 |t#1|) $ (-777))) (-15 -3375 ((-959 |t#1|) $ (-777) (-777))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $ |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 $ $) -2895 (|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) -2895 (|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 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|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)))))
+((-3804 (((-424 (-1182 |#4|)) (-1182 |#4|)) 30) (((-424 |#4|) |#4|) 26)))
+(((-747 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3804 ((-424 |#4|) |#4|)) (-15 -3804 ((-424 (-1182 |#4|)) (-1182 |#4|)))) (-856) (-799) (-13 (-311) (-148)) (-956 |#3| |#2| |#1|)) (T -747))
+((-3804 (*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)))) (-3804 (*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 -3804 ((-424 |#4|) |#4|)) (-15 -3804 ((-424 (-1182 |#4|)) (-1182 |#4|))))
+((-3551 (((-424 |#4|) |#4| |#2|) 140)) (-2634 (((-424 |#4|) |#4|) NIL)) (-3871 (((-424 (-1182 |#4|)) (-1182 |#4|)) 127) (((-424 |#4|) |#4|) 52)) (-1376 (((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3804 (-1182 |#4|)) (|:| -3994 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|))) 81)) (-1591 (((-1182 |#3|) (-1182 |#3|) (-570)) 166)) (-4313 (((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777)) 75)) (-3615 (((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|)) 79)) (-1661 (((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|))) 27)) (-4362 (((-2 (|:| -3303 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570)) 72)) (-3026 (((-570) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570))))) 162)) (-4184 ((|#4| (-570) (-424 |#4|)) 73)) (-3435 (((-112) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570)))) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570))))) NIL)))
+(((-748 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3871 ((-424 |#4|) |#4|)) (-15 -3871 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2634 ((-424 |#4|) |#4|)) (-15 -3026 ((-570) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570)))))) (-15 -3551 ((-424 |#4|) |#4| |#2|)) (-15 -4362 ((-2 (|:| -3303 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570))) (-15 -1376 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3804 (-1182 |#4|)) (|:| -3994 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -1661 ((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -4184 (|#4| (-570) (-424 |#4|))) (-15 -3435 ((-112) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570)))) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570)))))) (-15 -3615 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|))) (-15 -4313 ((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777))) (-15 -1591 ((-1182 |#3|) (-1182 |#3|) (-570)))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -748))
+((-1591 (*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)))) (-4313 (*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)))) (-3615 (*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)))) (-3435 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-2 (|:| -3804 (-1182 *6)) (|:| -3994 (-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)))) (-4184 (*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)))) (-1661 (*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 (|:| -3804 (-1182 *8)) (|:| -3994 (-570))))) (|:| |ctpol| *8))) (-5 *1 (-748 *6 *7 *8 *9)))) (-1376 (*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 (|:| -3804 (-1182 *9)) (|:| -3994 (-570))))))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)))) (-4362 (*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 (|:| -3303 (-1182 *9)) (|:| |polval| (-1182 *8)))) (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)) (-5 *4 (-1182 *8)))) (-3551 (*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)))) (-3026 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -3804 (-1182 *6)) (|:| -3994 (-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)))) (-2634 (*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)))) (-3871 (*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)))) (-3871 (*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 -3871 ((-424 |#4|) |#4|)) (-15 -3871 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -2634 ((-424 |#4|) |#4|)) (-15 -3026 ((-570) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570)))))) (-15 -3551 ((-424 |#4|) |#4| |#2|)) (-15 -4362 ((-2 (|:| -3303 (-1182 |#4|)) (|:| |polval| (-1182 |#3|))) (-1182 |#4|) (-1182 |#3|) (-570))) (-15 -1376 ((-2 (|:| |unitPart| |#4|) (|:| |suPart| (-650 (-2 (|:| -3804 (-1182 |#4|)) (|:| -3994 (-570)))))) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -1661 ((-2 (|:| |upol| (-1182 |#3|)) (|:| |Lval| (-650 |#3|)) (|:| |Lfact| (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570))))) (|:| |ctpol| |#3|)) (-1182 |#4|) (-650 |#2|) (-650 (-650 |#3|)))) (-15 -4184 (|#4| (-570) (-424 |#4|))) (-15 -3435 ((-112) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570)))) (-650 (-2 (|:| -3804 (-1182 |#3|)) (|:| -3994 (-570)))))) (-15 -3615 ((-3 (-650 (-1182 |#4|)) "failed") (-1182 |#4|) (-1182 |#3|) (-1182 |#3|) |#4| (-650 |#2|) (-650 (-777)) (-650 |#3|))) (-15 -4313 ((-650 (-777)) (-1182 |#4|) (-650 |#2|) (-777))) (-15 -1591 ((-1182 |#3|) (-1182 |#3|) (-570))))
+((-4234 (($ $ (-928)) 17)))
+(((-749 |#1| |#2|) (-10 -8 (-15 -4234 (|#1| |#1| (-928)))) (-750 |#2|) (-174)) (T -749))
+NIL
+(-10 -8 (-15 -4234 (|#1| |#1| (-928))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-2827 (($ $ (-928)) 31)) (-4234 (($ $ (-928)) 38)) (-4311 (($ $ (-928)) 32)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3381 (($ $ $) 28)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3468 (($ $ $ $) 29)) (-3107 (($ $ $) 27)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30) (($ $ |#1|) 40) (($ |#1| $) 39)))
(((-750 |#1|) (-141) (-174)) (T -750))
-((-2604 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-750 *3)) (-4 *3 (-174)))))
-(-13 (-767) (-723 |t#1|) (-10 -8 (-15 -2604 ($ $ (-928)))))
+((-4234 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-750 *3)) (-4 *3 (-174)))))
+(-13 (-767) (-723 |t#1|) (-10 -8 (-15 -4234 ($ $ (-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))
-((-2047 (((-1044) (-695 (-227)) (-570) (-112) (-570)) 25)) (-3279 (((-1044) (-695 (-227)) (-570) (-112) (-570)) 24)))
-(((-751) (-10 -7 (-15 -3279 ((-1044) (-695 (-227)) (-570) (-112) (-570))) (-15 -2047 ((-1044) (-695 (-227)) (-570) (-112) (-570))))) (T -751))
-((-2047 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-751)))) (-3279 (*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 -3279 ((-1044) (-695 (-227)) (-570) (-112) (-570))) (-15 -2047 ((-1044) (-695 (-227)) (-570) (-112) (-570))))
-((-1958 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN)))) 43)) (-2532 (((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN)))) 39)) (-1768 (((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) 32)))
-(((-752) (-10 -7 (-15 -1768 ((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -2532 ((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN))))) (-15 -1958 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN))))))) (T -752))
-((-1958 (*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)))) (-2532 (*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)))) (-1768 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) (-5 *2 (-1044)) (-5 *1 (-752)))))
-(-10 -7 (-15 -1768 ((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -2532 ((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN))))) (-15 -1958 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN))))))
-((-2746 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 34)) (-4318 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 33)) (-1813 (((-1044) (-570) (-695 (-227)) (-570)) 32)) (-4243 (((-1044) (-570) (-695 (-227)) (-570)) 31)) (-4308 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 30)) (-2725 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-4278 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-2556 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570)) 27)) (-4390 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 24)) (-2966 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 23)) (-3471 (((-1044) (-570) (-695 (-227)) (-570)) 22)) (-3827 (((-1044) (-570) (-695 (-227)) (-570)) 21)))
-(((-753) (-10 -7 (-15 -3827 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3471 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -2966 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4390 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2556 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4278 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2725 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4308 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4243 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -1813 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -4318 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2746 ((-1044) (-570) (-570) (-695 (-227)) (-570))))) (T -753))
-((-2746 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-4318 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-1813 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-4243 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-4308 (*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)))) (-2725 (*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)))) (-4278 (*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)))) (-2556 (*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)))) (-4390 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2966 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3471 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3827 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))))
-(-10 -7 (-15 -3827 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3471 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -2966 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4390 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2556 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4278 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2725 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4308 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4243 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -1813 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -4318 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2746 ((-1044) (-570) (-570) (-695 (-227)) (-570))))
-((-2914 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) 52)) (-2659 (((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570)) 51)) (-2404 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) 50)) (-3517 (((-1044) (-227) (-227) (-570) (-570) (-570) (-570)) 46)) (-3678 (((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 45)) (-3002 (((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 44)) (-2406 (((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 43)) (-1681 (((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 42)) (-1716 (((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) 38)) (-2717 (((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) 37)) (-2614 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) 33)) (-3433 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) 32)))
-(((-754) (-10 -7 (-15 -3433 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -2614 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -2717 ((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -1716 ((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -1681 ((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -2406 ((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3002 ((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3678 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3517 ((-1044) (-227) (-227) (-570) (-570) (-570) (-570))) (-15 -2404 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))) (-15 -2659 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570))) (-15 -2914 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))))) (T -754))
-((-2914 (*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)))) (-2659 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2404 (*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)))) (-3517 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3678 (*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)))) (-3002 (*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)))) (-2406 (*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)))) (-1681 (*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)))) (-1716 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2717 (*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 -1708)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2614 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3433 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708)))) (-5 *2 (-1044)) (-5 *1 (-754)))))
-(-10 -7 (-15 -3433 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -2614 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -2717 ((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -1716 ((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))) (-15 -1681 ((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -2406 ((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3002 ((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3678 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3517 ((-1044) (-227) (-227) (-570) (-570) (-570) (-570))) (-15 -2404 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))) (-15 -2659 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570))) (-15 -2914 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))))
-((-3452 (((-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)) (-2172 (((-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)) (-2222 (((-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)) (-1874 (((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) 50)) (-2656 (((-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)) (-3967 (((-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)) (-3681 (((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) 42)) (-4234 (((-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 -4234 ((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -3681 ((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -3967 ((-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 -2656 ((-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 -1874 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -2222 ((-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 -2172 ((-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 -2172 ((-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 -3452 ((-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))
-((-3452 (*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)))) (-2172 (*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)))) (-2172 (*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)))) (-2222 (*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)))) (-1874 (*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)))) (-2656 (*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)))) (-3967 (*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)))) (-3681 (*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)))) (-4234 (*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 -4234 ((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -3681 ((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -3967 ((-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 -2656 ((-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 -1874 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -2222 ((-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 -2172 ((-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 -2172 ((-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 -3452 ((-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))))))
-((-4266 (((-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)) (-2996 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY)))) 41)) (-3611 (((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 23)))
-(((-756) (-10 -7 (-15 -3611 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2996 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY))))) (-15 -4266 ((-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))
-((-4266 (*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)))) (-2996 (*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)))) (-3611 (*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 -3611 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2996 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY))))) (-15 -4266 ((-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))))
-((-2884 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570)) 35)) (-3870 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570)) 34)) (-2345 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570)) 33)) (-3306 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-2302 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-2368 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570)) 27)) (-2765 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570)) 24)) (-2223 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570)) 23)) (-2691 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 22)) (-1744 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 21)))
-(((-757) (-10 -7 (-15 -1744 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2691 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2223 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2765 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2368 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570))) (-15 -2302 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3306 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2345 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570))) (-15 -3870 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570))) (-15 -2884 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570))))) (T -757))
-((-2884 (*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)))) (-3870 (*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)))) (-2345 (*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)))) (-3306 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2302 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2368 (*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)))) (-2765 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2223 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2691 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-1744 (*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 -1744 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2691 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2223 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2765 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2368 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570))) (-15 -2302 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3306 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2345 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570))) (-15 -3870 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570))) (-15 -2884 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570))))
-((-2175 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 45)) (-4121 (((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570)) 44)) (-2283 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 43)) (-4037 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 42)) (-3697 (((-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)) (-1640 (((-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)) (-1833 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570)) 39)) (-4145 (((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570))) 38)) (-3759 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 35)) (-3878 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570)) 34)) (-3265 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570)) 33)) (-1655 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 32)) (-2303 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570)) 31)) (-2170 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570)) 30)) (-2060 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570)) 29)) (-2500 (((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570)) 28)) (-1314 (((-1044) (-570) (-695 (-227)) (-227) (-570)) 24)) (-3058 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 21)))
-(((-758) (-10 -7 (-15 -3058 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1314 ((-1044) (-570) (-695 (-227)) (-227) (-570))) (-15 -2500 ((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570))) (-15 -2060 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -2170 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570))) (-15 -2303 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570))) (-15 -1655 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3265 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570))) (-15 -3878 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570))) (-15 -3759 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4145 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)))) (-15 -1833 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570))) (-15 -1640 ((-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 -3697 ((-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 -4037 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2283 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -4121 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2175 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))))) (T -758))
-((-2175 (*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)))) (-4121 (*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)))) (-2283 (*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)))) (-4037 (*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)))) (-3697 (*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)))) (-1640 (*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)))) (-1833 (*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)))) (-4145 (*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)))) (-3759 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3878 (*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)))) (-3265 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-1655 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2303 (*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)))) (-2170 (*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)))) (-2060 (*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)))) (-2500 (*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)))) (-1314 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3058 (*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 -3058 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1314 ((-1044) (-570) (-695 (-227)) (-227) (-570))) (-15 -2500 ((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570))) (-15 -2060 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -2170 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570))) (-15 -2303 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570))) (-15 -1655 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3265 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570))) (-15 -3878 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570))) (-15 -3759 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4145 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)))) (-15 -1833 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570))) (-15 -1640 ((-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 -3697 ((-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 -4037 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2283 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -4121 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2175 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))))
-((-3280 (((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570)) 63)) (-3443 (((-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)) (-2567 (((-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)) (-3458 (((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570)) 51)) (-3474 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1)))) 50)) (-2205 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2)))) 46)) (-4359 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1)))) 42)) (-2970 (((-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 -2970 ((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -4359 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))) (-15 -2205 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))) (-15 -3474 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))) (-15 -3458 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570))) (-15 -2567 ((-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 -3443 ((-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 -3280 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570))))) (T -759))
-((-3280 (*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)))) (-3443 (*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)))) (-2567 (*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)))) (-3458 (*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)))) (-3474 (*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)))) (-2205 (*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)))) (-4359 (*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)))) (-2970 (*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 -2970 ((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -4359 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))) (-15 -2205 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))) (-15 -3474 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))) (-15 -3458 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570))) (-15 -2567 ((-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 -3443 ((-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 -3280 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570))))
-((-2823 (((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570)) 47)) (-4408 (((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570)) 46)) (-1859 (((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570)) 45)) (-4238 (((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 40)) (-3201 (((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570)) 39)) (-1889 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-570)) 36)) (-2723 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570)) 35)) (-2310 (((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570)) 34)) (-1725 (((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570)) 33)) (-4316 (((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570)) 32)))
-(((-760) (-10 -7 (-15 -4316 ((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570))) (-15 -1725 ((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570))) (-15 -2310 ((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570))) (-15 -2723 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570))) (-15 -1889 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -3201 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570))) (-15 -4238 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1859 ((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -4408 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -2823 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))) (T -760))
-((-2823 (*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)))) (-4408 (*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)))) (-1859 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-4238 (*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)))) (-3201 (*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)))) (-1889 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-2723 (*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)))) (-2310 (*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)))) (-1725 (*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)))) (-4316 (*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 -4316 ((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570))) (-15 -1725 ((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570))) (-15 -2310 ((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570))) (-15 -2723 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570))) (-15 -1889 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -3201 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570))) (-15 -4238 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1859 ((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -4408 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -2823 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))
-((-2672 (((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570)) 79)) (-4300 (((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570)) 68)) (-3211 (((-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)) (-2824 (((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570)) 37)) (-4098 (((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570)) 33)) (-2657 (((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570)) 30)) (-1691 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-2836 (((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-1396 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 27)) (-2250 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570)) 26)) (-3905 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 25)) (-2446 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 24)) (-2236 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 23)) (-3829 (((-1044) (-695 (-227)) (-570) (-570) (-570) (-570)) 22)) (-2181 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 21)))
-(((-761) (-10 -7 (-15 -2181 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -3829 ((-1044) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -2236 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2446 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3905 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2250 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1396 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2836 ((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1691 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2657 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -4098 ((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570))) (-15 -2824 ((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3211 ((-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 -3211 ((-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 -4300 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2672 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))) (T -761))
-((-2672 (*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)))) (-4300 (*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)))) (-3211 (*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)))) (-3211 (*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)))) (-2824 (*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)))) (-4098 (*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)))) (-2657 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1691 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2836 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1396 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2250 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3905 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2446 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2236 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-3829 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2181 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))))
-(-10 -7 (-15 -2181 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -3829 ((-1044) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -2236 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2446 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3905 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2250 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1396 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2836 ((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1691 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2657 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -4098 ((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570))) (-15 -2824 ((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3211 ((-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 -3211 ((-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 -4300 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2672 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))
-((-2750 (((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD)))) 64)) (-2634 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570)) 60)) (-1855 (((-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)) (-1397 (((-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)) (-2465 (((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570)) 36)) (-1785 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 33)) (-2854 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227))) 32)) (-1630 (((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570)) 28)) (-1786 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570)) 27)) (-3445 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570)) 26)) (-3258 (((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570)) 22)))
-(((-762) (-10 -7 (-15 -3258 ((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3445 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1786 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1630 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570))) (-15 -2854 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)))) (-15 -1785 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2465 ((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1397 ((-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 -1855 ((-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 -2634 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -2750 ((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD))))))) (T -762))
-((-2750 (*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)))) (-2634 (*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)))) (-1855 (*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)))) (-1397 (*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)))) (-2465 (*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)))) (-1785 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2854 (*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)))) (-1630 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-1786 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-3445 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-3258 (*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 -3258 ((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3445 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1786 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1630 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570))) (-15 -2854 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)))) (-15 -1785 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2465 ((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1397 ((-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 -1855 ((-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 -2634 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -2750 ((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD))))))
-((-3465 (((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227))) 29)) (-3049 (((-1044) (-1168) (-570) (-570) (-695 (-227))) 28)) (-4204 (((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227))) 27)) (-2576 (((-1044) (-570) (-570) (-570) (-695 (-227))) 21)))
-(((-763) (-10 -7 (-15 -2576 ((-1044) (-570) (-570) (-570) (-695 (-227)))) (-15 -4204 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227)))) (-15 -3049 ((-1044) (-1168) (-570) (-570) (-695 (-227)))) (-15 -3465 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)))))) (T -763))
-((-3465 (*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)))) (-3049 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))) (-4204 (*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)))) (-2576 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))))
-(-10 -7 (-15 -2576 ((-1044) (-570) (-570) (-570) (-695 (-227)))) (-15 -4204 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227)))) (-15 -3049 ((-1044) (-1168) (-570) (-570) (-695 (-227)))) (-15 -3465 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)))))
-((-2462 (((-1044) (-227) (-227) (-227) (-227) (-570)) 62)) (-1586 (((-1044) (-227) (-227) (-227) (-570)) 61)) (-3250 (((-1044) (-227) (-227) (-227) (-570)) 60)) (-3009 (((-1044) (-227) (-227) (-570)) 59)) (-3011 (((-1044) (-227) (-570)) 58)) (-4248 (((-1044) (-227) (-570)) 57)) (-3724 (((-1044) (-227) (-570)) 56)) (-1421 (((-1044) (-227) (-570)) 55)) (-3885 (((-1044) (-227) (-570)) 54)) (-4060 (((-1044) (-227) (-570)) 53)) (-4182 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 52)) (-1646 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 51)) (-4174 (((-1044) (-227) (-570)) 50)) (-4398 (((-1044) (-227) (-570)) 49)) (-2263 (((-1044) (-227) (-570)) 48)) (-2839 (((-1044) (-227) (-570)) 47)) (-1896 (((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570)) 46)) (-2048 (((-1044) (-1168) (-171 (-227)) (-1168) (-570)) 45)) (-4025 (((-1044) (-1168) (-171 (-227)) (-1168) (-570)) 44)) (-4351 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 43)) (-3344 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 42)) (-4210 (((-1044) (-227) (-570)) 39)) (-3893 (((-1044) (-227) (-570)) 38)) (-3003 (((-1044) (-227) (-570)) 37)) (-3638 (((-1044) (-227) (-570)) 36)) (-1566 (((-1044) (-227) (-570)) 35)) (-3030 (((-1044) (-227) (-570)) 34)) (-3005 (((-1044) (-227) (-570)) 33)) (-4274 (((-1044) (-227) (-570)) 32)) (-2083 (((-1044) (-227) (-570)) 31)) (-1676 (((-1044) (-227) (-570)) 30)) (-2654 (((-1044) (-227) (-227) (-227) (-570)) 29)) (-2963 (((-1044) (-227) (-570)) 28)) (-1429 (((-1044) (-227) (-570)) 27)) (-3622 (((-1044) (-227) (-570)) 26)) (-2393 (((-1044) (-227) (-570)) 25)) (-2122 (((-1044) (-227) (-570)) 24)) (-1804 (((-1044) (-171 (-227)) (-570)) 21)))
-(((-764) (-10 -7 (-15 -1804 ((-1044) (-171 (-227)) (-570))) (-15 -2122 ((-1044) (-227) (-570))) (-15 -2393 ((-1044) (-227) (-570))) (-15 -3622 ((-1044) (-227) (-570))) (-15 -1429 ((-1044) (-227) (-570))) (-15 -2963 ((-1044) (-227) (-570))) (-15 -2654 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1676 ((-1044) (-227) (-570))) (-15 -2083 ((-1044) (-227) (-570))) (-15 -4274 ((-1044) (-227) (-570))) (-15 -3005 ((-1044) (-227) (-570))) (-15 -3030 ((-1044) (-227) (-570))) (-15 -1566 ((-1044) (-227) (-570))) (-15 -3638 ((-1044) (-227) (-570))) (-15 -3003 ((-1044) (-227) (-570))) (-15 -3893 ((-1044) (-227) (-570))) (-15 -4210 ((-1044) (-227) (-570))) (-15 -3344 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4351 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4025 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -2048 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -1896 ((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -2839 ((-1044) (-227) (-570))) (-15 -2263 ((-1044) (-227) (-570))) (-15 -4398 ((-1044) (-227) (-570))) (-15 -4174 ((-1044) (-227) (-570))) (-15 -1646 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4182 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4060 ((-1044) (-227) (-570))) (-15 -3885 ((-1044) (-227) (-570))) (-15 -1421 ((-1044) (-227) (-570))) (-15 -3724 ((-1044) (-227) (-570))) (-15 -4248 ((-1044) (-227) (-570))) (-15 -3011 ((-1044) (-227) (-570))) (-15 -3009 ((-1044) (-227) (-227) (-570))) (-15 -3250 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1586 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2462 ((-1044) (-227) (-227) (-227) (-227) (-570))))) (T -764))
-((-2462 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1586 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3250 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3009 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3011 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4248 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3724 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1421 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3885 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4060 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4182 (*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)))) (-1646 (*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)))) (-4174 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4398 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2263 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2839 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1896 (*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)))) (-2048 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4025 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4351 (*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)))) (-3344 (*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)))) (-4210 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3893 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3003 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3638 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1566 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3030 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3005 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4274 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2083 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1676 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2654 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2963 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1429 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3622 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2393 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2122 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1804 (*1 *2 *3 *4) (-12 (-5 *3 (-171 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(-10 -7 (-15 -1804 ((-1044) (-171 (-227)) (-570))) (-15 -2122 ((-1044) (-227) (-570))) (-15 -2393 ((-1044) (-227) (-570))) (-15 -3622 ((-1044) (-227) (-570))) (-15 -1429 ((-1044) (-227) (-570))) (-15 -2963 ((-1044) (-227) (-570))) (-15 -2654 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1676 ((-1044) (-227) (-570))) (-15 -2083 ((-1044) (-227) (-570))) (-15 -4274 ((-1044) (-227) (-570))) (-15 -3005 ((-1044) (-227) (-570))) (-15 -3030 ((-1044) (-227) (-570))) (-15 -1566 ((-1044) (-227) (-570))) (-15 -3638 ((-1044) (-227) (-570))) (-15 -3003 ((-1044) (-227) (-570))) (-15 -3893 ((-1044) (-227) (-570))) (-15 -4210 ((-1044) (-227) (-570))) (-15 -3344 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4351 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4025 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -2048 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -1896 ((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -2839 ((-1044) (-227) (-570))) (-15 -2263 ((-1044) (-227) (-570))) (-15 -4398 ((-1044) (-227) (-570))) (-15 -4174 ((-1044) (-227) (-570))) (-15 -1646 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4182 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4060 ((-1044) (-227) (-570))) (-15 -3885 ((-1044) (-227) (-570))) (-15 -1421 ((-1044) (-227) (-570))) (-15 -3724 ((-1044) (-227) (-570))) (-15 -4248 ((-1044) (-227) (-570))) (-15 -3011 ((-1044) (-227) (-570))) (-15 -3009 ((-1044) (-227) (-227) (-570))) (-15 -3250 ((-1044) (-227) (-227) (-227) (-570))) (-15 -1586 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2462 ((-1044) (-227) (-227) (-227) (-227) (-570))))
-((-3229 (((-1282)) 20)) (-3808 (((-1168)) 31)) (-1758 (((-1168)) 30)) (-3104 (((-1113) (-1186) (-695 (-570))) 45) (((-1113) (-1186) (-695 (-227))) 41)) (-2187 (((-112)) 19)) (-4385 (((-1168) (-1168)) 34)))
-(((-765) (-10 -7 (-15 -1758 ((-1168))) (-15 -3808 ((-1168))) (-15 -4385 ((-1168) (-1168))) (-15 -3104 ((-1113) (-1186) (-695 (-227)))) (-15 -3104 ((-1113) (-1186) (-695 (-570)))) (-15 -2187 ((-112))) (-15 -3229 ((-1282))))) (T -765))
-((-3229 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-765)))) (-2187 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-765)))) (-3104 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-570))) (-5 *2 (-1113)) (-5 *1 (-765)))) (-3104 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-227))) (-5 *2 (-1113)) (-5 *1 (-765)))) (-4385 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))) (-3808 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))) (-1758 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
-(-10 -7 (-15 -1758 ((-1168))) (-15 -3808 ((-1168))) (-15 -4385 ((-1168) (-1168))) (-15 -3104 ((-1113) (-1186) (-695 (-227)))) (-15 -3104 ((-1113) (-1186) (-695 (-570)))) (-15 -2187 ((-112))) (-15 -3229 ((-1282))))
-((-4391 (($ $ $) 10)) (-3764 (($ $ $ $) 9)) (-3858 (($ $ $) 12)))
-(((-766 |#1|) (-10 -8 (-15 -3858 (|#1| |#1| |#1|)) (-15 -4391 (|#1| |#1| |#1|)) (-15 -3764 (|#1| |#1| |#1| |#1|))) (-767)) (T -766))
-NIL
-(-10 -8 (-15 -3858 (|#1| |#1| |#1|)) (-15 -4391 (|#1| |#1| |#1|)) (-15 -3764 (|#1| |#1| |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2705 (($ $ (-928)) 31)) (-1575 (($ $ (-928)) 32)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4391 (($ $ $) 28)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3764 (($ $ $ $) 29)) (-3858 (($ $ $) 27)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30)))
+((-3416 (((-1044) (-695 (-227)) (-570) (-112) (-570)) 25)) (-1355 (((-1044) (-695 (-227)) (-570) (-112) (-570)) 24)))
+(((-751) (-10 -7 (-15 -1355 ((-1044) (-695 (-227)) (-570) (-112) (-570))) (-15 -3416 ((-1044) (-695 (-227)) (-570) (-112) (-570))))) (T -751))
+((-3416 (*1 *2 *3 *4 *5 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112)) (-5 *2 (-1044)) (-5 *1 (-751)))) (-1355 (*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 -1355 ((-1044) (-695 (-227)) (-570) (-112) (-570))) (-15 -3416 ((-1044) (-695 (-227)) (-570) (-112) (-570))))
+((-1828 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN)))) 43)) (-1723 (((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN)))) 39)) (-2597 (((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) 32)))
+(((-752) (-10 -7 (-15 -2597 ((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -1723 ((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN))))) (-15 -1828 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN))))))) (T -752))
+((-1828 (*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)))) (-1723 (*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)))) (-2597 (*1 *2 *3 *3 *3 *3 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) (-5 *2 (-1044)) (-5 *1 (-752)))))
+(-10 -7 (-15 -2597 ((-1044) (-227) (-227) (-227) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -1723 ((-1044) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-81 FCN))))) (-15 -1828 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-74 FCN))))))
+((-3174 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 34)) (-2069 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 33)) (-2963 (((-1044) (-570) (-695 (-227)) (-570)) 32)) (-2619 (((-1044) (-570) (-695 (-227)) (-570)) 31)) (-1994 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 30)) (-3008 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-1689 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-1993 (((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570)) 27)) (-3367 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 24)) (-1361 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 23)) (-3749 (((-1044) (-570) (-695 (-227)) (-570)) 22)) (-2834 (((-1044) (-570) (-695 (-227)) (-570)) 21)))
+(((-753) (-10 -7 (-15 -2834 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3749 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -1361 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3367 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1993 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1689 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3008 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1994 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2619 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -2963 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -2069 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -3174 ((-1044) (-570) (-570) (-695 (-227)) (-570))))) (T -753))
+((-3174 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2069 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2963 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2619 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-1994 (*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)))) (-3008 (*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)))) (-1689 (*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)))) (-1993 (*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)))) (-3367 (*1 *2 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-1361 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-3749 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))) (-2834 (*1 *2 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-753)))))
+(-10 -7 (-15 -2834 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -3749 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -1361 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3367 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1993 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1689 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3008 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1994 ((-1044) (-570) (-570) (-1168) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2619 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -2963 ((-1044) (-570) (-695 (-227)) (-570))) (-15 -2069 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -3174 ((-1044) (-570) (-570) (-695 (-227)) (-570))))
+((-2166 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) 52)) (-3590 (((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570)) 51)) (-2894 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN)))) 50)) (-3012 (((-1044) (-227) (-227) (-570) (-570) (-570) (-570)) 46)) (-3856 (((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 45)) (-1814 (((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 44)) (-2905 (((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 43)) (-4119 (((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G)))) 42)) (-3273 (((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) 38)) (-2943 (((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) 37)) (-4321 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) 33)) (-3397 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) 32)))
+(((-754) (-10 -7 (-15 -3397 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -4321 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -2943 ((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -3273 ((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -4119 ((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -2905 ((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1814 ((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3856 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3012 ((-1044) (-227) (-227) (-570) (-570) (-570) (-570))) (-15 -2894 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))) (-15 -3590 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570))) (-15 -2166 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))))) (T -754))
+((-2166 (*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)))) (-3590 (*1 *2 *3 *3 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2894 (*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)))) (-3012 (*1 *2 *3 *3 *4 *4 *4 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3856 (*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)))) (-1814 (*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)))) (-2905 (*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)))) (-4119 (*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)))) (-3273 (*1 *2 *3 *4 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-2943 (*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 -1709)))) (-5 *3 (-227)) (-5 *2 (-1044)) (-5 *1 (-754)))) (-4321 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) (-5 *2 (-1044)) (-5 *1 (-754)))) (-3397 (*1 *2 *3 *3 *3 *3 *4 *4 *4 *5) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709)))) (-5 *2 (-1044)) (-5 *1 (-754)))))
+(-10 -7 (-15 -3397 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -4321 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -2943 ((-1044) (-227) (-227) (-570) (-695 (-227)) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -3273 ((-1044) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))) (-15 -4119 ((-1044) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -2905 ((-1044) (-227) (-227) (-227) (-227) (-570) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -1814 ((-1044) (-227) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3856 ((-1044) (-227) (-227) (-570) (-227) (-570) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-64 G))))) (-15 -3012 ((-1044) (-227) (-227) (-570) (-570) (-570) (-570))) (-15 -2894 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))) (-15 -3590 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-570))) (-15 -2166 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-227) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-78 FUNCTN))))))
+((-3584 (((-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)) (-2312 (((-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)) (-1535 (((-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)) (-2316 (((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) 50)) (-3555 (((-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)) (-1694 (((-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)) (-3888 (((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN)))) 42)) (-2540 (((-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 -2540 ((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -3888 ((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -1694 ((-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 -3555 ((-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 -2316 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -1535 ((-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 -2312 ((-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 -2312 ((-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 -3584 ((-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))
+((-3584 (*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)))) (-2312 (*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)))) (-2312 (*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)))) (-1535 (*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)))) (-2316 (*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)))) (-3555 (*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)))) (-1694 (*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)))) (-3888 (*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)))) (-2540 (*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 -2540 ((-1044) (-227) (-570) (-570) (-570) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))) (-3 (|:| |fn| (-394)) (|:| |fp| (-88 OUTPUT))))) (-15 -3888 ((-1044) (-227) (-570) (-570) (-227) (-227) (-695 (-227)) (-227) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-89 G))) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -1694 ((-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 -3555 ((-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 -2316 ((-1044) (-695 (-227)) (-695 (-227)) (-570) (-227) (-227) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-86 FCN))))) (-15 -1535 ((-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 -2312 ((-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 -2312 ((-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 -3584 ((-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))))))
+((-1554 (((-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)) (-1731 (((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY)))) 41)) (-4412 (((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 23)))
+(((-756) (-10 -7 (-15 -4412 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1731 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY))))) (-15 -1554 ((-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))
+((-1554 (*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)))) (-1731 (*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)))) (-4412 (*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 -4412 ((-1044) (-570) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1731 ((-1044) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-1168) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-82 PDEF))) (-3 (|:| |fn| (-394)) (|:| |fp| (-83 BNDY))))) (-15 -1554 ((-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))))
+((-2009 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570)) 35)) (-3192 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570)) 34)) (-3474 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570)) 33)) (-1681 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-4209 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-3720 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570)) 27)) (-2183 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570)) 24)) (-1547 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570)) 23)) (-2693 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 22)) (-3559 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 21)))
+(((-757) (-10 -7 (-15 -3559 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2693 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1547 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2183 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -3720 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570))) (-15 -4209 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1681 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3474 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570))) (-15 -3192 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570))) (-15 -2009 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570))))) (T -757))
+((-2009 (*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)))) (-3192 (*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)))) (-3474 (*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)))) (-1681 (*1 *2 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-4209 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-3720 (*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)))) (-2183 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-1547 (*1 *2 *3 *4 *4 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-2693 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-757)))) (-3559 (*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 -3559 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2693 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1547 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2183 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -3720 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-227) (-570))) (-15 -4209 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1681 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3474 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-695 (-227)) (-227) (-227) (-570))) (-15 -3192 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-227) (-227) (-570))) (-15 -2009 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-695 (-227)) (-227) (-227) (-570))))
+((-2344 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 45)) (-2720 (((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570)) 44)) (-4033 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570)) 43)) (-4230 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 42)) (-4028 (((-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)) (-3754 (((-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)) (-1946 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570)) 39)) (-2917 (((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570))) 38)) (-3405 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570)) 35)) (-2096 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570)) 34)) (-2533 (((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570)) 33)) (-3901 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 32)) (-4219 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570)) 31)) (-2291 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570)) 30)) (-3565 (((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570)) 29)) (-1362 (((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570)) 28)) (-1652 (((-1044) (-570) (-695 (-227)) (-227) (-570)) 24)) (-4161 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 21)))
+(((-758) (-10 -7 (-15 -4161 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1652 ((-1044) (-570) (-695 (-227)) (-227) (-570))) (-15 -1362 ((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570))) (-15 -3565 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -2291 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570))) (-15 -4219 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570))) (-15 -3901 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2533 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570))) (-15 -2096 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570))) (-15 -3405 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2917 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)))) (-15 -1946 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570))) (-15 -3754 ((-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 -4028 ((-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 -4230 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4033 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2720 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2344 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))))) (T -758))
+((-2344 (*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)))) (-2720 (*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)))) (-4033 (*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)))) (-4230 (*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)))) (-4028 (*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)))) (-3754 (*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)))) (-1946 (*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)))) (-2917 (*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)))) (-3405 (*1 *2 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-2096 (*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)))) (-2533 (*1 *2 *3 *4 *4 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-3901 (*1 *2 *3 *3 *4 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-758)))) (-4219 (*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)))) (-2291 (*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)))) (-3565 (*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)))) (-1362 (*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)))) (-1652 (*1 *2 *3 *4 *5 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *5 (-227)) (-5 *2 (-1044)) (-5 *1 (-758)))) (-4161 (*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 -4161 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1652 ((-1044) (-570) (-695 (-227)) (-227) (-570))) (-15 -1362 ((-1044) (-570) (-570) (-570) (-227) (-227) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-570)) (-570) (-570) (-570))) (-15 -3565 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -2291 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570) (-570) (-570))) (-15 -4219 ((-1044) (-570) (-227) (-227) (-695 (-227)) (-570) (-570) (-227) (-570))) (-15 -3901 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2533 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570))) (-15 -2096 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570))) (-15 -3405 ((-1044) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2917 ((-1044) (-1168) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-227) (-570) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)))) (-15 -1946 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-570)) (-570) (-570) (-570) (-227) (-695 (-227)) (-570))) (-15 -3754 ((-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 -4028 ((-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 -4230 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4033 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))) (-15 -2720 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2344 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570) (-695 (-227)) (-695 (-227)) (-570) (-570) (-570))))
+((-1368 (((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570)) 63)) (-3505 (((-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)) (-3918 (((-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)) (-3641 (((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570)) 51)) (-3776 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1)))) 50)) (-1318 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2)))) 46)) (-4277 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1)))) 42)) (-1415 (((-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 -1415 ((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -4277 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))) (-15 -1318 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))) (-15 -3776 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))) (-15 -3641 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570))) (-15 -3918 ((-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 -3505 ((-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 -1368 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570))))) (T -759))
+((-1368 (*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)))) (-3505 (*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)))) (-3918 (*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)))) (-3641 (*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)))) (-3776 (*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)))) (-1318 (*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)))) (-4277 (*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)))) (-1415 (*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 -1415 ((-1044) (-570) (-227) (-227) (-570) (-227) (-112) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-77 OBJFUN))))) (-15 -4277 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-79 LSFUN1))))) (-15 -1318 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-63 LSFUN2))))) (-15 -3776 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-66 FUNCT1))))) (-15 -3641 ((-1044) (-570) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-112) (-570) (-570) (-695 (-227)) (-570))) (-15 -3918 ((-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 -3505 ((-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 -1368 ((-1044) (-570) (-570) (-570) (-227) (-695 (-227)) (-570) (-695 (-227)) (-570))))
+((-1331 (((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570)) 47)) (-3512 (((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570)) 46)) (-2176 (((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570)) 45)) (-2571 (((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 40)) (-3106 (((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570)) 39)) (-2442 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-570)) 36)) (-2989 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570)) 35)) (-4280 (((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570)) 34)) (-3370 (((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570)) 33)) (-2046 (((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570)) 32)))
+(((-760) (-10 -7 (-15 -2046 ((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570))) (-15 -3370 ((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570))) (-15 -4280 ((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570))) (-15 -2989 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570))) (-15 -2442 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -3106 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570))) (-15 -2571 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2176 ((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3512 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -1331 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))) (T -760))
+((-1331 (*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)))) (-3512 (*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)))) (-2176 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-171 (-227)))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-2571 (*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)))) (-3106 (*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)))) (-2442 (*1 *2 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-760)))) (-2989 (*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)))) (-4280 (*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)))) (-3370 (*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)))) (-2046 (*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 -2046 ((-1044) (-570) (-570) (-570) (-570) (-227) (-112) (-112) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-570))) (-15 -3370 ((-1044) (-570) (-570) (-570) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-695 (-570)) (-112) (-227) (-112) (-695 (-570)) (-695 (-227)) (-570))) (-15 -4280 ((-1044) (-570) (-570) (-570) (-570) (-650 (-112)) (-695 (-227)) (-695 (-570)) (-695 (-570)) (-227) (-227) (-570))) (-15 -2989 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570))) (-15 -2442 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -3106 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)) (-570))) (-15 -2571 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2176 ((-1044) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3512 ((-1044) (-1168) (-1168) (-570) (-570) (-695 (-171 (-227))) (-570) (-695 (-171 (-227))) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -1331 ((-1044) (-1168) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))
+((-3700 (((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570)) 79)) (-1910 (((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570)) 68)) (-2017 (((-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)) (-1344 (((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570)) 37)) (-3696 (((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570)) 33)) (-3567 (((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570)) 30)) (-4218 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 29)) (-1477 (((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 28)) (-1512 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 27)) (-1875 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570)) 26)) (-2365 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 25)) (-2123 (((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 24)) (-1692 (((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570)) 23)) (-2855 (((-1044) (-695 (-227)) (-570) (-570) (-570) (-570)) 22)) (-2407 (((-1044) (-570) (-570) (-695 (-227)) (-570)) 21)))
+(((-761) (-10 -7 (-15 -2407 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2855 ((-1044) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -1692 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2123 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2365 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -1875 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1512 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1477 ((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4218 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3567 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -3696 ((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570))) (-15 -1344 ((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2017 ((-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 -2017 ((-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 -1910 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3700 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))) (T -761))
+((-3700 (*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)))) (-1910 (*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)))) (-2017 (*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)))) (-2017 (*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)))) (-1344 (*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)))) (-3696 (*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)))) (-3567 (*1 *2 *3 *4 *3 *4 *4 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-4218 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1477 (*1 *2 *3 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1512 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1875 (*1 *2 *3 *3 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2365 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2123 (*1 *2 *3 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-1692 (*1 *2 *3 *3 *3 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2855 (*1 *2 *3 *4 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-761)))) (-2407 (*1 *2 *3 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-761)))))
+(-10 -7 (-15 -2407 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -2855 ((-1044) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -1692 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2123 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2365 ((-1044) (-570) (-570) (-695 (-227)) (-570))) (-15 -1875 ((-1044) (-570) (-570) (-570) (-570) (-695 (-227)) (-570))) (-15 -1512 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -1477 ((-1044) (-570) (-570) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -4218 ((-1044) (-570) (-570) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3567 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570) (-570))) (-15 -3696 ((-1044) (-570) (-570) (-227) (-227) (-570) (-570) (-695 (-227)) (-570))) (-15 -1344 ((-1044) (-570) (-570) (-570) (-227) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2017 ((-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 -2017 ((-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 -1910 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3700 ((-1044) (-570) (-570) (-570) (-570) (-570) (-112) (-570) (-112) (-570) (-695 (-171 (-227))) (-695 (-171 (-227))) (-570))))
+((-3213 (((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD)))) 64)) (-3317 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570)) 60)) (-2133 (((-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)) (-3858 (((-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)) (-2328 (((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570)) 36)) (-2717 (((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570)) 33)) (-1695 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227))) 32)) (-1794 (((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570)) 28)) (-2728 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570)) 27)) (-3526 (((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570)) 26)) (-2469 (((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570)) 22)))
+(((-762) (-10 -7 (-15 -2469 ((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3526 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2728 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1794 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570))) (-15 -1695 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)))) (-15 -2717 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2328 ((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3858 ((-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 -2133 ((-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 -3317 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -3213 ((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD))))))) (T -762))
+((-3213 (*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)))) (-3317 (*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)))) (-2133 (*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)))) (-3858 (*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)))) (-2328 (*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)))) (-2717 (*1 *2 *3 *3 *4 *4 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-1695 (*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)))) (-1794 (*1 *2 *3 *4 *3 *4 *4 *4) (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2728 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-3526 (*1 *2 *3 *4 *3 *4 *3) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-762)))) (-2469 (*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 -2469 ((-1044) (-570) (-695 (-171 (-227))) (-570) (-570) (-570) (-570) (-695 (-171 (-227))) (-570))) (-15 -3526 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -2728 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-570))) (-15 -1794 ((-1044) (-695 (-227)) (-570) (-695 (-227)) (-570) (-570) (-570))) (-15 -1695 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-570)) (-695 (-570)) (-570) (-695 (-570)) (-695 (-227)))) (-15 -2717 ((-1044) (-570) (-570) (-695 (-227)) (-695 (-227)) (-695 (-227)) (-570))) (-15 -2328 ((-1044) (-570) (-570) (-570) (-227) (-570) (-695 (-227)) (-695 (-227)) (-570))) (-15 -3858 ((-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 -2133 ((-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 -3317 ((-1044) (-570) (-695 (-227)) (-570) (-695 (-227)) (-695 (-570)) (-570) (-695 (-227)) (-570) (-570) (-570) (-570))) (-15 -3213 ((-1044) (-570) (-570) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-695 (-227)) (-570) (-3 (|:| |fn| (-394)) (|:| |fp| (-70 APROD))))))
+((-3713 (((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227))) 29)) (-4075 (((-1044) (-1168) (-570) (-570) (-695 (-227))) 28)) (-2255 (((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227))) 27)) (-3979 (((-1044) (-570) (-570) (-570) (-695 (-227))) 21)))
+(((-763) (-10 -7 (-15 -3979 ((-1044) (-570) (-570) (-570) (-695 (-227)))) (-15 -2255 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227)))) (-15 -4075 ((-1044) (-1168) (-570) (-570) (-695 (-227)))) (-15 -3713 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)))))) (T -763))
+((-3713 (*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)))) (-4075 (*1 *2 *3 *4 *4 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))) (-2255 (*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)))) (-3979 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044)) (-5 *1 (-763)))))
+(-10 -7 (-15 -3979 ((-1044) (-570) (-570) (-570) (-695 (-227)))) (-15 -2255 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-695 (-570)) (-570) (-695 (-227)))) (-15 -4075 ((-1044) (-1168) (-570) (-570) (-695 (-227)))) (-15 -3713 ((-1044) (-1168) (-570) (-570) (-695 (-227)) (-570) (-570) (-695 (-227)))))
+((-2297 (((-1044) (-227) (-227) (-227) (-227) (-570)) 62)) (-4417 (((-1044) (-227) (-227) (-227) (-570)) 61)) (-2396 (((-1044) (-227) (-227) (-227) (-570)) 60)) (-1880 (((-1044) (-227) (-227) (-570)) 59)) (-1906 (((-1044) (-227) (-570)) 58)) (-2657 (((-1044) (-227) (-570)) 57)) (-4285 (((-1044) (-227) (-570)) 56)) (-1359 (((-1044) (-227) (-570)) 55)) (-2173 (((-1044) (-227) (-570)) 54)) (-3285 (((-1044) (-227) (-570)) 53)) (-3207 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 52)) (-3811 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 51)) (-3144 (((-1044) (-227) (-570)) 50)) (-3436 (((-1044) (-227) (-570)) 49)) (-3843 (((-1044) (-227) (-570)) 48)) (-1523 (((-1044) (-227) (-570)) 47)) (-2516 (((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570)) 46)) (-3430 (((-1044) (-1168) (-171 (-227)) (-1168) (-570)) 45)) (-4122 (((-1044) (-1168) (-171 (-227)) (-1168) (-570)) 44)) (-4194 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 43)) (-3892 (((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570)) 42)) (-2287 (((-1044) (-227) (-570)) 39)) (-2249 (((-1044) (-227) (-570)) 38)) (-1829 (((-1044) (-227) (-570)) 37)) (-1576 (((-1044) (-227) (-570)) 36)) (-2426 (((-1044) (-227) (-570)) 35)) (-3906 (((-1044) (-227) (-570)) 34)) (-1856 (((-1044) (-227) (-570)) 33)) (-1641 (((-1044) (-227) (-570)) 32)) (-2612 (((-1044) (-227) (-570)) 31)) (-4070 (((-1044) (-227) (-570)) 30)) (-3532 (((-1044) (-227) (-227) (-227) (-570)) 29)) (-1321 (((-1044) (-227) (-570)) 28)) (-1443 (((-1044) (-227) (-570)) 27)) (-1392 (((-1044) (-227) (-570)) 26)) (-2782 (((-1044) (-227) (-570)) 25)) (-3005 (((-1044) (-227) (-570)) 24)) (-2892 (((-1044) (-171 (-227)) (-570)) 21)))
+(((-764) (-10 -7 (-15 -2892 ((-1044) (-171 (-227)) (-570))) (-15 -3005 ((-1044) (-227) (-570))) (-15 -2782 ((-1044) (-227) (-570))) (-15 -1392 ((-1044) (-227) (-570))) (-15 -1443 ((-1044) (-227) (-570))) (-15 -1321 ((-1044) (-227) (-570))) (-15 -3532 ((-1044) (-227) (-227) (-227) (-570))) (-15 -4070 ((-1044) (-227) (-570))) (-15 -2612 ((-1044) (-227) (-570))) (-15 -1641 ((-1044) (-227) (-570))) (-15 -1856 ((-1044) (-227) (-570))) (-15 -3906 ((-1044) (-227) (-570))) (-15 -2426 ((-1044) (-227) (-570))) (-15 -1576 ((-1044) (-227) (-570))) (-15 -1829 ((-1044) (-227) (-570))) (-15 -2249 ((-1044) (-227) (-570))) (-15 -2287 ((-1044) (-227) (-570))) (-15 -3892 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4194 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4122 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -3430 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -2516 ((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -1523 ((-1044) (-227) (-570))) (-15 -3843 ((-1044) (-227) (-570))) (-15 -3436 ((-1044) (-227) (-570))) (-15 -3144 ((-1044) (-227) (-570))) (-15 -3811 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3207 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3285 ((-1044) (-227) (-570))) (-15 -2173 ((-1044) (-227) (-570))) (-15 -1359 ((-1044) (-227) (-570))) (-15 -4285 ((-1044) (-227) (-570))) (-15 -2657 ((-1044) (-227) (-570))) (-15 -1906 ((-1044) (-227) (-570))) (-15 -1880 ((-1044) (-227) (-227) (-570))) (-15 -2396 ((-1044) (-227) (-227) (-227) (-570))) (-15 -4417 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2297 ((-1044) (-227) (-227) (-227) (-227) (-570))))) (T -764))
+((-2297 (*1 *2 *3 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4417 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2396 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1880 (*1 *2 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1906 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2657 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4285 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1359 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2173 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3285 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3207 (*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)))) (-3811 (*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)))) (-3144 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3436 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3843 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1523 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2516 (*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)))) (-3430 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4122 (*1 *2 *3 *4 *3 *5) (-12 (-5 *3 (-1168)) (-5 *4 (-171 (-227))) (-5 *5 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4194 (*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)))) (-3892 (*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)))) (-2287 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2249 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1829 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1576 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2426 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3906 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1856 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1641 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2612 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-4070 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3532 (*1 *2 *3 *3 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1321 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1443 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-1392 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2782 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-3005 (*1 *2 *3 *4) (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))) (-2892 (*1 *2 *3 *4) (-12 (-5 *3 (-171 (-227))) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(-10 -7 (-15 -2892 ((-1044) (-171 (-227)) (-570))) (-15 -3005 ((-1044) (-227) (-570))) (-15 -2782 ((-1044) (-227) (-570))) (-15 -1392 ((-1044) (-227) (-570))) (-15 -1443 ((-1044) (-227) (-570))) (-15 -1321 ((-1044) (-227) (-570))) (-15 -3532 ((-1044) (-227) (-227) (-227) (-570))) (-15 -4070 ((-1044) (-227) (-570))) (-15 -2612 ((-1044) (-227) (-570))) (-15 -1641 ((-1044) (-227) (-570))) (-15 -1856 ((-1044) (-227) (-570))) (-15 -3906 ((-1044) (-227) (-570))) (-15 -2426 ((-1044) (-227) (-570))) (-15 -1576 ((-1044) (-227) (-570))) (-15 -1829 ((-1044) (-227) (-570))) (-15 -2249 ((-1044) (-227) (-570))) (-15 -2287 ((-1044) (-227) (-570))) (-15 -3892 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4194 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -4122 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -3430 ((-1044) (-1168) (-171 (-227)) (-1168) (-570))) (-15 -2516 ((-1044) (-570) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -1523 ((-1044) (-227) (-570))) (-15 -3843 ((-1044) (-227) (-570))) (-15 -3436 ((-1044) (-227) (-570))) (-15 -3144 ((-1044) (-227) (-570))) (-15 -3811 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3207 ((-1044) (-227) (-171 (-227)) (-570) (-1168) (-570))) (-15 -3285 ((-1044) (-227) (-570))) (-15 -2173 ((-1044) (-227) (-570))) (-15 -1359 ((-1044) (-227) (-570))) (-15 -4285 ((-1044) (-227) (-570))) (-15 -2657 ((-1044) (-227) (-570))) (-15 -1906 ((-1044) (-227) (-570))) (-15 -1880 ((-1044) (-227) (-227) (-570))) (-15 -2396 ((-1044) (-227) (-227) (-227) (-570))) (-15 -4417 ((-1044) (-227) (-227) (-227) (-570))) (-15 -2297 ((-1044) (-227) (-227) (-227) (-227) (-570))))
+((-2171 (((-1282)) 20)) (-2694 (((-1168)) 31)) (-3682 (((-1168)) 30)) (-3417 (((-1113) (-1186) (-695 (-570))) 45) (((-1113) (-1186) (-695 (-227))) 41)) (-2188 (((-112)) 19)) (-3322 (((-1168) (-1168)) 34)))
+(((-765) (-10 -7 (-15 -3682 ((-1168))) (-15 -2694 ((-1168))) (-15 -3322 ((-1168) (-1168))) (-15 -3417 ((-1113) (-1186) (-695 (-227)))) (-15 -3417 ((-1113) (-1186) (-695 (-570)))) (-15 -2188 ((-112))) (-15 -2171 ((-1282))))) (T -765))
+((-2171 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-765)))) (-2188 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-765)))) (-3417 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-570))) (-5 *2 (-1113)) (-5 *1 (-765)))) (-3417 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-695 (-227))) (-5 *2 (-1113)) (-5 *1 (-765)))) (-3322 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))) (-2694 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))) (-3682 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
+(-10 -7 (-15 -3682 ((-1168))) (-15 -2694 ((-1168))) (-15 -3322 ((-1168) (-1168))) (-15 -3417 ((-1113) (-1186) (-695 (-227)))) (-15 -3417 ((-1113) (-1186) (-695 (-570)))) (-15 -2188 ((-112))) (-15 -2171 ((-1282))))
+((-3381 (($ $ $) 10)) (-3468 (($ $ $ $) 9)) (-3107 (($ $ $) 12)))
+(((-766 |#1|) (-10 -8 (-15 -3107 (|#1| |#1| |#1|)) (-15 -3381 (|#1| |#1| |#1|)) (-15 -3468 (|#1| |#1| |#1| |#1|))) (-767)) (T -766))
+NIL
+(-10 -8 (-15 -3107 (|#1| |#1| |#1|)) (-15 -3381 (|#1| |#1| |#1|)) (-15 -3468 (|#1| |#1| |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-2827 (($ $ (-928)) 31)) (-4311 (($ $ (-928)) 32)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3381 (($ $ $) 28)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3468 (($ $ $ $) 29)) (-3107 (($ $ $) 27)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 33)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30)))
(((-767) (-141)) (T -767))
-((-3764 (*1 *1 *1 *1 *1) (-4 *1 (-767))) (-4391 (*1 *1 *1 *1) (-4 *1 (-767))) (-3858 (*1 *1 *1 *1) (-4 *1 (-767))))
-(-13 (-21) (-726) (-10 -8 (-15 -3764 ($ $ $ $)) (-15 -4391 ($ $ $)) (-15 -3858 ($ $ $))))
+((-3468 (*1 *1 *1 *1 *1) (-4 *1 (-767))) (-3381 (*1 *1 *1 *1) (-4 *1 (-767))) (-3107 (*1 *1 *1 *1) (-4 *1 (-767))))
+(-13 (-21) (-726) (-10 -8 (-15 -3468 ($ $ $ $)) (-15 -3381 ($ $ $)) (-15 -3107 ($ $ $))))
(((-21) . T) ((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-652 (-570)) . T) ((-726) . T) ((-1109) . T))
-((-3799 (((-868) $) NIL) (($ (-570)) 10)))
-(((-768 |#1|) (-10 -8 (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-769)) (T -768))
+((-3802 (((-868) $) NIL) (($ (-570)) 10)))
+(((-768 |#1|) (-10 -8 (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-769)) (T -768))
NIL
-(-10 -8 (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2054 (((-3 $ "failed") $) 43)) (-2705 (($ $ (-928)) 31) (($ $ (-777)) 38)) (-2875 (((-3 $ "failed") $) 41)) (-4346 (((-112) $) 37)) (-3259 (((-3 $ "failed") $) 42)) (-1575 (($ $ (-928)) 32) (($ $ (-777)) 39)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4391 (($ $ $) 28)) (-3799 (((-868) $) 12) (($ (-570)) 34)) (-3499 (((-777)) 35 T CONST)) (-2335 (((-112) $ $) 9)) (-3764 (($ $ $ $) 29)) (-3858 (($ $ $) 27)) (-1861 (($) 19 T CONST)) (-1875 (($) 36 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 33) (($ $ (-777)) 40)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30)))
+(-10 -8 (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3498 (((-3 $ "failed") $) 43)) (-2827 (($ $ (-928)) 31) (($ $ (-777)) 38)) (-1929 (((-3 $ "failed") $) 41)) (-4139 (((-112) $) 37)) (-2480 (((-3 $ "failed") $) 42)) (-4311 (($ $ (-928)) 32) (($ $ (-777)) 39)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3381 (($ $ $) 28)) (-3802 (((-868) $) 12) (($ (-570)) 34)) (-2851 (((-777)) 35 T CONST)) (-3359 (((-112) $ $) 9)) (-3468 (($ $ $ $) 29)) (-3107 (($ $ $) 27)) (-1862 (($) 19 T CONST)) (-1876 (($) 36 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 33) (($ $ (-777)) 40)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 30)))
(((-769) (-141)) (T -769))
-((-3499 (*1 *2) (-12 (-4 *1 (-769)) (-5 *2 (-777)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-769)))))
-(-13 (-767) (-728) (-10 -8 (-15 -3499 ((-777)) -3725) (-15 -3799 ($ (-570)))))
+((-2851 (*1 *2) (-12 (-4 *1 (-769)) (-5 *2 (-777)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-769)))))
+(-13 (-767) (-728) (-10 -8 (-15 -2851 ((-777)) -3728) (-15 -3802 ($ (-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))
-((-3860 (((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|) 33)) (-2905 (((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|) 23)) (-3553 (((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186)) 20) (((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570))))) 19)))
-(((-770 |#1|) (-10 -7 (-15 -3553 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))))) (-15 -3553 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186))) (-15 -2905 ((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|)) (-15 -3860 ((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|))) (-13 (-368) (-854))) (T -770))
-((-3860 (*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))))) (-2905 (*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))))) (-3553 (*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))))) (-3553 (*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 -3553 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))))) (-15 -3553 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186))) (-15 -2905 ((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|)) (-15 -3860 ((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|)))
-((-1587 (((-176 (-570)) |#1|) 27)))
-(((-771 |#1|) (-10 -7 (-15 -1587 ((-176 (-570)) |#1|))) (-410)) (T -771))
-((-1587 (*1 *2 *3) (-12 (-5 *2 (-176 (-570))) (-5 *1 (-771 *3)) (-4 *3 (-410)))))
-(-10 -7 (-15 -1587 ((-176 (-570)) |#1|)))
-((-4001 ((|#1| |#1| |#1|) 28)) (-4118 ((|#1| |#1| |#1|) 27)) (-2775 ((|#1| |#1| |#1|) 38)) (-2834 ((|#1| |#1| |#1|) 34)) (-2134 (((-3 |#1| "failed") |#1| |#1|) 31)) (-2364 (((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|) 26)))
-(((-772 |#1| |#2|) (-10 -7 (-15 -2364 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -4118 (|#1| |#1| |#1|)) (-15 -4001 (|#1| |#1| |#1|)) (-15 -2134 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2834 (|#1| |#1| |#1|)) (-15 -2775 (|#1| |#1| |#1|))) (-714 |#2|) (-368)) (T -772))
-((-2775 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-2834 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-2134 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-4001 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-4118 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-2364 (*1 *2 *3 *3) (-12 (-4 *4 (-368)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-772 *3 *4)) (-4 *3 (-714 *4)))))
-(-10 -7 (-15 -2364 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -4118 (|#1| |#1| |#1|)) (-15 -4001 (|#1| |#1| |#1|)) (-15 -2134 ((-3 |#1| "failed") |#1| |#1|)) (-15 -2834 (|#1| |#1| |#1|)) (-15 -2775 (|#1| |#1| |#1|)))
-((-2015 (((-697 (-1235)) $ (-1235)) 26)) (-1495 (((-697 (-555)) $ (-555)) 25)) (-2770 (((-777) $ (-129)) 27)) (-4093 (((-697 (-130)) $ (-130)) 24)) (-4373 (((-697 (-1235)) $) 12)) (-3018 (((-697 (-1233)) $) 8)) (-1989 (((-697 (-1232)) $) 10)) (-2118 (((-697 (-555)) $) 13)) (-3178 (((-697 (-553)) $) 9)) (-3077 (((-697 (-552)) $) 11)) (-2370 (((-777) $ (-129)) 7)) (-1607 (((-697 (-130)) $) 14)) (-3206 (((-112) $) 31)) (-4333 (((-697 $) |#1| (-961)) 32)) (-3107 (($ $) 6)))
+((-3129 (((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|) 33)) (-2076 (((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|) 23)) (-2124 (((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186)) 20) (((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570))))) 19)))
+(((-770 |#1|) (-10 -7 (-15 -2124 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))))) (-15 -2124 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186))) (-15 -2076 ((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|)) (-15 -3129 ((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|))) (-13 (-368) (-854))) (T -770))
+((-3129 (*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))))) (-2076 (*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))))) (-2124 (*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))))) (-2124 (*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 -2124 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))))) (-15 -2124 ((-959 (-171 (-413 (-570)))) (-695 (-171 (-413 (-570)))) (-1186))) (-15 -2076 ((-650 (-171 |#1|)) (-695 (-171 (-413 (-570)))) |#1|)) (-15 -3129 ((-650 (-2 (|:| |outval| (-171 |#1|)) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 (-171 |#1|)))))) (-695 (-171 (-413 (-570)))) |#1|)))
+((-4428 (((-176 (-570)) |#1|) 27)))
+(((-771 |#1|) (-10 -7 (-15 -4428 ((-176 (-570)) |#1|))) (-410)) (T -771))
+((-4428 (*1 *2 *3) (-12 (-5 *2 (-176 (-570))) (-5 *1 (-771 *3)) (-4 *3 (-410)))))
+(-10 -7 (-15 -4428 ((-176 (-570)) |#1|)))
+((-3904 ((|#1| |#1| |#1|) 28)) (-2687 ((|#1| |#1| |#1|) 27)) (-2271 ((|#1| |#1| |#1|) 38)) (-1469 ((|#1| |#1| |#1|) 34)) (-3118 (((-3 |#1| "failed") |#1| |#1|) 31)) (-3684 (((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|) 26)))
+(((-772 |#1| |#2|) (-10 -7 (-15 -3684 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2687 (|#1| |#1| |#1|)) (-15 -3904 (|#1| |#1| |#1|)) (-15 -3118 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1469 (|#1| |#1| |#1|)) (-15 -2271 (|#1| |#1| |#1|))) (-714 |#2|) (-368)) (T -772))
+((-2271 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-1469 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-3118 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-3904 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-2687 (*1 *2 *2 *2) (-12 (-4 *3 (-368)) (-5 *1 (-772 *2 *3)) (-4 *2 (-714 *3)))) (-3684 (*1 *2 *3 *3) (-12 (-4 *4 (-368)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-772 *3 *4)) (-4 *3 (-714 *4)))))
+(-10 -7 (-15 -3684 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2687 (|#1| |#1| |#1|)) (-15 -3904 (|#1| |#1| |#1|)) (-15 -3118 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1469 (|#1| |#1| |#1|)) (-15 -2271 (|#1| |#1| |#1|)))
+((-4264 (((-697 (-1235)) $ (-1235)) 26)) (-2939 (((-697 (-555)) $ (-555)) 25)) (-2228 (((-777) $ (-129)) 27)) (-3652 (((-697 (-130)) $ (-130)) 24)) (-4401 (((-697 (-1235)) $) 12)) (-3805 (((-697 (-1233)) $) 8)) (-3998 (((-697 (-1232)) $) 10)) (-2969 (((-697 (-555)) $) 13)) (-2910 (((-697 (-553)) $) 9)) (-3172 (((-697 (-552)) $) 11)) (-3739 (((-777) $ (-129)) 7)) (-1556 (((-697 (-130)) $) 14)) (-1975 (((-112) $) 31)) (-4020 (((-697 $) |#1| (-961)) 32)) (-3443 (($ $) 6)))
(((-773 |#1|) (-141) (-1109)) (T -773))
-((-4333 (*1 *2 *3 *4) (-12 (-5 *4 (-961)) (-4 *3 (-1109)) (-5 *2 (-697 *1)) (-4 *1 (-773 *3)))) (-3206 (*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(-13 (-582) (-10 -8 (-15 -4333 ((-697 $) |t#1| (-961))) (-15 -3206 ((-112) $))))
+((-4020 (*1 *2 *3 *4) (-12 (-5 *4 (-961)) (-4 *3 (-1109)) (-5 *2 (-697 *1)) (-4 *1 (-773 *3)))) (-1975 (*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(-13 (-582) (-10 -8 (-15 -4020 ((-697 $) |t#1| (-961))) (-15 -1975 ((-112) $))))
(((-175) . T) ((-533) . T) ((-582) . T) ((-866) . T))
-((-4396 (((-2 (|:| -1972 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570)) 71)) (-2673 (((-2 (|:| -1972 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570))))) 69)) (-3570 (((-570)) 85)))
-(((-774 |#1| |#2|) (-10 -7 (-15 -3570 ((-570))) (-15 -2673 ((-2 (|:| -1972 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))))) (-15 -4396 ((-2 (|:| -1972 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570)))) (-1253 (-570)) (-415 (-570) |#1|)) (T -774))
-((-4396 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -1972 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-774 *4 *5)) (-4 *5 (-415 *3 *4)))) (-2673 (*1 *2) (-12 (-4 *3 (-1253 (-570))) (-5 *2 (-2 (|:| -1972 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570))))) (-5 *1 (-774 *3 *4)) (-4 *4 (-415 (-570) *3)))) (-3570 (*1 *2) (-12 (-4 *3 (-1253 *2)) (-5 *2 (-570)) (-5 *1 (-774 *3 *4)) (-4 *4 (-415 *2 *3)))))
-(-10 -7 (-15 -3570 ((-570))) (-15 -2673 ((-2 (|:| -1972 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))))) (-15 -4396 ((-2 (|:| -1972 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570))))
-((-2558 (((-112) $ $) NIL)) (-3216 (((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $) 21)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 20) (($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 13) (($ (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) 18)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-775) (-13 (-1109) (-10 -8 (-15 -3799 ($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3799 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3799 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (-15 -3216 ((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $))))) (T -775))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-775)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-775)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-5 *1 (-775)))) (-3216 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-5 *1 (-775)))))
-(-13 (-1109) (-10 -8 (-15 -3799 ($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3799 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3799 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (-15 -3216 ((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $))))
-((-1872 (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))) 18) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186))) 17)) (-3476 (((-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 -1872 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -1872 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))))) (-562)) (T -776))
-((-3476 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4)))) (-3476 (*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)))) (-1872 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4)))) (-1872 (*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 -1872 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -1872 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3744 (($ $ $) 10)) (-3990 (((-3 $ "failed") $ $) 15)) (-3160 (($ $ (-570)) 11)) (-1705 (($) NIL T CONST)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($ $) NIL)) (-2518 (($ $ $) NIL)) (-4346 (((-112) $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1942 (($ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 6 T CONST)) (-1875 (($) NIL T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ $ $) NIL)))
-(((-777) (-13 (-799) (-732) (-10 -8 (-15 -2518 ($ $ $)) (-15 -2506 ($ $ $)) (-15 -1942 ($ $ $)) (-15 -2384 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -2547 ((-3 $ "failed") $ $)) (-15 -3160 ($ $ (-570))) (-15 -3446 ($ $)) (-6 (-4451 "*"))))) (T -777))
-((-2518 (*1 *1 *1 *1) (-5 *1 (-777))) (-2506 (*1 *1 *1 *1) (-5 *1 (-777))) (-1942 (*1 *1 *1 *1) (-5 *1 (-777))) (-2384 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -2573 (-777)) (|:| -3691 (-777)))) (-5 *1 (-777)))) (-2547 (*1 *1 *1 *1) (|partial| -5 *1 (-777))) (-3160 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-777)))) (-3446 (*1 *1 *1) (-5 *1 (-777))))
-(-13 (-799) (-732) (-10 -8 (-15 -2518 ($ $ $)) (-15 -2506 ($ $ $)) (-15 -1942 ($ $ $)) (-15 -2384 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -2547 ((-3 $ "failed") $ $)) (-15 -3160 ($ $ (-570))) (-15 -3446 ($ $)) (-6 (-4451 "*"))))
+((-3422 (((-2 (|:| -3827 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570)) 71)) (-3710 (((-2 (|:| -3827 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570))))) 69)) (-2265 (((-570)) 85)))
+(((-774 |#1| |#2|) (-10 -7 (-15 -2265 ((-570))) (-15 -3710 ((-2 (|:| -3827 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))))) (-15 -3422 ((-2 (|:| -3827 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570)))) (-1253 (-570)) (-415 (-570) |#1|)) (T -774))
+((-3422 (*1 *2 *3) (-12 (-5 *3 (-570)) (-4 *4 (-1253 *3)) (-5 *2 (-2 (|:| -3827 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-774 *4 *5)) (-4 *5 (-415 *3 *4)))) (-3710 (*1 *2) (-12 (-4 *3 (-1253 (-570))) (-5 *2 (-2 (|:| -3827 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570))))) (-5 *1 (-774 *3 *4)) (-4 *4 (-415 (-570) *3)))) (-2265 (*1 *2) (-12 (-4 *3 (-1253 *2)) (-5 *2 (-570)) (-5 *1 (-774 *3 *4)) (-4 *4 (-415 *2 *3)))))
+(-10 -7 (-15 -2265 ((-570))) (-15 -3710 ((-2 (|:| -3827 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))))) (-15 -3422 ((-2 (|:| -3827 (-695 (-570))) (|:| |basisDen| (-570)) (|:| |basisInv| (-695 (-570)))) (-570))))
+((-2560 (((-112) $ $) NIL)) (-3220 (((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $) 21)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 20) (($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 13) (($ (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 16) (($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) 18)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-775) (-13 (-1109) (-10 -8 (-15 -3802 ($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3802 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3802 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (-15 -3220 ((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $))))) (T -775))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-775)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *1 (-775)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-5 *1 (-775)))) (-3220 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-5 *1 (-775)))))
+(-13 (-1109) (-10 -8 (-15 -3802 ($ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3802 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3802 ($ (-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))))) (-15 -3220 ((-3 (|:| |nia| (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| |mdnia| (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) $))))
+((-2294 (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))) 18) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186))) 17)) (-2627 (((-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 -2294 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2294 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|))))) (-562)) (T -776))
+((-2627 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4)))) (-2627 (*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)))) (-2294 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-650 (-298 (-413 (-959 *4)))))) (-5 *1 (-776 *4)))) (-2294 (*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 -2294 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2294 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-959 |#1|)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3271 (($ $ $) 10)) (-1966 (((-3 $ "failed") $ $) 15)) (-3163 (($ $ (-570)) 11)) (-3195 (($) NIL T CONST)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($ $) NIL)) (-2519 (($ $ $) NIL)) (-4139 (((-112) $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1939 (($ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 6 T CONST)) (-1876 (($) NIL T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ $ $) NIL)))
+(((-777) (-13 (-799) (-732) (-10 -8 (-15 -2519 ($ $ $)) (-15 -2504 ($ $ $)) (-15 -1939 ($ $ $)) (-15 -2696 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -2548 ((-3 $ "failed") $ $)) (-15 -3163 ($ $ (-570))) (-15 -3449 ($ $)) (-6 (-4454 "*"))))) (T -777))
+((-2519 (*1 *1 *1 *1) (-5 *1 (-777))) (-2504 (*1 *1 *1 *1) (-5 *1 (-777))) (-1939 (*1 *1 *1 *1) (-5 *1 (-777))) (-2696 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3959 (-777)) (|:| -3971 (-777)))) (-5 *1 (-777)))) (-2548 (*1 *1 *1 *1) (|partial| -5 *1 (-777))) (-3163 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-777)))) (-3449 (*1 *1 *1) (-5 *1 (-777))))
+(-13 (-799) (-732) (-10 -8 (-15 -2519 ($ $ $)) (-15 -2504 ($ $ $)) (-15 -1939 ($ $ $)) (-15 -2696 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -2548 ((-3 $ "failed") $ $)) (-15 -3163 ($ $ (-570))) (-15 -3449 ($ $)) (-6 (-4454 "*"))))
((|Integer|) (>= |#1| 0))
-((-3476 (((-3 |#2| "failed") |#2| |#2| (-115) (-1186)) 37)))
-(((-778 |#1| |#2|) (-10 -7 (-15 -3476 ((-3 |#2| "failed") |#2| |#2| (-115) (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -778))
-((-3476 (*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 -3476 ((-3 |#2| "failed") |#2| |#2| (-115) (-1186))))
-((-3799 (((-780) |#1|) 8)))
-(((-779 |#1|) (-10 -7 (-15 -3799 ((-780) |#1|))) (-1227)) (T -779))
-((-3799 (*1 *2 *3) (-12 (-5 *2 (-780)) (-5 *1 (-779 *3)) (-4 *3 (-1227)))))
-(-10 -7 (-15 -3799 ((-780) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 7)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 9)))
+((-2627 (((-3 |#2| "failed") |#2| |#2| (-115) (-1186)) 37)))
+(((-778 |#1| |#2|) (-10 -7 (-15 -2627 ((-3 |#2| "failed") |#2| |#2| (-115) (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -778))
+((-2627 (*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 -2627 ((-3 |#2| "failed") |#2| |#2| (-115) (-1186))))
+((-3802 (((-780) |#1|) 8)))
+(((-779 |#1|) (-10 -7 (-15 -3802 ((-780) |#1|))) (-1227)) (T -779))
+((-3802 (*1 *2 *3) (-12 (-5 *2 (-780)) (-5 *1 (-779 *3)) (-4 *3 (-1227)))))
+(-10 -7 (-15 -3802 ((-780) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 7)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 9)))
(((-780) (-1109)) (T -780))
NIL
(-1109)
-((-2959 ((|#2| |#4|) 35)))
-(((-781 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2959 (|#2| |#4|))) (-458) (-1253 |#1|) (-730 |#1| |#2|) (-1253 |#3|)) (T -781))
-((-2959 (*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 -2959 (|#2| |#4|)))
-((-2875 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 57)) (-1801 (((-1282) (-1168) (-1168) |#4| |#5|) 33)) (-3448 ((|#4| |#4| |#5|) 74)) (-2478 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|) 79)) (-2312 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|) 16)))
-(((-782 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2875 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3448 (|#4| |#4| |#5|)) (-15 -2478 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -1801 ((-1282) (-1168) (-1168) |#4| |#5|)) (-15 -2312 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -782))
-((-2312 (*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)) (|:| -3684 *4)))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1801 (*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)))) (-2478 (*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) (|:| -3684 *4)))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3448 (*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)))) (-2875 (*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 -2875 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3448 (|#4| |#4| |#5|)) (-15 -2478 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -1801 ((-1282) (-1168) (-1168) |#4| |#5|)) (-15 -2312 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)))
-((-4380 (((-3 (-1182 (-1182 |#1|)) "failed") |#4|) 51)) (-3544 (((-650 |#4|) |#4|) 22)) (-3944 ((|#4| |#4|) 17)))
-(((-783 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3544 ((-650 |#4|) |#4|)) (-15 -4380 ((-3 (-1182 (-1182 |#1|)) "failed") |#4|)) (-15 -3944 (|#4| |#4|))) (-354) (-333 |#1|) (-1253 |#2|) (-1253 |#3|) (-928)) (T -783))
-((-3944 (*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)))) (-4380 (*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)))) (-3544 (*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 -3544 ((-650 |#4|) |#4|)) (-15 -4380 ((-3 (-1182 (-1182 |#1|)) "failed") |#4|)) (-15 -3944 (|#4| |#4|)))
-((-2426 (((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -3154 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|)) 72)) (-4091 (((-650 (-777)) |#1|) 20)))
-(((-784 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2426 ((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -3154 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|))) (-15 -4091 ((-650 (-777)) |#1|))) (-1253 |#4|) (-799) (-856) (-311) (-956 |#4| |#2| |#3|)) (T -784))
-((-4091 (*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)))) (-2426 (*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 (|:| -3154 (-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 -2426 ((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -3154 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|))) (-15 -4091 ((-650 (-777)) |#1|)))
-((-1422 (((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|) 31)) (-2109 (((-650 |#1|) (-695 (-413 (-570))) |#1|) 21)) (-3553 (((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186)) 18) (((-959 (-413 (-570))) (-695 (-413 (-570)))) 17)))
-(((-785 |#1|) (-10 -7 (-15 -3553 ((-959 (-413 (-570))) (-695 (-413 (-570))))) (-15 -3553 ((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186))) (-15 -2109 ((-650 |#1|) (-695 (-413 (-570))) |#1|)) (-15 -1422 ((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|))) (-13 (-368) (-854))) (T -785))
-((-1422 (*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))))) (-2109 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))) (-3553 (*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))))) (-3553 (*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 -3553 ((-959 (-413 (-570))) (-695 (-413 (-570))))) (-15 -3553 ((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186))) (-15 -2109 ((-650 |#1|) (-695 (-413 (-570))) |#1|)) (-15 -1422 ((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 36)) (-1755 (((-650 |#2|) $) NIL)) (-3775 (((-1182 $) $ |#2|) NIL) (((-1182 |#1|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 |#2|)) NIL)) (-1602 (($ $) 30)) (-3068 (((-112) $ $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-2022 (($ $ $) 110 (|has| |#1| (-562)))) (-1469 (((-650 $) $ $) 123 (|has| |#1| (-562)))) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1705 (($) NIL T CONST)) (-4380 (((-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 (-2892 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1795 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (((-3 $ "failed") (-959 |#1|)) NIL (-2892 (-12 (|has| |#2| (-620 (-1186))) (-1795 (|has| |#1| (-38 (-413 (-570))))) (-1795 (|has| |#1| (-38 (-570))))) (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1795 (|has| |#1| (-38 (-413 (-570))))) (-1795 (|has| |#1| (-551)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))) (-1795 (|has| |#1| (-1001 (-570))))))) (((-3 (-1134 |#1| |#2|) "failed") $) 21)) (-3216 ((|#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 (-2892 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1795 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (($ (-959 |#1|)) NIL (-2892 (-12 (|has| |#2| (-620 (-1186))) (-1795 (|has| |#1| (-38 (-413 (-570))))) (-1795 (|has| |#1| (-38 (-570))))) (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1795 (|has| |#1| (-38 (-413 (-570))))) (-1795 (|has| |#1| (-551)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))) (-1795 (|has| |#1| (-1001 (-570))))))) (((-1134 |#1| |#2|) $) NIL)) (-4322 (($ $ $ |#2|) NIL (|has| |#1| (-174))) (($ $ $) 121 (|has| |#1| (-562)))) (-1956 (($ $) NIL) (($ $ |#2|) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2862 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2248 (((-112) $) NIL)) (-3640 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 81)) (-2917 (($ $) 136 (|has| |#1| (-458)))) (-3988 (($ $) NIL (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-2794 (($ $) NIL (|has| |#1| (-562)))) (-1970 (($ $) NIL (|has| |#1| (-562)))) (-3166 (($ $ $) 76) (($ $ $ |#2|) NIL)) (-1453 (($ $ $) 79) (($ $ $ |#2|) NIL)) (-3720 (($ $ |#1| (-537 |#2|) $) NIL)) (-2842 (((-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)))))) (-4346 (((-112) $) 57)) (-3173 (((-777) $) NIL)) (-3586 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-3630 (($ $ $ $ $) 107 (|has| |#1| (-562)))) (-1724 ((|#2| $) 22)) (-1742 (($ (-1182 |#1|) |#2|) NIL) (($ (-1182 $) |#2|) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-537 |#2|)) NIL) (($ $ |#2| (-777)) 38) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2101 (($ $ $) 63)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ |#2|) NIL)) (-4044 (((-112) $) NIL)) (-2575 (((-537 |#2|) $) NIL) (((-777) $ |#2|) NIL) (((-650 (-777)) $ (-650 |#2|)) NIL)) (-2612 (((-777) $) 23)) (-1918 (($ (-1 (-537 |#2|) (-537 |#2|)) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3362 (((-3 |#2| "failed") $) NIL)) (-2246 (($ $) NIL (|has| |#1| (-458)))) (-1624 (($ $) NIL (|has| |#1| (-458)))) (-1731 (((-650 $) $) NIL)) (-2292 (($ $) 39)) (-2628 (($ $) NIL (|has| |#1| (-458)))) (-1432 (((-650 $) $) 43)) (-3686 (($ $) 41)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL) (($ $ |#2|) 48)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3803 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1521 (-777))) $ $) 96)) (-2944 (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $) 78) (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $ |#2|) NIL)) (-3430 (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -3691 $)) $ $) NIL) (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -3691 $)) $ $ |#2|) NIL)) (-2924 (($ $ $) 83) (($ $ $ |#2|) NIL)) (-1559 (($ $ $) 86) (($ $ $ |#2|) NIL)) (-1988 (((-1168) $) NIL)) (-1759 (($ $ $) 125 (|has| |#1| (-562)))) (-2703 (((-650 $) $) 32)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| |#2|) (|:| -3357 (-777))) "failed") $) NIL)) (-1491 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-2520 (($ $ $) NIL)) (-2438 (($ $) 24)) (-2971 (((-112) $ $) NIL)) (-2035 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-4201 (($ $ $) NIL)) (-1311 (($ $) 26)) (-3577 (((-1129) $) NIL)) (-1826 (((-2 (|:| -1942 $) (|:| |coef2| $)) $ $) 116 (|has| |#1| (-562)))) (-2982 (((-2 (|:| -1942 $) (|:| |coef1| $)) $ $) 113 (|has| |#1| (-562)))) (-1886 (((-112) $) 56)) (-1898 ((|#1| $) 58)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1942 ((|#1| |#1| $) 133 (|has| |#1| (-458))) (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2145 (((-2 (|:| -1942 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 119 (|has| |#1| (-562)))) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 98 (|has| |#1| (-562)))) (-4383 (($ $ |#1|) 129 (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-1414 (($ $ |#1|) 128 (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-1770 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-650 |#2|) (-650 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-650 |#2|) (-650 $)) NIL)) (-3570 (($ $ |#2|) NIL (|has| |#1| (-174)))) (-3547 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2130 (((-537 |#2|) $) NIL) (((-777) $ |#2|) 45) (((-650 (-777)) $ (-650 |#2|)) NIL)) (-1340 (($ $) NIL)) (-2485 (($ $) 35)) (-1425 (((-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 (-2892 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1795 (|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))))) (-1848 ((|#1| $) 132 (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-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 (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-537 |#2|)) NIL) (($ $ |#2| (-777)) 47) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) 13 T CONST)) (-4280 (((-3 (-112) "failed") $ $) NIL)) (-1875 (($) 37 T CONST)) (-3014 (($ $ $ $ (-777)) 105 (|has| |#1| (-562)))) (-4357 (($ $ $ (-777)) 104 (|has| |#1| (-562)))) (-2942 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) 75)) (-3101 (($ $ $) 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)))
+((-4399 ((|#2| |#4|) 35)))
+(((-781 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4399 (|#2| |#4|))) (-458) (-1253 |#1|) (-730 |#1| |#2|) (-1253 |#3|)) (T -781))
+((-4399 (*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 -4399 (|#2| |#4|)))
+((-1929 (((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|) 57)) (-2860 (((-1282) (-1168) (-1168) |#4| |#5|) 33)) (-3535 ((|#4| |#4| |#5|) 74)) (-2454 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|) 79)) (-4302 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|) 16)))
+(((-782 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1929 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3535 (|#4| |#4| |#5|)) (-15 -2454 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -2860 ((-1282) (-1168) (-1168) |#4| |#5|)) (-15 -4302 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -782))
+((-4302 (*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)) (|:| -3687 *4)))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2860 (*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)))) (-2454 (*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) (|:| -3687 *4)))) (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3535 (*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)))) (-1929 (*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 -1929 ((-2 (|:| |num| |#4|) (|:| |den| |#4|)) |#4| |#5|)) (-15 -3535 (|#4| |#4| |#5|)) (-15 -2454 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -2860 ((-1282) (-1168) (-1168) |#4| |#5|)) (-15 -4302 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)))
+((-4383 (((-3 (-1182 (-1182 |#1|)) "failed") |#4|) 51)) (-2044 (((-650 |#4|) |#4|) 22)) (-1427 ((|#4| |#4|) 17)))
+(((-783 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2044 ((-650 |#4|) |#4|)) (-15 -4383 ((-3 (-1182 (-1182 |#1|)) "failed") |#4|)) (-15 -1427 (|#4| |#4|))) (-354) (-333 |#1|) (-1253 |#2|) (-1253 |#3|) (-928)) (T -783))
+((-1427 (*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)))) (-4383 (*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)))) (-2044 (*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 -2044 ((-650 |#4|) |#4|)) (-15 -4383 ((-3 (-1182 (-1182 |#1|)) "failed") |#4|)) (-15 -1427 (|#4| |#4|)))
+((-3101 (((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -2680 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|)) 72)) (-3634 (((-650 (-777)) |#1|) 20)))
+(((-784 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3101 ((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -2680 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|))) (-15 -3634 ((-650 (-777)) |#1|))) (-1253 |#4|) (-799) (-856) (-311) (-956 |#4| |#2| |#3|)) (T -784))
+((-3634 (*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)))) (-3101 (*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 (|:| -2680 (-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 -3101 ((-2 (|:| |deter| (-650 (-1182 |#5|))) (|:| |dterm| (-650 (-650 (-2 (|:| -2680 (-777)) (|:| |pcoef| |#5|))))) (|:| |nfacts| (-650 |#1|)) (|:| |nlead| (-650 |#5|))) (-1182 |#5|) (-650 |#1|) (-650 |#5|))) (-15 -3634 ((-650 (-777)) |#1|)))
+((-1372 (((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|) 31)) (-2877 (((-650 |#1|) (-695 (-413 (-570))) |#1|) 21)) (-2124 (((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186)) 18) (((-959 (-413 (-570))) (-695 (-413 (-570)))) 17)))
+(((-785 |#1|) (-10 -7 (-15 -2124 ((-959 (-413 (-570))) (-695 (-413 (-570))))) (-15 -2124 ((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186))) (-15 -2877 ((-650 |#1|) (-695 (-413 (-570))) |#1|)) (-15 -1372 ((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|))) (-13 (-368) (-854))) (T -785))
+((-1372 (*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))))) (-2877 (*1 *2 *3 *4) (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-785 *4)) (-4 *4 (-13 (-368) (-854))))) (-2124 (*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))))) (-2124 (*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 -2124 ((-959 (-413 (-570))) (-695 (-413 (-570))))) (-15 -2124 ((-959 (-413 (-570))) (-695 (-413 (-570))) (-1186))) (-15 -2877 ((-650 |#1|) (-695 (-413 (-570))) |#1|)) (-15 -1372 ((-650 (-2 (|:| |outval| |#1|) (|:| |outmult| (-570)) (|:| |outvect| (-650 (-695 |#1|))))) (-695 (-413 (-570))) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 36)) (-1755 (((-650 |#2|) $) NIL)) (-3778 (((-1182 $) $ |#2|) NIL) (((-1182 |#1|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 |#2|)) NIL)) (-1603 (($ $) 30)) (-4252 (((-112) $ $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3162 (($ $ $) 110 (|has| |#1| (-562)))) (-2690 (((-650 $) $ $) 123 (|has| |#1| (-562)))) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3195 (($) NIL T CONST)) (-4383 (((-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 (-2895 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1796 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (((-3 $ "failed") (-959 |#1|)) NIL (-2895 (-12 (|has| |#2| (-620 (-1186))) (-1796 (|has| |#1| (-38 (-413 (-570))))) (-1796 (|has| |#1| (-38 (-570))))) (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1796 (|has| |#1| (-38 (-413 (-570))))) (-1796 (|has| |#1| (-551)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))) (-1796 (|has| |#1| (-1001 (-570))))))) (((-3 (-1134 |#1| |#2|) "failed") $) 21)) (-3220 ((|#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 (-2895 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1796 (|has| |#1| (-38 (-413 (-570)))))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186)))))) (($ (-959 |#1|)) NIL (-2895 (-12 (|has| |#2| (-620 (-1186))) (-1796 (|has| |#1| (-38 (-413 (-570))))) (-1796 (|has| |#1| (-38 (-570))))) (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1796 (|has| |#1| (-38 (-413 (-570))))) (-1796 (|has| |#1| (-551)))) (-12 (|has| |#1| (-38 (-413 (-570)))) (|has| |#2| (-620 (-1186))) (-1796 (|has| |#1| (-1001 (-570))))))) (((-1134 |#1| |#2|) $) NIL)) (-3930 (($ $ $ |#2|) NIL (|has| |#1| (-174))) (($ $ $) 121 (|has| |#1| (-562)))) (-1954 (($ $) NIL) (($ $ |#2|) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1772 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1850 (((-112) $) NIL)) (-1601 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 81)) (-2197 (($ $) 136 (|has| |#1| (-458)))) (-1944 (($ $) NIL (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-2420 (($ $) NIL (|has| |#1| (-562)))) (-3806 (($ $) NIL (|has| |#1| (-562)))) (-2802 (($ $ $) 76) (($ $ $ |#2|) NIL)) (-2532 (($ $ $) 79) (($ $ $ |#2|) NIL)) (-4243 (($ $ |#1| (-537 |#2|) $) NIL)) (-1557 (((-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)))))) (-4139 (((-112) $) 57)) (-2867 (((-777) $) NIL)) (-2391 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-1475 (($ $ $ $ $) 107 (|has| |#1| (-562)))) (-3357 ((|#2| $) 22)) (-1744 (($ (-1182 |#1|) |#2|) NIL) (($ (-1182 $) |#2|) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-537 |#2|)) NIL) (($ $ |#2| (-777)) 38) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2801 (($ $ $) 63)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ |#2|) NIL)) (-4304 (((-112) $) NIL)) (-3970 (((-537 |#2|) $) NIL) (((-777) $ |#2|) NIL) (((-650 (-777)) $ (-650 |#2|)) NIL)) (-4297 (((-777) $) 23)) (-1414 (($ (-1 (-537 |#2|) (-537 |#2|)) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4023 (((-3 |#2| "failed") $) NIL)) (-1825 (($ $) NIL (|has| |#1| (-458)))) (-1726 (($ $) NIL (|has| |#1| (-458)))) (-3451 (((-650 $) $) NIL)) (-4111 (($ $) 39)) (-3272 (($ $) NIL (|has| |#1| (-458)))) (-1471 (((-650 $) $) 43)) (-3919 (($ $) 41)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL) (($ $ |#2|) 48)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-2652 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1974 (-777))) $ $) 96)) (-2443 (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $) 78) (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $ |#2|) NIL)) (-3358 (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3971 $)) $ $) NIL) (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3971 $)) $ $ |#2|) NIL)) (-2263 (($ $ $) 83) (($ $ $ |#2|) NIL)) (-2352 (($ $ $) 86) (($ $ $ |#2|) NIL)) (-3989 (((-1168) $) NIL)) (-3693 (($ $ $) 125 (|has| |#1| (-562)))) (-2803 (((-650 $) $) 32)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| |#2|) (|:| -3994 (-777))) "failed") $) NIL)) (-2898 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-1590 (($ $ $) NIL)) (-2439 (($ $) 24)) (-1433 (((-112) $ $) NIL)) (-3279 (((-112) $ $) NIL) (((-112) $ (-650 $)) NIL)) (-2222 (($ $ $) NIL)) (-1586 (($ $) 26)) (-3580 (((-1129) $) NIL)) (-3062 (((-2 (|:| -1939 $) (|:| |coef2| $)) $ $) 116 (|has| |#1| (-562)))) (-1575 (((-2 (|:| -1939 $) (|:| |coef1| $)) $ $) 113 (|has| |#1| (-562)))) (-1887 (((-112) $) 56)) (-1900 ((|#1| $) 58)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1939 ((|#1| |#1| $) 133 (|has| |#1| (-458))) (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2040 (((-2 (|:| -1939 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 119 (|has| |#1| (-562)))) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 98 (|has| |#1| (-562)))) (-3310 (($ $ |#1|) 129 (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-4420 (($ $ |#1|) 128 (|has| |#1| (-562))) (($ $ $) NIL (|has| |#1| (-562)))) (-1771 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#2| |#1|) NIL) (($ $ (-650 |#2|) (-650 |#1|)) NIL) (($ $ |#2| $) NIL) (($ $ (-650 |#2|) (-650 $)) NIL)) (-2265 (($ $ |#2|) NIL (|has| |#1| (-174)))) (-3550 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3079 (((-537 |#2|) $) NIL) (((-777) $ |#2|) 45) (((-650 (-777)) $ (-650 |#2|)) NIL)) (-1952 (($ $) NIL)) (-2530 (($ $) 35)) (-1426 (((-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 (-2895 (-12 (|has| |#1| (-38 (-570))) (|has| |#2| (-620 (-1186))) (-1796 (|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))))) (-2077 ((|#1| $) 132 (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-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 (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-537 |#2|)) NIL) (($ $ |#2| (-777)) 47) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) 13 T CONST)) (-1700 (((-3 (-112) "failed") $ $) NIL)) (-1876 (($) 37 T CONST)) (-3780 (($ $ $ $ (-777)) 105 (|has| |#1| (-562)))) (-4256 (($ $ $ (-777)) 104 (|has| |#1| (-562)))) (-2945 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) 75)) (-3104 (($ $ $) 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|)))
-((-1356 (((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|)) 13)))
-(((-787 |#1| |#2|) (-10 -7 (-15 -1356 ((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|)))) (-1058) (-1058)) (T -787))
-((-1356 (*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 -1356 ((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 12)) (-2277 (((-1277 |#1|) $ (-777)) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-3985 (($ (-1182 |#1|)) NIL)) (-3775 (((-1182 $) $ (-1091)) NIL) (((-1182 |#1|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1346 (((-650 $) $ $) 54 (|has| |#1| (-562)))) (-2022 (($ $ $) 50 (|has| |#1| (-562)))) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-1576 (($ $ (-777)) NIL)) (-2347 (($ $ (-777)) NIL)) (-4425 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL) (((-1182 |#1|) $) NIL)) (-4322 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) 58 (|has| |#1| (-174)))) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3239 (($ $ $) NIL)) (-2677 (($ $ $) 87 (|has| |#1| (-562)))) (-3640 (((-2 (|:| -1452 |#1|) (|:| -2573 $) (|:| -3691 $)) $ $) 86 (|has| |#1| (-562)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3988 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-3720 (($ $ |#1| (-777) $) NIL)) (-2842 (((-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)))))) (-4323 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1742 (($ (-1182 |#1|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-2362 (($ $ (-777)) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2101 (($ $ $) 27)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-1091)) NIL) (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2575 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1918 (($ (-1 (-777) (-777)) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3900 (((-1182 |#1|) $) NIL)) (-3362 (((-3 (-1091) "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3803 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1521 (-777))) $ $) 37)) (-3545 (($ $ $) 41)) (-4050 (($ $ $) 47)) (-2944 (((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $) 46)) (-1988 (((-1168) $) NIL)) (-1759 (($ $ $) 56 (|has| |#1| (-562)))) (-3213 (((-2 (|:| -2573 $) (|:| -3691 $)) $ (-777)) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-1091)) (|:| -3357 (-777))) "failed") $) NIL)) (-2898 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2438 (($) NIL (|has| |#1| (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-1826 (((-2 (|:| -1942 $) (|:| |coef2| $)) $ $) 82 (|has| |#1| (-562)))) (-2982 (((-2 (|:| -1942 $) (|:| |coef1| $)) $ $) 78 (|has| |#1| (-562)))) (-1698 (((-2 (|:| -4322 |#1|) (|:| |coef2| $)) $ $) 70 (|has| |#1| (-562)))) (-1906 (((-2 (|:| -4322 |#1|) (|:| |coef1| $)) $ $) 66 (|has| |#1| (-562)))) (-1886 (((-112) $) 13)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1319 (($ $ (-777) |#1| $) 26)) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2145 (((-2 (|:| -1942 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 74 (|has| |#1| (-562)))) (-3787 (((-2 (|:| -4322 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 62 (|has| |#1| (-562)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1770 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-2527 (((-3 $ "failed") $ (-777)) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3570 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) NIL (|has| |#1| (-174)))) (-3547 (($ $ (-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)) (-2130 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1425 (((-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)))))) (-1848 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-2105 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1091)) NIL) (((-1182 |#1|) $) 7) (($ (-1182 |#1|)) 8) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) 28 T CONST)) (-1875 (($) 32 T CONST)) (-2942 (($ $ (-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)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) 40) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1319 ($ $ (-777) |#1| $)) (-15 -2101 ($ $ $)) (-15 -3803 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1521 (-777))) $ $)) (-15 -3545 ($ $ $)) (-15 -2944 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -4050 ($ $ $)) (IF (|has| |#1| (-562)) (PROGN (-15 -1346 ((-650 $) $ $)) (-15 -1759 ($ $ $)) (-15 -2145 ((-2 (|:| -1942 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2982 ((-2 (|:| -1942 $) (|:| |coef1| $)) $ $)) (-15 -1826 ((-2 (|:| -1942 $) (|:| |coef2| $)) $ $)) (-15 -3787 ((-2 (|:| -4322 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1906 ((-2 (|:| -4322 |#1|) (|:| |coef1| $)) $ $)) (-15 -1698 ((-2 (|:| -4322 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1058)) (T -788))
-((-1319 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-2101 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-3803 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-788 *3)) (|:| |polden| *3) (|:| -1521 (-777)))) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-3545 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-2944 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1452 *3) (|:| |gap| (-777)) (|:| -2573 (-788 *3)) (|:| -3691 (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-4050 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-1346 (*1 *2 *1 *1) (-12 (-5 *2 (-650 (-788 *3))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-1759 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-562)) (-4 *2 (-1058)))) (-2145 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1942 (-788 *3)) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-2982 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1942 (-788 *3)) (|:| |coef1| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-1826 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1942 (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-3787 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4322 *3) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-1906 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4322 *3) (|:| |coef1| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-1698 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -4322 *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 -1319 ($ $ (-777) |#1| $)) (-15 -2101 ($ $ $)) (-15 -3803 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1521 (-777))) $ $)) (-15 -3545 ($ $ $)) (-15 -2944 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -4050 ($ $ $)) (IF (|has| |#1| (-562)) (PROGN (-15 -1346 ((-650 $) $ $)) (-15 -1759 ($ $ $)) (-15 -2145 ((-2 (|:| -1942 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2982 ((-2 (|:| -1942 $) (|:| |coef1| $)) $ $)) (-15 -1826 ((-2 (|:| -1942 $) (|:| |coef2| $)) $ $)) (-15 -3787 ((-2 (|:| -4322 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1906 ((-2 (|:| -4322 |#1|) (|:| |coef1| $)) $ $)) (-15 -1698 ((-2 (|:| -4322 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
-((-3546 ((|#1| (-777) |#1|) 33 (|has| |#1| (-38 (-413 (-570)))))) (-2810 ((|#1| (-777) |#1|) 23)) (-1594 ((|#1| (-777) |#1|) 35 (|has| |#1| (-38 (-413 (-570)))))))
-(((-789 |#1|) (-10 -7 (-15 -2810 (|#1| (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -1594 (|#1| (-777) |#1|)) (-15 -3546 (|#1| (-777) |#1|))) |%noBranch|)) (-174)) (T -789))
-((-3546 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-1594 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-2810 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-174)))))
-(-10 -7 (-15 -2810 (|#1| (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -1594 (|#1| (-777) |#1|)) (-15 -3546 (|#1| (-777) |#1|))) |%noBranch|))
-((-2558 (((-112) $ $) 7)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) 86)) (-1515 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1755 (((-650 |#3|) $) 34)) (-3051 (((-112) $) 27)) (-1416 (((-112) $) 18 (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) 102) (((-112) $) 98)) (-3484 ((|#4| |#4| $) 93)) (-4364 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| $) 127)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) 28)) (-4302 (((-112) $ (-777)) 45)) (-1431 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-1705 (($) 46 T CONST)) (-3737 (((-112) $) 23 (|has| |#1| (-562)))) (-2467 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4047 (((-112) $ $) 24 (|has| |#1| (-562)))) (-1876 (((-112) $) 26 (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2450 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) 37)) (-3216 (($ (-650 |#4|)) 36)) (-3555 (((-3 $ "failed") $) 83)) (-2128 ((|#4| |#4| $) 90)) (-3579 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) 106)) (-3948 (((-112) |#4| $) 137)) (-3825 (((-112) |#4| $) 134)) (-2819 (((-112) |#4| $) 138) (((-112) $) 135)) (-3627 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) 105) (((-112) $) 104)) (-1724 ((|#3| $) 35)) (-2929 (((-112) $ (-777)) 44)) (-2752 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 48)) (-1423 (((-650 |#3|) $) 33)) (-3907 (((-112) |#3| $) 32)) (-3231 (((-112) $ (-777)) 43)) (-1988 (((-1168) $) 10)) (-2925 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-1759 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| |#4| $) 128)) (-1769 (((-3 |#4| "failed") $) 84)) (-3260 (((-650 $) |#4| $) 130)) (-4090 (((-3 (-112) (-650 $)) |#4| $) 133)) (-1743 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2730 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-2231 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3534 (((-650 |#4|) $) 108)) (-1491 (((-112) |#4| $) 100) (((-112) $) 96)) (-2520 ((|#4| |#4| $) 91)) (-2971 (((-112) $ $) 111)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) 101) (((-112) $) 97)) (-4201 ((|#4| |#4| $) 92)) (-3577 (((-1129) $) 11)) (-3543 (((-3 |#4| "failed") $) 85)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1690 (((-3 $ "failed") $ |#4|) 79)) (-2431 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-3642 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 39)) (-2017 (((-112) $) 42)) (-2380 (($) 41)) (-2130 (((-777) $) 107)) (-3584 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3951 (($ $) 40)) (-1425 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 61)) (-3710 (($ $ |#3|) 29)) (-4224 (($ $ |#3|) 31)) (-4085 (($ $) 89)) (-1615 (($ $ |#3|) 30)) (-3799 (((-868) $) 12) (((-650 |#4|) $) 38)) (-4392 (((-777) $) 77 (|has| |#3| (-373)))) (-2335 (((-112) $ $) 9)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2401 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4371 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) 82)) (-2950 (((-112) |#4| $) 136)) (-2561 (((-112) |#3| $) 81)) (-3022 (((-112) $ $) 6)) (-2569 (((-777) $) 47 (|has| $ (-6 -4449)))))
+((-1357 (((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|)) 13)))
+(((-787 |#1| |#2|) (-10 -7 (-15 -1357 ((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|)))) (-1058) (-1058)) (T -787))
+((-1357 (*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 -1357 ((-788 |#2|) (-1 |#2| |#1|) (-788 |#1|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 12)) (-3975 (((-1277 |#1|) $ (-777)) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-1904 (($ (-1182 |#1|)) NIL)) (-3778 (((-1182 $) $ (-1091)) NIL) (((-1182 |#1|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2015 (((-650 $) $ $) 54 (|has| |#1| (-562)))) (-3162 (($ $ $) 50 (|has| |#1| (-562)))) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-4323 (($ $ (-777)) NIL)) (-3495 (($ $ (-777)) NIL)) (-3657 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL) (((-1182 |#1|) $) NIL)) (-3930 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) 58 (|has| |#1| (-174)))) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-2280 (($ $ $) NIL)) (-3746 (($ $ $) 87 (|has| |#1| (-562)))) (-1601 (((-2 (|:| -1453 |#1|) (|:| -3959 $) (|:| -3971 $)) $ $) 86 (|has| |#1| (-562)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1944 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-4243 (($ $ |#1| (-777) $) NIL)) (-1557 (((-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)))))) (-3941 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1744 (($ (-1182 |#1|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-3660 (($ $ (-777)) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2801 (($ $ $) 27)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-1091)) NIL) (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3970 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1414 (($ (-1 (-777) (-777)) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2315 (((-1182 |#1|) $) NIL)) (-4023 (((-3 (-1091) "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-2652 (((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1974 (-777))) $ $) 37)) (-2055 (($ $ $) 41)) (-4363 (($ $ $) 47)) (-2443 (((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $) 46)) (-3989 (((-1168) $) NIL)) (-3693 (($ $ $) 56 (|has| |#1| (-562)))) (-2041 (((-2 (|:| -3959 $) (|:| -3971 $)) $ (-777)) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-1091)) (|:| -3994 (-777))) "failed") $) NIL)) (-2023 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2439 (($) NIL (|has| |#1| (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-3062 (((-2 (|:| -1939 $) (|:| |coef2| $)) $ $) 82 (|has| |#1| (-562)))) (-1575 (((-2 (|:| -1939 $) (|:| |coef1| $)) $ $) 78 (|has| |#1| (-562)))) (-3131 (((-2 (|:| -3930 |#1|) (|:| |coef2| $)) $ $) 70 (|has| |#1| (-562)))) (-4398 (((-2 (|:| -3930 |#1|) (|:| |coef1| $)) $ $) 66 (|has| |#1| (-562)))) (-1887 (((-112) $) 13)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1701 (($ $ (-777) |#1| $) 26)) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2040 (((-2 (|:| -1939 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 74 (|has| |#1| (-562)))) (-3690 (((-2 (|:| -3930 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $) 62 (|has| |#1| (-562)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1771 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ |#1|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-1662 (((-3 $ "failed") $ (-777)) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-2265 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) NIL (|has| |#1| (-174)))) (-3550 (($ $ (-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)) (-3079 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1426 (((-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)))))) (-2077 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-2846 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1091)) NIL) (((-1182 |#1|) $) 7) (($ (-1182 |#1|)) 8) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) 28 T CONST)) (-1876 (($) 32 T CONST)) (-2945 (($ $ (-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)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) 40) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1701 ($ $ (-777) |#1| $)) (-15 -2801 ($ $ $)) (-15 -2652 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1974 (-777))) $ $)) (-15 -2055 ($ $ $)) (-15 -2443 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -4363 ($ $ $)) (IF (|has| |#1| (-562)) (PROGN (-15 -2015 ((-650 $) $ $)) (-15 -3693 ($ $ $)) (-15 -2040 ((-2 (|:| -1939 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1575 ((-2 (|:| -1939 $) (|:| |coef1| $)) $ $)) (-15 -3062 ((-2 (|:| -1939 $) (|:| |coef2| $)) $ $)) (-15 -3690 ((-2 (|:| -3930 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4398 ((-2 (|:| -3930 |#1|) (|:| |coef1| $)) $ $)) (-15 -3131 ((-2 (|:| -3930 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|))) (-1058)) (T -788))
+((-1701 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-2801 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-2652 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| |polnum| (-788 *3)) (|:| |polden| *3) (|:| -1974 (-777)))) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-2055 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-2443 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1453 *3) (|:| |gap| (-777)) (|:| -3959 (-788 *3)) (|:| -3971 (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-1058)))) (-4363 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))) (-2015 (*1 *2 *1 *1) (-12 (-5 *2 (-650 (-788 *3))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-3693 (*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-562)) (-4 *2 (-1058)))) (-2040 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1939 (-788 *3)) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-1575 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1939 (-788 *3)) (|:| |coef1| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-3062 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -1939 (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-3690 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3930 *3) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-4398 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3930 *3) (|:| |coef1| (-788 *3)))) (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))) (-3131 (*1 *2 *1 *1) (-12 (-5 *2 (-2 (|:| -3930 *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 -1701 ($ $ (-777) |#1| $)) (-15 -2801 ($ $ $)) (-15 -2652 ((-2 (|:| |polnum| $) (|:| |polden| |#1|) (|:| -1974 (-777))) $ $)) (-15 -2055 ($ $ $)) (-15 -2443 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -4363 ($ $ $)) (IF (|has| |#1| (-562)) (PROGN (-15 -2015 ((-650 $) $ $)) (-15 -3693 ($ $ $)) (-15 -2040 ((-2 (|:| -1939 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1575 ((-2 (|:| -1939 $) (|:| |coef1| $)) $ $)) (-15 -3062 ((-2 (|:| -1939 $) (|:| |coef2| $)) $ $)) (-15 -3690 ((-2 (|:| -3930 |#1|) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -4398 ((-2 (|:| -3930 |#1|) (|:| |coef1| $)) $ $)) (-15 -3131 ((-2 (|:| -3930 |#1|) (|:| |coef2| $)) $ $))) |%noBranch|)))
+((-2066 ((|#1| (-777) |#1|) 33 (|has| |#1| (-38 (-413 (-570)))))) (-2555 ((|#1| (-777) |#1|) 23)) (-1396 ((|#1| (-777) |#1|) 35 (|has| |#1| (-38 (-413 (-570)))))))
+(((-789 |#1|) (-10 -7 (-15 -2555 (|#1| (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -1396 (|#1| (-777) |#1|)) (-15 -2066 (|#1| (-777) |#1|))) |%noBranch|)) (-174)) (T -789))
+((-2066 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-1396 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-2555 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-174)))))
+(-10 -7 (-15 -2555 (|#1| (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -1396 (|#1| (-777) |#1|)) (-15 -2066 (|#1| (-777) |#1|))) |%noBranch|))
+((-2560 (((-112) $ $) 7)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) 86)) (-1911 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1755 (((-650 |#3|) $) 34)) (-4092 (((-112) $) 27)) (-1320 (((-112) $) 18 (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) 102) (((-112) $) 98)) (-2698 ((|#4| |#4| $) 93)) (-4310 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| $) 127)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) 28)) (-1932 (((-112) $ (-777)) 45)) (-1434 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) 80)) (-3195 (($) 46 T CONST)) (-3230 (((-112) $) 23 (|has| |#1| (-562)))) (-2339 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4337 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2327 (((-112) $) 26 (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2167 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) 37)) (-3220 (($ (-650 |#4|)) 36)) (-3558 (((-3 $ "failed") $) 83)) (-3059 ((|#4| |#4| $) 90)) (-3582 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-2191 ((|#4| |#4| $) 88)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) 106)) (-1483 (((-112) |#4| $) 137)) (-2816 (((-112) |#4| $) 134)) (-2607 (((-112) |#4| $) 138) (((-112) $) 135)) (-3630 (((-650 |#4|) $) 53 (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) 105) (((-112) $) 104)) (-3357 ((|#3| $) 35)) (-2317 (((-112) $ (-777)) 44)) (-2052 (((-650 |#4|) $) 54 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 48)) (-1388 (((-650 |#3|) $) 33)) (-2387 (((-112) |#3| $) 32)) (-2193 (((-112) $ (-777)) 43)) (-3989 (((-1168) $) 10)) (-2274 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-3693 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| |#4| $) 128)) (-1770 (((-3 |#4| "failed") $) 84)) (-2490 (((-650 $) |#4| $) 130)) (-3623 (((-3 (-112) (-650 $)) |#4| $) 133)) (-3548 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-3051 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-1633 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3151 (((-650 |#4|) $) 108)) (-2898 (((-112) |#4| $) 100) (((-112) $) 96)) (-1590 ((|#4| |#4| $) 91)) (-1433 (((-112) $ $) 111)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) 101) (((-112) $) 97)) (-2222 ((|#4| |#4| $) 92)) (-3580 (((-1129) $) 11)) (-3546 (((-3 |#4| "failed") $) 85)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-4207 (((-3 $ "failed") $ |#4|) 79)) (-3152 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-1627 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 39)) (-4283 (((-112) $) 42)) (-2656 (($) 41)) (-3079 (((-777) $) 107)) (-3587 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4452)))) (-3954 (($ $) 40)) (-1426 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 61)) (-4138 (($ $ |#3|) 29)) (-2435 (($ $ |#3|) 31)) (-3563 (($ $) 89)) (-1631 (($ $ |#3|) 30)) (-3802 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3394 (((-777) $) 77 (|has| |#3| (-373)))) (-3359 (((-112) $ $) 9)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2872 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4379 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) 82)) (-2506 (((-112) |#4| $) 136)) (-3857 (((-112) |#3| $) 81)) (-3025 (((-112) $ $) 6)) (-2570 (((-777) $) 47 (|has| $ (-6 -4452)))))
(((-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) ((-1220 |#1| |#2| |#3| |#4|) . T) ((-1227) . T))
-((-4232 (((-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)))) (-3561 (((-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)) (-1354 (((-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)))) (-3729 (((-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 -3561 ((-384) |#1|)) (-15 -3561 ((-384) |#1| (-928))) (-15 -3729 ((-171 (-384)) |#1|)) (-15 -3729 ((-171 (-384)) |#1| (-928))) (IF (|has| |#1| (-174)) (PROGN (-15 -3729 ((-171 (-384)) (-171 |#1|))) (-15 -3729 ((-171 (-384)) (-171 |#1|) (-928))) (-15 -3729 ((-171 (-384)) (-959 (-171 |#1|)))) (-15 -3729 ((-171 (-384)) (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -3561 ((-384) (-959 |#1|))) (-15 -3561 ((-384) (-959 |#1|) (-928))) (-15 -3729 ((-171 (-384)) (-959 |#1|))) (-15 -3729 ((-171 (-384)) (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -3561 ((-384) (-413 (-959 |#1|)))) (-15 -3561 ((-384) (-413 (-959 |#1|)) (-928))) (-15 -3729 ((-171 (-384)) (-413 (-959 |#1|)))) (-15 -3729 ((-171 (-384)) (-413 (-959 |#1|)) (-928))) (-15 -3729 ((-171 (-384)) (-413 (-959 (-171 |#1|))))) (-15 -3729 ((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -3561 ((-384) (-320 |#1|))) (-15 -3561 ((-384) (-320 |#1|) (-928))) (-15 -3729 ((-171 (-384)) (-320 |#1|))) (-15 -3729 ((-171 (-384)) (-320 |#1|) (-928))) (-15 -3729 ((-171 (-384)) (-320 (-171 |#1|)))) (-15 -3729 ((-171 (-384)) (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-15 -1354 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -4232 ((-3 (-384) "failed") (-959 |#1|))) (-15 -4232 ((-3 (-384) "failed") (-959 |#1|) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-959 |#1|))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -4232 ((-3 (-384) "failed") (-413 (-959 |#1|)))) (-15 -4232 ((-3 (-384) "failed") (-413 (-959 |#1|)) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -4232 ((-3 (-384) "failed") (-320 |#1|))) (-15 -4232 ((-3 (-384) "failed") (-320 |#1|) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-320 |#1|))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-320 |#1|) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|)) (-620 (-384))) (T -791))
-((-1354 (*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)))) (-1354 (*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)))) (-1354 (*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)))) (-1354 (*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)))) (-4232 (*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)))) (-4232 (*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)))) (-1354 (*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)))) (-1354 (*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)))) (-1354 (*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)))) (-1354 (*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)))) (-4232 (*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)))) (-4232 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-1354 (*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)))) (-1354 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-4232 (*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)))) (-4232 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-1354 (*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)))) (-1354 (*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)))) (-3729 (*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)))) (-3729 (*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)))) (-3729 (*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)))) (-3729 (*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)))) (-3561 (*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)))) (-3561 (*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)))) (-3729 (*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)))) (-3729 (*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)))) (-3729 (*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)))) (-3729 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3561 (*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)))) (-3561 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3729 (*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)))) (-3729 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3561 (*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)))) (-3561 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3729 (*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)))) (-3729 (*1 *2 *3) (-12 (-5 *3 (-959 (-171 *4))) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3729 (*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)))) (-3729 (*1 *2 *3) (-12 (-5 *3 (-171 *4)) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3729 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384))))) (-3729 (*1 *2 *3) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384))))) (-3561 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2)))) (-3561 (*1 *2 *3) (-12 (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2)))))
-(-10 -7 (-15 -3561 ((-384) |#1|)) (-15 -3561 ((-384) |#1| (-928))) (-15 -3729 ((-171 (-384)) |#1|)) (-15 -3729 ((-171 (-384)) |#1| (-928))) (IF (|has| |#1| (-174)) (PROGN (-15 -3729 ((-171 (-384)) (-171 |#1|))) (-15 -3729 ((-171 (-384)) (-171 |#1|) (-928))) (-15 -3729 ((-171 (-384)) (-959 (-171 |#1|)))) (-15 -3729 ((-171 (-384)) (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -3561 ((-384) (-959 |#1|))) (-15 -3561 ((-384) (-959 |#1|) (-928))) (-15 -3729 ((-171 (-384)) (-959 |#1|))) (-15 -3729 ((-171 (-384)) (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -3561 ((-384) (-413 (-959 |#1|)))) (-15 -3561 ((-384) (-413 (-959 |#1|)) (-928))) (-15 -3729 ((-171 (-384)) (-413 (-959 |#1|)))) (-15 -3729 ((-171 (-384)) (-413 (-959 |#1|)) (-928))) (-15 -3729 ((-171 (-384)) (-413 (-959 (-171 |#1|))))) (-15 -3729 ((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -3561 ((-384) (-320 |#1|))) (-15 -3561 ((-384) (-320 |#1|) (-928))) (-15 -3729 ((-171 (-384)) (-320 |#1|))) (-15 -3729 ((-171 (-384)) (-320 |#1|) (-928))) (-15 -3729 ((-171 (-384)) (-320 (-171 |#1|)))) (-15 -3729 ((-171 (-384)) (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-15 -1354 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -4232 ((-3 (-384) "failed") (-959 |#1|))) (-15 -4232 ((-3 (-384) "failed") (-959 |#1|) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-959 |#1|))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -4232 ((-3 (-384) "failed") (-413 (-959 |#1|)))) (-15 -4232 ((-3 (-384) "failed") (-413 (-959 |#1|)) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -4232 ((-3 (-384) "failed") (-320 |#1|))) (-15 -4232 ((-3 (-384) "failed") (-320 |#1|) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-320 |#1|))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-320 |#1|) (-928))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)))) (-15 -1354 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|))
-((-2803 (((-928) (-1168)) 89)) (-2549 (((-3 (-384) "failed") (-1168)) 36)) (-2215 (((-384) (-1168)) 34)) (-2387 (((-928) (-1168)) 63)) (-3453 (((-1168) (-928)) 73)) (-3331 (((-1168) (-928)) 62)))
-(((-792) (-10 -7 (-15 -3331 ((-1168) (-928))) (-15 -2387 ((-928) (-1168))) (-15 -3453 ((-1168) (-928))) (-15 -2803 ((-928) (-1168))) (-15 -2215 ((-384) (-1168))) (-15 -2549 ((-3 (-384) "failed") (-1168))))) (T -792))
-((-2549 (*1 *2 *3) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))) (-2215 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))) (-2803 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))) (-3453 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))) (-2387 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))) (-3331 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
-(-10 -7 (-15 -3331 ((-1168) (-928))) (-15 -2387 ((-928) (-1168))) (-15 -3453 ((-1168) (-928))) (-15 -2803 ((-928) (-1168))) (-15 -2215 ((-384) (-1168))) (-15 -2549 ((-3 (-384) "failed") (-1168))))
-((-2558 (((-112) $ $) 7)) (-3619 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 16) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 14)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 17) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2520 (((-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)))) (-3564 (((-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)) (-2082 (((-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)))) (-3732 (((-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 -3564 ((-384) |#1|)) (-15 -3564 ((-384) |#1| (-928))) (-15 -3732 ((-171 (-384)) |#1|)) (-15 -3732 ((-171 (-384)) |#1| (-928))) (IF (|has| |#1| (-174)) (PROGN (-15 -3732 ((-171 (-384)) (-171 |#1|))) (-15 -3732 ((-171 (-384)) (-171 |#1|) (-928))) (-15 -3732 ((-171 (-384)) (-959 (-171 |#1|)))) (-15 -3732 ((-171 (-384)) (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -3564 ((-384) (-959 |#1|))) (-15 -3564 ((-384) (-959 |#1|) (-928))) (-15 -3732 ((-171 (-384)) (-959 |#1|))) (-15 -3732 ((-171 (-384)) (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -3564 ((-384) (-413 (-959 |#1|)))) (-15 -3564 ((-384) (-413 (-959 |#1|)) (-928))) (-15 -3732 ((-171 (-384)) (-413 (-959 |#1|)))) (-15 -3732 ((-171 (-384)) (-413 (-959 |#1|)) (-928))) (-15 -3732 ((-171 (-384)) (-413 (-959 (-171 |#1|))))) (-15 -3732 ((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -3564 ((-384) (-320 |#1|))) (-15 -3564 ((-384) (-320 |#1|) (-928))) (-15 -3732 ((-171 (-384)) (-320 |#1|))) (-15 -3732 ((-171 (-384)) (-320 |#1|) (-928))) (-15 -3732 ((-171 (-384)) (-320 (-171 |#1|)))) (-15 -3732 ((-171 (-384)) (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-15 -2082 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -2520 ((-3 (-384) "failed") (-959 |#1|))) (-15 -2520 ((-3 (-384) "failed") (-959 |#1|) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-959 |#1|))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -2520 ((-3 (-384) "failed") (-413 (-959 |#1|)))) (-15 -2520 ((-3 (-384) "failed") (-413 (-959 |#1|)) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -2520 ((-3 (-384) "failed") (-320 |#1|))) (-15 -2520 ((-3 (-384) "failed") (-320 |#1|) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-320 |#1|))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-320 |#1|) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|)) (-620 (-384))) (T -791))
+((-2082 (*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)))) (-2082 (*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)))) (-2082 (*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)))) (-2082 (*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)))) (-2520 (*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)))) (-2520 (*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)))) (-2082 (*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)))) (-2082 (*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)))) (-2082 (*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)))) (-2082 (*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)))) (-2520 (*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)))) (-2520 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-2082 (*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)))) (-2082 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-2520 (*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)))) (-2520 (*1 *2 *3) (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-2082 (*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)))) (-2082 (*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)))) (-3732 (*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)))) (-3732 (*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)))) (-3732 (*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)))) (-3732 (*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)))) (-3564 (*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)))) (-3564 (*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)))) (-3732 (*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)))) (-3732 (*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)))) (-3732 (*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)))) (-3732 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3564 (*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)))) (-3564 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3732 (*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)))) (-3732 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3564 (*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)))) (-3564 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4)))) (-3732 (*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)))) (-3732 (*1 *2 *3) (-12 (-5 *3 (-959 (-171 *4))) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3732 (*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)))) (-3732 (*1 *2 *3) (-12 (-5 *3 (-171 *4)) (-4 *4 (-174)) (-4 *4 (-620 (-384))) (-5 *2 (-171 (-384))) (-5 *1 (-791 *4)))) (-3732 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384))))) (-3732 (*1 *2 *3) (-12 (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384))))) (-3564 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2)))) (-3564 (*1 *2 *3) (-12 (-5 *2 (-384)) (-5 *1 (-791 *3)) (-4 *3 (-620 *2)))))
+(-10 -7 (-15 -3564 ((-384) |#1|)) (-15 -3564 ((-384) |#1| (-928))) (-15 -3732 ((-171 (-384)) |#1|)) (-15 -3732 ((-171 (-384)) |#1| (-928))) (IF (|has| |#1| (-174)) (PROGN (-15 -3732 ((-171 (-384)) (-171 |#1|))) (-15 -3732 ((-171 (-384)) (-171 |#1|) (-928))) (-15 -3732 ((-171 (-384)) (-959 (-171 |#1|)))) (-15 -3732 ((-171 (-384)) (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -3564 ((-384) (-959 |#1|))) (-15 -3564 ((-384) (-959 |#1|) (-928))) (-15 -3732 ((-171 (-384)) (-959 |#1|))) (-15 -3732 ((-171 (-384)) (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -3564 ((-384) (-413 (-959 |#1|)))) (-15 -3564 ((-384) (-413 (-959 |#1|)) (-928))) (-15 -3732 ((-171 (-384)) (-413 (-959 |#1|)))) (-15 -3732 ((-171 (-384)) (-413 (-959 |#1|)) (-928))) (-15 -3732 ((-171 (-384)) (-413 (-959 (-171 |#1|))))) (-15 -3732 ((-171 (-384)) (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -3564 ((-384) (-320 |#1|))) (-15 -3564 ((-384) (-320 |#1|) (-928))) (-15 -3732 ((-171 (-384)) (-320 |#1|))) (-15 -3732 ((-171 (-384)) (-320 |#1|) (-928))) (-15 -3732 ((-171 (-384)) (-320 (-171 |#1|)))) (-15 -3732 ((-171 (-384)) (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|) (IF (|has| |#1| (-174)) (PROGN (-15 -2082 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-959 (-171 |#1|)) (-928)))) |%noBranch|) (IF (|has| |#1| (-1058)) (PROGN (-15 -2520 ((-3 (-384) "failed") (-959 |#1|))) (-15 -2520 ((-3 (-384) "failed") (-959 |#1|) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-959 |#1|))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-959 |#1|) (-928)))) |%noBranch|) (IF (|has| |#1| (-562)) (PROGN (-15 -2520 ((-3 (-384) "failed") (-413 (-959 |#1|)))) (-15 -2520 ((-3 (-384) "failed") (-413 (-959 |#1|)) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-413 (-959 |#1|)) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-413 (-959 (-171 |#1|))) (-928))) (IF (|has| |#1| (-856)) (PROGN (-15 -2520 ((-3 (-384) "failed") (-320 |#1|))) (-15 -2520 ((-3 (-384) "failed") (-320 |#1|) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-320 |#1|))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-320 |#1|) (-928))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)))) (-15 -2082 ((-3 (-171 (-384)) "failed") (-320 (-171 |#1|)) (-928)))) |%noBranch|)) |%noBranch|))
+((-2482 (((-928) (-1168)) 89)) (-1919 (((-3 (-384) "failed") (-1168)) 36)) (-1441 (((-384) (-1168)) 34)) (-2729 (((-928) (-1168)) 63)) (-3594 (((-1168) (-928)) 73)) (-1937 (((-1168) (-928)) 62)))
+(((-792) (-10 -7 (-15 -1937 ((-1168) (-928))) (-15 -2729 ((-928) (-1168))) (-15 -3594 ((-1168) (-928))) (-15 -2482 ((-928) (-1168))) (-15 -1441 ((-384) (-1168))) (-15 -1919 ((-3 (-384) "failed") (-1168))))) (T -792))
+((-1919 (*1 *2 *3) (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))) (-1441 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))) (-2482 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))) (-3594 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))) (-2729 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))) (-1937 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
+(-10 -7 (-15 -1937 ((-1168) (-928))) (-15 -2729 ((-928) (-1168))) (-15 -3594 ((-1168) (-928))) (-15 -2482 ((-928) (-1168))) (-15 -1441 ((-384) (-1168))) (-15 -1919 ((-3 (-384) "failed") (-1168))))
+((-2560 (((-112) $ $) 7)) (-1347 (((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 16) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)) 14)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 17) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-793) (-141)) (T -793))
-((-3039 (*1 *2 *3 *4) (-12 (-4 *1 (-793)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044)))))) (-3619 (*1 *2 *3 *2) (-12 (-4 *1 (-793)) (-5 *2 (-1044)) (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-3039 (*1 *2 *3 *4) (-12 (-4 *1 (-793)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044)))))) (-3619 (*1 *2 *3 *2) (-12 (-4 *1 (-793)) (-5 *2 (-1044)) (-5 *3 (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))))
-(-13 (-1109) (-10 -7 (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3619 ((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3619 ((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)))))
+((-3988 (*1 *2 *3 *4) (-12 (-4 *1 (-793)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044)))))) (-1347 (*1 *2 *3 *2) (-12 (-4 *1 (-793)) (-5 *2 (-1044)) (-5 *3 (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))) (-3988 (*1 *2 *3 *4) (-12 (-4 *1 (-793)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (-5 *2 (-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044)))))) (-1347 (*1 *2 *3 *2) (-12 (-4 *1 (-793)) (-5 *2 (-1044)) (-5 *3 (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))))
+(-13 (-1109) (-10 -7 (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1347 ((-1044) (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227))) (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)) (|:| |extra| (-1044))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -1347 ((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) (-1044)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-4381 (((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2158 (-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))) 53) (((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2158 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 50)) (-3070 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 59)) (-1959 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 48)) (-4058 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384))) 61) (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 60)))
-(((-794) (-10 -7 (-15 -4058 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -4058 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)))) (-15 -1959 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -4381 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2158 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -4381 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2158 (-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 -3070 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))))) (T -794))
-((-3070 (*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)))) (-4381 (*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)) (|:| -2158 (-384)))) (-5 *7 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-4381 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-570)) (-5 *6 (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2158 (-384)))) (-5 *7 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-1959 (*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)))) (-4058 (*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)))) (-4058 (*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 -4058 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -4058 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)))) (-15 -1959 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -4381 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2158 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -4381 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2158 (-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 -3070 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))))
-((-4194 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 64)) (-2420 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 40)) (-4180 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 63)) (-1693 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 38)) (-1395 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 62)) (-2449 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 24)) (-1332 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 41)) (-1573 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 39)) (-1718 (((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 37)))
-(((-795) (-10 -7 (-15 -1718 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1573 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1332 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2449 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1693 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2420 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1395 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -4180 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -4194 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))))) (T -795))
-((-4194 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-4180 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1395 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-2420 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1693 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-2449 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1332 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1573 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1718 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))))
-(-10 -7 (-15 -1718 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1573 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1332 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2449 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1693 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2420 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1395 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -4180 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -4194 ((-2 (|:| -2308 (-384)) (|:| -3670 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))))
-((-2356 (((-1222 |#1|) |#1| (-227) (-570)) 69)))
-(((-796 |#1|) (-10 -7 (-15 -2356 ((-1222 |#1|) |#1| (-227) (-570)))) (-983)) (T -796))
-((-2356 (*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 -2356 ((-1222 |#1|) |#1| (-227) (-570))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 25)) (-3990 (((-3 $ "failed") $ $) 27)) (-1705 (($) 24 T CONST)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 23 T CONST)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (-3111 (($ $ $) 31) (($ $) 30)) (-3101 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26) (($ (-570) $) 29)))
+((-3291 (((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2159 (-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))) 53) (((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2159 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 50)) (-4273 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 59)) (-1842 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 48)) (-3268 (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384))) 61) (((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384))) 60)))
+(((-794) (-10 -7 (-15 -3268 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -3268 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)))) (-15 -1842 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -3291 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2159 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -3291 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2159 (-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 -4273 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))))) (T -794))
+((-4273 (*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)))) (-3291 (*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)) (|:| -2159 (-384)))) (-5 *7 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-3291 (*1 *2 *3 *4 *5 *6 *5 *3 *7) (-12 (-5 *4 (-570)) (-5 *6 (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2159 (-384)))) (-5 *7 (-1 (-1282) (-1277 *5) (-1277 *5) (-384))) (-5 *3 (-1277 (-384))) (-5 *5 (-384)) (-5 *2 (-1282)) (-5 *1 (-794)))) (-1842 (*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)))) (-3268 (*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)))) (-3268 (*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 -3268 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -3268 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)) (-1277 (-384)))) (-15 -1842 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -3291 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2159 (-384))) (-384) (-1277 (-384)) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))) (-15 -3291 ((-1282) (-1277 (-384)) (-570) (-384) (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2159 (-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 -4273 ((-1282) (-1277 (-384)) (-570) (-384) (-384) (-570) (-1 (-1282) (-1277 (-384)) (-1277 (-384)) (-384)))))
+((-2158 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 64)) (-3044 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 40)) (-3188 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 63)) (-4237 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 38)) (-1497 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 62)) (-2156 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570)) 24)) (-1860 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 41)) (-2488 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 39)) (-3292 (((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570)) 37)))
+(((-795) (-10 -7 (-15 -3292 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2488 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1860 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2156 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -4237 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3044 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1497 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3188 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2158 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))))) (T -795))
+((-2158 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-3188 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1497 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-3044 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-4237 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-2156 (*1 *2 *3 *4 *4 *4 *4 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-1860 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-2488 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))) (-3292 (*1 *2 *3 *4 *4 *4 *4 *5 *5 *5) (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384)) (-5 *2 (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570)) (|:| |success| (-112)))) (-5 *1 (-795)) (-5 *5 (-570)))))
+(-10 -7 (-15 -3292 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2488 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -1860 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570) (-570))) (-15 -2156 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -4237 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3044 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -1497 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -3188 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))) (-15 -2158 ((-2 (|:| -2308 (-384)) (|:| -3673 (-384)) (|:| |totalpts| (-570)) (|:| |success| (-112))) (-1 (-384) (-384)) (-384) (-384) (-384) (-384) (-570) (-570))))
+((-3596 (((-1222 |#1|) |#1| (-227) (-570)) 69)))
+(((-796 |#1|) (-10 -7 (-15 -3596 ((-1222 |#1|) |#1| (-227) (-570)))) (-983)) (T -796))
+((-3596 (*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 -3596 ((-1222 |#1|) |#1| (-227) (-570))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 25)) (-1966 (((-3 $ "failed") $ $) 27)) (-3195 (($) 24 T CONST)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 23 T CONST)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)) (-3114 (($ $ $) 31) (($ $) 30)) (-3104 (($ $ $) 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))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 25)) (-1705 (($) 24 T CONST)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 23 T CONST)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (-3101 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 25)) (-3195 (($) 24 T CONST)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 23 T CONST)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)) (-3104 (($ $ $) 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))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 25)) (-3744 (($ $ $) 28)) (-3990 (((-3 $ "failed") $ $) 27)) (-1705 (($) 24 T CONST)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 23 T CONST)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (-3101 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 25)) (-3271 (($ $ $) 28)) (-1966 (((-3 $ "failed") $ $) 27)) (-3195 (($) 24 T CONST)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 23 T CONST)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)) (-3104 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
(((-799) (-141)) (T -799))
-((-3744 (*1 *1 *1 *1) (-4 *1 (-799))))
-(-13 (-801) (-10 -8 (-15 -3744 ($ $ $))))
+((-3271 (*1 *1 *1 *1) (-4 *1 (-799))))
+(-13 (-801) (-10 -8 (-15 -3271 ($ $ $))))
(((-23) . T) ((-25) . T) ((-102) . T) ((-132) . T) ((-619 (-868)) . T) ((-798) . T) ((-800) . T) ((-801) . T) ((-856) . T) ((-1109) . T))
-((-2558 (((-112) $ $) 7)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (-3101 (($ $ $) 21)) (* (($ (-928) $) 22)))
+((-2560 (((-112) $ $) 7)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)) (-3104 (($ $ $) 21)) (* (($ (-928) $) 22)))
(((-800) (-141)) (T -800))
NIL
(-13 (-856) (-25))
(((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-856) . T) ((-1109) . T))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 25)) (-3990 (((-3 $ "failed") $ $) 27)) (-1705 (($) 24 T CONST)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 23 T CONST)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (-3101 (($ $ $) 21)) (* (($ (-928) $) 22) (($ (-777) $) 26)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 25)) (-1966 (((-3 $ "failed") $ $) 27)) (-3195 (($) 24 T CONST)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 23 T CONST)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)) (-3104 (($ $ $) 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))
-((-3467 (((-112) $) 42)) (-4380 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-3216 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 43)) (-2805 (((-3 (-413 (-570)) "failed") $) 78)) (-3242 (((-112) $) 72)) (-2068 (((-413 (-570)) $) 76)) (-2959 ((|#2| $) 26)) (-1356 (($ (-1 |#2| |#2|) $) 23)) (-1877 (($ $) 58)) (-1425 (((-542) $) 67)) (-2020 (($ $) 21)) (-3799 (((-868) $) 53) (($ (-570)) 40) (($ |#2|) 38) (($ (-413 (-570))) NIL)) (-3499 (((-777)) 10)) (-2622 ((|#2| $) 71)) (-3022 (((-112) $ $) 30)) (-3042 (((-112) $ $) 69)) (-3111 (($ $) 32) (($ $ $) NIL)) (-3101 (($ $ $) 31)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 36) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 33)))
-(((-802 |#1| |#2|) (-10 -8 (-15 -3042 ((-112) |#1| |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -1877 (|#1| |#1|)) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -2622 (|#2| |#1|)) (-15 -2959 (|#2| |#1|)) (-15 -2020 (|#1| |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -3467 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3101 (|#1| |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|))) (-803 |#2|) (-174)) (T -802))
-((-3499 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-802 *3 *4)) (-4 *3 (-803 *4)))))
-(-10 -8 (-15 -3042 ((-112) |#1| |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -1877 (|#1| |#1|)) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -2622 (|#2| |#1|)) (-15 -2959 (|#2| |#1|)) (-15 -2020 (|#1| |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -3467 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3101 (|#1| |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-3510 (((-777)) 58 (|has| |#1| (-373)))) (-1705 (($) 18 T CONST)) (-4380 (((-3 (-570) "failed") $) 100 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 97 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 94)) (-3216 (((-570) $) 99 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 96 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 95)) (-2875 (((-3 $ "failed") $) 37)) (-3823 ((|#1| $) 84)) (-2805 (((-3 (-413 (-570)) "failed") $) 71 (|has| |#1| (-551)))) (-3242 (((-112) $) 73 (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) 72 (|has| |#1| (-551)))) (-3446 (($) 61 (|has| |#1| (-373)))) (-4346 (((-112) $) 35)) (-4158 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 75)) (-2959 ((|#1| $) 76)) (-3466 (($ $ $) 67 (|has| |#1| (-856)))) (-2800 (($ $ $) 66 (|has| |#1| (-856)))) (-1356 (($ (-1 |#1| |#1|) $) 86)) (-1884 (((-928) $) 60 (|has| |#1| (-373)))) (-1988 (((-1168) $) 10)) (-1877 (($ $) 70 (|has| |#1| (-368)))) (-2268 (($ (-928)) 59 (|has| |#1| (-373)))) (-1667 ((|#1| $) 81)) (-3226 ((|#1| $) 82)) (-1512 ((|#1| $) 83)) (-1605 ((|#1| $) 77)) (-3105 ((|#1| $) 78)) (-2452 ((|#1| $) 79)) (-4012 ((|#1| $) 80)) (-3577 (((-1129) $) 11)) (-1770 (($ $ (-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|)))) (-1941 (($ $ |#1|) 93 (|has| |#1| (-290 |#1| |#1|)))) (-1425 (((-542) $) 68 (|has| |#1| (-620 (-542))))) (-2020 (($ $) 85)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 98 (|has| |#1| (-1047 (-413 (-570)))))) (-3532 (((-3 $ "failed") $) 69 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2622 ((|#1| $) 74 (|has| |#1| (-1069)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3072 (((-112) $ $) 64 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 63 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 65 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 62 (|has| |#1| (-856)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
+((-3721 (((-112) $) 42)) (-4383 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 45)) (-3220 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 43)) (-2502 (((-3 (-413 (-570)) "failed") $) 78)) (-2313 (((-112) $) 72)) (-3645 (((-413 (-570)) $) 76)) (-4399 ((|#2| $) 26)) (-1357 (($ (-1 |#2| |#2|) $) 23)) (-1878 (($ $) 58)) (-1426 (((-542) $) 67)) (-4307 (($ $) 21)) (-3802 (((-868) $) 53) (($ (-570)) 40) (($ |#2|) 38) (($ (-413 (-570))) NIL)) (-2851 (((-777)) 10)) (-3231 ((|#2| $) 71)) (-3025 (((-112) $ $) 30)) (-3045 (((-112) $ $) 69)) (-3114 (($ $) 32) (($ $ $) NIL)) (-3104 (($ $ $) 31)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 36) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 33)))
+(((-802 |#1| |#2|) (-10 -8 (-15 -3045 ((-112) |#1| |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -1878 (|#1| |#1|)) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -3231 (|#2| |#1|)) (-15 -4399 (|#2| |#1|)) (-15 -4307 (|#1| |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -3721 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3104 (|#1| |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|))) (-803 |#2|) (-174)) (T -802))
+((-2851 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-802 *3 *4)) (-4 *3 (-803 *4)))))
+(-10 -8 (-15 -3045 ((-112) |#1| |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -1878 (|#1| |#1|)) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -3231 (|#2| |#1|)) (-15 -4399 (|#2| |#1|)) (-15 -4307 (|#1| |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -3721 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3104 (|#1| |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3513 (((-777)) 58 (|has| |#1| (-373)))) (-3195 (($) 18 T CONST)) (-4383 (((-3 (-570) "failed") $) 100 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 97 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 94)) (-3220 (((-570) $) 99 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 96 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 95)) (-1929 (((-3 $ "failed") $) 37)) (-3826 ((|#1| $) 84)) (-2502 (((-3 (-413 (-570)) "failed") $) 71 (|has| |#1| (-551)))) (-2313 (((-112) $) 73 (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) 72 (|has| |#1| (-551)))) (-3449 (($) 61 (|has| |#1| (-373)))) (-4139 (((-112) $) 35)) (-3003 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 75)) (-4399 ((|#1| $) 76)) (-3469 (($ $ $) 67 (|has| |#1| (-856)))) (-2472 (($ $ $) 66 (|has| |#1| (-856)))) (-1357 (($ (-1 |#1| |#1|) $) 86)) (-2400 (((-928) $) 60 (|has| |#1| (-373)))) (-3989 (((-1168) $) 10)) (-1878 (($ $) 70 (|has| |#1| (-368)))) (-2267 (($ (-928)) 59 (|has| |#1| (-373)))) (-4002 ((|#1| $) 81)) (-2140 ((|#1| $) 82)) (-1886 ((|#1| $) 83)) (-1533 ((|#1| $) 77)) (-3433 ((|#1| $) 78)) (-2189 ((|#1| $) 79)) (-4005 ((|#1| $) 80)) (-3580 (((-1129) $) 11)) (-1771 (($ $ (-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|)))) (-1942 (($ $ |#1|) 93 (|has| |#1| (-290 |#1| |#1|)))) (-1426 (((-542) $) 68 (|has| |#1| (-620 (-542))))) (-4307 (($ $) 85)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 98 (|has| |#1| (-1047 (-413 (-570)))))) (-3132 (((-3 $ "failed") $) 69 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3231 ((|#1| $) 74 (|has| |#1| (-1069)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3075 (((-112) $ $) 64 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 63 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 65 (|has| |#1| (-856)))) (-3045 (((-112) $ $) 62 (|has| |#1| (-856)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 46) (($ |#1| $) 45)))
(((-803 |#1|) (-141) (-174)) (T -803))
-((-2020 (*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3823 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1512 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3226 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1667 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-4012 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2452 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3105 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1605 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2959 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-4158 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2622 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-3242 (*1 *2 *1) (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-2068 (*1 *2 *1) (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2805 (*1 *2 *1) (|partial| -12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-1877 (*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 -2020 ($ $)) (-15 -3823 (|t#1| $)) (-15 -1512 (|t#1| $)) (-15 -3226 (|t#1| $)) (-15 -1667 (|t#1| $)) (-15 -4012 (|t#1| $)) (-15 -2452 (|t#1| $)) (-15 -3105 (|t#1| $)) (-15 -1605 (|t#1| $)) (-15 -2959 (|t#1| $)) (-15 -4158 ($ |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 -2622 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -1877 ($ $)) |%noBranch|)))
+((-4307 (*1 *1 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3826 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1886 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2140 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-4002 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-4005 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-2189 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3433 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-1533 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-4399 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3003 (*1 *1 *2 *2 *2 *2 *2 *2 *2 *2) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))) (-3231 (*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-2313 (*1 *2 *1) (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-3645 (*1 *2 *1) (-12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2502 (*1 *2 *1) (|partial| -12 (-4 *1 (-803 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-1878 (*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 -4307 ($ $)) (-15 -3826 (|t#1| $)) (-15 -1886 (|t#1| $)) (-15 -2140 (|t#1| $)) (-15 -4002 (|t#1| $)) (-15 -4005 (|t#1| $)) (-15 -2189 (|t#1| $)) (-15 -3433 (|t#1| $)) (-15 -1533 (|t#1| $)) (-15 -4399 (|t#1| $)) (-15 -3003 ($ |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 -3231 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-3 (-413 (-570)) "failed") $))) |%noBranch|) (IF (|has| |t#1| (-368)) (-15 -1878 ($ $)) |%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))
-((-1356 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
-(((-804 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#3| (-1 |#4| |#2|) |#1|))) (-803 |#2|) (-174) (-803 |#4|) (-174)) (T -804))
-((-1356 (*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 -1356 (|#3| (-1 |#4| |#2|) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3510 (((-777)) NIL (|has| |#1| (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL) (((-3 (-1008 |#1|) "failed") $) 35) (((-3 (-570) "failed") $) NIL (-2892 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570))))) (((-3 (-413 (-570)) "failed") $) NIL (-2892 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3216 ((|#1| $) NIL) (((-1008 |#1|) $) 33) (((-570) $) NIL (-2892 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570))))) (((-413 (-570)) $) NIL (-2892 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2875 (((-3 $ "failed") $) NIL)) (-3823 ((|#1| $) 16)) (-2805 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-3242 (((-112) $) NIL (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-3446 (($) NIL (|has| |#1| (-373)))) (-4346 (((-112) $) NIL)) (-4158 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-1008 |#1|) (-1008 |#1|)) 29)) (-2959 ((|#1| $) NIL)) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1884 (((-928) $) NIL (|has| |#1| (-373)))) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2268 (($ (-928)) NIL (|has| |#1| (-373)))) (-1667 ((|#1| $) 22)) (-3226 ((|#1| $) 20)) (-1512 ((|#1| $) 18)) (-1605 ((|#1| $) 26)) (-3105 ((|#1| $) 25)) (-2452 ((|#1| $) 24)) (-4012 ((|#1| $) 23)) (-3577 (((-1129) $) NIL)) (-1770 (($ $ (-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|)))) (-1941 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-2020 (($ $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1008 |#1|)) 30) (($ (-413 (-570))) NIL (-2892 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2622 ((|#1| $) NIL (|has| |#1| (-1069)))) (-1861 (($) 8 T CONST)) (-1875 (($) 12 T CONST)) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -4158 ($ (-1008 |#1|) (-1008 |#1|))))) (-174)) (T -805))
-((-4158 (*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 -4158 ($ (-1008 |#1|) (-1008 |#1|)))))
-((-2558 (((-112) $ $) 7)) (-3039 (((-2 (|:| -3039 (-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)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-2078 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 14)) (-3022 (((-112) $ $) 6)))
+((-1357 ((|#3| (-1 |#4| |#2|) |#1|) 20)))
+(((-804 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#3| (-1 |#4| |#2|) |#1|))) (-803 |#2|) (-174) (-803 |#4|) (-174)) (T -804))
+((-1357 (*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 -1357 (|#3| (-1 |#4| |#2|) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3513 (((-777)) NIL (|has| |#1| (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL) (((-3 (-1008 |#1|) "failed") $) 35) (((-3 (-570) "failed") $) NIL (-2895 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570))))) (((-3 (-413 (-570)) "failed") $) NIL (-2895 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3220 ((|#1| $) NIL) (((-1008 |#1|) $) 33) (((-570) $) NIL (-2895 (|has| (-1008 |#1|) (-1047 (-570))) (|has| |#1| (-1047 (-570))))) (((-413 (-570)) $) NIL (-2895 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-1929 (((-3 $ "failed") $) NIL)) (-3826 ((|#1| $) 16)) (-2502 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-2313 (((-112) $) NIL (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-3449 (($) NIL (|has| |#1| (-373)))) (-4139 (((-112) $) NIL)) (-3003 (($ |#1| |#1| |#1| |#1| |#1| |#1| |#1| |#1|) 28) (($ (-1008 |#1|) (-1008 |#1|)) 29)) (-4399 ((|#1| $) NIL)) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2400 (((-928) $) NIL (|has| |#1| (-373)))) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2267 (($ (-928)) NIL (|has| |#1| (-373)))) (-4002 ((|#1| $) 22)) (-2140 ((|#1| $) 20)) (-1886 ((|#1| $) 18)) (-1533 ((|#1| $) 26)) (-3433 ((|#1| $) 25)) (-2189 ((|#1| $) 24)) (-4005 ((|#1| $) 23)) (-3580 (((-1129) $) NIL)) (-1771 (($ $ (-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|)))) (-1942 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-4307 (($ $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1008 |#1|)) 30) (($ (-413 (-570))) NIL (-2895 (|has| (-1008 |#1|) (-1047 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3231 ((|#1| $) NIL (|has| |#1| (-1069)))) (-1862 (($) 8 T CONST)) (-1876 (($) 12 T CONST)) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3003 ($ (-1008 |#1|) (-1008 |#1|))))) (-174)) (T -805))
+((-3003 (*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 -3003 ($ (-1008 |#1|) (-1008 |#1|)))))
+((-2560 (((-112) $ $) 7)) (-3988 (((-2 (|:| -3988 (-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)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3743 (((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) 14)) (-3025 (((-112) $ $) 6)))
(((-806) (-141)) (T -806))
-((-3039 (*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 (|:| -3039 (-384)) (|:| |explanations| (-1168)))))) (-2078 (*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 -3039 ((-2 (|:| -3039 (-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 -2078 ((-1044) (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))))))
+((-3988 (*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 (|:| -3988 (-384)) (|:| |explanations| (-1168)))))) (-3743 (*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 -3988 ((-2 (|:| -3988 (-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 -3743 ((-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))
-((-2313 (((-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) |#3| |#2| (-1186)) 19)))
-(((-807 |#1| |#2| |#3|) (-10 -7 (-15 -2313 ((-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) |#3| |#2| (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966)) (-662 |#2|)) (T -807))
-((-2313 (*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) (|:| -1972 (-650 *4)))) (-5 *1 (-807 *6 *4 *3)) (-4 *3 (-662 *4)))))
-(-10 -7 (-15 -2313 ((-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) |#3| |#2| (-1186))))
-((-3476 (((-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|) (|:| -1972 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186)) 18) (((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -1972 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186)) 24) (((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -1972 (-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|)) (|:| -1972 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186)) 35)))
-(((-808 |#1| |#2|) (-10 -7 (-15 -3476 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -1972 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186))) (-15 -3476 ((-3 (-650 (-1277 |#2|)) "failed") (-695 |#2|) (-1186))) (-15 -3476 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -1972 (-650 (-1277 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186))) (-15 -3476 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -1972 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186))) (-15 -3476 ((-3 (-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186))) (-15 -3476 ((-3 (-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186))) (-15 -3476 ((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -3476 ((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -808))
-((-3476 (*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)))) (-3476 (*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))))) (-3476 (*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) (|:| -1972 (-650 *3))) *3 "failed")) (-5 *1 (-808 *6 *3)) (-4 *3 (-13 (-29 *6) (-1212) (-966))))) (-3476 (*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) (|:| -1972 (-650 *7))) *7 "failed")) (-5 *1 (-808 *6 *7)))) (-3476 (*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)) (|:| -1972 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)))) (-3476 (*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)) (|:| -1972 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)))) (-3476 (*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)))) (-3476 (*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)) (|:| -1972 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)) (-5 *4 (-1277 *7)))))
-(-10 -7 (-15 -3476 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -1972 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186))) (-15 -3476 ((-3 (-650 (-1277 |#2|)) "failed") (-695 |#2|) (-1186))) (-15 -3476 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -1972 (-650 (-1277 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186))) (-15 -3476 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -1972 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186))) (-15 -3476 ((-3 (-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186))) (-15 -3476 ((-3 (-2 (|:| |particular| |#2|) (|:| -1972 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186))) (-15 -3476 ((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -3476 ((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|))))
-((-2510 (($) 9)) (-2360 (((-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)) (-2911 (((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $) 27)) (-1385 (($ (-2 (|:| -2106 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))) 24)) (-2596 (($ (-650 (-2 (|:| -2106 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) 22)) (-2444 (((-1282)) 11)))
-(((-809) (-10 -8 (-15 -2510 ($)) (-15 -2444 ((-1282))) (-15 -2911 ((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -2596 ($ (-650 (-2 (|:| -2106 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))))) (-15 -1385 ($ (-2 (|:| -2106 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-15 -2360 ((-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))
-((-2360 (*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)))) (-1385 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2106 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))) (-5 *1 (-809)))) (-2596 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2106 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-5 *1 (-809)))) (-2911 (*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)))) (-2444 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-809)))) (-2510 (*1 *1) (-5 *1 (-809))))
-(-10 -8 (-15 -2510 ($)) (-15 -2444 ((-1282))) (-15 -2911 ((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -2596 ($ (-650 (-2 (|:| -2106 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))))) (-15 -1385 ($ (-2 (|:| -2106 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-15 -2360 ((-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))))))
-((-3807 ((|#2| |#2| (-1186)) 17)) (-2857 ((|#2| |#2| (-1186)) 56)) (-2832 (((-1 |#2| |#2|) (-1186)) 11)))
-(((-810 |#1| |#2|) (-10 -7 (-15 -3807 (|#2| |#2| (-1186))) (-15 -2857 (|#2| |#2| (-1186))) (-15 -2832 ((-1 |#2| |#2|) (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -810))
-((-2832 (*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))))) (-2857 (*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))))) (-3807 (*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 -3807 (|#2| |#2| (-1186))) (-15 -2857 (|#2| |#2| (-1186))) (-15 -2832 ((-1 |#2| |#2|) (-1186))))
-((-3476 (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384)) 128) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384)) 129) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384)) 131) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384)) 133) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384)) 134) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384))) 136) (((-1044) (-814) (-1072)) 120) (((-1044) (-814)) 121)) (-3039 (((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072)) 80) (((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814)) 82)))
-(((-811) (-10 -7 (-15 -3476 ((-1044) (-814))) (-15 -3476 ((-1044) (-814) (-1072))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072))))) (T -811))
-((-3039 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-811)))) (-3039 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-811)))) (-3476 (*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)))) (-3476 (*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)))) (-3476 (*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)))) (-3476 (*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)))) (-3476 (*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)))) (-3476 (*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)))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-3476 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1044)) (-5 *1 (-811)))))
-(-10 -7 (-15 -3476 ((-1044) (-814))) (-15 -3476 ((-1044) (-814) (-1072))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384))) (-15 -3476 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072))))
-((-3529 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1972 (-650 |#4|))) (-659 |#4|) |#4|) 33)))
-(((-812 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3529 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1972 (-650 |#4|))) (-659 |#4|) |#4|))) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -812))
-((-3529 (*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")) (|:| -1972 (-650 *4)))) (-5 *1 (-812 *5 *6 *7 *4)))))
-(-10 -7 (-15 -3529 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -1972 (-650 |#4|))) (-659 |#4|) |#4|)))
-((-3644 (((-2 (|:| -4305 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|))) 53)) (-3557 (((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#4| |#2|) 62) (((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#4|) 61) (((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#3| |#2|) 20) (((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#3|) 21)) (-2867 ((|#2| |#4| |#1|) 63) ((|#2| |#3| |#1|) 28)) (-4082 ((|#2| |#3| (-650 (-413 |#2|))) 109) (((-3 |#2| "failed") |#3| (-413 |#2|)) 105)))
-(((-813 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4082 ((-3 |#2| "failed") |#3| (-413 |#2|))) (-15 -4082 (|#2| |#3| (-650 (-413 |#2|)))) (-15 -3557 ((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#3|)) (-15 -3557 ((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#3| |#2|)) (-15 -2867 (|#2| |#3| |#1|)) (-15 -3557 ((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#4|)) (-15 -3557 ((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#4| |#2|)) (-15 -2867 (|#2| |#4| |#1|)) (-15 -3644 ((-2 (|:| -4305 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-413 (-570)))) (-1253 |#1|) (-662 |#2|) (-662 (-413 |#2|))) (T -813))
-((-3644 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-2 (|:| -4305 *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))))) (-2867 (*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))))) (-3557 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *4 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2288 *4) (|:| -3530 *4)))) (-5 *1 (-813 *5 *4 *6 *3)) (-4 *6 (-662 *4)) (-4 *3 (-662 (-413 *4))))) (-3557 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2288 *5) (|:| -3530 *5)))) (-5 *1 (-813 *4 *5 *6 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 (-413 *5))))) (-2867 (*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))))) (-3557 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *4 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2288 *4) (|:| -3530 *4)))) (-5 *1 (-813 *5 *4 *3 *6)) (-4 *3 (-662 *4)) (-4 *6 (-662 (-413 *4))))) (-3557 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2288 *5) (|:| -3530 *5)))) (-5 *1 (-813 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-662 (-413 *5))))) (-4082 (*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))))) (-4082 (*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 -4082 ((-3 |#2| "failed") |#3| (-413 |#2|))) (-15 -4082 (|#2| |#3| (-650 (-413 |#2|)))) (-15 -3557 ((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#3|)) (-15 -3557 ((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#3| |#2|)) (-15 -2867 (|#2| |#3| |#1|)) (-15 -3557 ((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#4|)) (-15 -3557 ((-650 (-2 (|:| -2288 |#2|) (|:| -3530 |#2|))) |#4| |#2|)) (-15 -2867 (|#2| |#4| |#1|)) (-15 -3644 ((-2 (|:| -4305 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|)))))
-((-2558 (((-112) $ $) NIL)) (-3216 (((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $) 13)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-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)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-814) (-13 (-1109) (-10 -8 (-15 -3799 ($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3216 ((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $))))) (T -814))
-((-3799 (*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)))) (-3216 (*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 -3799 ($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3216 ((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $))))
-((-1568 (((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4305 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|)) 154)) (-3024 (((-650 (-2 (|:| |poly| |#2|) (|:| -4305 |#3|))) |#3| (-1 (-650 |#1|) |#2|)) 52)) (-4172 (((-650 (-2 (|:| |deg| (-777)) (|:| -4305 |#2|))) |#3|) 122)) (-1711 ((|#2| |#3|) 42)) (-3195 (((-650 (-2 (|:| -3725 |#1|) (|:| -4305 |#3|))) |#3| (-1 (-650 |#1|) |#2|)) 99)) (-3075 ((|#3| |#3| (-413 |#2|)) 72) ((|#3| |#3| |#2|) 96)))
-(((-815 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1711 (|#2| |#3|)) (-15 -4172 ((-650 (-2 (|:| |deg| (-777)) (|:| -4305 |#2|))) |#3|)) (-15 -3195 ((-650 (-2 (|:| -3725 |#1|) (|:| -4305 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -3024 ((-650 (-2 (|:| |poly| |#2|) (|:| -4305 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -1568 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4305 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -3075 (|#3| |#3| |#2|)) (-15 -3075 (|#3| |#3| (-413 |#2|)))) (-13 (-368) (-148) (-1047 (-413 (-570)))) (-1253 |#1|) (-662 |#2|) (-662 (-413 |#2|))) (T -815))
-((-3075 (*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)))) (-3075 (*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))))) (-1568 (*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)) (|:| -4305 *3)))) (-5 *1 (-815 *6 *7 *3 *8)) (-4 *3 (-662 *7)) (-4 *8 (-662 (-413 *7))))) (-3024 (*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) (|:| -4305 *3)))) (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6)) (-4 *7 (-662 (-413 *6))))) (-3195 (*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 (|:| -3725 *5) (|:| -4305 *3)))) (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6)) (-4 *7 (-662 (-413 *6))))) (-4172 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -4305 *5)))) (-5 *1 (-815 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-662 (-413 *5))))) (-1711 (*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 -1711 (|#2| |#3|)) (-15 -4172 ((-650 (-2 (|:| |deg| (-777)) (|:| -4305 |#2|))) |#3|)) (-15 -3195 ((-650 (-2 (|:| -3725 |#1|) (|:| -4305 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -3024 ((-650 (-2 (|:| |poly| |#2|) (|:| -4305 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -1568 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4305 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -3075 (|#3| |#3| |#2|)) (-15 -3075 (|#3| |#3| (-413 |#2|))))
-((-1410 (((-2 (|:| -1972 (-650 (-413 |#2|))) (|:| -2415 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|))) 146) (((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -1972 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|)) 145) (((-2 (|:| -1972 (-650 (-413 |#2|))) (|:| -2415 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|))) 140) (((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -1972 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|)) 138)) (-3488 ((|#2| (-660 |#2| (-413 |#2|))) 87) ((|#2| (-659 (-413 |#2|))) 90)))
-(((-816 |#1| |#2|) (-10 -7 (-15 -1410 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -1972 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|))) (-15 -1410 ((-2 (|:| -1972 (-650 (-413 |#2|))) (|:| -2415 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -1410 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -1972 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|))) (-15 -1410 ((-2 (|:| -1972 (-650 (-413 |#2|))) (|:| -2415 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -3488 (|#2| (-659 (-413 |#2|)))) (-15 -3488 (|#2| (-660 |#2| (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -816))
-((-3488 (*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))))))) (-3488 (*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))))))) (-1410 (*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 (|:| -1972 (-650 (-413 *6))) (|:| -2415 (-695 *5)))) (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))) (-1410 (*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")) (|:| -1972 (-650 *4)))) (-5 *1 (-816 *5 *6)))) (-1410 (*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 (|:| -1972 (-650 (-413 *6))) (|:| -2415 (-695 *5)))) (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))) (-1410 (*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")) (|:| -1972 (-650 *4)))) (-5 *1 (-816 *5 *6)))))
-(-10 -7 (-15 -1410 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -1972 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|))) (-15 -1410 ((-2 (|:| -1972 (-650 (-413 |#2|))) (|:| -2415 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -1410 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -1972 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|))) (-15 -1410 ((-2 (|:| -1972 (-650 (-413 |#2|))) (|:| -2415 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -3488 (|#2| (-659 (-413 |#2|)))) (-15 -3488 (|#2| (-660 |#2| (-413 |#2|)))))
-((-4423 (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|) 49)))
-(((-817 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4423 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|))) (-368) (-662 |#1|) (-1253 |#1|) (-730 |#1| |#3|) (-662 |#4|)) (T -817))
-((-4423 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *7 (-1253 *5)) (-4 *4 (-730 *5 *7)) (-5 *2 (-2 (|:| -2415 (-695 *6)) (|:| |vec| (-1277 *5)))) (-5 *1 (-817 *5 *6 *7 *4 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 *4)))))
-(-10 -7 (-15 -4423 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|)))
-((-1568 (((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4305 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 47)) (-2144 (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 167 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|))) 164 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 168 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-659 (-413 |#2|))) 166 (|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)) (-3024 (((-650 (-2 (|:| |poly| |#2|) (|:| -4305 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 96)))
-(((-818 |#1| |#2|) (-10 -7 (-15 -2144 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -2144 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -2144 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -2144 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -1568 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4305 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -3024 ((-650 (-2 (|:| |poly| |#2|) (|:| -4305 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2144 ((-650 (-413 |#2|)) (-659 (-413 |#2|)))) (-15 -2144 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2144 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)))) (-15 -2144 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)))) |%noBranch|)) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -818))
-((-2144 (*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)))) (-2144 (*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)))) (-2144 (*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)))) (-2144 (*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)))) (-3024 (*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) (|:| -4305 (-660 *6 (-413 *6)))))) (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))) (-1568 (*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)) (|:| -4305 (-660 *6 (-413 *6)))))) (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))) (-2144 (*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)))) (-2144 (*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)))) (-2144 (*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)))) (-2144 (*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 -2144 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -2144 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -2144 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -2144 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -1568 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4305 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -3024 ((-650 (-2 (|:| |poly| |#2|) (|:| -4305 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2144 ((-650 (-413 |#2|)) (-659 (-413 |#2|)))) (-15 -2144 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2144 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)))) (-15 -2144 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)))) |%noBranch|))
-((-3934 (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|)) 110) (((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4305 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|)) 15)) (-1872 (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1972 (-650 |#1|))) |#2| |#1|)) 116)) (-3476 (((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -1972 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1972 (-650 |#1|))) "failed") |#2| |#1|)) 54)))
-(((-819 |#1| |#2|) (-10 -7 (-15 -3934 ((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4305 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|))) (-15 -3934 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|))) (-15 -3476 ((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -1972 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1972 (-650 |#1|))) "failed") |#2| |#1|))) (-15 -1872 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1972 (-650 |#1|))) |#2| |#1|)))) (-368) (-662 |#1|)) (T -819))
-((-1872 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -1972 (-650 *6))) *7 *6)) (-4 *6 (-368)) (-4 *7 (-662 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *6) "failed")) (|:| -1972 (-650 (-1277 *6))))) (-5 *1 (-819 *6 *7)) (-5 *4 (-1277 *6)))) (-3476 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -1972 (-650 *6))) "failed") *7 *6)) (-4 *6 (-368)) (-4 *7 (-662 *6)) (-5 *2 (-2 (|:| |particular| (-1277 *6)) (|:| -1972 (-695 *6)))) (-5 *1 (-819 *6 *7)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *6)))) (-3934 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-662 *5)) (-5 *2 (-2 (|:| -2415 (-695 *6)) (|:| |vec| (-1277 *5)))) (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *5)))) (-3934 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| A (-695 *5)) (|:| |eqs| (-650 (-2 (|:| C (-695 *5)) (|:| |g| (-1277 *5)) (|:| -4305 *6) (|:| |rh| *5)))))) (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *6 (-662 *5)))))
-(-10 -7 (-15 -3934 ((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4305 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|))) (-15 -3934 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|))) (-15 -3476 ((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -1972 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -1972 (-650 |#1|))) "failed") |#2| |#1|))) (-15 -1872 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -1972 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -1972 (-650 |#1|))) |#2| |#1|))))
-((-1849 (((-695 |#1|) (-650 |#1|) (-777)) 14) (((-695 |#1|) (-650 |#1|)) 15)) (-2682 (((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|)) 39)) (-4400 (((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|)) 46)))
-(((-820 |#1| |#2|) (-10 -7 (-15 -1849 ((-695 |#1|) (-650 |#1|))) (-15 -1849 ((-695 |#1|) (-650 |#1|) (-777))) (-15 -2682 ((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|))) (-15 -4400 ((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|)))) (-368) (-662 |#1|)) (T -820))
-((-4400 (*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)))) (-2682 (*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)))) (-1849 (*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)))) (-1849 (*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 -1849 ((-695 |#1|) (-650 |#1|))) (-15 -1849 ((-695 |#1|) (-650 |#1|) (-777))) (-15 -2682 ((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|))) (-15 -4400 ((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|))))
-((-2558 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3467 (((-112) $) NIL (|has| |#2| (-132)))) (-2797 (($ (-928)) NIL (|has| |#2| (-1058)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3744 (($ $ $) NIL (|has| |#2| (-799)))) (-3990 (((-3 $ "failed") $ $) NIL (|has| |#2| (-132)))) (-4302 (((-112) $ (-777)) NIL)) (-3510 (((-777)) NIL (|has| |#2| (-373)))) (-4395 (((-570) $) NIL (|has| |#2| (-854)))) (-3932 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)))) (-3216 (((-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)))) (-4196 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-2875 (((-3 $ "failed") $) NIL (|has| |#2| (-732)))) (-3446 (($) NIL (|has| |#2| (-373)))) (-1517 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ (-570)) NIL)) (-3903 (((-112) $) NIL (|has| |#2| (-854)))) (-3627 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4346 (((-112) $) NIL (|has| |#2| (-732)))) (-1479 (((-112) $) NIL (|has| |#2| (-854)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2752 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-1502 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-1884 (((-928) $) NIL (|has| |#2| (-373)))) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#2| (-1109)))) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-2268 (($ (-928)) NIL (|has| |#2| (-373)))) (-3577 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3543 ((|#2| $) NIL (|has| (-570) (-856)))) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL)) (-2609 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3843 (($ (-1277 |#2|)) NIL)) (-2951 (((-135)) NIL (|has| |#2| (-368)))) (-3547 (($ $) 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)))) (-3584 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-1277 |#2|) $) NIL) (($ (-570)) NIL (-2892 (-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))))) (-3499 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-2335 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4371 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2622 (($ $) NIL (|has| |#2| (-854)))) (-1861 (($) NIL (|has| |#2| (-132)) CONST)) (-1875 (($) NIL (|has| |#2| (-732)) CONST)) (-2942 (($ $) 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)))) (-3072 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3052 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3022 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3062 (((-112) $ $) NIL (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3042 (((-112) $ $) 11 (-2892 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-3101 (($ $ $) 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)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-4315 (((-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) |#3| |#2| (-1186)) 19)))
+(((-807 |#1| |#2| |#3|) (-10 -7 (-15 -4315 ((-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) |#3| |#2| (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966)) (-662 |#2|)) (T -807))
+((-4315 (*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) (|:| -3827 (-650 *4)))) (-5 *1 (-807 *6 *4 *3)) (-4 *3 (-662 *4)))))
+(-10 -7 (-15 -4315 ((-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) |#3| |#2| (-1186))))
+((-2627 (((-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|) (|:| -3827 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186)) 17) (((-3 (-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186)) 18) (((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -3827 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186)) 24) (((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -3827 (-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|)) (|:| -3827 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186)) 35)))
+(((-808 |#1| |#2|) (-10 -7 (-15 -2627 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -3827 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186))) (-15 -2627 ((-3 (-650 (-1277 |#2|)) "failed") (-695 |#2|) (-1186))) (-15 -2627 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -3827 (-650 (-1277 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186))) (-15 -2627 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -3827 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186))) (-15 -2627 ((-3 (-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186))) (-15 -2627 ((-3 (-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186))) (-15 -2627 ((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -2627 ((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -808))
+((-2627 (*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)))) (-2627 (*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))))) (-2627 (*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) (|:| -3827 (-650 *3))) *3 "failed")) (-5 *1 (-808 *6 *3)) (-4 *3 (-13 (-29 *6) (-1212) (-966))))) (-2627 (*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) (|:| -3827 (-650 *7))) *7 "failed")) (-5 *1 (-808 *6 *7)))) (-2627 (*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)) (|:| -3827 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)))) (-2627 (*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)) (|:| -3827 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)))) (-2627 (*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)))) (-2627 (*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)) (|:| -3827 (-650 (-1277 *7))))) (-5 *1 (-808 *6 *7)) (-5 *4 (-1277 *7)))))
+(-10 -7 (-15 -2627 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -3827 (-650 (-1277 |#2|)))) "failed") (-695 |#2|) (-1277 |#2|) (-1186))) (-15 -2627 ((-3 (-650 (-1277 |#2|)) "failed") (-695 |#2|) (-1186))) (-15 -2627 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -3827 (-650 (-1277 |#2|)))) "failed") (-650 (-298 |#2|)) (-650 (-115)) (-1186))) (-15 -2627 ((-3 (-2 (|:| |particular| (-1277 |#2|)) (|:| -3827 (-650 (-1277 |#2|)))) "failed") (-650 |#2|) (-650 (-115)) (-1186))) (-15 -2627 ((-3 (-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) |#2| "failed") (-298 |#2|) (-115) (-1186))) (-15 -2627 ((-3 (-2 (|:| |particular| |#2|) (|:| -3827 (-650 |#2|))) |#2| "failed") |#2| (-115) (-1186))) (-15 -2627 ((-3 |#2| "failed") (-298 |#2|) (-115) (-298 |#2|) (-650 |#2|))) (-15 -2627 ((-3 |#2| "failed") |#2| (-115) (-298 |#2|) (-650 |#2|))))
+((-1474 (($) 9)) (-3642 (((-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)) (-2914 (((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $) 27)) (-3502 (($ (-2 (|:| -2107 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))) 24)) (-4162 (($ (-650 (-2 (|:| -2107 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) 22)) (-2101 (((-1282)) 11)))
+(((-809) (-10 -8 (-15 -1474 ($)) (-15 -2101 ((-1282))) (-15 -2914 ((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -4162 ($ (-650 (-2 (|:| -2107 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))))) (-15 -3502 ($ (-2 (|:| -2107 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-15 -3642 ((-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))
+((-3642 (*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)))) (-3502 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| -2107 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))) (-5 *1 (-809)))) (-4162 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2107 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-5 *1 (-809)))) (-2914 (*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)))) (-2101 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-809)))) (-1474 (*1 *1) (-5 *1 (-809))))
+(-10 -8 (-15 -1474 ($)) (-15 -2101 ((-1282))) (-15 -2914 ((-650 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) $)) (-15 -4162 ($ (-650 (-2 (|:| -2107 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384)))))))) (-15 -3502 ($ (-2 (|:| -2107 (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227)))) (|:| -2340 (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384)) (|:| |expense| (-384)) (|:| |accuracy| (-384)) (|:| |intermediateResults| (-384))))))) (-15 -3642 ((-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))))))
+((-3810 ((|#2| |#2| (-1186)) 17)) (-1718 ((|#2| |#2| (-1186)) 56)) (-1444 (((-1 |#2| |#2|) (-1186)) 11)))
+(((-810 |#1| |#2|) (-10 -7 (-15 -3810 (|#2| |#2| (-1186))) (-15 -1718 (|#2| |#2| (-1186))) (-15 -1444 ((-1 |#2| |#2|) (-1186)))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)) (-13 (-29 |#1|) (-1212) (-966))) (T -810))
+((-1444 (*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))))) (-1718 (*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))))) (-3810 (*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 -3810 (|#2| |#2| (-1186))) (-15 -1718 (|#2| |#2| (-1186))) (-15 -1444 ((-1 |#2| |#2|) (-1186))))
+((-2627 (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384)) 128) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384)) 129) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384)) 131) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384)) 133) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384)) 134) (((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384))) 136) (((-1044) (-814) (-1072)) 120) (((-1044) (-814)) 121)) (-3988 (((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072)) 80) (((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814)) 82)))
+(((-811) (-10 -7 (-15 -2627 ((-1044) (-814))) (-15 -2627 ((-1044) (-814) (-1072))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072))))) (T -811))
+((-3988 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-811)))) (-3988 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-811)))) (-2627 (*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)))) (-2627 (*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)))) (-2627 (*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)))) (-2627 (*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)))) (-2627 (*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)))) (-2627 (*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)))) (-2627 (*1 *2 *3 *4) (-12 (-5 *3 (-814)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-811)))) (-2627 (*1 *2 *3) (-12 (-5 *3 (-814)) (-5 *2 (-1044)) (-5 *1 (-811)))))
+(-10 -7 (-15 -2627 ((-1044) (-814))) (-15 -2627 ((-1044) (-814) (-1072))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-384))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-384))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-650 (-384)) (-384))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384))) (-15 -2627 ((-1044) (-1277 (-320 (-384))) (-384) (-384) (-650 (-384)) (-320 (-384)) (-650 (-384)) (-384) (-384))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-814) (-1072))))
+((-3111 (((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3827 (-650 |#4|))) (-659 |#4|) |#4|) 33)))
+(((-812 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3111 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3827 (-650 |#4|))) (-659 |#4|) |#4|))) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|) (-1253 (-413 |#2|)) (-347 |#1| |#2| |#3|)) (T -812))
+((-3111 (*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")) (|:| -3827 (-650 *4)))) (-5 *1 (-812 *5 *6 *7 *4)))))
+(-10 -7 (-15 -3111 ((-2 (|:| |particular| (-3 |#4| "failed")) (|:| -3827 (-650 |#4|))) (-659 |#4|) |#4|)))
+((-1650 (((-2 (|:| -4308 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|))) 53)) (-2157 (((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#4| |#2|) 62) (((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#4|) 61) (((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#3| |#2|) 20) (((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#3|) 21)) (-1826 ((|#2| |#4| |#1|) 63) ((|#2| |#3| |#1|) 28)) (-3527 ((|#2| |#3| (-650 (-413 |#2|))) 109) (((-3 |#2| "failed") |#3| (-413 |#2|)) 105)))
+(((-813 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3527 ((-3 |#2| "failed") |#3| (-413 |#2|))) (-15 -3527 (|#2| |#3| (-650 (-413 |#2|)))) (-15 -2157 ((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#3|)) (-15 -2157 ((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#3| |#2|)) (-15 -1826 (|#2| |#3| |#1|)) (-15 -2157 ((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#4|)) (-15 -2157 ((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#4| |#2|)) (-15 -1826 (|#2| |#4| |#1|)) (-15 -1650 ((-2 (|:| -4308 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-413 (-570)))) (-1253 |#1|) (-662 |#2|) (-662 (-413 |#2|))) (T -813))
+((-1650 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *6 (-1253 *5)) (-5 *2 (-2 (|:| -4308 *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))))) (-1826 (*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))))) (-2157 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *4 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2289 *4) (|:| -3533 *4)))) (-5 *1 (-813 *5 *4 *6 *3)) (-4 *6 (-662 *4)) (-4 *3 (-662 (-413 *4))))) (-2157 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2289 *5) (|:| -3533 *5)))) (-5 *1 (-813 *4 *5 *6 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 (-413 *5))))) (-1826 (*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))))) (-2157 (*1 *2 *3 *4) (-12 (-4 *5 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *4 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2289 *4) (|:| -3533 *4)))) (-5 *1 (-813 *5 *4 *3 *6)) (-4 *3 (-662 *4)) (-4 *6 (-662 (-413 *4))))) (-2157 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2289 *5) (|:| -3533 *5)))) (-5 *1 (-813 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-662 (-413 *5))))) (-3527 (*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))))) (-3527 (*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 -3527 ((-3 |#2| "failed") |#3| (-413 |#2|))) (-15 -3527 (|#2| |#3| (-650 (-413 |#2|)))) (-15 -2157 ((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#3|)) (-15 -2157 ((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#3| |#2|)) (-15 -1826 (|#2| |#3| |#1|)) (-15 -2157 ((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#4|)) (-15 -2157 ((-650 (-2 (|:| -2289 |#2|) (|:| -3533 |#2|))) |#4| |#2|)) (-15 -1826 (|#2| |#4| |#1|)) (-15 -1650 ((-2 (|:| -4308 |#3|) (|:| |rh| (-650 (-413 |#2|)))) |#4| (-650 (-413 |#2|)))))
+((-2560 (((-112) $ $) NIL)) (-3220 (((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $) 13)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-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)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-814) (-13 (-1109) (-10 -8 (-15 -3802 ($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3220 ((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $))))) (T -814))
+((-3802 (*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)))) (-3220 (*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 -3802 ($ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))))) (-15 -3220 ((-2 (|:| |xinit| (-227)) (|:| |xend| (-227)) (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227))) (|:| |abserr| (-227)) (|:| |relerr| (-227))) $))))
+((-2447 (((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4308 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|)) 154)) (-3854 (((-650 (-2 (|:| |poly| |#2|) (|:| -4308 |#3|))) |#3| (-1 (-650 |#1|) |#2|)) 52)) (-3124 (((-650 (-2 (|:| |deg| (-777)) (|:| -4308 |#2|))) |#3|) 122)) (-3232 ((|#2| |#3|) 42)) (-3049 (((-650 (-2 (|:| -3728 |#1|) (|:| -4308 |#3|))) |#3| (-1 (-650 |#1|) |#2|)) 99)) (-4319 ((|#3| |#3| (-413 |#2|)) 72) ((|#3| |#3| |#2|) 96)))
+(((-815 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3232 (|#2| |#3|)) (-15 -3124 ((-650 (-2 (|:| |deg| (-777)) (|:| -4308 |#2|))) |#3|)) (-15 -3049 ((-650 (-2 (|:| -3728 |#1|) (|:| -4308 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -3854 ((-650 (-2 (|:| |poly| |#2|) (|:| -4308 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -2447 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4308 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -4319 (|#3| |#3| |#2|)) (-15 -4319 (|#3| |#3| (-413 |#2|)))) (-13 (-368) (-148) (-1047 (-413 (-570)))) (-1253 |#1|) (-662 |#2|) (-662 (-413 |#2|))) (T -815))
+((-4319 (*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)))) (-4319 (*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))))) (-2447 (*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)) (|:| -4308 *3)))) (-5 *1 (-815 *6 *7 *3 *8)) (-4 *3 (-662 *7)) (-4 *8 (-662 (-413 *7))))) (-3854 (*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) (|:| -4308 *3)))) (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6)) (-4 *7 (-662 (-413 *6))))) (-3049 (*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 (|:| -3728 *5) (|:| -4308 *3)))) (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6)) (-4 *7 (-662 (-413 *6))))) (-3124 (*1 *2 *3) (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570))))) (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -4308 *5)))) (-5 *1 (-815 *4 *5 *3 *6)) (-4 *3 (-662 *5)) (-4 *6 (-662 (-413 *5))))) (-3232 (*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 -3232 (|#2| |#3|)) (-15 -3124 ((-650 (-2 (|:| |deg| (-777)) (|:| -4308 |#2|))) |#3|)) (-15 -3049 ((-650 (-2 (|:| -3728 |#1|) (|:| -4308 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -3854 ((-650 (-2 (|:| |poly| |#2|) (|:| -4308 |#3|))) |#3| (-1 (-650 |#1|) |#2|))) (-15 -2447 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4308 |#3|))) |#3| (-1 (-650 |#2|) |#2| (-1182 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -4319 (|#3| |#3| |#2|)) (-15 -4319 (|#3| |#3| (-413 |#2|))))
+((-1422 (((-2 (|:| -3827 (-650 (-413 |#2|))) (|:| -2990 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|))) 146) (((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -3827 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|)) 145) (((-2 (|:| -3827 (-650 (-413 |#2|))) (|:| -2990 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|))) 140) (((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -3827 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|)) 138)) (-2740 ((|#2| (-660 |#2| (-413 |#2|))) 87) ((|#2| (-659 (-413 |#2|))) 90)))
+(((-816 |#1| |#2|) (-10 -7 (-15 -1422 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -3827 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|))) (-15 -1422 ((-2 (|:| -3827 (-650 (-413 |#2|))) (|:| -2990 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -1422 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -3827 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|))) (-15 -1422 ((-2 (|:| -3827 (-650 (-413 |#2|))) (|:| -2990 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -2740 (|#2| (-659 (-413 |#2|)))) (-15 -2740 (|#2| (-660 |#2| (-413 |#2|))))) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -816))
+((-2740 (*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))))))) (-2740 (*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))))))) (-1422 (*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 (|:| -3827 (-650 (-413 *6))) (|:| -2990 (-695 *5)))) (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))) (-1422 (*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")) (|:| -3827 (-650 *4)))) (-5 *1 (-816 *5 *6)))) (-1422 (*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 (|:| -3827 (-650 (-413 *6))) (|:| -2990 (-695 *5)))) (-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))) (-1422 (*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")) (|:| -3827 (-650 *4)))) (-5 *1 (-816 *5 *6)))))
+(-10 -7 (-15 -1422 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -3827 (-650 (-413 |#2|)))) (-659 (-413 |#2|)) (-413 |#2|))) (-15 -1422 ((-2 (|:| -3827 (-650 (-413 |#2|))) (|:| -2990 (-695 |#1|))) (-659 (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -1422 ((-2 (|:| |particular| (-3 (-413 |#2|) "failed")) (|:| -3827 (-650 (-413 |#2|)))) (-660 |#2| (-413 |#2|)) (-413 |#2|))) (-15 -1422 ((-2 (|:| -3827 (-650 (-413 |#2|))) (|:| -2990 (-695 |#1|))) (-660 |#2| (-413 |#2|)) (-650 (-413 |#2|)))) (-15 -2740 (|#2| (-659 (-413 |#2|)))) (-15 -2740 (|#2| (-660 |#2| (-413 |#2|)))))
+((-3639 (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|) 49)))
+(((-817 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3639 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|))) (-368) (-662 |#1|) (-1253 |#1|) (-730 |#1| |#3|) (-662 |#4|)) (T -817))
+((-3639 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *7 (-1253 *5)) (-4 *4 (-730 *5 *7)) (-5 *2 (-2 (|:| -2990 (-695 *6)) (|:| |vec| (-1277 *5)))) (-5 *1 (-817 *5 *6 *7 *4 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 *4)))))
+(-10 -7 (-15 -3639 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) |#5| |#4|)))
+((-2447 (((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4308 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 47)) (-2030 (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 167 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|))) 164 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|)) 168 (|has| |#1| (-27))) (((-650 (-413 |#2|)) (-659 (-413 |#2|))) 166 (|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)) (-3854 (((-650 (-2 (|:| |poly| |#2|) (|:| -4308 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|)) 96)))
+(((-818 |#1| |#2|) (-10 -7 (-15 -2030 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -2030 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -2030 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -2030 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -2447 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4308 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -3854 ((-650 (-2 (|:| |poly| |#2|) (|:| -4308 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2030 ((-650 (-413 |#2|)) (-659 (-413 |#2|)))) (-15 -2030 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2030 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)))) (-15 -2030 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)))) |%noBranch|)) (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))) (-1253 |#1|)) (T -818))
+((-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-3854 (*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) (|:| -4308 (-660 *6 (-413 *6)))))) (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))) (-2447 (*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)) (|:| -4308 (-660 *6 (-413 *6)))))) (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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)))) (-2030 (*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 -2030 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -2030 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -2030 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (-15 -2030 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|) (-1 (-424 |#2|) |#2|))) (-15 -2447 ((-650 (-2 (|:| |frac| (-413 |#2|)) (|:| -4308 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -3854 ((-650 (-2 (|:| |poly| |#2|) (|:| -4308 (-660 |#2| (-413 |#2|))))) (-660 |#2| (-413 |#2|)) (-1 (-650 |#1|) |#2|))) (IF (|has| |#1| (-27)) (PROGN (-15 -2030 ((-650 (-413 |#2|)) (-659 (-413 |#2|)))) (-15 -2030 ((-650 (-413 |#2|)) (-659 (-413 |#2|)) (-1 (-424 |#2|) |#2|))) (-15 -2030 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)))) (-15 -2030 ((-650 (-413 |#2|)) (-660 |#2| (-413 |#2|)) (-1 (-424 |#2|) |#2|)))) |%noBranch|))
+((-2615 (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|)) 110) (((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4308 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|)) 15)) (-2294 (((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3827 (-650 |#1|))) |#2| |#1|)) 116)) (-2627 (((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -3827 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3827 (-650 |#1|))) "failed") |#2| |#1|)) 54)))
+(((-819 |#1| |#2|) (-10 -7 (-15 -2615 ((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4308 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|))) (-15 -2615 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|))) (-15 -2627 ((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -3827 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3827 (-650 |#1|))) "failed") |#2| |#1|))) (-15 -2294 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3827 (-650 |#1|))) |#2| |#1|)))) (-368) (-662 |#1|)) (T -819))
+((-2294 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-695 *7)) (-5 *5 (-1 (-2 (|:| |particular| (-3 *6 "failed")) (|:| -3827 (-650 *6))) *7 *6)) (-4 *6 (-368)) (-4 *7 (-662 *6)) (-5 *2 (-2 (|:| |particular| (-3 (-1277 *6) "failed")) (|:| -3827 (-650 (-1277 *6))))) (-5 *1 (-819 *6 *7)) (-5 *4 (-1277 *6)))) (-2627 (*1 *2 *3 *4 *5) (|partial| -12 (-5 *5 (-1 (-3 (-2 (|:| |particular| *6) (|:| -3827 (-650 *6))) "failed") *7 *6)) (-4 *6 (-368)) (-4 *7 (-662 *6)) (-5 *2 (-2 (|:| |particular| (-1277 *6)) (|:| -3827 (-695 *6)))) (-5 *1 (-819 *6 *7)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *6)))) (-2615 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-4 *6 (-662 *5)) (-5 *2 (-2 (|:| -2990 (-695 *6)) (|:| |vec| (-1277 *5)))) (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *5)))) (-2615 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| A (-695 *5)) (|:| |eqs| (-650 (-2 (|:| C (-695 *5)) (|:| |g| (-1277 *5)) (|:| -4308 *6) (|:| |rh| *5)))))) (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *5)) (-5 *4 (-1277 *5)) (-4 *6 (-662 *5)))))
+(-10 -7 (-15 -2615 ((-2 (|:| A (-695 |#1|)) (|:| |eqs| (-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)) (|:| -4308 |#2|) (|:| |rh| |#1|))))) (-695 |#1|) (-1277 |#1|))) (-15 -2615 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#1|))) (-695 |#2|) (-1277 |#1|))) (-15 -2627 ((-3 (-2 (|:| |particular| (-1277 |#1|)) (|:| -3827 (-695 |#1|))) "failed") (-695 |#1|) (-1277 |#1|) (-1 (-3 (-2 (|:| |particular| |#1|) (|:| -3827 (-650 |#1|))) "failed") |#2| |#1|))) (-15 -2294 ((-2 (|:| |particular| (-3 (-1277 |#1|) "failed")) (|:| -3827 (-650 (-1277 |#1|)))) (-695 |#2|) (-1277 |#1|) (-1 (-2 (|:| |particular| (-3 |#1| "failed")) (|:| -3827 (-650 |#1|))) |#2| |#1|))))
+((-2088 (((-695 |#1|) (-650 |#1|) (-777)) 14) (((-695 |#1|) (-650 |#1|)) 15)) (-3790 (((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|)) 39)) (-3448 (((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|)) 46)))
+(((-820 |#1| |#2|) (-10 -7 (-15 -2088 ((-695 |#1|) (-650 |#1|))) (-15 -2088 ((-695 |#1|) (-650 |#1|) (-777))) (-15 -3790 ((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|))) (-15 -3448 ((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|)))) (-368) (-662 |#1|)) (T -820))
+((-3448 (*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)))) (-3790 (*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)))) (-2088 (*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)))) (-2088 (*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 -2088 ((-695 |#1|) (-650 |#1|))) (-15 -2088 ((-695 |#1|) (-650 |#1|) (-777))) (-15 -3790 ((-3 (-1277 |#1|) "failed") |#2| |#1| (-650 |#1|))) (-15 -3448 ((-3 |#1| "failed") |#2| |#1| (-650 |#1|) (-1 |#1| |#1|))))
+((-2560 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3721 (((-112) $) NIL (|has| |#2| (-132)))) (-2451 (($ (-928)) NIL (|has| |#2| (-1058)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-3271 (($ $ $) NIL (|has| |#2| (-799)))) (-1966 (((-3 $ "failed") $ $) NIL (|has| |#2| (-132)))) (-1932 (((-112) $ (-777)) NIL)) (-3513 (((-777)) NIL (|has| |#2| (-373)))) (-3408 (((-570) $) NIL (|has| |#2| (-854)))) (-3935 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)))) (-3220 (((-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)))) (-2179 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#2| (-645 (-570))) (|has| |#2| (-1058)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#2| (-1058))) (((-695 |#2|) (-695 $)) NIL (|has| |#2| (-1058)))) (-1929 (((-3 $ "failed") $) NIL (|has| |#2| (-732)))) (-3449 (($) NIL (|has| |#2| (-373)))) (-1518 ((|#2| $ (-570) |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ (-570)) NIL)) (-2346 (((-112) $) NIL (|has| |#2| (-854)))) (-3630 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-4139 (((-112) $) NIL (|has| |#2| (-732)))) (-2788 (((-112) $) NIL (|has| |#2| (-854)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-2052 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-1503 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-2400 (((-928) $) NIL (|has| |#2| (-373)))) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#2| (-1109)))) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-2267 (($ (-928)) NIL (|has| |#2| (-373)))) (-3580 (((-1129) $) NIL (|has| |#2| (-1109)))) (-3546 ((|#2| $) NIL (|has| (-570) (-856)))) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ (-570) |#2|) NIL) ((|#2| $ (-570)) NIL)) (-4266 ((|#2| $ $) NIL (|has| |#2| (-1058)))) (-3846 (($ (-1277 |#2|)) NIL)) (-2517 (((-135)) NIL (|has| |#2| (-368)))) (-3550 (($ $) 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)))) (-3587 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-1277 |#2|) $) NIL) (($ (-570)) NIL (-2895 (-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))))) (-2851 (((-777)) NIL (|has| |#2| (-1058)) CONST)) (-3359 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-4379 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3231 (($ $) NIL (|has| |#2| (-854)))) (-1862 (($) NIL (|has| |#2| (-132)) CONST)) (-1876 (($) NIL (|has| |#2| (-732)) CONST)) (-2945 (($ $) 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)))) (-3075 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3055 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3025 (((-112) $ $) NIL (|has| |#2| (-1109)))) (-3065 (((-112) $ $) NIL (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3045 (((-112) $ $) 11 (-2895 (|has| |#2| (-799)) (|has| |#2| (-854))))) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $ $) NIL (|has| |#2| (-1058))) (($ $) NIL (|has| |#2| (-1058)))) (-3104 (($ $ $) 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)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-821 |#1| |#2| |#3|) (-240 |#1| |#2|) (-777) (-799) (-1 (-112) (-1277 |#2|) (-1277 |#2|))) (T -821))
NIL
(-240 |#1| |#2|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3571 (((-650 (-777)) $) NIL) (((-650 (-777)) $ (-1186)) NIL)) (-3223 (((-777) $) NIL) (((-777) $ (-1186)) NIL)) (-1755 (((-650 (-824 (-1186))) $) NIL)) (-3775 (((-1182 $) $ (-824 (-1186))) NIL) (((-1182 |#1|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-824 (-1186)))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3904 (($ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#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)) (-4322 (($ $ $ (-824 (-1186))) NIL (|has| |#1| (-174)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458))) (($ $ (-824 (-1186))) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-3720 (($ $ |#1| (-537 (-824 (-1186))) $) NIL)) (-2842 (((-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)))))) (-4323 (((-777) $ (-1186)) NIL) (((-777) $) NIL)) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-1742 (($ (-1182 |#1|) (-824 (-1186))) NIL) (($ (-1182 $) (-824 (-1186))) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-537 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-824 (-1186))) NIL)) (-2575 (((-537 (-824 (-1186))) $) NIL) (((-777) $ (-824 (-1186))) NIL) (((-650 (-777)) $ (-650 (-824 (-1186)))) NIL)) (-1918 (($ (-1 (-537 (-824 (-1186))) (-537 (-824 (-1186)))) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3064 (((-1 $ (-777)) (-1186)) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-3362 (((-3 (-824 (-1186)) "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-3218 (((-824 (-1186)) $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1988 (((-1168) $) NIL)) (-3436 (((-112) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-824 (-1186))) (|:| -3357 (-777))) "failed") $) NIL)) (-1537 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1770 (($ $ (-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)))) (-3570 (($ $ (-824 (-1186))) NIL (|has| |#1| (-174)))) (-3547 (($ $ (-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)) (-4212 (((-650 (-1186)) $) NIL)) (-2130 (((-537 (-824 (-1186))) $) NIL) (((-777) $ (-824 (-1186))) NIL) (((-650 (-777)) $ (-650 (-824 (-1186)))) NIL) (((-777) $ (-1186)) NIL)) (-1425 (((-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)))))) (-1848 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-824 (-1186))) NIL (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-824 (-1186))) NIL) (($ (-1186)) NIL) (($ (-1134 |#1| (-1186))) NIL) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-537 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-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)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-2275 (((-650 (-777)) $) NIL) (((-650 (-777)) $ (-1186)) NIL)) (-2117 (((-777) $) NIL) (((-777) $ (-1186)) NIL)) (-1755 (((-650 (-824 (-1186))) $) NIL)) (-3778 (((-1182 $) $ (-824 (-1186))) NIL) (((-1182 |#1|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-824 (-1186)))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2355 (($ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#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)) (-3930 (($ $ $ (-824 (-1186))) NIL (|has| |#1| (-174)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458))) (($ $ (-824 (-1186))) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-4243 (($ $ |#1| (-537 (-824 (-1186))) $) NIL)) (-1557 (((-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)))))) (-3941 (((-777) $ (-1186)) NIL) (((-777) $) NIL)) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-1744 (($ (-1182 |#1|) (-824 (-1186))) NIL) (($ (-1182 $) (-824 (-1186))) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-537 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-824 (-1186))) NIL)) (-3970 (((-537 (-824 (-1186))) $) NIL) (((-777) $ (-824 (-1186))) NIL) (((-650 (-777)) $ (-650 (-824 (-1186)))) NIL)) (-1414 (($ (-1 (-537 (-824 (-1186))) (-537 (-824 (-1186)))) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4212 (((-1 $ (-777)) (-1186)) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-4023 (((-3 (-824 (-1186)) "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3221 (((-824 (-1186)) $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3989 (((-1168) $) NIL)) (-3426 (((-112) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-824 (-1186))) (|:| -3994 (-777))) "failed") $) NIL)) (-1538 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1771 (($ $ (-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)))) (-2265 (($ $ (-824 (-1186))) NIL (|has| |#1| (-174)))) (-3550 (($ $ (-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)) (-2310 (((-650 (-1186)) $) NIL)) (-3079 (((-537 (-824 (-1186))) $) NIL) (((-777) $ (-824 (-1186))) NIL) (((-650 (-777)) $ (-650 (-824 (-1186)))) NIL) (((-777) $ (-1186)) NIL)) (-1426 (((-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)))))) (-2077 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-824 (-1186))) NIL (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-824 (-1186))) NIL) (($ (-1186)) NIL) (($ (-1134 |#1| (-1186))) NIL) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-537 (-824 (-1186)))) NIL) (($ $ (-824 (-1186)) (-777)) NIL) (($ $ (-650 (-824 (-1186))) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-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)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-368)))) (-3074 (($ $) NIL (|has| |#2| (-368)))) (-3475 (((-112) $) NIL (|has| |#2| (-368)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| |#2| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#2| (-368)))) (-3473 (((-112) $ $) NIL (|has| |#2| (-368)))) (-1705 (($) NIL T CONST)) (-2506 (($ $ $) NIL (|has| |#2| (-368)))) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL (|has| |#2| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#2| (-368)))) (-3618 (((-112) $) NIL (|has| |#2| (-368)))) (-4346 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1899 (($ (-650 $)) NIL (|has| |#2| (-368))) (($ $ $) NIL (|has| |#2| (-368)))) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 20 (|has| |#2| (-368)))) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#2| (-368))) (($ $ $) NIL (|has| |#2| (-368)))) (-3801 (((-424 $) $) NIL (|has| |#2| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#2| (-368)))) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-2142 (((-777) $) NIL (|has| |#2| (-368)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#2| (-368)))) (-3547 (($ $ (-777)) NIL) (($ $) 13)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-413 (-570))) NIL (|has| |#2| (-368))) (($ $) NIL (|has| |#2| (-368)))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#2| (-368)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) 15 (|has| |#2| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#2| (-368)))) (-4306 (($ $) NIL (|has| |#2| (-368)))) (-2617 (((-112) $) NIL (|has| |#2| (-368)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| |#2| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#2| (-368)))) (-3765 (((-112) $ $) NIL (|has| |#2| (-368)))) (-3195 (($) NIL T CONST)) (-2504 (($ $ $) NIL (|has| |#2| (-368)))) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL (|has| |#2| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#2| (-368)))) (-1336 (((-112) $) NIL (|has| |#2| (-368)))) (-4139 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1901 (($ (-650 $)) NIL (|has| |#2| (-368))) (($ $ $) NIL (|has| |#2| (-368)))) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 20 (|has| |#2| (-368)))) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#2| (-368))) (($ $ $) NIL (|has| |#2| (-368)))) (-3804 (((-424 $) $) NIL (|has| |#2| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#2| (-368)))) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-2006 (((-777) $) NIL (|has| |#2| (-368)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#2| (-368)))) (-3550 (($ $ (-777)) NIL) (($ $) 13)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) 10) ((|#2| $) 11) (($ (-413 (-570))) NIL (|has| |#2| (-368))) (($ $) NIL (|has| |#2| (-368)))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#2| (-368)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) 15 (|has| |#2| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)))
-((-2558 (((-112) $ $) NIL)) (-3223 (((-777) $) NIL)) (-2798 ((|#1| $) 10)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-4323 (((-777) $) 11)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-3064 (($ |#1| (-777)) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3547 (($ $) NIL) (($ $ (-777)) NIL)) (-3799 (((-868) $) NIL) (($ |#1|) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-2117 (((-777) $) NIL)) (-2800 ((|#1| $) 10)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-3941 (((-777) $) 11)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-4212 (($ |#1| (-777)) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3550 (($ $) NIL) (($ $ (-777)) NIL)) (-3802 (((-868) $) NIL) (($ |#1|) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
(((-824 |#1|) (-269 |#1|) (-856)) (T -824))
NIL
(-269 |#1|)
-((-2558 (((-112) $ $) NIL)) (-3179 (((-650 |#1|) $) 38)) (-3510 (((-777) $) NIL)) (-1705 (($) NIL T CONST)) (-1745 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 28)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-3555 (($ $) 42)) (-2875 (((-3 $ "failed") $) NIL)) (-3813 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-4346 (((-112) $) NIL)) (-2610 ((|#1| $ (-570)) NIL)) (-2517 (((-777) $ (-570)) NIL)) (-3264 (($ $) 54)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-2131 (($ (-1 |#1| |#1|) $) NIL)) (-2453 (($ (-1 (-777) (-777)) $) NIL)) (-1761 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 25)) (-1909 (((-112) $ $) 51)) (-1355 (((-777) $) 34)) (-1988 (((-1168) $) NIL)) (-2003 (($ $ $) NIL)) (-2397 (($ $ $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 ((|#1| $) 41)) (-3477 (((-650 (-2 (|:| |gen| |#1|) (|:| -4387 (-777)))) $) NIL)) (-2384 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-2538 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3799 (((-868) $) NIL) (($ |#1|) NIL)) (-2335 (((-112) $ $) NIL)) (-1875 (($) 20 T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 53)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ |#1| (-777)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
-(((-825 |#1|) (-13 (-391 |#1|) (-852) (-10 -8 (-15 -3543 (|#1| $)) (-15 -3555 ($ $)) (-15 -3264 ($ $)) (-15 -1909 ((-112) $ $)) (-15 -1761 ((-3 $ "failed") $ |#1|)) (-15 -1745 ((-3 $ "failed") $ |#1|)) (-15 -2538 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1355 ((-777) $)) (-15 -3179 ((-650 |#1|) $)))) (-856)) (T -825))
-((-3543 (*1 *2 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3555 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3264 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-1909 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-1761 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-1745 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-2538 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-825 *3)) (|:| |rm| (-825 *3)))) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-1355 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-825 *3)) (-4 *3 (-856)))))
-(-13 (-391 |#1|) (-852) (-10 -8 (-15 -3543 (|#1| $)) (-15 -3555 ($ $)) (-15 -3264 ($ $)) (-15 -1909 ((-112) $ $)) (-15 -1761 ((-3 $ "failed") $ |#1|)) (-15 -1745 ((-3 $ "failed") $ |#1|)) (-15 -2538 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1355 ((-777) $)) (-15 -3179 ((-650 |#1|) $))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-4395 (((-570) $) 59)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-3903 (((-112) $) 57)) (-4346 (((-112) $) 35)) (-1479 (((-112) $) 58)) (-3466 (($ $ $) 56)) (-2800 (($ $ $) 55)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ $) 48)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-2622 (($ $) 60)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3072 (((-112) $ $) 53)) (-3052 (((-112) $ $) 52)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 54)) (-3042 (((-112) $ $) 51)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2560 (((-112) $ $) NIL)) (-3182 (((-650 |#1|) $) 38)) (-3513 (((-777) $) NIL)) (-3195 (($) NIL T CONST)) (-3571 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 28)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-3558 (($ $) 42)) (-1929 (((-3 $ "failed") $) NIL)) (-2732 (((-2 (|:| |lm| $) (|:| |mm| $) (|:| |rm| $)) $ $) NIL)) (-4139 (((-112) $) NIL)) (-4275 ((|#1| $ (-570)) NIL)) (-1564 (((-777) $ (-570)) NIL)) (-2523 (($ $) 54)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3088 (($ (-1 |#1| |#1|) $) NIL)) (-2196 (($ (-1 (-777) (-777)) $) NIL)) (-3712 (((-3 $ "failed") $ $) NIL) (((-3 $ "failed") $ |#1|) 25)) (-1312 (((-112) $ $) 51)) (-1356 (((-777) $) 34)) (-3989 (((-1168) $) NIL)) (-4135 (($ $ $) NIL)) (-2830 (($ $ $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 ((|#1| $) 41)) (-2638 (((-650 (-2 (|:| |gen| |#1|) (|:| -4389 (-777)))) $) NIL)) (-2696 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-2538 (((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $) NIL)) (-3802 (((-868) $) NIL) (($ |#1|) NIL)) (-3359 (((-112) $ $) NIL)) (-1876 (($) 20 T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 53)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ |#1| (-777)) NIL)) (* (($ $ $) NIL) (($ |#1| $) NIL) (($ $ |#1|) NIL)))
+(((-825 |#1|) (-13 (-391 |#1|) (-852) (-10 -8 (-15 -3546 (|#1| $)) (-15 -3558 ($ $)) (-15 -2523 ($ $)) (-15 -1312 ((-112) $ $)) (-15 -3712 ((-3 $ "failed") $ |#1|)) (-15 -3571 ((-3 $ "failed") $ |#1|)) (-15 -2538 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1356 ((-777) $)) (-15 -3182 ((-650 |#1|) $)))) (-856)) (T -825))
+((-3546 (*1 *2 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3558 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-2523 (*1 *1 *1) (-12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-1312 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3712 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-3571 (*1 *1 *1 *2) (|partial| -12 (-5 *1 (-825 *2)) (-4 *2 (-856)))) (-2538 (*1 *2 *1 *1) (|partial| -12 (-5 *2 (-2 (|:| |lm| (-825 *3)) (|:| |rm| (-825 *3)))) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-1356 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-825 *3)) (-4 *3 (-856)))) (-3182 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-825 *3)) (-4 *3 (-856)))))
+(-13 (-391 |#1|) (-852) (-10 -8 (-15 -3546 (|#1| $)) (-15 -3558 ($ $)) (-15 -2523 ($ $)) (-15 -1312 ((-112) $ $)) (-15 -3712 ((-3 $ "failed") $ |#1|)) (-15 -3571 ((-3 $ "failed") $ |#1|)) (-15 -2538 ((-3 (-2 (|:| |lm| $) (|:| |rm| $)) "failed") $ $)) (-15 -1356 ((-777) $)) (-15 -3182 ((-650 |#1|) $))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-3408 (((-570) $) 59)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-2346 (((-112) $) 57)) (-4139 (((-112) $) 35)) (-2788 (((-112) $) 58)) (-3469 (($ $ $) 56)) (-2472 (($ $ $) 55)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ $) 48)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-3231 (($ $) 60)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3075 (((-112) $ $) 53)) (-3055 (((-112) $ $) 52)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 54)) (-3045 (((-112) $ $) 51)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2234 (($ (-1129)) 7)) (-3815 (((-112) $ (-1168) (-1129)) 15)) (-2708 (((-828) $) 12)) (-2139 (((-828) $) 11)) (-1439 (((-1282) $) 9)) (-1665 (((-112) $ (-1129)) 16)))
-(((-827) (-10 -8 (-15 -2234 ($ (-1129))) (-15 -1439 ((-1282) $)) (-15 -2139 ((-828) $)) (-15 -2708 ((-828) $)) (-15 -3815 ((-112) $ (-1168) (-1129))) (-15 -1665 ((-112) $ (-1129))))) (T -827))
-((-1665 (*1 *2 *1 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))) (-3815 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))) (-2708 (*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))) (-2139 (*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))) (-1439 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-827)))) (-2234 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-827)))))
-(-10 -8 (-15 -2234 ($ (-1129))) (-15 -1439 ((-1282) $)) (-15 -2139 ((-828) $)) (-15 -2708 ((-828) $)) (-15 -3815 ((-112) $ (-1168) (-1129))) (-15 -1665 ((-112) $ (-1129))))
-((-3481 (((-1282) $ (-829)) 12)) (-3176 (((-1282) $ (-1186)) 32)) (-1841 (((-1282) $ (-1168) (-1168)) 34)) (-3309 (((-1282) $ (-1168)) 33)) (-2354 (((-1282) $) 19)) (-3000 (((-1282) $ (-570)) 28)) (-1320 (((-1282) $ (-227)) 30)) (-4327 (((-1282) $) 18)) (-3862 (((-1282) $) 26)) (-1871 (((-1282) $) 25)) (-3203 (((-1282) $) 23)) (-2949 (((-1282) $) 24)) (-3628 (((-1282) $) 22)) (-2896 (((-1282) $) 21)) (-2346 (((-1282) $) 20)) (-1387 (((-1282) $) 16)) (-2434 (((-1282) $) 17)) (-4330 (((-1282) $) 15)) (-3656 (((-1282) $) 14)) (-2233 (((-1282) $) 13)) (-3949 (($ (-1168) (-829)) 9)) (-2441 (($ (-1168) (-1168) (-829)) 8)) (-3495 (((-1186) $) 51)) (-1398 (((-1186) $) 55)) (-4324 (((-2 (|:| |cd| (-1168)) (|:| -3600 (-1168))) $) 54)) (-1360 (((-1168) $) 52)) (-3116 (((-1282) $) 41)) (-1402 (((-570) $) 49)) (-2864 (((-227) $) 50)) (-4348 (((-1282) $) 40)) (-3819 (((-1282) $) 48)) (-1550 (((-1282) $) 47)) (-3421 (((-1282) $) 45)) (-2436 (((-1282) $) 46)) (-2711 (((-1282) $) 44)) (-1802 (((-1282) $) 43)) (-2907 (((-1282) $) 42)) (-1808 (((-1282) $) 38)) (-4307 (((-1282) $) 39)) (-1325 (((-1282) $) 37)) (-2909 (((-1282) $) 36)) (-3853 (((-1282) $) 35)) (-2129 (((-1282) $) 11)))
-(((-828) (-10 -8 (-15 -2441 ($ (-1168) (-1168) (-829))) (-15 -3949 ($ (-1168) (-829))) (-15 -2129 ((-1282) $)) (-15 -3481 ((-1282) $ (-829))) (-15 -2233 ((-1282) $)) (-15 -3656 ((-1282) $)) (-15 -4330 ((-1282) $)) (-15 -1387 ((-1282) $)) (-15 -2434 ((-1282) $)) (-15 -4327 ((-1282) $)) (-15 -2354 ((-1282) $)) (-15 -2346 ((-1282) $)) (-15 -2896 ((-1282) $)) (-15 -3628 ((-1282) $)) (-15 -3203 ((-1282) $)) (-15 -2949 ((-1282) $)) (-15 -1871 ((-1282) $)) (-15 -3862 ((-1282) $)) (-15 -3000 ((-1282) $ (-570))) (-15 -1320 ((-1282) $ (-227))) (-15 -3176 ((-1282) $ (-1186))) (-15 -3309 ((-1282) $ (-1168))) (-15 -1841 ((-1282) $ (-1168) (-1168))) (-15 -3853 ((-1282) $)) (-15 -2909 ((-1282) $)) (-15 -1325 ((-1282) $)) (-15 -1808 ((-1282) $)) (-15 -4307 ((-1282) $)) (-15 -4348 ((-1282) $)) (-15 -3116 ((-1282) $)) (-15 -2907 ((-1282) $)) (-15 -1802 ((-1282) $)) (-15 -2711 ((-1282) $)) (-15 -3421 ((-1282) $)) (-15 -2436 ((-1282) $)) (-15 -1550 ((-1282) $)) (-15 -3819 ((-1282) $)) (-15 -1402 ((-570) $)) (-15 -2864 ((-227) $)) (-15 -3495 ((-1186) $)) (-15 -1360 ((-1168) $)) (-15 -4324 ((-2 (|:| |cd| (-1168)) (|:| -3600 (-1168))) $)) (-15 -1398 ((-1186) $)))) (T -828))
-((-1398 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))) (-4324 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1168)) (|:| -3600 (-1168)))) (-5 *1 (-828)))) (-1360 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-828)))) (-3495 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))) (-2864 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-828)))) (-1402 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-828)))) (-3819 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1550 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2436 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3421 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2711 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1802 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2907 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3116 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-4348 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-4307 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1808 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1325 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2909 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3853 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1841 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-3309 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-3176 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-1320 (*1 *2 *1 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-3000 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-3862 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1871 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2949 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3203 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3628 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2896 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2346 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2354 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-4327 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2434 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1387 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-4330 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3656 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2233 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3481 (*1 *2 *1 *3) (-12 (-5 *3 (-829)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-2129 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3949 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))) (-2441 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
-(-10 -8 (-15 -2441 ($ (-1168) (-1168) (-829))) (-15 -3949 ($ (-1168) (-829))) (-15 -2129 ((-1282) $)) (-15 -3481 ((-1282) $ (-829))) (-15 -2233 ((-1282) $)) (-15 -3656 ((-1282) $)) (-15 -4330 ((-1282) $)) (-15 -1387 ((-1282) $)) (-15 -2434 ((-1282) $)) (-15 -4327 ((-1282) $)) (-15 -2354 ((-1282) $)) (-15 -2346 ((-1282) $)) (-15 -2896 ((-1282) $)) (-15 -3628 ((-1282) $)) (-15 -3203 ((-1282) $)) (-15 -2949 ((-1282) $)) (-15 -1871 ((-1282) $)) (-15 -3862 ((-1282) $)) (-15 -3000 ((-1282) $ (-570))) (-15 -1320 ((-1282) $ (-227))) (-15 -3176 ((-1282) $ (-1186))) (-15 -3309 ((-1282) $ (-1168))) (-15 -1841 ((-1282) $ (-1168) (-1168))) (-15 -3853 ((-1282) $)) (-15 -2909 ((-1282) $)) (-15 -1325 ((-1282) $)) (-15 -1808 ((-1282) $)) (-15 -4307 ((-1282) $)) (-15 -4348 ((-1282) $)) (-15 -3116 ((-1282) $)) (-15 -2907 ((-1282) $)) (-15 -1802 ((-1282) $)) (-15 -2711 ((-1282) $)) (-15 -3421 ((-1282) $)) (-15 -2436 ((-1282) $)) (-15 -1550 ((-1282) $)) (-15 -3819 ((-1282) $)) (-15 -1402 ((-570) $)) (-15 -2864 ((-227) $)) (-15 -3495 ((-1186) $)) (-15 -1360 ((-1168) $)) (-15 -4324 ((-2 (|:| |cd| (-1168)) (|:| -3600 (-1168))) $)) (-15 -1398 ((-1186) $)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 13)) (-2335 (((-112) $ $) NIL)) (-3915 (($) 16)) (-2071 (($) 14)) (-2259 (($) 17)) (-1445 (($) 15)) (-3022 (((-112) $ $) 9)))
-(((-829) (-13 (-1109) (-10 -8 (-15 -2071 ($)) (-15 -3915 ($)) (-15 -2259 ($)) (-15 -1445 ($))))) (T -829))
-((-2071 (*1 *1) (-5 *1 (-829))) (-3915 (*1 *1) (-5 *1 (-829))) (-2259 (*1 *1) (-5 *1 (-829))) (-1445 (*1 *1) (-5 *1 (-829))))
-(-13 (-1109) (-10 -8 (-15 -2071 ($)) (-15 -3915 ($)) (-15 -2259 ($)) (-15 -1445 ($))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 23) (($ (-1186)) 19)) (-2335 (((-112) $ $) NIL)) (-2410 (((-112) $) 10)) (-3315 (((-112) $) 9)) (-4272 (((-112) $) 11)) (-3655 (((-112) $) 8)) (-3022 (((-112) $ $) 21)))
-(((-830) (-13 (-1109) (-10 -8 (-15 -3799 ($ (-1186))) (-15 -3655 ((-112) $)) (-15 -3315 ((-112) $)) (-15 -2410 ((-112) $)) (-15 -4272 ((-112) $))))) (T -830))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-830)))) (-3655 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-3315 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-2410 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-4272 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(-13 (-1109) (-10 -8 (-15 -3799 ($ (-1186))) (-15 -3655 ((-112) $)) (-15 -3315 ((-112) $)) (-15 -2410 ((-112) $)) (-15 -4272 ((-112) $))))
-((-2558 (((-112) $ $) NIL)) (-3050 (($ (-830) (-650 (-1186))) 32)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1440 (((-830) $) 33)) (-2388 (((-650 (-1186)) $) 34)) (-3799 (((-868) $) 31)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-831) (-13 (-1109) (-10 -8 (-15 -1440 ((-830) $)) (-15 -2388 ((-650 (-1186)) $)) (-15 -3050 ($ (-830) (-650 (-1186))))))) (T -831))
-((-1440 (*1 *2 *1) (-12 (-5 *2 (-830)) (-5 *1 (-831)))) (-2388 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-831)))) (-3050 (*1 *1 *2 *3) (-12 (-5 *2 (-830)) (-5 *3 (-650 (-1186))) (-5 *1 (-831)))))
-(-13 (-1109) (-10 -8 (-15 -1440 ((-830) $)) (-15 -2388 ((-650 (-1186)) $)) (-15 -3050 ($ (-830) (-650 (-1186))))))
-((-2831 (((-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 -2831 ((-1168) (-320 |#1|))) (-15 -2831 ((-1168) (-320 |#1|) (-112))) (-15 -2831 ((-1282) (-828) (-320 |#1|))) (-15 -2831 ((-1282) (-828) (-320 |#1|) (-112)))) (-13 (-834) (-1058))) (T -832))
-((-2831 (*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)))) (-2831 (*1 *2 *3 *4) (-12 (-5 *3 (-828)) (-5 *4 (-320 *5)) (-4 *5 (-13 (-834) (-1058))) (-5 *2 (-1282)) (-5 *1 (-832 *5)))) (-2831 (*1 *2 *3 *4) (-12 (-5 *3 (-320 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-834) (-1058))) (-5 *2 (-1168)) (-5 *1 (-832 *5)))) (-2831 (*1 *2 *3) (-12 (-5 *3 (-320 *4)) (-4 *4 (-13 (-834) (-1058))) (-5 *2 (-1168)) (-5 *1 (-832 *4)))))
-(-10 -7 (-15 -2831 ((-1168) (-320 |#1|))) (-15 -2831 ((-1168) (-320 |#1|) (-112))) (-15 -2831 ((-1282) (-828) (-320 |#1|))) (-15 -2831 ((-1282) (-828) (-320 |#1|) (-112))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2479 ((|#1| $) 10)) (-3897 (($ |#1|) 9)) (-4346 (((-112) $) NIL)) (-3912 (($ |#2| (-777)) NIL)) (-2575 (((-777) $) NIL)) (-1927 ((|#2| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3547 (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-2130 (((-777) $) NIL)) (-3799 (((-868) $) 17) (($ (-570)) NIL) (($ |#2|) NIL (|has| |#2| (-174)))) (-2249 ((|#2| $ (-777)) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3897 ($ |#1|)) (-15 -2479 (|#1| $)))) (-714 |#2|) (-1058)) (T -833))
-((-3897 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-833 *2 *3)) (-4 *2 (-714 *3)))) (-2479 (*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 -3897 ($ |#1|)) (-15 -2479 (|#1| $))))
-((-2831 (((-1282) (-828) $ (-112)) 9) (((-1282) (-828) $) 8) (((-1168) $ (-112)) 7) (((-1168) $) 6)))
+((-1668 (($ (-1129)) 7)) (-2747 (((-112) $ (-1168) (-1129)) 15)) (-2857 (((-828) $) 12)) (-1976 (((-828) $) 11)) (-1537 (((-1282) $) 9)) (-3984 (((-112) $ (-1129)) 16)))
+(((-827) (-10 -8 (-15 -1668 ($ (-1129))) (-15 -1537 ((-1282) $)) (-15 -1976 ((-828) $)) (-15 -2857 ((-828) $)) (-15 -2747 ((-112) $ (-1168) (-1129))) (-15 -3984 ((-112) $ (-1129))))) (T -827))
+((-3984 (*1 *2 *1 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))) (-2747 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))) (-2857 (*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))) (-1976 (*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))) (-1537 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-827)))) (-1668 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-827)))))
+(-10 -8 (-15 -1668 ($ (-1129))) (-15 -1537 ((-1282) $)) (-15 -1976 ((-828) $)) (-15 -2857 ((-828) $)) (-15 -2747 ((-112) $ (-1168) (-1129))) (-15 -3984 ((-112) $ (-1129))))
+((-2666 (((-1282) $ (-829)) 12)) (-2887 (((-1282) $ (-1186)) 32)) (-2010 (((-1282) $ (-1168) (-1168)) 34)) (-1704 (((-1282) $ (-1168)) 33)) (-3572 (((-1282) $) 19)) (-1788 (((-1282) $ (-570)) 28)) (-1714 (((-1282) $ (-227)) 30)) (-3972 (((-1282) $) 18)) (-3137 (((-1282) $) 26)) (-2284 (((-1282) $) 25)) (-3128 (((-1282) $) 23)) (-2494 (((-1282) $) 24)) (-1447 (((-1282) $) 22)) (-2002 (((-1282) $) 21)) (-3483 (((-1282) $) 20)) (-3809 (((-1282) $) 16)) (-3179 (((-1282) $) 17)) (-3992 (((-1282) $) 15)) (-1804 (((-1282) $) 14)) (-1654 (((-1282) $) 13)) (-1495 (($ (-1168) (-829)) 9)) (-2067 (($ (-1168) (-1168) (-829)) 8)) (-2808 (((-1186) $) 51)) (-3870 (((-1186) $) 55)) (-3950 (((-2 (|:| |cd| (-1168)) (|:| -3602 (-1168))) $) 54)) (-3609 (((-1168) $) 52)) (-3520 (((-1282) $) 41)) (-4303 (((-570) $) 49)) (-1799 (((-227) $) 50)) (-4164 (((-1282) $) 40)) (-2778 (((-1282) $) 48)) (-2257 (((-1282) $) 47)) (-3283 (((-1282) $) 45)) (-2024 (((-1282) $) 46)) (-2886 (((-1282) $) 44)) (-2870 (((-1282) $) 43)) (-2098 (((-1282) $) 42)) (-2934 (((-1282) $) 38)) (-1983 (((-1282) $) 39)) (-1766 (((-1282) $) 37)) (-2122 (((-1282) $) 36)) (-3060 (((-1282) $) 35)) (-3069 (((-1282) $) 11)))
+(((-828) (-10 -8 (-15 -2067 ($ (-1168) (-1168) (-829))) (-15 -1495 ($ (-1168) (-829))) (-15 -3069 ((-1282) $)) (-15 -2666 ((-1282) $ (-829))) (-15 -1654 ((-1282) $)) (-15 -1804 ((-1282) $)) (-15 -3992 ((-1282) $)) (-15 -3809 ((-1282) $)) (-15 -3179 ((-1282) $)) (-15 -3972 ((-1282) $)) (-15 -3572 ((-1282) $)) (-15 -3483 ((-1282) $)) (-15 -2002 ((-1282) $)) (-15 -1447 ((-1282) $)) (-15 -3128 ((-1282) $)) (-15 -2494 ((-1282) $)) (-15 -2284 ((-1282) $)) (-15 -3137 ((-1282) $)) (-15 -1788 ((-1282) $ (-570))) (-15 -1714 ((-1282) $ (-227))) (-15 -2887 ((-1282) $ (-1186))) (-15 -1704 ((-1282) $ (-1168))) (-15 -2010 ((-1282) $ (-1168) (-1168))) (-15 -3060 ((-1282) $)) (-15 -2122 ((-1282) $)) (-15 -1766 ((-1282) $)) (-15 -2934 ((-1282) $)) (-15 -1983 ((-1282) $)) (-15 -4164 ((-1282) $)) (-15 -3520 ((-1282) $)) (-15 -2098 ((-1282) $)) (-15 -2870 ((-1282) $)) (-15 -2886 ((-1282) $)) (-15 -3283 ((-1282) $)) (-15 -2024 ((-1282) $)) (-15 -2257 ((-1282) $)) (-15 -2778 ((-1282) $)) (-15 -4303 ((-570) $)) (-15 -1799 ((-227) $)) (-15 -2808 ((-1186) $)) (-15 -3609 ((-1168) $)) (-15 -3950 ((-2 (|:| |cd| (-1168)) (|:| -3602 (-1168))) $)) (-15 -3870 ((-1186) $)))) (T -828))
+((-3870 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))) (-3950 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |cd| (-1168)) (|:| -3602 (-1168)))) (-5 *1 (-828)))) (-3609 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-828)))) (-2808 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))) (-1799 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-828)))) (-4303 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-828)))) (-2778 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2257 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2024 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3283 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2886 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2870 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3520 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-4164 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1983 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2934 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1766 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2122 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3060 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2010 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-1704 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-2887 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-1714 (*1 *2 *1 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-1788 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-3137 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2284 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2494 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3128 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1447 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2002 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3483 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3572 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3972 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3809 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-3992 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1804 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1654 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-2666 (*1 *2 *1 *3) (-12 (-5 *3 (-829)) (-5 *2 (-1282)) (-5 *1 (-828)))) (-3069 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))) (-1495 (*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))) (-2067 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
+(-10 -8 (-15 -2067 ($ (-1168) (-1168) (-829))) (-15 -1495 ($ (-1168) (-829))) (-15 -3069 ((-1282) $)) (-15 -2666 ((-1282) $ (-829))) (-15 -1654 ((-1282) $)) (-15 -1804 ((-1282) $)) (-15 -3992 ((-1282) $)) (-15 -3809 ((-1282) $)) (-15 -3179 ((-1282) $)) (-15 -3972 ((-1282) $)) (-15 -3572 ((-1282) $)) (-15 -3483 ((-1282) $)) (-15 -2002 ((-1282) $)) (-15 -1447 ((-1282) $)) (-15 -3128 ((-1282) $)) (-15 -2494 ((-1282) $)) (-15 -2284 ((-1282) $)) (-15 -3137 ((-1282) $)) (-15 -1788 ((-1282) $ (-570))) (-15 -1714 ((-1282) $ (-227))) (-15 -2887 ((-1282) $ (-1186))) (-15 -1704 ((-1282) $ (-1168))) (-15 -2010 ((-1282) $ (-1168) (-1168))) (-15 -3060 ((-1282) $)) (-15 -2122 ((-1282) $)) (-15 -1766 ((-1282) $)) (-15 -2934 ((-1282) $)) (-15 -1983 ((-1282) $)) (-15 -4164 ((-1282) $)) (-15 -3520 ((-1282) $)) (-15 -2098 ((-1282) $)) (-15 -2870 ((-1282) $)) (-15 -2886 ((-1282) $)) (-15 -3283 ((-1282) $)) (-15 -2024 ((-1282) $)) (-15 -2257 ((-1282) $)) (-15 -2778 ((-1282) $)) (-15 -4303 ((-570) $)) (-15 -1799 ((-227) $)) (-15 -2808 ((-1186) $)) (-15 -3609 ((-1168) $)) (-15 -3950 ((-2 (|:| |cd| (-1168)) (|:| -3602 (-1168))) $)) (-15 -3870 ((-1186) $)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 13)) (-3359 (((-112) $ $) NIL)) (-2450 (($) 16)) (-3676 (($) 14)) (-3801 (($) 17)) (-1597 (($) 15)) (-3025 (((-112) $ $) 9)))
+(((-829) (-13 (-1109) (-10 -8 (-15 -3676 ($)) (-15 -2450 ($)) (-15 -3801 ($)) (-15 -1597 ($))))) (T -829))
+((-3676 (*1 *1) (-5 *1 (-829))) (-2450 (*1 *1) (-5 *1 (-829))) (-3801 (*1 *1) (-5 *1 (-829))) (-1597 (*1 *1) (-5 *1 (-829))))
+(-13 (-1109) (-10 -8 (-15 -3676 ($)) (-15 -2450 ($)) (-15 -3801 ($)) (-15 -1597 ($))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 23) (($ (-1186)) 19)) (-3359 (((-112) $ $) NIL)) (-2947 (((-112) $) 10)) (-1783 (((-112) $) 9)) (-1616 (((-112) $) 11)) (-1790 (((-112) $) 8)) (-3025 (((-112) $ $) 21)))
+(((-830) (-13 (-1109) (-10 -8 (-15 -3802 ($ (-1186))) (-15 -1790 ((-112) $)) (-15 -1783 ((-112) $)) (-15 -2947 ((-112) $)) (-15 -1616 ((-112) $))))) (T -830))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-830)))) (-1790 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-1783 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-2947 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))) (-1616 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(-13 (-1109) (-10 -8 (-15 -3802 ($ (-1186))) (-15 -1790 ((-112) $)) (-15 -1783 ((-112) $)) (-15 -2947 ((-112) $)) (-15 -1616 ((-112) $))))
+((-2560 (((-112) $ $) NIL)) (-4084 (($ (-830) (-650 (-1186))) 32)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1549 (((-830) $) 33)) (-2741 (((-650 (-1186)) $) 34)) (-3802 (((-868) $) 31)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-831) (-13 (-1109) (-10 -8 (-15 -1549 ((-830) $)) (-15 -2741 ((-650 (-1186)) $)) (-15 -4084 ($ (-830) (-650 (-1186))))))) (T -831))
+((-1549 (*1 *2 *1) (-12 (-5 *2 (-830)) (-5 *1 (-831)))) (-2741 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-831)))) (-4084 (*1 *1 *2 *3) (-12 (-5 *2 (-830)) (-5 *3 (-650 (-1186))) (-5 *1 (-831)))))
+(-13 (-1109) (-10 -8 (-15 -1549 ((-830) $)) (-15 -2741 ((-650 (-1186)) $)) (-15 -4084 ($ (-830) (-650 (-1186))))))
+((-1423 (((-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 -1423 ((-1168) (-320 |#1|))) (-15 -1423 ((-1168) (-320 |#1|) (-112))) (-15 -1423 ((-1282) (-828) (-320 |#1|))) (-15 -1423 ((-1282) (-828) (-320 |#1|) (-112)))) (-13 (-834) (-1058))) (T -832))
+((-1423 (*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)))) (-1423 (*1 *2 *3 *4) (-12 (-5 *3 (-828)) (-5 *4 (-320 *5)) (-4 *5 (-13 (-834) (-1058))) (-5 *2 (-1282)) (-5 *1 (-832 *5)))) (-1423 (*1 *2 *3 *4) (-12 (-5 *3 (-320 *5)) (-5 *4 (-112)) (-4 *5 (-13 (-834) (-1058))) (-5 *2 (-1168)) (-5 *1 (-832 *5)))) (-1423 (*1 *2 *3) (-12 (-5 *3 (-320 *4)) (-4 *4 (-13 (-834) (-1058))) (-5 *2 (-1168)) (-5 *1 (-832 *4)))))
+(-10 -7 (-15 -1423 ((-1168) (-320 |#1|))) (-15 -1423 ((-1168) (-320 |#1|) (-112))) (-15 -1423 ((-1282) (-828) (-320 |#1|))) (-15 -1423 ((-1282) (-828) (-320 |#1|) (-112))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2465 ((|#1| $) 10)) (-3900 (($ |#1|) 9)) (-4139 (((-112) $) NIL)) (-3915 (($ |#2| (-777)) NIL)) (-3970 (((-777) $) NIL)) (-1928 ((|#2| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3550 (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-3079 (((-777) $) NIL)) (-3802 (((-868) $) 17) (($ (-570)) NIL) (($ |#2|) NIL (|has| |#2| (-174)))) (-1864 ((|#2| $ (-777)) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-777)) NIL (|has| |#1| (-235))) (($ $) NIL (|has| |#1| (-235)))) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3900 ($ |#1|)) (-15 -2465 (|#1| $)))) (-714 |#2|) (-1058)) (T -833))
+((-3900 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-833 *2 *3)) (-4 *2 (-714 *3)))) (-2465 (*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 -3900 ($ |#1|)) (-15 -2465 (|#1| $))))
+((-1423 (((-1282) (-828) $ (-112)) 9) (((-1282) (-828) $) 8) (((-1168) $ (-112)) 7) (((-1168) $) 6)))
(((-834) (-141)) (T -834))
-((-2831 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *4 (-112)) (-5 *2 (-1282)))) (-2831 (*1 *2 *3 *1) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *2 (-1282)))) (-2831 (*1 *2 *1 *3) (-12 (-4 *1 (-834)) (-5 *3 (-112)) (-5 *2 (-1168)))) (-2831 (*1 *2 *1) (-12 (-4 *1 (-834)) (-5 *2 (-1168)))))
-(-13 (-10 -8 (-15 -2831 ((-1168) $)) (-15 -2831 ((-1168) $ (-112))) (-15 -2831 ((-1282) (-828) $)) (-15 -2831 ((-1282) (-828) $ (-112)))))
-((-3422 (((-316) (-1168) (-1168)) 12)) (-3148 (((-112) (-1168) (-1168)) 34)) (-2367 (((-112) (-1168)) 33)) (-3631 (((-52) (-1168)) 25)) (-4010 (((-52) (-1168)) 23)) (-1883 (((-52) (-828)) 17)) (-4048 (((-650 (-1168)) (-1168)) 28)) (-4339 (((-650 (-1168))) 27)))
-(((-835) (-10 -7 (-15 -1883 ((-52) (-828))) (-15 -4010 ((-52) (-1168))) (-15 -3631 ((-52) (-1168))) (-15 -4339 ((-650 (-1168)))) (-15 -4048 ((-650 (-1168)) (-1168))) (-15 -2367 ((-112) (-1168))) (-15 -3148 ((-112) (-1168) (-1168))) (-15 -3422 ((-316) (-1168) (-1168))))) (T -835))
-((-3422 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-835)))) (-3148 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))) (-2367 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))) (-4048 (*1 *2 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)) (-5 *3 (-1168)))) (-4339 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)))) (-3631 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))) (-4010 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))) (-1883 (*1 *2 *3) (-12 (-5 *3 (-828)) (-5 *2 (-52)) (-5 *1 (-835)))))
-(-10 -7 (-15 -1883 ((-52) (-828))) (-15 -4010 ((-52) (-1168))) (-15 -3631 ((-52) (-1168))) (-15 -4339 ((-650 (-1168)))) (-15 -4048 ((-650 (-1168)) (-1168))) (-15 -2367 ((-112) (-1168))) (-15 -3148 ((-112) (-1168) (-1168))) (-15 -3422 ((-316) (-1168) (-1168))))
-((-2558 (((-112) $ $) 19)) (-3959 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-3886 (($ $ $) 73)) (-4165 (((-112) $ $) 74)) (-4302 (((-112) $ (-777)) 8)) (-4249 (($ (-650 |#1|)) 69) (($) 68)) (-3753 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-3110 (($ $) 63)) (-3579 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ |#1| $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4449)))) (-1741 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2192 (((-112) $ $) 65)) (-2929 (((-112) $ (-777)) 9)) (-3466 ((|#1| $) 79)) (-2168 (($ $ $) 82)) (-2024 (($ $ $) 81)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2800 ((|#1| $) 80)) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22)) (-2730 (($ $ $) 70)) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3577 (((-1129) $) 21)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2136 (((-650 (-2 (|:| -2340 |#1|) (|:| -3584 (-777)))) $) 62)) (-4031 (($ $ |#1|) 72) (($ $ $) 71)) (-2178 (($) 50) (($ (-650 |#1|)) 49)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 51)) (-3799 (((-868) $) 18)) (-3861 (($ (-650 |#1|)) 67) (($) 66)) (-2335 (((-112) $ $) 23)) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20)) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-1423 (*1 *2 *3 *1 *4) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *4 (-112)) (-5 *2 (-1282)))) (-1423 (*1 *2 *3 *1) (-12 (-4 *1 (-834)) (-5 *3 (-828)) (-5 *2 (-1282)))) (-1423 (*1 *2 *1 *3) (-12 (-4 *1 (-834)) (-5 *3 (-112)) (-5 *2 (-1168)))) (-1423 (*1 *2 *1) (-12 (-4 *1 (-834)) (-5 *2 (-1168)))))
+(-13 (-10 -8 (-15 -1423 ((-1168) $)) (-15 -1423 ((-1168) $ (-112))) (-15 -1423 ((-1282) (-828) $)) (-15 -1423 ((-1282) (-828) $ (-112)))))
+((-3294 (((-316) (-1168) (-1168)) 12)) (-2631 (((-112) (-1168) (-1168)) 34)) (-3714 (((-112) (-1168)) 33)) (-1487 (((-52) (-1168)) 25)) (-3987 (((-52) (-1168)) 23)) (-2389 (((-52) (-828)) 17)) (-4347 (((-650 (-1168)) (-1168)) 28)) (-4069 (((-650 (-1168))) 27)))
+(((-835) (-10 -7 (-15 -2389 ((-52) (-828))) (-15 -3987 ((-52) (-1168))) (-15 -1487 ((-52) (-1168))) (-15 -4069 ((-650 (-1168)))) (-15 -4347 ((-650 (-1168)) (-1168))) (-15 -3714 ((-112) (-1168))) (-15 -2631 ((-112) (-1168) (-1168))) (-15 -3294 ((-316) (-1168) (-1168))))) (T -835))
+((-3294 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-835)))) (-2631 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))) (-3714 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))) (-4347 (*1 *2 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)) (-5 *3 (-1168)))) (-4069 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)))) (-1487 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))) (-3987 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))) (-2389 (*1 *2 *3) (-12 (-5 *3 (-828)) (-5 *2 (-52)) (-5 *1 (-835)))))
+(-10 -7 (-15 -2389 ((-52) (-828))) (-15 -3987 ((-52) (-1168))) (-15 -1487 ((-52) (-1168))) (-15 -4069 ((-650 (-1168)))) (-15 -4347 ((-650 (-1168)) (-1168))) (-15 -3714 ((-112) (-1168))) (-15 -2631 ((-112) (-1168) (-1168))) (-15 -3294 ((-316) (-1168) (-1168))))
+((-2560 (((-112) $ $) 19)) (-3962 (($ |#1| $) 77) (($ $ |#1|) 76) (($ $ $) 75)) (-2184 (($ $ $) 73)) (-3056 (((-112) $ $) 74)) (-1932 (((-112) $ (-777)) 8)) (-4253 (($ (-650 |#1|)) 69) (($) 68)) (-3353 (($ (-1 (-112) |#1|) $) 46 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-3476 (($ $) 63)) (-3582 (($ $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ |#1| $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) 47 (|has| $ (-6 -4452)))) (-1742 (($ |#1| $) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 55 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 57 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 54 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 53 (|has| $ (-6 -4452)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2511 (((-112) $ $) 65)) (-2317 (((-112) $ (-777)) 9)) (-3469 ((|#1| $) 79)) (-2270 (($ $ $) 82)) (-3183 (($ $ $) 81)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2472 ((|#1| $) 80)) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22)) (-3051 (($ $ $) 70)) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41) (($ |#1| $ (-777)) 64)) (-3580 (((-1129) $) 21)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 52)) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-3127 (((-650 (-2 (|:| -2340 |#1|) (|:| -3587 (-777)))) $) 62)) (-4180 (($ $ |#1|) 72) (($ $ $) 71)) (-2374 (($) 50) (($ (-650 |#1|)) 49)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 51)) (-3802 (((-868) $) 18)) (-3864 (($ (-650 |#1|)) 67) (($) 66)) (-3359 (((-112) $ $) 23)) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20)) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-836 |#1|) (-141) (-856)) (T -836))
-((-3466 (*1 *2 *1) (-12 (-4 *1 (-836 *2)) (-4 *2 (-856)))))
-(-13 (-742 |t#1|) (-977 |t#1|) (-10 -8 (-15 -3466 (|t#1| $))))
+((-3469 (*1 *2 *1) (-12 (-4 *1 (-836 *2)) (-4 *2 (-856)))))
+(-13 (-742 |t#1|) (-977 |t#1|) (-10 -8 (-15 -3469 (|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))
-((-4160 (((-1282) (-1129) (-1129)) 48)) (-1317 (((-1282) (-827) (-52)) 45)) (-4239 (((-52) (-827)) 16)))
-(((-837) (-10 -7 (-15 -4239 ((-52) (-827))) (-15 -1317 ((-1282) (-827) (-52))) (-15 -4160 ((-1282) (-1129) (-1129))))) (T -837))
-((-4160 (*1 *2 *3 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-1282)) (-5 *1 (-837)))) (-1317 (*1 *2 *3 *4) (-12 (-5 *3 (-827)) (-5 *4 (-52)) (-5 *2 (-1282)) (-5 *1 (-837)))) (-4239 (*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-52)) (-5 *1 (-837)))))
-(-10 -7 (-15 -4239 ((-52) (-827))) (-15 -1317 ((-1282) (-827) (-52))) (-15 -4160 ((-1282) (-1129) (-1129))))
-((-1356 (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|)) 12) (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|)) 13)))
-(((-838 |#1| |#2|) (-10 -7 (-15 -1356 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -1356 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|)))) (-1109) (-1109)) (T -838))
-((-1356 (*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)))) (-1356 (*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 -1356 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -1356 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL (|has| |#1| (-21)))) (-3990 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-4395 (((-570) $) NIL (|has| |#1| (-854)))) (-1705 (($) NIL (|has| |#1| (-21)) CONST)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 15)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 9)) (-2875 (((-3 $ "failed") $) 42 (|has| |#1| (-854)))) (-2805 (((-3 (-413 (-570)) "failed") $) 52 (|has| |#1| (-551)))) (-3242 (((-112) $) 46 (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) 49 (|has| |#1| (-551)))) (-3903 (((-112) $) NIL (|has| |#1| (-854)))) (-4346 (((-112) $) NIL (|has| |#1| (-854)))) (-1479 (((-112) $) NIL (|has| |#1| (-854)))) (-3466 (($ $ $) NIL (|has| |#1| (-854)))) (-2800 (($ $ $) NIL (|has| |#1| (-854)))) (-1988 (((-1168) $) NIL)) (-1324 (($) 13)) (-4208 (((-112) $) 12)) (-3577 (((-1129) $) NIL)) (-2501 (((-112) $) 11)) (-3799 (((-868) $) 18) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 8) (($ (-570)) NIL (-2892 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))))) (-3499 (((-777)) 36 (|has| |#1| (-854)) CONST)) (-2335 (((-112) $ $) 54)) (-2622 (($ $) NIL (|has| |#1| (-854)))) (-1861 (($) 23 (|has| |#1| (-21)) CONST)) (-1875 (($) 33 (|has| |#1| (-854)) CONST)) (-3072 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3022 (((-112) $ $) 21)) (-3062 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3042 (((-112) $ $) 45 (|has| |#1| (-854)))) (-3111 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 29 (|has| |#1| (-21)))) (-3101 (($ $ $) 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 -2501 ((-112) $)) (-15 -4208 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-3 (-413 (-570)) "failed") $))) |%noBranch|))) (-1109)) (T -839))
-((-1324 (*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1109)))) (-2501 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109)))) (-4208 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109)))) (-3242 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2068 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2805 (*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 -2501 ((-112) $)) (-15 -4208 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
-((-3190 (((-112) $ |#2|) 14)) (-3799 (((-868) $) 11)))
-(((-840 |#1| |#2|) (-10 -8 (-15 -3190 ((-112) |#1| |#2|)) (-15 -3799 ((-868) |#1|))) (-841 |#2|) (-1109)) (T -840))
-NIL
-(-10 -8 (-15 -3190 ((-112) |#1| |#2|)) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3600 ((|#1| $) 16)) (-1988 (((-1168) $) 10)) (-3190 (((-112) $ |#1|) 14)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1835 (((-55) $) 15)) (-3022 (((-112) $ $) 6)))
+((-3024 (((-1282) (-1129) (-1129)) 48)) (-1678 (((-1282) (-827) (-52)) 45)) (-2581 (((-52) (-827)) 16)))
+(((-837) (-10 -7 (-15 -2581 ((-52) (-827))) (-15 -1678 ((-1282) (-827) (-52))) (-15 -3024 ((-1282) (-1129) (-1129))))) (T -837))
+((-3024 (*1 *2 *3 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-1282)) (-5 *1 (-837)))) (-1678 (*1 *2 *3 *4) (-12 (-5 *3 (-827)) (-5 *4 (-52)) (-5 *2 (-1282)) (-5 *1 (-837)))) (-2581 (*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-52)) (-5 *1 (-837)))))
+(-10 -7 (-15 -2581 ((-52) (-827))) (-15 -1678 ((-1282) (-827) (-52))) (-15 -3024 ((-1282) (-1129) (-1129))))
+((-1357 (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|)) 12) (((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|)) 13)))
+(((-838 |#1| |#2|) (-10 -7 (-15 -1357 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -1357 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|)))) (-1109) (-1109)) (T -838))
+((-1357 (*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)))) (-1357 (*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 -1357 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|))) (-15 -1357 ((-839 |#2|) (-1 |#2| |#1|) (-839 |#1|) (-839 |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL (|has| |#1| (-21)))) (-1966 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3408 (((-570) $) NIL (|has| |#1| (-854)))) (-3195 (($) NIL (|has| |#1| (-21)) CONST)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 15)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 9)) (-1929 (((-3 $ "failed") $) 42 (|has| |#1| (-854)))) (-2502 (((-3 (-413 (-570)) "failed") $) 52 (|has| |#1| (-551)))) (-2313 (((-112) $) 46 (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) 49 (|has| |#1| (-551)))) (-2346 (((-112) $) NIL (|has| |#1| (-854)))) (-4139 (((-112) $) NIL (|has| |#1| (-854)))) (-2788 (((-112) $) NIL (|has| |#1| (-854)))) (-3469 (($ $ $) NIL (|has| |#1| (-854)))) (-2472 (($ $ $) NIL (|has| |#1| (-854)))) (-3989 (((-1168) $) NIL)) (-1326 (($) 13)) (-2277 (((-112) $) 12)) (-3580 (((-1129) $) NIL)) (-1378 (((-112) $) 11)) (-3802 (((-868) $) 18) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 8) (($ (-570)) NIL (-2895 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))))) (-2851 (((-777)) 36 (|has| |#1| (-854)) CONST)) (-3359 (((-112) $ $) 54)) (-3231 (($ $) NIL (|has| |#1| (-854)))) (-1862 (($) 23 (|has| |#1| (-21)) CONST)) (-1876 (($) 33 (|has| |#1| (-854)) CONST)) (-3075 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3025 (((-112) $ $) 21)) (-3065 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3045 (((-112) $ $) 45 (|has| |#1| (-854)))) (-3114 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 29 (|has| |#1| (-21)))) (-3104 (($ $ $) 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 -1326 ($)) (-15 -1378 ((-112) $)) (-15 -2277 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-3 (-413 (-570)) "failed") $))) |%noBranch|))) (-1109)) (T -839))
+((-1326 (*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1109)))) (-1378 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109)))) (-2277 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-1109)))) (-2313 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-3645 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2502 (*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 -1326 ($)) (-15 -1378 ((-112) $)) (-15 -2277 ((-112) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
+((-3006 (((-112) $ |#2|) 14)) (-3802 (((-868) $) 11)))
+(((-840 |#1| |#2|) (-10 -8 (-15 -3006 ((-112) |#1| |#2|)) (-15 -3802 ((-868) |#1|))) (-841 |#2|) (-1109)) (T -840))
+NIL
+(-10 -8 (-15 -3006 ((-112) |#1| |#2|)) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3602 ((|#1| $) 16)) (-3989 (((-1168) $) 10)) (-3006 (((-112) $ |#1|) 14)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1968 (((-55) $) 15)) (-3025 (((-112) $ $) 6)))
(((-841 |#1|) (-141) (-1109)) (T -841))
-((-3600 (*1 *2 *1) (-12 (-4 *1 (-841 *2)) (-4 *2 (-1109)))) (-1835 (*1 *2 *1) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-55)))) (-3190 (*1 *2 *1 *3) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(-13 (-1109) (-10 -8 (-15 -3600 (|t#1| $)) (-15 -1835 ((-55) $)) (-15 -3190 ((-112) $ |t#1|))))
+((-3602 (*1 *2 *1) (-12 (-4 *1 (-841 *2)) (-4 *2 (-1109)))) (-1968 (*1 *2 *1) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-55)))) (-3006 (*1 *2 *1 *3) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(-13 (-1109) (-10 -8 (-15 -3602 (|t#1| $)) (-15 -1968 ((-55) $)) (-15 -3006 ((-112) $ |t#1|))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#1| "failed") $) NIL) (((-3 (-115) "failed") $) NIL)) (-3216 ((|#1| $) NIL) (((-115) $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3984 ((|#1| (-115) |#1|) NIL)) (-4346 (((-112) $) NIL)) (-1570 (($ |#1| (-366 (-115))) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3163 (($ $ (-1 |#1| |#1|)) NIL)) (-2448 (($ $ (-1 |#1| |#1|)) NIL)) (-1941 ((|#1| $ |#1|) NIL)) (-1522 ((|#1| |#1|) NIL (|has| |#1| (-174)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-115)) NIL)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-3979 (($ $) NIL (|has| |#1| (-174))) (($ $ $) NIL (|has| |#1| (-174)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3979 ($ $)) (-15 -3979 ($ $ $)) (-15 -1522 (|#1| |#1|))) |%noBranch|) (-15 -2448 ($ $ (-1 |#1| |#1|))) (-15 -3163 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -3984 (|#1| (-115) |#1|)) (-15 -1570 ($ |#1| (-366 (-115)))))) (-1058)) (T -842))
-((-3979 (*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-3979 (*1 *1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1522 (*1 *2 *2) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-2448 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))) (-3163 (*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)))) (-3984 (*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-5 *1 (-842 *2)) (-4 *2 (-1058)))) (-1570 (*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 -3979 ($ $)) (-15 -3979 ($ $ $)) (-15 -1522 (|#1| |#1|))) |%noBranch|) (-15 -2448 ($ $ (-1 |#1| |#1|))) (-15 -3163 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -3984 (|#1| (-115) |#1|)) (-15 -1570 ($ |#1| (-366 (-115))))))
-((-1567 (((-216 (-508)) (-1168)) 9)))
-(((-843) (-10 -7 (-15 -1567 ((-216 (-508)) (-1168))))) (T -843))
-((-1567 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-216 (-508))) (-5 *1 (-843)))))
-(-10 -7 (-15 -1567 ((-216 (-508)) (-1168))))
-((-2558 (((-112) $ $) NIL)) (-4328 (((-1127) $) 10)) (-3600 (((-512) $) 9)) (-1988 (((-1168) $) NIL)) (-3190 (((-112) $ (-512)) NIL)) (-3577 (((-1129) $) NIL)) (-3811 (($ (-512) (-1127)) 8)) (-3799 (((-868) $) 25)) (-2335 (((-112) $ $) NIL)) (-1835 (((-55) $) 20)) (-3022 (((-112) $ $) 12)))
-(((-844) (-13 (-841 (-512)) (-10 -8 (-15 -4328 ((-1127) $)) (-15 -3811 ($ (-512) (-1127)))))) (T -844))
-((-4328 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-844)))) (-3811 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-844)))))
-(-13 (-841 (-512)) (-10 -8 (-15 -4328 ((-1127) $)) (-15 -3811 ($ (-512) (-1127)))))
-((-2558 (((-112) $ $) 7)) (-2486 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 15) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 14)) (-3039 (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 17) (((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 16)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#1| "failed") $) NIL) (((-3 (-115) "failed") $) NIL)) (-3220 ((|#1| $) NIL) (((-115) $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1890 ((|#1| (-115) |#1|) NIL)) (-4139 (((-112) $) NIL)) (-2468 (($ |#1| (-366 (-115))) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2766 (($ $ (-1 |#1| |#1|)) NIL)) (-2146 (($ $ (-1 |#1| |#1|)) NIL)) (-1942 ((|#1| $ |#1|) NIL)) (-1984 ((|#1| |#1|) NIL (|has| |#1| (-174)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-115)) NIL)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-1840 (($ $) NIL (|has| |#1| (-174))) (($ $ $) NIL (|has| |#1| (-174)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1840 ($ $)) (-15 -1840 ($ $ $)) (-15 -1984 (|#1| |#1|))) |%noBranch|) (-15 -2146 ($ $ (-1 |#1| |#1|))) (-15 -2766 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -1890 (|#1| (-115) |#1|)) (-15 -2468 ($ |#1| (-366 (-115)))))) (-1058)) (T -842))
+((-1840 (*1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1840 (*1 *1 *1 *1) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-1984 (*1 *2 *2) (-12 (-5 *1 (-842 *2)) (-4 *2 (-174)) (-4 *2 (-1058)))) (-2146 (*1 *1 *1 *2) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-842 *3)))) (-2766 (*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)))) (-1890 (*1 *2 *3 *2) (-12 (-5 *3 (-115)) (-5 *1 (-842 *2)) (-4 *2 (-1058)))) (-2468 (*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 -1840 ($ $)) (-15 -1840 ($ $ $)) (-15 -1984 (|#1| |#1|))) |%noBranch|) (-15 -2146 ($ $ (-1 |#1| |#1|))) (-15 -2766 ($ $ (-1 |#1| |#1|))) (-15 ** ($ (-115) (-570))) (-15 ** ($ $ (-570))) (-15 -1890 (|#1| (-115) |#1|)) (-15 -2468 ($ |#1| (-366 (-115))))))
+((-2437 (((-216 (-508)) (-1168)) 9)))
+(((-843) (-10 -7 (-15 -2437 ((-216 (-508)) (-1168))))) (T -843))
+((-2437 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-216 (-508))) (-5 *1 (-843)))))
+(-10 -7 (-15 -2437 ((-216 (-508)) (-1168))))
+((-2560 (((-112) $ $) NIL)) (-4331 (((-1127) $) 10)) (-3602 (((-512) $) 9)) (-3989 (((-1168) $) NIL)) (-3006 (((-112) $ (-512)) NIL)) (-3580 (((-1129) $) NIL)) (-3814 (($ (-512) (-1127)) 8)) (-3802 (((-868) $) 25)) (-3359 (((-112) $ $) NIL)) (-1968 (((-55) $) 20)) (-3025 (((-112) $ $) 12)))
+(((-844) (-13 (-841 (-512)) (-10 -8 (-15 -4331 ((-1127) $)) (-15 -3814 ($ (-512) (-1127)))))) (T -844))
+((-4331 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-844)))) (-3814 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-844)))))
+(-13 (-841 (-512)) (-10 -8 (-15 -4331 ((-1127) $)) (-15 -3814 ($ (-512) (-1127)))))
+((-2560 (((-112) $ $) 7)) (-2537 (((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 15) (((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 14)) (-3988 (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 17) (((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 16)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-845) (-141)) (T -845))
-((-3039 (*1 *2 *3 *4) (-12 (-4 *1 (-845)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *2 (-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)))))) (-3039 (*1 *2 *3 *4) (-12 (-4 *1 (-845)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) (-5 *2 (-2 (|:| -3039 (-384)) (|:| |explanations| (-1168)))))) (-2486 (*1 *2 *3) (-12 (-4 *1 (-845)) (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) (-5 *2 (-1044)))) (-2486 (*1 *2 *3) (-12 (-4 *1 (-845)) (-5 *3 (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *2 (-1044)))))
-(-13 (-1109) (-10 -7 (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) (-15 -2486 ((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) (-15 -2486 ((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))))))
+((-3988 (*1 *2 *3 *4) (-12 (-4 *1 (-845)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *2 (-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)))))) (-3988 (*1 *2 *3 *4) (-12 (-4 *1 (-845)) (-5 *3 (-1072)) (-5 *4 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) (-5 *2 (-2 (|:| -3988 (-384)) (|:| |explanations| (-1168)))))) (-2537 (*1 *2 *3) (-12 (-4 *1 (-845)) (-5 *3 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) (-5 *2 (-1044)))) (-2537 (*1 *2 *3) (-12 (-4 *1 (-845)) (-5 *3 (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *2 (-1044)))))
+(-13 (-1109) (-10 -7 (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))) (-1072) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) (-15 -2537 ((-1044) (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) (-15 -2537 ((-1044) (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3008 (((-1044) (-650 (-320 (-384))) (-650 (-384))) 166) (((-1044) (-320 (-384)) (-650 (-384))) 164) (((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384)))) 162) (((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384)))) 160) (((-1044) (-847)) 125) (((-1044) (-847) (-1072)) 124)) (-3039 (((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072)) 85) (((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847)) 87)) (-2487 (((-1044) (-650 (-320 (-384))) (-650 (-384))) 167) (((-1044) (-847)) 150)))
-(((-846) (-10 -7 (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072))) (-15 -3008 ((-1044) (-847) (-1072))) (-15 -3008 ((-1044) (-847))) (-15 -2487 ((-1044) (-847))) (-15 -3008 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384))))) (-15 -3008 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384))))) (-15 -3008 ((-1044) (-320 (-384)) (-650 (-384)))) (-15 -3008 ((-1044) (-650 (-320 (-384))) (-650 (-384)))) (-15 -2487 ((-1044) (-650 (-320 (-384))) (-650 (-384)))))) (T -846))
-((-2487 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3008 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3008 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3008 (*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)))) (-3008 (*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)))) (-2487 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3008 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3008 (*1 *2 *3 *4) (-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3039 (*1 *2 *3 *4) (-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-846)))) (-3039 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-846)))))
-(-10 -7 (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072))) (-15 -3008 ((-1044) (-847) (-1072))) (-15 -3008 ((-1044) (-847))) (-15 -2487 ((-1044) (-847))) (-15 -3008 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384))))) (-15 -3008 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384))))) (-15 -3008 ((-1044) (-320 (-384)) (-650 (-384)))) (-15 -3008 ((-1044) (-650 (-320 (-384))) (-650 (-384)))) (-15 -2487 ((-1044) (-650 (-320 (-384))) (-650 (-384)))))
-((-2558 (((-112) $ $) NIL)) (-3216 (((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) $) 21)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 20) (($ (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 14) (($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))))) 18)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-847) (-13 (-1109) (-10 -8 (-15 -3799 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3799 ($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) (-15 -3799 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))))) (-15 -3216 ((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) $))))) (T -847))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *1 (-847)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))) (-5 *1 (-847)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))))) (-5 *1 (-847)))) (-3216 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227))))))) (-5 *1 (-847)))))
-(-13 (-1109) (-10 -8 (-15 -3799 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3799 ($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) (-15 -3799 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))))) (-15 -3216 ((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))) $))))
-((-1356 (((-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 -1356 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|))) (-15 -1356 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|)))) (-1109) (-1109)) (T -848))
-((-1356 (*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)))) (-1356 (*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 -1356 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|))) (-15 -1356 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL (|has| |#1| (-21)))) (-3884 (((-1129) $) 31)) (-3990 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-4395 (((-570) $) NIL (|has| |#1| (-854)))) (-1705 (($) NIL (|has| |#1| (-21)) CONST)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 18)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 9)) (-2875 (((-3 $ "failed") $) 58 (|has| |#1| (-854)))) (-2805 (((-3 (-413 (-570)) "failed") $) 65 (|has| |#1| (-551)))) (-3242 (((-112) $) 60 (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) 63 (|has| |#1| (-551)))) (-3903 (((-112) $) NIL (|has| |#1| (-854)))) (-2067 (($) 14)) (-4346 (((-112) $) NIL (|has| |#1| (-854)))) (-1479 (((-112) $) NIL (|has| |#1| (-854)))) (-2079 (($) 16)) (-3466 (($ $ $) NIL (|has| |#1| (-854)))) (-2800 (($ $ $) NIL (|has| |#1| (-854)))) (-1988 (((-1168) $) NIL)) (-4208 (((-112) $) 12)) (-3577 (((-1129) $) NIL)) (-2501 (((-112) $) 11)) (-3799 (((-868) $) 24) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 8) (($ (-570)) NIL (-2892 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))))) (-3499 (((-777)) 51 (|has| |#1| (-854)) CONST)) (-2335 (((-112) $ $) NIL)) (-2622 (($ $) NIL (|has| |#1| (-854)))) (-1861 (($) 37 (|has| |#1| (-21)) CONST)) (-1875 (($) 48 (|has| |#1| (-854)) CONST)) (-3072 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3022 (((-112) $ $) 35)) (-3062 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3042 (((-112) $ $) 59 (|has| |#1| (-854)))) (-3111 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 44 (|has| |#1| (-21)))) (-3101 (($ $ $) 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 -2067 ($)) (-15 -2079 ($)) (-15 -2501 ((-112) $)) (-15 -4208 ((-112) $)) (-15 -3884 ((-1129) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-3 (-413 (-570)) "failed") $))) |%noBranch|))) (-1109)) (T -849))
-((-2067 (*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))) (-2079 (*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))) (-2501 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-4208 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-3884 (*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-3242 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2068 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2805 (*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 -2067 ($)) (-15 -2079 ($)) (-15 -2501 ((-112) $)) (-15 -4208 ((-112) $)) (-15 -3884 ((-1129) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
-((-2558 (((-112) $ $) 7)) (-3510 (((-777)) 23)) (-3446 (($) 26)) (-3466 (($ $ $) 14) (($) 22 T CONST)) (-2800 (($ $ $) 15) (($) 21 T CONST)) (-1884 (((-928) $) 25)) (-1988 (((-1168) $) 10)) (-2268 (($ (-928)) 24)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)))
+((-3011 (((-1044) (-650 (-320 (-384))) (-650 (-384))) 166) (((-1044) (-320 (-384)) (-650 (-384))) 164) (((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384)))) 162) (((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384)))) 160) (((-1044) (-847)) 125) (((-1044) (-847) (-1072)) 124)) (-3988 (((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072)) 85) (((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847)) 87)) (-2547 (((-1044) (-650 (-320 (-384))) (-650 (-384))) 167) (((-1044) (-847)) 150)))
+(((-846) (-10 -7 (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072))) (-15 -3011 ((-1044) (-847) (-1072))) (-15 -3011 ((-1044) (-847))) (-15 -2547 ((-1044) (-847))) (-15 -3011 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384))))) (-15 -3011 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384))))) (-15 -3011 ((-1044) (-320 (-384)) (-650 (-384)))) (-15 -3011 ((-1044) (-650 (-320 (-384))) (-650 (-384)))) (-15 -2547 ((-1044) (-650 (-320 (-384))) (-650 (-384)))))) (T -846))
+((-2547 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3011 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3011 (*1 *2 *3 *4) (-12 (-5 *3 (-320 (-384))) (-5 *4 (-650 (-384))) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3011 (*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)))) (-3011 (*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)))) (-2547 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3011 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3011 (*1 *2 *3 *4) (-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-846)))) (-3988 (*1 *2 *3 *4) (-12 (-5 *3 (-847)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-846)))) (-3988 (*1 *2 *3) (-12 (-5 *3 (-847)) (-5 *2 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-846)))))
+(-10 -7 (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-847) (-1072))) (-15 -3011 ((-1044) (-847) (-1072))) (-15 -3011 ((-1044) (-847))) (-15 -2547 ((-1044) (-847))) (-15 -3011 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-320 (-384))) (-650 (-849 (-384))))) (-15 -3011 ((-1044) (-320 (-384)) (-650 (-384)) (-650 (-849 (-384))) (-650 (-849 (-384))))) (-15 -3011 ((-1044) (-320 (-384)) (-650 (-384)))) (-15 -3011 ((-1044) (-650 (-320 (-384))) (-650 (-384)))) (-15 -2547 ((-1044) (-650 (-320 (-384))) (-650 (-384)))))
+((-2560 (((-112) $ $) NIL)) (-3220 (((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) $) 21)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 20) (($ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) 14) (($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) 16) (($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))))) 18)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-847) (-13 (-1109) (-10 -8 (-15 -3802 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3802 ($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) (-15 -3802 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))))) (-15 -3220 ((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) $))))) (T -847))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (-5 *1 (-847)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))) (-5 *1 (-847)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))))) (-5 *1 (-847)))) (-3220 (*1 *2 *1) (-12 (-5 *2 (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227))))))) (-5 *1 (-847)))))
+(-13 (-1109) (-10 -8 (-15 -3802 ($ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227))))))) (-15 -3802 ($ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) (-15 -3802 ($ (-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))))) (-15 -3220 ((-3 (|:| |noa| (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227))) (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227)))) (|:| |ub| (-650 (-849 (-227)))))) (|:| |lsa| (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))) $))))
+((-1357 (((-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 -1357 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|))) (-15 -1357 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|)))) (-1109) (-1109)) (T -848))
+((-1357 (*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)))) (-1357 (*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 -1357 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|))) (-15 -1357 ((-849 |#2|) (-1 |#2| |#1|) (-849 |#1|) (-849 |#2|) (-849 |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL (|has| |#1| (-21)))) (-2163 (((-1129) $) 31)) (-1966 (((-3 $ "failed") $ $) NIL (|has| |#1| (-21)))) (-3408 (((-570) $) NIL (|has| |#1| (-854)))) (-3195 (($) NIL (|has| |#1| (-21)) CONST)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 18)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 9)) (-1929 (((-3 $ "failed") $) 58 (|has| |#1| (-854)))) (-2502 (((-3 (-413 (-570)) "failed") $) 65 (|has| |#1| (-551)))) (-2313 (((-112) $) 60 (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) 63 (|has| |#1| (-551)))) (-2346 (((-112) $) NIL (|has| |#1| (-854)))) (-2068 (($) 14)) (-4139 (((-112) $) NIL (|has| |#1| (-854)))) (-2788 (((-112) $) NIL (|has| |#1| (-854)))) (-2080 (($) 16)) (-3469 (($ $ $) NIL (|has| |#1| (-854)))) (-2472 (($ $ $) NIL (|has| |#1| (-854)))) (-3989 (((-1168) $) NIL)) (-2277 (((-112) $) 12)) (-3580 (((-1129) $) NIL)) (-1378 (((-112) $) 11)) (-3802 (((-868) $) 24) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 8) (($ (-570)) NIL (-2895 (|has| |#1| (-854)) (|has| |#1| (-1047 (-570)))))) (-2851 (((-777)) 51 (|has| |#1| (-854)) CONST)) (-3359 (((-112) $ $) NIL)) (-3231 (($ $) NIL (|has| |#1| (-854)))) (-1862 (($) 37 (|has| |#1| (-21)) CONST)) (-1876 (($) 48 (|has| |#1| (-854)) CONST)) (-3075 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3025 (((-112) $ $) 35)) (-3065 (((-112) $ $) NIL (|has| |#1| (-854)))) (-3045 (((-112) $ $) 59 (|has| |#1| (-854)))) (-3114 (($ $ $) NIL (|has| |#1| (-21))) (($ $) 44 (|has| |#1| (-21)))) (-3104 (($ $ $) 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 -2068 ($)) (-15 -2080 ($)) (-15 -1378 ((-112) $)) (-15 -2277 ((-112) $)) (-15 -2163 ((-1129) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-3 (-413 (-570)) "failed") $))) |%noBranch|))) (-1109)) (T -849))
+((-2068 (*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))) (-2080 (*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))) (-1378 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-2277 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-2163 (*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))) (-2313 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-3645 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109)))) (-2502 (*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 -2068 ($)) (-15 -2080 ($)) (-15 -1378 ((-112) $)) (-15 -2277 ((-112) $)) (-15 -2163 ((-1129) $)) (IF (|has| |#1| (-21)) (-6 (-21)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-854)) |%noBranch|) (IF (|has| |#1| (-551)) (PROGN (-15 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-3 (-413 (-570)) "failed") $))) |%noBranch|)))
+((-2560 (((-112) $ $) 7)) (-3513 (((-777)) 23)) (-3449 (($) 26)) (-3469 (($ $ $) 14) (($) 22 T CONST)) (-2472 (($ $ $) 15) (($) 21 T CONST)) (-2400 (((-928) $) 25)) (-3989 (((-1168) $) 10)) (-2267 (($ (-928)) 24)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)))
(((-850) (-141)) (T -850))
-((-3466 (*1 *1) (-4 *1 (-850))) (-2800 (*1 *1) (-4 *1 (-850))))
-(-13 (-856) (-373) (-10 -8 (-15 -3466 ($) -3725) (-15 -2800 ($) -3725)))
+((-3469 (*1 *1) (-4 *1 (-850))) (-2472 (*1 *1) (-4 *1 (-850))))
+(-13 (-856) (-373) (-10 -8 (-15 -3469 ($) -3728) (-15 -2472 ($) -3728)))
(((-102) . T) ((-619 (-868)) . T) ((-373) . T) ((-856) . T) ((-1109) . T))
-((-4216 (((-112) (-1277 |#2|) (-1277 |#2|)) 19)) (-2699 (((-112) (-1277 |#2|) (-1277 |#2|)) 20)) (-2293 (((-112) (-1277 |#2|) (-1277 |#2|)) 16)))
-(((-851 |#1| |#2|) (-10 -7 (-15 -2293 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -4216 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -2699 ((-112) (-1277 |#2|) (-1277 |#2|)))) (-777) (-798)) (T -851))
-((-2699 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))) (-4216 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))) (-2293 (*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 -2293 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -4216 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -2699 ((-112) (-1277 |#2|) (-1277 |#2|))))
-((-2558 (((-112) $ $) 7)) (-1705 (($) 24 T CONST)) (-2875 (((-3 $ "failed") $) 27)) (-4346 (((-112) $) 25)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1875 (($) 23 T CONST)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (** (($ $ (-928)) 22) (($ $ (-777)) 26)) (* (($ $ $) 21)))
+((-2351 (((-112) (-1277 |#2|) (-1277 |#2|)) 19)) (-2758 (((-112) (-1277 |#2|) (-1277 |#2|)) 20)) (-4121 (((-112) (-1277 |#2|) (-1277 |#2|)) 16)))
+(((-851 |#1| |#2|) (-10 -7 (-15 -4121 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -2351 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -2758 ((-112) (-1277 |#2|) (-1277 |#2|)))) (-777) (-798)) (T -851))
+((-2758 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))) (-2351 (*1 *2 *3 *3) (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112)) (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))) (-4121 (*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 -4121 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -2351 ((-112) (-1277 |#2|) (-1277 |#2|))) (-15 -2758 ((-112) (-1277 |#2|) (-1277 |#2|))))
+((-2560 (((-112) $ $) 7)) (-3195 (($) 24 T CONST)) (-1929 (((-3 $ "failed") $) 27)) (-4139 (((-112) $) 25)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1876 (($) 23 T CONST)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-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))
-((-4395 (((-570) $) 21)) (-3903 (((-112) $) 10)) (-1479 (((-112) $) 12)) (-2622 (($ $) 23)))
-(((-853 |#1|) (-10 -8 (-15 -2622 (|#1| |#1|)) (-15 -4395 ((-570) |#1|)) (-15 -1479 ((-112) |#1|)) (-15 -3903 ((-112) |#1|))) (-854)) (T -853))
+((-3408 (((-570) $) 21)) (-2346 (((-112) $) 10)) (-2788 (((-112) $) 12)) (-3231 (($ $) 23)))
+(((-853 |#1|) (-10 -8 (-15 -3231 (|#1| |#1|)) (-15 -3408 ((-570) |#1|)) (-15 -2788 ((-112) |#1|)) (-15 -2346 ((-112) |#1|))) (-854)) (T -853))
NIL
-(-10 -8 (-15 -2622 (|#1| |#1|)) (-15 -4395 ((-570) |#1|)) (-15 -1479 ((-112) |#1|)) (-15 -3903 ((-112) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 25)) (-3990 (((-3 $ "failed") $ $) 27)) (-4395 (((-570) $) 37)) (-1705 (($) 24 T CONST)) (-2875 (((-3 $ "failed") $) 42)) (-3903 (((-112) $) 39)) (-4346 (((-112) $) 44)) (-1479 (((-112) $) 38)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 46)) (-3499 (((-777)) 47 T CONST)) (-2335 (((-112) $ $) 9)) (-2622 (($ $) 36)) (-1861 (($) 23 T CONST)) (-1875 (($) 45 T CONST)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (-3111 (($ $ $) 31) (($ $) 30)) (-3101 (($ $ $) 21)) (** (($ $ (-777)) 43) (($ $ (-928)) 40)) (* (($ (-928) $) 22) (($ (-777) $) 26) (($ (-570) $) 29) (($ $ $) 41)))
+(-10 -8 (-15 -3231 (|#1| |#1|)) (-15 -3408 ((-570) |#1|)) (-15 -2788 ((-112) |#1|)) (-15 -2346 ((-112) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 25)) (-1966 (((-3 $ "failed") $ $) 27)) (-3408 (((-570) $) 37)) (-3195 (($) 24 T CONST)) (-1929 (((-3 $ "failed") $) 42)) (-2346 (((-112) $) 39)) (-4139 (((-112) $) 44)) (-2788 (((-112) $) 38)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 46)) (-2851 (((-777)) 47 T CONST)) (-3359 (((-112) $ $) 9)) (-3231 (($ $) 36)) (-1862 (($) 23 T CONST)) (-1876 (($) 45 T CONST)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)) (-3114 (($ $ $) 31) (($ $) 30)) (-3104 (($ $ $) 21)) (** (($ $ (-777)) 43) (($ $ (-928)) 40)) (* (($ (-928) $) 22) (($ (-777) $) 26) (($ (-570) $) 29) (($ $ $) 41)))
(((-854) (-141)) (T -854))
-((-3903 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112)))) (-1479 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112)))) (-4395 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-570)))) (-2622 (*1 *1 *1) (-4 *1 (-854))))
-(-13 (-797) (-1058) (-732) (-10 -8 (-15 -3903 ((-112) $)) (-15 -1479 ((-112) $)) (-15 -4395 ((-570) $)) (-15 -2622 ($ $))))
+((-2346 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112)))) (-2788 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-112)))) (-3408 (*1 *2 *1) (-12 (-4 *1 (-854)) (-5 *2 (-570)))) (-3231 (*1 *1 *1) (-4 *1 (-854))))
+(-13 (-797) (-1058) (-732) (-10 -8 (-15 -2346 ((-112) $)) (-15 -2788 ((-112) $)) (-15 -3408 ((-570) $)) (-15 -3231 ($ $))))
(((-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))
-((-3466 (($ $ $) 12)) (-2800 (($ $ $) 11)) (-2335 (((-112) $ $) 9)) (-3072 (((-112) $ $) 15)) (-3052 (((-112) $ $) 13)) (-3062 (((-112) $ $) 16)))
-(((-855 |#1|) (-10 -8 (-15 -3466 (|#1| |#1| |#1|)) (-15 -2800 (|#1| |#1| |#1|)) (-15 -3062 ((-112) |#1| |#1|)) (-15 -3072 ((-112) |#1| |#1|)) (-15 -3052 ((-112) |#1| |#1|)) (-15 -2335 ((-112) |#1| |#1|))) (-856)) (T -855))
+((-3469 (($ $ $) 12)) (-2472 (($ $ $) 11)) (-3359 (((-112) $ $) 9)) (-3075 (((-112) $ $) 15)) (-3055 (((-112) $ $) 13)) (-3065 (((-112) $ $) 16)))
+(((-855 |#1|) (-10 -8 (-15 -3469 (|#1| |#1| |#1|)) (-15 -2472 (|#1| |#1| |#1|)) (-15 -3065 ((-112) |#1| |#1|)) (-15 -3075 ((-112) |#1| |#1|)) (-15 -3055 ((-112) |#1| |#1|)) (-15 -3359 ((-112) |#1| |#1|))) (-856)) (T -855))
NIL
-(-10 -8 (-15 -3466 (|#1| |#1| |#1|)) (-15 -2800 (|#1| |#1| |#1|)) (-15 -3062 ((-112) |#1| |#1|)) (-15 -3072 ((-112) |#1| |#1|)) (-15 -3052 ((-112) |#1| |#1|)) (-15 -2335 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)))
+(-10 -8 (-15 -3469 (|#1| |#1| |#1|)) (-15 -2472 (|#1| |#1| |#1|)) (-15 -3065 ((-112) |#1| |#1|)) (-15 -3075 ((-112) |#1| |#1|)) (-15 -3055 ((-112) |#1| |#1|)) (-15 -3359 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)))
(((-856) (-141)) (T -856))
-((-3042 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-3052 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-3072 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-3062 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2800 (*1 *1 *1 *1) (-4 *1 (-856))) (-3466 (*1 *1 *1 *1) (-4 *1 (-856))))
-(-13 (-1109) (-10 -8 (-15 -3042 ((-112) $ $)) (-15 -3052 ((-112) $ $)) (-15 -3072 ((-112) $ $)) (-15 -3062 ((-112) $ $)) (-15 -2800 ($ $ $)) (-15 -3466 ($ $ $))))
+((-3045 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-3055 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-3075 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-3065 (*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112)))) (-2472 (*1 *1 *1 *1) (-4 *1 (-856))) (-3469 (*1 *1 *1 *1) (-4 *1 (-856))))
+(-13 (-1109) (-10 -8 (-15 -3045 ((-112) $ $)) (-15 -3055 ((-112) $ $)) (-15 -3075 ((-112) $ $)) (-15 -3065 ((-112) $ $)) (-15 -2472 ($ $ $)) (-15 -3469 ($ $ $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-4022 (($ $ $) 49)) (-2838 (($ $ $) 48)) (-4112 (($ $ $) 46)) (-3518 (($ $ $) 55)) (-2964 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 50)) (-4382 (((-3 $ "failed") $ $) 53)) (-4380 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 29)) (-3988 (($ $) 39)) (-4001 (($ $ $) 43)) (-4118 (($ $ $) 42)) (-2775 (($ $ $) 51)) (-2834 (($ $ $) 57)) (-3125 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 45)) (-2134 (((-3 $ "failed") $ $) 52)) (-2547 (((-3 $ "failed") $ |#2|) 32)) (-1848 ((|#2| $) 36)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#2|) 13)) (-2186 (((-650 |#2|) $) 21)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 25)))
-(((-857 |#1| |#2|) (-10 -8 (-15 -2775 (|#1| |#1| |#1|)) (-15 -2964 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2466 |#1|)) |#1| |#1|)) (-15 -3518 (|#1| |#1| |#1|)) (-15 -4382 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4022 (|#1| |#1| |#1|)) (-15 -2838 (|#1| |#1| |#1|)) (-15 -4112 (|#1| |#1| |#1|)) (-15 -3125 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2466 |#1|)) |#1| |#1|)) (-15 -2834 (|#1| |#1| |#1|)) (-15 -2134 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4001 (|#1| |#1| |#1|)) (-15 -4118 (|#1| |#1| |#1|)) (-15 -3988 (|#1| |#1|)) (-15 -1848 (|#2| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2186 ((-650 |#2|) |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3799 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3799 ((-868) |#1|))) (-858 |#2|) (-1058)) (T -857))
+((-4091 (($ $ $) 49)) (-1508 (($ $ $) 48)) (-3803 (($ $ $) 46)) (-3022 (($ $ $) 55)) (-1333 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 50)) (-3301 (((-3 $ "failed") $ $) 53)) (-4383 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 29)) (-1944 (($ $) 39)) (-3904 (($ $ $) 43)) (-2687 (($ $ $) 42)) (-2271 (($ $ $) 51)) (-1469 (($ $ $) 57)) (-3601 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 45)) (-3118 (((-3 $ "failed") $ $) 52)) (-2548 (((-3 $ "failed") $ |#2|) 32)) (-2077 ((|#2| $) 36)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#2|) 13)) (-2459 (((-650 |#2|) $) 21)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 25)))
+(((-857 |#1| |#2|) (-10 -8 (-15 -2271 (|#1| |#1| |#1|)) (-15 -1333 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2467 |#1|)) |#1| |#1|)) (-15 -3022 (|#1| |#1| |#1|)) (-15 -3301 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4091 (|#1| |#1| |#1|)) (-15 -1508 (|#1| |#1| |#1|)) (-15 -3803 (|#1| |#1| |#1|)) (-15 -3601 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2467 |#1|)) |#1| |#1|)) (-15 -1469 (|#1| |#1| |#1|)) (-15 -3118 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3904 (|#1| |#1| |#1|)) (-15 -2687 (|#1| |#1| |#1|)) (-15 -1944 (|#1| |#1|)) (-15 -2077 (|#2| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2459 ((-650 |#2|) |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3802 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3802 ((-868) |#1|))) (-858 |#2|) (-1058)) (T -857))
NIL
-(-10 -8 (-15 -2775 (|#1| |#1| |#1|)) (-15 -2964 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2466 |#1|)) |#1| |#1|)) (-15 -3518 (|#1| |#1| |#1|)) (-15 -4382 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4022 (|#1| |#1| |#1|)) (-15 -2838 (|#1| |#1| |#1|)) (-15 -4112 (|#1| |#1| |#1|)) (-15 -3125 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2466 |#1|)) |#1| |#1|)) (-15 -2834 (|#1| |#1| |#1|)) (-15 -2134 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4001 (|#1| |#1| |#1|)) (-15 -4118 (|#1| |#1| |#1|)) (-15 -3988 (|#1| |#1|)) (-15 -1848 (|#2| |#1|)) (-15 -2547 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2186 ((-650 |#2|) |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3799 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-4022 (($ $ $) 50 (|has| |#1| (-368)))) (-2838 (($ $ $) 51 (|has| |#1| (-368)))) (-4112 (($ $ $) 53 (|has| |#1| (-368)))) (-3518 (($ $ $) 48 (|has| |#1| (-368)))) (-2964 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 47 (|has| |#1| (-368)))) (-4382 (((-3 $ "failed") $ $) 49 (|has| |#1| (-368)))) (-3879 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 52 (|has| |#1| (-368)))) (-4380 (((-3 (-570) "failed") $) 80 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 77 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 74)) (-3216 (((-570) $) 79 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 76 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 75)) (-1956 (($ $) 69)) (-2875 (((-3 $ "failed") $) 37)) (-3988 (($ $) 60 (|has| |#1| (-458)))) (-4346 (((-112) $) 35)) (-3912 (($ |#1| (-777)) 67)) (-2378 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 62 (|has| |#1| (-562)))) (-3382 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63 (|has| |#1| (-562)))) (-2575 (((-777) $) 71)) (-4001 (($ $ $) 57 (|has| |#1| (-368)))) (-4118 (($ $ $) 58 (|has| |#1| (-368)))) (-2775 (($ $ $) 46 (|has| |#1| (-368)))) (-2834 (($ $ $) 55 (|has| |#1| (-368)))) (-3125 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 54 (|has| |#1| (-368)))) (-2134 (((-3 $ "failed") $ $) 56 (|has| |#1| (-368)))) (-2364 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 59 (|has| |#1| (-368)))) (-1927 ((|#1| $) 70)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-562)))) (-2130 (((-777) $) 72)) (-1848 ((|#1| $) 61 (|has| |#1| (-458)))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 78 (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 73)) (-2186 (((-650 |#1|) $) 66)) (-2249 ((|#1| $ (-777)) 68)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-3489 ((|#1| $ |#1| |#1|) 65)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
+(-10 -8 (-15 -2271 (|#1| |#1| |#1|)) (-15 -1333 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2467 |#1|)) |#1| |#1|)) (-15 -3022 (|#1| |#1| |#1|)) (-15 -3301 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4091 (|#1| |#1| |#1|)) (-15 -1508 (|#1| |#1| |#1|)) (-15 -3803 (|#1| |#1| |#1|)) (-15 -3601 ((-2 (|:| |coef1| |#1|) (|:| |coef2| |#1|) (|:| -2467 |#1|)) |#1| |#1|)) (-15 -1469 (|#1| |#1| |#1|)) (-15 -3118 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3904 (|#1| |#1| |#1|)) (-15 -2687 (|#1| |#1| |#1|)) (-15 -1944 (|#1| |#1|)) (-15 -2077 (|#2| |#1|)) (-15 -2548 ((-3 |#1| "failed") |#1| |#2|)) (-15 -2459 ((-650 |#2|) |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3802 (|#1| (-570))) (-15 * (|#1| |#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-4091 (($ $ $) 50 (|has| |#1| (-368)))) (-1508 (($ $ $) 51 (|has| |#1| (-368)))) (-3803 (($ $ $) 53 (|has| |#1| (-368)))) (-3022 (($ $ $) 48 (|has| |#1| (-368)))) (-1333 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 47 (|has| |#1| (-368)))) (-3301 (((-3 $ "failed") $ $) 49 (|has| |#1| (-368)))) (-2109 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 52 (|has| |#1| (-368)))) (-4383 (((-3 (-570) "failed") $) 80 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 77 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 74)) (-3220 (((-570) $) 79 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 76 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 75)) (-1954 (($ $) 69)) (-1929 (((-3 $ "failed") $) 37)) (-1944 (($ $) 60 (|has| |#1| (-458)))) (-4139 (((-112) $) 35)) (-3915 (($ |#1| (-777)) 67)) (-2639 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 62 (|has| |#1| (-562)))) (-4168 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63 (|has| |#1| (-562)))) (-3970 (((-777) $) 71)) (-3904 (($ $ $) 57 (|has| |#1| (-368)))) (-2687 (($ $ $) 58 (|has| |#1| (-368)))) (-2271 (($ $ $) 46 (|has| |#1| (-368)))) (-1469 (($ $ $) 55 (|has| |#1| (-368)))) (-3601 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 54 (|has| |#1| (-368)))) (-3118 (((-3 $ "failed") $ $) 56 (|has| |#1| (-368)))) (-3684 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 59 (|has| |#1| (-368)))) (-1928 ((|#1| $) 70)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ |#1|) 64 (|has| |#1| (-562)))) (-3079 (((-777) $) 72)) (-2077 ((|#1| $) 61 (|has| |#1| (-458)))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 78 (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) 73)) (-2459 (((-650 |#1|) $) 66)) (-1864 ((|#1| $ (-777)) 68)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3492 ((|#1| $ |#1| |#1|) 65)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 82) (($ |#1| $) 81)))
(((-858 |#1|) (-141) (-1058)) (T -858))
-((-2130 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2575 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-1927 (*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-1956 (*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-2249 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-3912 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-2186 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-650 *3)))) (-3489 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-2547 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-3382 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-858 *3)))) (-2378 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-858 *3)))) (-1848 (*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-3988 (*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-2364 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-858 *3)))) (-4118 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4001 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2134 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2834 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3125 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2466 *1))) (-4 *1 (-858 *3)))) (-4112 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3879 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-858 *3)))) (-2838 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4022 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4382 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3518 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2964 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2466 *1))) (-4 *1 (-858 *3)))) (-2775 (*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 -2130 ((-777) $)) (-15 -2575 ((-777) $)) (-15 -1927 (|t#1| $)) (-15 -1956 ($ $)) (-15 -2249 (|t#1| $ (-777))) (-15 -3912 ($ |t#1| (-777))) (-15 -2186 ((-650 |t#1|) $)) (-15 -3489 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -2547 ((-3 $ "failed") $ |t#1|)) (-15 -3382 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -2378 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -1848 (|t#1| $)) (-15 -3988 ($ $))) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-15 -2364 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -4118 ($ $ $)) (-15 -4001 ($ $ $)) (-15 -2134 ((-3 $ "failed") $ $)) (-15 -2834 ($ $ $)) (-15 -3125 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $)) (-15 -4112 ($ $ $)) (-15 -3879 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -2838 ($ $ $)) (-15 -4022 ($ $ $)) (-15 -4382 ((-3 $ "failed") $ $)) (-15 -3518 ($ $ $)) (-15 -2964 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $)) (-15 -2775 ($ $ $))) |%noBranch|)))
+((-3079 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-3970 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-1928 (*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-1954 (*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-1864 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-3915 (*1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-2459 (*1 *2 *1) (-12 (-4 *1 (-858 *3)) (-4 *3 (-1058)) (-5 *2 (-650 *3)))) (-3492 (*1 *2 *1 *2 *2) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)))) (-2548 (*1 *1 *1 *2) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-4168 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-858 *3)))) (-2639 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-858 *3)))) (-2077 (*1 *2 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-1944 (*1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-458)))) (-3684 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-858 *3)))) (-2687 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3904 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3118 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1469 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3601 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2467 *1))) (-4 *1 (-858 *3)))) (-3803 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2109 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-858 *3)))) (-1508 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-4091 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3301 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-3022 (*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-1333 (*1 *2 *1 *1) (-12 (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2467 *1))) (-4 *1 (-858 *3)))) (-2271 (*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 -3079 ((-777) $)) (-15 -3970 ((-777) $)) (-15 -1928 (|t#1| $)) (-15 -1954 ($ $)) (-15 -1864 (|t#1| $ (-777))) (-15 -3915 ($ |t#1| (-777))) (-15 -2459 ((-650 |t#1|) $)) (-15 -3492 (|t#1| $ |t#1| |t#1|)) (IF (|has| |t#1| (-174)) (-6 (-38 |t#1|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -2548 ((-3 $ "failed") $ |t#1|)) (-15 -4168 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -2639 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -2077 (|t#1| $)) (-15 -1944 ($ $))) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-15 -3684 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -2687 ($ $ $)) (-15 -3904 ($ $ $)) (-15 -3118 ((-3 $ "failed") $ $)) (-15 -1469 ($ $ $)) (-15 -3601 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $)) (-15 -3803 ($ $ $)) (-15 -2109 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -1508 ($ $ $)) (-15 -4091 ($ $ $)) (-15 -3301 ((-3 $ "failed") $ $)) (-15 -3022 ($ $ $)) (-15 -1333 ((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $)) (-15 -2271 ($ $ $))) |%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))
-((-3336 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-3879 (((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|)) 46 (|has| |#1| (-368)))) (-2378 (((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|)) 43 (|has| |#1| (-562)))) (-3382 (((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|)) 42 (|has| |#1| (-562)))) (-2364 (((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|)) 45 (|has| |#1| (-368)))) (-3489 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 33)))
-(((-859 |#1| |#2|) (-10 -7 (-15 -3336 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3489 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-562)) (PROGN (-15 -3382 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2378 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -2364 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -3879 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1058) (-858 |#1|)) (T -859))
-((-3879 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-2364 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-2378 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-3382 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-3489 (*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)))) (-3336 (*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 -3336 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3489 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-562)) (PROGN (-15 -3382 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2378 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -2364 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -3879 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4022 (($ $ $) NIL (|has| |#1| (-368)))) (-2838 (($ $ $) NIL (|has| |#1| (-368)))) (-4112 (($ $ $) NIL (|has| |#1| (-368)))) (-3518 (($ $ $) NIL (|has| |#1| (-368)))) (-2964 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-4382 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3879 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 34 (|has| |#1| (-368)))) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458)))) (-2710 (((-868) $ (-868)) NIL)) (-4346 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) NIL)) (-2378 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 30 (|has| |#1| (-562)))) (-3382 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 28 (|has| |#1| (-562)))) (-2575 (((-777) $) NIL)) (-4001 (($ $ $) NIL (|has| |#1| (-368)))) (-4118 (($ $ $) NIL (|has| |#1| (-368)))) (-2775 (($ $ $) NIL (|has| |#1| (-368)))) (-2834 (($ $ $) NIL (|has| |#1| (-368)))) (-3125 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2134 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2364 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 32 (|has| |#1| (-368)))) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-2130 (((-777) $) NIL)) (-1848 ((|#1| $) NIL (|has| |#1| (-458)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-777)) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-3489 ((|#1| $ |#1| |#1|) 15)) (-1861 (($) NIL T CONST)) (-1875 (($) 23 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2710 ((-868) $ (-868))))) (-1058) (-99 |#1|) (-1 |#1| |#1|)) (T -860))
-((-2710 (*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 -2710 ((-868) $ (-868)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4022 (($ $ $) NIL (|has| |#2| (-368)))) (-2838 (($ $ $) NIL (|has| |#2| (-368)))) (-4112 (($ $ $) NIL (|has| |#2| (-368)))) (-3518 (($ $ $) NIL (|has| |#2| (-368)))) (-2964 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#2| (-368)))) (-4382 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-3879 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#2| (-368)))) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#2| (-458)))) (-4346 (((-112) $) NIL)) (-3912 (($ |#2| (-777)) 17)) (-2378 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#2| (-562)))) (-3382 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#2| (-562)))) (-2575 (((-777) $) NIL)) (-4001 (($ $ $) NIL (|has| |#2| (-368)))) (-4118 (($ $ $) NIL (|has| |#2| (-368)))) (-2775 (($ $ $) NIL (|has| |#2| (-368)))) (-2834 (($ $ $) NIL (|has| |#2| (-368)))) (-3125 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#2| (-368)))) (-2134 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-2364 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#2| (-368)))) (-1927 ((|#2| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2547 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-2130 (((-777) $) NIL)) (-1848 ((|#2| $) NIL (|has| |#2| (-458)))) (-3799 (((-868) $) 24) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (($ (-1273 |#1|)) 19)) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ (-777)) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-3489 ((|#2| $ |#2| |#2|) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) 13 T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) NIL)))
+((-3339 ((|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|)) 20)) (-2109 (((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|)) 46 (|has| |#1| (-368)))) (-2639 (((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|)) 43 (|has| |#1| (-562)))) (-4168 (((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|)) 42 (|has| |#1| (-562)))) (-3684 (((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|)) 45 (|has| |#1| (-368)))) (-3492 ((|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|)) 33)))
+(((-859 |#1| |#2|) (-10 -7 (-15 -3339 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3492 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-562)) (PROGN (-15 -4168 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2639 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3684 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2109 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|)) (-1058) (-858 |#1|)) (T -859))
+((-2109 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-3684 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-2639 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-4168 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-859 *5 *3)) (-4 *3 (-858 *5)))) (-3492 (*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)))) (-3339 (*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 -3339 (|#2| |#2| |#2| (-99 |#1|) (-1 |#1| |#1|))) (-15 -3492 (|#1| |#2| |#1| |#1| (-99 |#1|) (-1 |#1| |#1|))) (IF (|has| |#1| (-562)) (PROGN (-15 -4168 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2639 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3684 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|))) (-15 -2109 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2| (-99 |#1|)))) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4091 (($ $ $) NIL (|has| |#1| (-368)))) (-1508 (($ $ $) NIL (|has| |#1| (-368)))) (-3803 (($ $ $) NIL (|has| |#1| (-368)))) (-3022 (($ $ $) NIL (|has| |#1| (-368)))) (-1333 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3301 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-2109 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 34 (|has| |#1| (-368)))) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458)))) (-2878 (((-868) $ (-868)) NIL)) (-4139 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) NIL)) (-2639 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 30 (|has| |#1| (-562)))) (-4168 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 28 (|has| |#1| (-562)))) (-3970 (((-777) $) NIL)) (-3904 (($ $ $) NIL (|has| |#1| (-368)))) (-2687 (($ $ $) NIL (|has| |#1| (-368)))) (-2271 (($ $ $) NIL (|has| |#1| (-368)))) (-1469 (($ $ $) NIL (|has| |#1| (-368)))) (-3601 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3118 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3684 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 32 (|has| |#1| (-368)))) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-3079 (((-777) $) NIL)) (-2077 ((|#1| $) NIL (|has| |#1| (-458)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#1| (-1047 (-413 (-570))))) (($ |#1|) NIL)) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-777)) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3492 ((|#1| $ |#1| |#1|) 15)) (-1862 (($) NIL T CONST)) (-1876 (($) 23 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -2878 ((-868) $ (-868))))) (-1058) (-99 |#1|) (-1 |#1| |#1|)) (T -860))
+((-2878 (*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 -2878 ((-868) $ (-868)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4091 (($ $ $) NIL (|has| |#2| (-368)))) (-1508 (($ $ $) NIL (|has| |#2| (-368)))) (-3803 (($ $ $) NIL (|has| |#2| (-368)))) (-3022 (($ $ $) NIL (|has| |#2| (-368)))) (-1333 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#2| (-368)))) (-3301 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-2109 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#2| (-368)))) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#2| (-458)))) (-4139 (((-112) $) NIL)) (-3915 (($ |#2| (-777)) 17)) (-2639 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#2| (-562)))) (-4168 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#2| (-562)))) (-3970 (((-777) $) NIL)) (-3904 (($ $ $) NIL (|has| |#2| (-368)))) (-2687 (($ $ $) NIL (|has| |#2| (-368)))) (-2271 (($ $ $) NIL (|has| |#2| (-368)))) (-1469 (($ $ $) NIL (|has| |#2| (-368)))) (-3601 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#2| (-368)))) (-3118 (((-3 $ "failed") $ $) NIL (|has| |#2| (-368)))) (-3684 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#2| (-368)))) (-1928 ((|#2| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2548 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-3079 (((-777) $) NIL)) (-2077 ((|#2| $) NIL (|has| |#2| (-458)))) (-3802 (((-868) $) 24) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (($ (-1273 |#1|)) 19)) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ (-777)) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3492 ((|#2| $ |#2| |#2|) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) 13 T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)))
-((-1897 ((|#1| (-777) |#1|) 45 (|has| |#1| (-38 (-413 (-570)))))) (-2531 ((|#1| (-777) (-777) |#1|) 36) ((|#1| (-777) |#1|) 24)) (-2261 ((|#1| (-777) |#1|) 40)) (-2228 ((|#1| (-777) |#1|) 38)) (-3286 ((|#1| (-777) |#1|) 37)))
-(((-862 |#1|) (-10 -7 (-15 -3286 (|#1| (-777) |#1|)) (-15 -2228 (|#1| (-777) |#1|)) (-15 -2261 (|#1| (-777) |#1|)) (-15 -2531 (|#1| (-777) |#1|)) (-15 -2531 (|#1| (-777) (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -1897 (|#1| (-777) |#1|)) |%noBranch|)) (-174)) (T -862))
-((-1897 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-2531 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-2531 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-2261 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-2228 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-3286 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
-(-10 -7 (-15 -3286 (|#1| (-777) |#1|)) (-15 -2228 (|#1| (-777) |#1|)) (-15 -2261 (|#1| (-777) |#1|)) (-15 -2531 (|#1| (-777) |#1|)) (-15 -2531 (|#1| (-777) (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -1897 (|#1| (-777) |#1|)) |%noBranch|))
-((-2558 (((-112) $ $) 7)) (-3466 (($ $ $) 14)) (-2800 (($ $ $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3072 (((-112) $ $) 17)) (-3052 (((-112) $ $) 18)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 16)) (-3042 (((-112) $ $) 19)) (** (($ $ (-928)) 22)) (* (($ $ $) 21)))
+((-2528 ((|#1| (-777) |#1|) 45 (|has| |#1| (-38 (-413 (-570)))))) (-1712 ((|#1| (-777) (-777) |#1|) 36) ((|#1| (-777) |#1|) 24)) (-3822 ((|#1| (-777) |#1|) 40)) (-1595 ((|#1| (-777) |#1|) 38)) (-1442 ((|#1| (-777) |#1|) 37)))
+(((-862 |#1|) (-10 -7 (-15 -1442 (|#1| (-777) |#1|)) (-15 -1595 (|#1| (-777) |#1|)) (-15 -3822 (|#1| (-777) |#1|)) (-15 -1712 (|#1| (-777) |#1|)) (-15 -1712 (|#1| (-777) (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2528 (|#1| (-777) |#1|)) |%noBranch|)) (-174)) (T -862))
+((-2528 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-174)))) (-1712 (*1 *2 *3 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-1712 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-3822 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-1595 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))) (-1442 (*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
+(-10 -7 (-15 -1442 (|#1| (-777) |#1|)) (-15 -1595 (|#1| (-777) |#1|)) (-15 -3822 (|#1| (-777) |#1|)) (-15 -1712 (|#1| (-777) |#1|)) (-15 -1712 (|#1| (-777) (-777) |#1|)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2528 (|#1| (-777) |#1|)) |%noBranch|))
+((-2560 (((-112) $ $) 7)) (-3469 (($ $ $) 14)) (-2472 (($ $ $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3075 (((-112) $ $) 17)) (-3055 (((-112) $ $) 18)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 16)) (-3045 (((-112) $ $) 19)) (** (($ $ (-928)) 22)) (* (($ $ $) 21)))
(((-863) (-141)) (T -863))
NIL
(-13 (-856) (-1121))
(((-102) . T) ((-619 (-868)) . T) ((-856) . T) ((-1121) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-2308 (((-570) $) 14)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 20) (($ (-570)) 13)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 9)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 11)))
-(((-864) (-13 (-856) (-10 -8 (-15 -3799 ($ (-570))) (-15 -2308 ((-570) $))))) (T -864))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-864)))) (-2308 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-864)))))
-(-13 (-856) (-10 -8 (-15 -3799 ($ (-570))) (-15 -2308 ((-570) $))))
-((-2015 (((-697 (-1235)) $ (-1235)) 15)) (-1495 (((-697 (-555)) $ (-555)) 12)) (-2770 (((-777) $ (-129)) 30)))
-(((-865 |#1|) (-10 -8 (-15 -2770 ((-777) |#1| (-129))) (-15 -2015 ((-697 (-1235)) |#1| (-1235))) (-15 -1495 ((-697 (-555)) |#1| (-555)))) (-866)) (T -865))
-NIL
-(-10 -8 (-15 -2770 ((-777) |#1| (-129))) (-15 -2015 ((-697 (-1235)) |#1| (-1235))) (-15 -1495 ((-697 (-555)) |#1| (-555))))
-((-2015 (((-697 (-1235)) $ (-1235)) 8)) (-1495 (((-697 (-555)) $ (-555)) 9)) (-2770 (((-777) $ (-129)) 7)) (-4093 (((-697 (-130)) $ (-130)) 10)) (-3107 (($ $) 6)))
+((-2560 (((-112) $ $) NIL)) (-2308 (((-570) $) 14)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 20) (($ (-570)) 13)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 9)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 11)))
+(((-864) (-13 (-856) (-10 -8 (-15 -3802 ($ (-570))) (-15 -2308 ((-570) $))))) (T -864))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-864)))) (-2308 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-864)))))
+(-13 (-856) (-10 -8 (-15 -3802 ($ (-570))) (-15 -2308 ((-570) $))))
+((-4264 (((-697 (-1235)) $ (-1235)) 15)) (-2939 (((-697 (-555)) $ (-555)) 12)) (-2228 (((-777) $ (-129)) 30)))
+(((-865 |#1|) (-10 -8 (-15 -2228 ((-777) |#1| (-129))) (-15 -4264 ((-697 (-1235)) |#1| (-1235))) (-15 -2939 ((-697 (-555)) |#1| (-555)))) (-866)) (T -865))
+NIL
+(-10 -8 (-15 -2228 ((-777) |#1| (-129))) (-15 -4264 ((-697 (-1235)) |#1| (-1235))) (-15 -2939 ((-697 (-555)) |#1| (-555))))
+((-4264 (((-697 (-1235)) $ (-1235)) 8)) (-2939 (((-697 (-555)) $ (-555)) 9)) (-2228 (((-777) $ (-129)) 7)) (-3652 (((-697 (-130)) $ (-130)) 10)) (-3443 (($ $) 6)))
(((-866) (-141)) (T -866))
-((-4093 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-130))) (-5 *3 (-130)))) (-1495 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-555))) (-5 *3 (-555)))) (-2015 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-1235))) (-5 *3 (-1235)))) (-2770 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *3 (-129)) (-5 *2 (-777)))))
-(-13 (-175) (-10 -8 (-15 -4093 ((-697 (-130)) $ (-130))) (-15 -1495 ((-697 (-555)) $ (-555))) (-15 -2015 ((-697 (-1235)) $ (-1235))) (-15 -2770 ((-777) $ (-129)))))
+((-3652 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-130))) (-5 *3 (-130)))) (-2939 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-555))) (-5 *3 (-555)))) (-4264 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *2 (-697 (-1235))) (-5 *3 (-1235)))) (-2228 (*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *3 (-129)) (-5 *2 (-777)))))
+(-13 (-175) (-10 -8 (-15 -3652 ((-697 (-130)) $ (-130))) (-15 -2939 ((-697 (-555)) $ (-555))) (-15 -4264 ((-697 (-1235)) $ (-1235))) (-15 -2228 ((-777) $ (-129)))))
(((-175) . T))
-((-2015 (((-697 (-1235)) $ (-1235)) NIL)) (-1495 (((-697 (-555)) $ (-555)) NIL)) (-2770 (((-777) $ (-129)) NIL)) (-4093 (((-697 (-130)) $ (-130)) 22)) (-1798 (($ (-394)) 12) (($ (-1168)) 14)) (-2618 (((-112) $) 19)) (-3799 (((-868) $) 26)) (-3107 (($ $) 23)))
-(((-867) (-13 (-866) (-619 (-868)) (-10 -8 (-15 -1798 ($ (-394))) (-15 -1798 ($ (-1168))) (-15 -2618 ((-112) $))))) (T -867))
-((-1798 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-867)))) (-1798 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-867)))) (-2618 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-867)))))
-(-13 (-866) (-619 (-868)) (-10 -8 (-15 -1798 ($ (-394))) (-15 -1798 ($ (-1168))) (-15 -2618 ((-112) $))))
-((-2558 (((-112) $ $) NIL) (($ $ $) 85)) (-1584 (($ $ $) 125)) (-3519 (((-570) $) 31) (((-570)) 36)) (-3834 (($ (-570)) 53)) (-1783 (($ $ $) 54) (($ (-650 $)) 84)) (-3326 (($ $ (-650 $)) 82)) (-2098 (((-570) $) 34)) (-3597 (($ $ $) 73)) (-3318 (($ $) 140) (($ $ $) 141) (($ $ $ $) 142)) (-2365 (((-570) $) 33)) (-1403 (($ $ $) 72)) (-3428 (($ $) 114)) (-3542 (($ $ $) 129)) (-2715 (($ (-650 $)) 61)) (-1369 (($ $ (-650 $)) 79)) (-3651 (($ (-570) (-570)) 55)) (-3235 (($ $) 126) (($ $ $) 127)) (-4410 (($ $ (-570)) 43) (($ $) 46)) (-2506 (($ $ $) 97)) (-2251 (($ $ $) 132)) (-2270 (($ $) 115)) (-2518 (($ $ $) 98)) (-2066 (($ $) 143) (($ $ $) 144) (($ $ $ $) 145)) (-3029 (((-1282) $) 10)) (-2477 (($ $) 118) (($ $ (-777)) 122)) (-4161 (($ $ $) 75)) (-2026 (($ $ $) 74)) (-4309 (($ $ (-650 $)) 110)) (-2430 (($ $ $) 113)) (-3108 (($ (-650 $)) 59)) (-2481 (($ $) 70) (($ (-650 $)) 71)) (-3147 (($ $ $) 123)) (-2728 (($ $) 116)) (-1983 (($ $ $) 128)) (-2710 (($ (-570)) 21) (($ (-1186)) 23) (($ (-1168)) 30) (($ (-227)) 25)) (-1823 (($ $ $) 101)) (-1795 (($ $) 102)) (-2694 (((-1282) (-1168)) 15)) (-1846 (($ (-1168)) 14)) (-2571 (($ (-650 (-650 $))) 58)) (-4397 (($ $ (-570)) 42) (($ $) 45)) (-1988 (((-1168) $) NIL)) (-1532 (($ $ $) 131)) (-3807 (($ $) 146) (($ $ $) 147) (($ $ $ $) 148)) (-2727 (((-112) $) 108)) (-3920 (($ $ (-650 $)) 111) (($ $ $ $) 112)) (-1386 (($ (-570)) 39)) (-1444 (((-570) $) 32) (((-570)) 35)) (-3332 (($ $ $) 40) (($ (-650 $)) 83)) (-3577 (((-1129) $) NIL)) (-2547 (($ $ $) 99)) (-2380 (($) 13)) (-1941 (($ $ (-650 $)) 109)) (-2763 (((-1168) (-1168)) 8)) (-2609 (($ $) 117) (($ $ (-777)) 121)) (-2538 (($ $ $) 96)) (-3547 (($ $ (-777)) 139)) (-2241 (($ (-650 $)) 60)) (-3799 (((-868) $) 19)) (-2288 (($ $ (-570)) 41) (($ $) 44)) (-1796 (($ $) 68) (($ (-650 $)) 69)) (-3861 (($ $) 66) (($ (-650 $)) 67)) (-4244 (($ $) 124)) (-2104 (($ (-650 $)) 65)) (-2858 (($ $ $) 105)) (-2335 (((-112) $ $) NIL)) (-3929 (($ $ $) 130)) (-1809 (($ $ $) 100)) (-3668 (($ $ $) 103) (($ $) 104)) (-3072 (($ $ $) 89)) (-3052 (($ $ $) 87)) (-3022 (((-112) $ $) 16) (($ $ $) 17)) (-3062 (($ $ $) 88)) (-3042 (($ $ $) 86)) (-3122 (($ $ $) 94)) (-3111 (($ $ $) 91) (($ $) 92)) (-3101 (($ $ $) 90)) (** (($ $ $) 95)) (* (($ $ $) 93)))
-(((-868) (-13 (-1109) (-10 -8 (-15 -3029 ((-1282) $)) (-15 -1846 ($ (-1168))) (-15 -2694 ((-1282) (-1168))) (-15 -2710 ($ (-570))) (-15 -2710 ($ (-1186))) (-15 -2710 ($ (-1168))) (-15 -2710 ($ (-227))) (-15 -2380 ($)) (-15 -2763 ((-1168) (-1168))) (-15 -3519 ((-570) $)) (-15 -1444 ((-570) $)) (-15 -3519 ((-570))) (-15 -1444 ((-570))) (-15 -2365 ((-570) $)) (-15 -2098 ((-570) $)) (-15 -1386 ($ (-570))) (-15 -3834 ($ (-570))) (-15 -3651 ($ (-570) (-570))) (-15 -4397 ($ $ (-570))) (-15 -4410 ($ $ (-570))) (-15 -2288 ($ $ (-570))) (-15 -4397 ($ $)) (-15 -4410 ($ $)) (-15 -2288 ($ $)) (-15 -3332 ($ $ $)) (-15 -1783 ($ $ $)) (-15 -3332 ($ (-650 $))) (-15 -1783 ($ (-650 $))) (-15 -4309 ($ $ (-650 $))) (-15 -3920 ($ $ (-650 $))) (-15 -3920 ($ $ $ $)) (-15 -2430 ($ $ $)) (-15 -2727 ((-112) $)) (-15 -1941 ($ $ (-650 $))) (-15 -3428 ($ $)) (-15 -1532 ($ $ $)) (-15 -4244 ($ $)) (-15 -2571 ($ (-650 (-650 $)))) (-15 -1584 ($ $ $)) (-15 -3235 ($ $)) (-15 -3235 ($ $ $)) (-15 -1983 ($ $ $)) (-15 -3542 ($ $ $)) (-15 -3929 ($ $ $)) (-15 -2251 ($ $ $)) (-15 -3547 ($ $ (-777))) (-15 -2858 ($ $ $)) (-15 -1403 ($ $ $)) (-15 -3597 ($ $ $)) (-15 -2026 ($ $ $)) (-15 -4161 ($ $ $)) (-15 -1369 ($ $ (-650 $))) (-15 -3326 ($ $ (-650 $))) (-15 -2270 ($ $)) (-15 -2609 ($ $)) (-15 -2609 ($ $ (-777))) (-15 -2477 ($ $)) (-15 -2477 ($ $ (-777))) (-15 -2728 ($ $)) (-15 -3147 ($ $ $)) (-15 -3318 ($ $)) (-15 -3318 ($ $ $)) (-15 -3318 ($ $ $ $)) (-15 -2066 ($ $)) (-15 -2066 ($ $ $)) (-15 -2066 ($ $ $ $)) (-15 -3807 ($ $)) (-15 -3807 ($ $ $)) (-15 -3807 ($ $ $ $)) (-15 -3861 ($ $)) (-15 -3861 ($ (-650 $))) (-15 -1796 ($ $)) (-15 -1796 ($ (-650 $))) (-15 -2481 ($ $)) (-15 -2481 ($ (-650 $))) (-15 -3108 ($ (-650 $))) (-15 -2241 ($ (-650 $))) (-15 -2715 ($ (-650 $))) (-15 -2104 ($ (-650 $))) (-15 -3022 ($ $ $)) (-15 -2558 ($ $ $)) (-15 -3042 ($ $ $)) (-15 -3052 ($ $ $)) (-15 -3062 ($ $ $)) (-15 -3072 ($ $ $)) (-15 -3101 ($ $ $)) (-15 -3111 ($ $ $)) (-15 -3111 ($ $)) (-15 * ($ $ $)) (-15 -3122 ($ $ $)) (-15 ** ($ $ $)) (-15 -2538 ($ $ $)) (-15 -2506 ($ $ $)) (-15 -2518 ($ $ $)) (-15 -2547 ($ $ $)) (-15 -1809 ($ $ $)) (-15 -1823 ($ $ $)) (-15 -1795 ($ $)) (-15 -3668 ($ $ $)) (-15 -3668 ($ $))))) (T -868))
-((-3029 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-868)))) (-1846 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-2694 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-868)))) (-2710 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2710 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-868)))) (-2710 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-2710 (*1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-868)))) (-2380 (*1 *1) (-5 *1 (-868))) (-2763 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-3519 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1444 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3519 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1444 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2365 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2098 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1386 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3834 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3651 (*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)))) (-2288 (*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))) (-2288 (*1 *1 *1) (-5 *1 (-868))) (-3332 (*1 *1 *1 *1) (-5 *1 (-868))) (-1783 (*1 *1 *1 *1) (-5 *1 (-868))) (-3332 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-1783 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-4309 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3920 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3920 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-2430 (*1 *1 *1 *1) (-5 *1 (-868))) (-2727 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-868)))) (-1941 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3428 (*1 *1 *1) (-5 *1 (-868))) (-1532 (*1 *1 *1 *1) (-5 *1 (-868))) (-4244 (*1 *1 *1) (-5 *1 (-868))) (-2571 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-868)))) (-1584 (*1 *1 *1 *1) (-5 *1 (-868))) (-3235 (*1 *1 *1) (-5 *1 (-868))) (-3235 (*1 *1 *1 *1) (-5 *1 (-868))) (-1983 (*1 *1 *1 *1) (-5 *1 (-868))) (-3542 (*1 *1 *1 *1) (-5 *1 (-868))) (-3929 (*1 *1 *1 *1) (-5 *1 (-868))) (-2251 (*1 *1 *1 *1) (-5 *1 (-868))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-2858 (*1 *1 *1 *1) (-5 *1 (-868))) (-1403 (*1 *1 *1 *1) (-5 *1 (-868))) (-3597 (*1 *1 *1 *1) (-5 *1 (-868))) (-2026 (*1 *1 *1 *1) (-5 *1 (-868))) (-4161 (*1 *1 *1 *1) (-5 *1 (-868))) (-1369 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3326 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2270 (*1 *1 *1) (-5 *1 (-868))) (-2609 (*1 *1 *1) (-5 *1 (-868))) (-2609 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-2477 (*1 *1 *1) (-5 *1 (-868))) (-2477 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-2728 (*1 *1 *1) (-5 *1 (-868))) (-3147 (*1 *1 *1 *1) (-5 *1 (-868))) (-3318 (*1 *1 *1) (-5 *1 (-868))) (-3318 (*1 *1 *1 *1) (-5 *1 (-868))) (-3318 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-2066 (*1 *1 *1) (-5 *1 (-868))) (-2066 (*1 *1 *1 *1) (-5 *1 (-868))) (-2066 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3807 (*1 *1 *1) (-5 *1 (-868))) (-3807 (*1 *1 *1 *1) (-5 *1 (-868))) (-3807 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3861 (*1 *1 *1) (-5 *1 (-868))) (-3861 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-1796 (*1 *1 *1) (-5 *1 (-868))) (-1796 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2481 (*1 *1 *1) (-5 *1 (-868))) (-2481 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3108 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2241 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2715 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2104 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3022 (*1 *1 *1 *1) (-5 *1 (-868))) (-2558 (*1 *1 *1 *1) (-5 *1 (-868))) (-3042 (*1 *1 *1 *1) (-5 *1 (-868))) (-3052 (*1 *1 *1 *1) (-5 *1 (-868))) (-3062 (*1 *1 *1 *1) (-5 *1 (-868))) (-3072 (*1 *1 *1 *1) (-5 *1 (-868))) (-3101 (*1 *1 *1 *1) (-5 *1 (-868))) (-3111 (*1 *1 *1 *1) (-5 *1 (-868))) (-3111 (*1 *1 *1) (-5 *1 (-868))) (* (*1 *1 *1 *1) (-5 *1 (-868))) (-3122 (*1 *1 *1 *1) (-5 *1 (-868))) (** (*1 *1 *1 *1) (-5 *1 (-868))) (-2538 (*1 *1 *1 *1) (-5 *1 (-868))) (-2506 (*1 *1 *1 *1) (-5 *1 (-868))) (-2518 (*1 *1 *1 *1) (-5 *1 (-868))) (-2547 (*1 *1 *1 *1) (-5 *1 (-868))) (-1809 (*1 *1 *1 *1) (-5 *1 (-868))) (-1823 (*1 *1 *1 *1) (-5 *1 (-868))) (-1795 (*1 *1 *1) (-5 *1 (-868))) (-3668 (*1 *1 *1 *1) (-5 *1 (-868))) (-3668 (*1 *1 *1) (-5 *1 (-868))))
-(-13 (-1109) (-10 -8 (-15 -3029 ((-1282) $)) (-15 -1846 ($ (-1168))) (-15 -2694 ((-1282) (-1168))) (-15 -2710 ($ (-570))) (-15 -2710 ($ (-1186))) (-15 -2710 ($ (-1168))) (-15 -2710 ($ (-227))) (-15 -2380 ($)) (-15 -2763 ((-1168) (-1168))) (-15 -3519 ((-570) $)) (-15 -1444 ((-570) $)) (-15 -3519 ((-570))) (-15 -1444 ((-570))) (-15 -2365 ((-570) $)) (-15 -2098 ((-570) $)) (-15 -1386 ($ (-570))) (-15 -3834 ($ (-570))) (-15 -3651 ($ (-570) (-570))) (-15 -4397 ($ $ (-570))) (-15 -4410 ($ $ (-570))) (-15 -2288 ($ $ (-570))) (-15 -4397 ($ $)) (-15 -4410 ($ $)) (-15 -2288 ($ $)) (-15 -3332 ($ $ $)) (-15 -1783 ($ $ $)) (-15 -3332 ($ (-650 $))) (-15 -1783 ($ (-650 $))) (-15 -4309 ($ $ (-650 $))) (-15 -3920 ($ $ (-650 $))) (-15 -3920 ($ $ $ $)) (-15 -2430 ($ $ $)) (-15 -2727 ((-112) $)) (-15 -1941 ($ $ (-650 $))) (-15 -3428 ($ $)) (-15 -1532 ($ $ $)) (-15 -4244 ($ $)) (-15 -2571 ($ (-650 (-650 $)))) (-15 -1584 ($ $ $)) (-15 -3235 ($ $)) (-15 -3235 ($ $ $)) (-15 -1983 ($ $ $)) (-15 -3542 ($ $ $)) (-15 -3929 ($ $ $)) (-15 -2251 ($ $ $)) (-15 -3547 ($ $ (-777))) (-15 -2858 ($ $ $)) (-15 -1403 ($ $ $)) (-15 -3597 ($ $ $)) (-15 -2026 ($ $ $)) (-15 -4161 ($ $ $)) (-15 -1369 ($ $ (-650 $))) (-15 -3326 ($ $ (-650 $))) (-15 -2270 ($ $)) (-15 -2609 ($ $)) (-15 -2609 ($ $ (-777))) (-15 -2477 ($ $)) (-15 -2477 ($ $ (-777))) (-15 -2728 ($ $)) (-15 -3147 ($ $ $)) (-15 -3318 ($ $)) (-15 -3318 ($ $ $)) (-15 -3318 ($ $ $ $)) (-15 -2066 ($ $)) (-15 -2066 ($ $ $)) (-15 -2066 ($ $ $ $)) (-15 -3807 ($ $)) (-15 -3807 ($ $ $)) (-15 -3807 ($ $ $ $)) (-15 -3861 ($ $)) (-15 -3861 ($ (-650 $))) (-15 -1796 ($ $)) (-15 -1796 ($ (-650 $))) (-15 -2481 ($ $)) (-15 -2481 ($ (-650 $))) (-15 -3108 ($ (-650 $))) (-15 -2241 ($ (-650 $))) (-15 -2715 ($ (-650 $))) (-15 -2104 ($ (-650 $))) (-15 -3022 ($ $ $)) (-15 -2558 ($ $ $)) (-15 -3042 ($ $ $)) (-15 -3052 ($ $ $)) (-15 -3062 ($ $ $)) (-15 -3072 ($ $ $)) (-15 -3101 ($ $ $)) (-15 -3111 ($ $ $)) (-15 -3111 ($ $)) (-15 * ($ $ $)) (-15 -3122 ($ $ $)) (-15 ** ($ $ $)) (-15 -2538 ($ $ $)) (-15 -2506 ($ $ $)) (-15 -2518 ($ $ $)) (-15 -2547 ($ $ $)) (-15 -1809 ($ $ $)) (-15 -1823 ($ $ $)) (-15 -1795 ($ $)) (-15 -3668 ($ $ $)) (-15 -3668 ($ $))))
-((-4412 (((-1282) (-650 (-52))) 23)) (-1943 (((-1282) (-1168) (-868)) 13) (((-1282) (-868)) 8) (((-1282) (-1168)) 10)))
-(((-869) (-10 -7 (-15 -1943 ((-1282) (-1168))) (-15 -1943 ((-1282) (-868))) (-15 -1943 ((-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)))) (-1943 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1282)) (-5 *1 (-869)))) (-1943 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-869)))) (-1943 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-869)))))
-(-10 -7 (-15 -1943 ((-1282) (-1168))) (-15 -1943 ((-1282) (-868))) (-15 -1943 ((-1282) (-1168) (-868))) (-15 -4412 ((-1282) (-650 (-52)))))
-((-2558 (((-112) $ $) NIL)) (-2798 (((-3 $ "failed") (-1186)) 36)) (-3510 (((-777)) 32)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) 29)) (-1988 (((-1168) $) 43)) (-2268 (($ (-928)) 28)) (-3577 (((-1129) $) NIL)) (-1425 (((-1186) $) 13) (((-542) $) 19) (((-899 (-384)) $) 26) (((-899 (-570)) $) 22)) (-3799 (((-868) $) 16)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 40)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 38)))
-(((-870 |#1|) (-13 (-850) (-620 (-1186)) (-620 (-542)) (-620 (-899 (-384))) (-620 (-899 (-570))) (-10 -8 (-15 -2798 ((-3 $ "failed") (-1186))))) (-650 (-1186))) (T -870))
-((-2798 (*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 -2798 ((-3 $ "failed") (-1186)))))
-((-2558 (((-112) $ $) NIL)) (-3600 (((-512) $) 9)) (-2752 (((-650 (-445)) $) 13)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 21)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 16)))
-(((-871) (-13 (-1109) (-10 -8 (-15 -3600 ((-512) $)) (-15 -2752 ((-650 (-445)) $))))) (T -871))
-((-3600 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-871)))) (-2752 (*1 *2 *1) (-12 (-5 *2 (-650 (-445))) (-5 *1 (-871)))))
-(-13 (-1109) (-10 -8 (-15 -3600 ((-512) $)) (-15 -2752 ((-650 (-445)) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-959 |#1|)) NIL) (((-959 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-174)))) (-3499 (((-777)) NIL T CONST)) (-1654 (((-1282) (-777)) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3122 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3122 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1654 ((-1282) (-777))))) (-1058) (-650 (-1186)) (-650 (-777)) (-777)) (T -872))
-((-3122 (*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)))) (-1654 (*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 -3122 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1654 ((-1282) (-777)))))
-((-3021 (((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|) 38)) (-2470 (((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|) 29)))
-(((-873 |#1| |#2| |#3|) (-10 -7 (-15 -2470 ((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|)) (-15 -3021 ((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|))) (-368) (-1268 |#1|) (-1253 |#1|)) (T -873))
-((-3021 (*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)))) (-2470 (*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 -2470 ((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|)) (-15 -3021 ((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|)))
-((-2470 (((-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 -2470 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) (-15 -2470 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|)))) (-368) (-1186) |#1|) (T -874))
-((-2470 (*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)))) (-2470 (*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 -2470 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) (-15 -2470 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-3814 (($ $ (-570)) 68)) (-3473 (((-112) $ $) 65)) (-1705 (($) 18 T CONST)) (-3235 (($ (-1182 (-570)) (-570)) 67)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-2700 (($ $) 70)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-4323 (((-777) $) 75)) (-4346 (((-112) $) 35)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1932 (((-570)) 72)) (-1442 (((-570) $) 71)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2431 (($ $ (-570)) 74)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-2737 (((-1166 (-570)) $) 76)) (-2853 (($ $) 73)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-3167 (((-570) $ (-570)) 69)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-4264 (((-697 (-1235)) $ (-1235)) NIL)) (-2939 (((-697 (-555)) $ (-555)) NIL)) (-2228 (((-777) $ (-129)) NIL)) (-3652 (((-697 (-130)) $ (-130)) 22)) (-2839 (($ (-394)) 12) (($ (-1168)) 14)) (-4359 (((-112) $) 19)) (-3802 (((-868) $) 26)) (-3443 (($ $) 23)))
+(((-867) (-13 (-866) (-619 (-868)) (-10 -8 (-15 -2839 ($ (-394))) (-15 -2839 ($ (-1168))) (-15 -4359 ((-112) $))))) (T -867))
+((-2839 (*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-867)))) (-2839 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-867)))) (-4359 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-867)))))
+(-13 (-866) (-619 (-868)) (-10 -8 (-15 -2839 ($ (-394))) (-15 -2839 ($ (-1168))) (-15 -4359 ((-112) $))))
+((-2560 (((-112) $ $) NIL) (($ $ $) 85)) (-4392 (($ $ $) 125)) (-3522 (((-570) $) 31) (((-570)) 36)) (-2889 (($ (-570)) 53)) (-2697 (($ $ $) 54) (($ (-650 $)) 84)) (-1888 (($ $ (-650 $)) 82)) (-2767 (((-570) $) 34)) (-3600 (($ $ $) 73)) (-3321 (($ $) 140) (($ $ $) 141) (($ $ $ $) 142)) (-3694 (((-570) $) 33)) (-4327 (($ $ $) 72)) (-3431 (($ $) 114)) (-2035 (($ $ $) 129)) (-2922 (($ (-650 $)) 61)) (-1370 (($ $ (-650 $)) 79)) (-1733 (($ (-570) (-570)) 55)) (-2236 (($ $) 126) (($ $ $) 127)) (-4413 (($ $ (-570)) 43) (($ $) 46)) (-2504 (($ $ $) 97)) (-1889 (($ $ $) 132)) (-3903 (($ $) 115)) (-2519 (($ $ $) 98)) (-3636 (($ $) 143) (($ $ $) 144) (($ $ $ $) 145)) (-3032 (((-1282) $) 10)) (-2445 (($ $) 118) (($ $ (-777)) 122)) (-3035 (($ $ $) 75)) (-3201 (($ $ $) 74)) (-4312 (($ $ (-650 $)) 110)) (-3142 (($ $ $) 113)) (-3455 (($ (-650 $)) 59)) (-2486 (($ $) 70) (($ (-650 $)) 71)) (-2621 (($ $ $) 123)) (-3029 (($ $) 116)) (-3937 (($ $ $) 128)) (-2878 (($ (-570)) 21) (($ (-1186)) 23) (($ (-1168)) 30) (($ (-227)) 25)) (-1824 (($ $ $) 101)) (-1796 (($ $) 102)) (-2714 (((-1282) (-1168)) 15)) (-1847 (($ (-1168)) 14)) (-2572 (($ (-650 (-650 $))) 58)) (-4400 (($ $ (-570)) 42) (($ $) 45)) (-3989 (((-1168) $) NIL)) (-1532 (($ $ $) 131)) (-3810 (($ $) 146) (($ $ $) 147) (($ $ $ $) 148)) (-2730 (((-112) $) 108)) (-2501 (($ $ (-650 $)) 111) (($ $ $ $) 112)) (-3328 (($ (-570)) 39)) (-1445 (((-570) $) 32) (((-570)) 35)) (-1955 (($ $ $) 40) (($ (-650 $)) 83)) (-3580 (((-1129) $) NIL)) (-2548 (($ $ $) 99)) (-2656 (($) 13)) (-1942 (($ $ (-650 $)) 109)) (-2164 (((-1168) (-1168)) 8)) (-4266 (($ $) 117) (($ $ (-777)) 121)) (-2538 (($ $ $) 96)) (-3550 (($ $ (-777)) 139)) (-1756 (($ (-650 $)) 60)) (-3802 (((-868) $) 19)) (-2289 (($ $ (-570)) 41) (($ $) 44)) (-2819 (($ $) 68) (($ (-650 $)) 69)) (-3864 (($ $) 66) (($ (-650 $)) 67)) (-4246 (($ $) 124)) (-2835 (($ (-650 $)) 65)) (-1730 (($ $ $) 105)) (-3359 (((-112) $ $) NIL)) (-2575 (($ $ $) 130)) (-1810 (($ $ $) 100)) (-3670 (($ $ $) 103) (($ $) 104)) (-3075 (($ $ $) 89)) (-3055 (($ $ $) 87)) (-3025 (((-112) $ $) 16) (($ $ $) 17)) (-3065 (($ $ $) 88)) (-3045 (($ $ $) 86)) (-3125 (($ $ $) 94)) (-3114 (($ $ $) 91) (($ $) 92)) (-3104 (($ $ $) 90)) (** (($ $ $) 95)) (* (($ $ $) 93)))
+(((-868) (-13 (-1109) (-10 -8 (-15 -3032 ((-1282) $)) (-15 -1847 ($ (-1168))) (-15 -2714 ((-1282) (-1168))) (-15 -2878 ($ (-570))) (-15 -2878 ($ (-1186))) (-15 -2878 ($ (-1168))) (-15 -2878 ($ (-227))) (-15 -2656 ($)) (-15 -2164 ((-1168) (-1168))) (-15 -3522 ((-570) $)) (-15 -1445 ((-570) $)) (-15 -3522 ((-570))) (-15 -1445 ((-570))) (-15 -3694 ((-570) $)) (-15 -2767 ((-570) $)) (-15 -3328 ($ (-570))) (-15 -2889 ($ (-570))) (-15 -1733 ($ (-570) (-570))) (-15 -4400 ($ $ (-570))) (-15 -4413 ($ $ (-570))) (-15 -2289 ($ $ (-570))) (-15 -4400 ($ $)) (-15 -4413 ($ $)) (-15 -2289 ($ $)) (-15 -1955 ($ $ $)) (-15 -2697 ($ $ $)) (-15 -1955 ($ (-650 $))) (-15 -2697 ($ (-650 $))) (-15 -4312 ($ $ (-650 $))) (-15 -2501 ($ $ (-650 $))) (-15 -2501 ($ $ $ $)) (-15 -3142 ($ $ $)) (-15 -2730 ((-112) $)) (-15 -1942 ($ $ (-650 $))) (-15 -3431 ($ $)) (-15 -1532 ($ $ $)) (-15 -4246 ($ $)) (-15 -2572 ($ (-650 (-650 $)))) (-15 -4392 ($ $ $)) (-15 -2236 ($ $)) (-15 -2236 ($ $ $)) (-15 -3937 ($ $ $)) (-15 -2035 ($ $ $)) (-15 -2575 ($ $ $)) (-15 -1889 ($ $ $)) (-15 -3550 ($ $ (-777))) (-15 -1730 ($ $ $)) (-15 -4327 ($ $ $)) (-15 -3600 ($ $ $)) (-15 -3201 ($ $ $)) (-15 -3035 ($ $ $)) (-15 -1370 ($ $ (-650 $))) (-15 -1888 ($ $ (-650 $))) (-15 -3903 ($ $)) (-15 -4266 ($ $)) (-15 -4266 ($ $ (-777))) (-15 -2445 ($ $)) (-15 -2445 ($ $ (-777))) (-15 -3029 ($ $)) (-15 -2621 ($ $ $)) (-15 -3321 ($ $)) (-15 -3321 ($ $ $)) (-15 -3321 ($ $ $ $)) (-15 -3636 ($ $)) (-15 -3636 ($ $ $)) (-15 -3636 ($ $ $ $)) (-15 -3810 ($ $)) (-15 -3810 ($ $ $)) (-15 -3810 ($ $ $ $)) (-15 -3864 ($ $)) (-15 -3864 ($ (-650 $))) (-15 -2819 ($ $)) (-15 -2819 ($ (-650 $))) (-15 -2486 ($ $)) (-15 -2486 ($ (-650 $))) (-15 -3455 ($ (-650 $))) (-15 -1756 ($ (-650 $))) (-15 -2922 ($ (-650 $))) (-15 -2835 ($ (-650 $))) (-15 -3025 ($ $ $)) (-15 -2560 ($ $ $)) (-15 -3045 ($ $ $)) (-15 -3055 ($ $ $)) (-15 -3065 ($ $ $)) (-15 -3075 ($ $ $)) (-15 -3104 ($ $ $)) (-15 -3114 ($ $ $)) (-15 -3114 ($ $)) (-15 * ($ $ $)) (-15 -3125 ($ $ $)) (-15 ** ($ $ $)) (-15 -2538 ($ $ $)) (-15 -2504 ($ $ $)) (-15 -2519 ($ $ $)) (-15 -2548 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -1824 ($ $ $)) (-15 -1796 ($ $)) (-15 -3670 ($ $ $)) (-15 -3670 ($ $))))) (T -868))
+((-3032 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-868)))) (-1847 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-2714 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-868)))) (-2878 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2878 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-868)))) (-2878 (*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-2878 (*1 *1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-868)))) (-2656 (*1 *1) (-5 *1 (-868))) (-2164 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))) (-3522 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1445 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3522 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1445 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3694 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2767 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-3328 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2889 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-1733 (*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4400 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4413 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-2289 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))) (-4400 (*1 *1 *1) (-5 *1 (-868))) (-4413 (*1 *1 *1) (-5 *1 (-868))) (-2289 (*1 *1 *1) (-5 *1 (-868))) (-1955 (*1 *1 *1 *1) (-5 *1 (-868))) (-2697 (*1 *1 *1 *1) (-5 *1 (-868))) (-1955 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2697 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-4312 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2501 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2501 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3142 (*1 *1 *1 *1) (-5 *1 (-868))) (-2730 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-868)))) (-1942 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3431 (*1 *1 *1) (-5 *1 (-868))) (-1532 (*1 *1 *1 *1) (-5 *1 (-868))) (-4246 (*1 *1 *1) (-5 *1 (-868))) (-2572 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-868)))) (-4392 (*1 *1 *1 *1) (-5 *1 (-868))) (-2236 (*1 *1 *1) (-5 *1 (-868))) (-2236 (*1 *1 *1 *1) (-5 *1 (-868))) (-3937 (*1 *1 *1 *1) (-5 *1 (-868))) (-2035 (*1 *1 *1 *1) (-5 *1 (-868))) (-2575 (*1 *1 *1 *1) (-5 *1 (-868))) (-1889 (*1 *1 *1 *1) (-5 *1 (-868))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-1730 (*1 *1 *1 *1) (-5 *1 (-868))) (-4327 (*1 *1 *1 *1) (-5 *1 (-868))) (-3600 (*1 *1 *1 *1) (-5 *1 (-868))) (-3201 (*1 *1 *1 *1) (-5 *1 (-868))) (-3035 (*1 *1 *1 *1) (-5 *1 (-868))) (-1370 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-1888 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3903 (*1 *1 *1) (-5 *1 (-868))) (-4266 (*1 *1 *1) (-5 *1 (-868))) (-4266 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-2445 (*1 *1 *1) (-5 *1 (-868))) (-2445 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868)))) (-3029 (*1 *1 *1) (-5 *1 (-868))) (-2621 (*1 *1 *1 *1) (-5 *1 (-868))) (-3321 (*1 *1 *1) (-5 *1 (-868))) (-3321 (*1 *1 *1 *1) (-5 *1 (-868))) (-3321 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3636 (*1 *1 *1) (-5 *1 (-868))) (-3636 (*1 *1 *1 *1) (-5 *1 (-868))) (-3636 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3810 (*1 *1 *1) (-5 *1 (-868))) (-3810 (*1 *1 *1 *1) (-5 *1 (-868))) (-3810 (*1 *1 *1 *1 *1) (-5 *1 (-868))) (-3864 (*1 *1 *1) (-5 *1 (-868))) (-3864 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2819 (*1 *1 *1) (-5 *1 (-868))) (-2819 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2486 (*1 *1 *1) (-5 *1 (-868))) (-2486 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3455 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-1756 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2922 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-2835 (*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))) (-3025 (*1 *1 *1 *1) (-5 *1 (-868))) (-2560 (*1 *1 *1 *1) (-5 *1 (-868))) (-3045 (*1 *1 *1 *1) (-5 *1 (-868))) (-3055 (*1 *1 *1 *1) (-5 *1 (-868))) (-3065 (*1 *1 *1 *1) (-5 *1 (-868))) (-3075 (*1 *1 *1 *1) (-5 *1 (-868))) (-3104 (*1 *1 *1 *1) (-5 *1 (-868))) (-3114 (*1 *1 *1 *1) (-5 *1 (-868))) (-3114 (*1 *1 *1) (-5 *1 (-868))) (* (*1 *1 *1 *1) (-5 *1 (-868))) (-3125 (*1 *1 *1 *1) (-5 *1 (-868))) (** (*1 *1 *1 *1) (-5 *1 (-868))) (-2538 (*1 *1 *1 *1) (-5 *1 (-868))) (-2504 (*1 *1 *1 *1) (-5 *1 (-868))) (-2519 (*1 *1 *1 *1) (-5 *1 (-868))) (-2548 (*1 *1 *1 *1) (-5 *1 (-868))) (-1810 (*1 *1 *1 *1) (-5 *1 (-868))) (-1824 (*1 *1 *1 *1) (-5 *1 (-868))) (-1796 (*1 *1 *1) (-5 *1 (-868))) (-3670 (*1 *1 *1 *1) (-5 *1 (-868))) (-3670 (*1 *1 *1) (-5 *1 (-868))))
+(-13 (-1109) (-10 -8 (-15 -3032 ((-1282) $)) (-15 -1847 ($ (-1168))) (-15 -2714 ((-1282) (-1168))) (-15 -2878 ($ (-570))) (-15 -2878 ($ (-1186))) (-15 -2878 ($ (-1168))) (-15 -2878 ($ (-227))) (-15 -2656 ($)) (-15 -2164 ((-1168) (-1168))) (-15 -3522 ((-570) $)) (-15 -1445 ((-570) $)) (-15 -3522 ((-570))) (-15 -1445 ((-570))) (-15 -3694 ((-570) $)) (-15 -2767 ((-570) $)) (-15 -3328 ($ (-570))) (-15 -2889 ($ (-570))) (-15 -1733 ($ (-570) (-570))) (-15 -4400 ($ $ (-570))) (-15 -4413 ($ $ (-570))) (-15 -2289 ($ $ (-570))) (-15 -4400 ($ $)) (-15 -4413 ($ $)) (-15 -2289 ($ $)) (-15 -1955 ($ $ $)) (-15 -2697 ($ $ $)) (-15 -1955 ($ (-650 $))) (-15 -2697 ($ (-650 $))) (-15 -4312 ($ $ (-650 $))) (-15 -2501 ($ $ (-650 $))) (-15 -2501 ($ $ $ $)) (-15 -3142 ($ $ $)) (-15 -2730 ((-112) $)) (-15 -1942 ($ $ (-650 $))) (-15 -3431 ($ $)) (-15 -1532 ($ $ $)) (-15 -4246 ($ $)) (-15 -2572 ($ (-650 (-650 $)))) (-15 -4392 ($ $ $)) (-15 -2236 ($ $)) (-15 -2236 ($ $ $)) (-15 -3937 ($ $ $)) (-15 -2035 ($ $ $)) (-15 -2575 ($ $ $)) (-15 -1889 ($ $ $)) (-15 -3550 ($ $ (-777))) (-15 -1730 ($ $ $)) (-15 -4327 ($ $ $)) (-15 -3600 ($ $ $)) (-15 -3201 ($ $ $)) (-15 -3035 ($ $ $)) (-15 -1370 ($ $ (-650 $))) (-15 -1888 ($ $ (-650 $))) (-15 -3903 ($ $)) (-15 -4266 ($ $)) (-15 -4266 ($ $ (-777))) (-15 -2445 ($ $)) (-15 -2445 ($ $ (-777))) (-15 -3029 ($ $)) (-15 -2621 ($ $ $)) (-15 -3321 ($ $)) (-15 -3321 ($ $ $)) (-15 -3321 ($ $ $ $)) (-15 -3636 ($ $)) (-15 -3636 ($ $ $)) (-15 -3636 ($ $ $ $)) (-15 -3810 ($ $)) (-15 -3810 ($ $ $)) (-15 -3810 ($ $ $ $)) (-15 -3864 ($ $)) (-15 -3864 ($ (-650 $))) (-15 -2819 ($ $)) (-15 -2819 ($ (-650 $))) (-15 -2486 ($ $)) (-15 -2486 ($ (-650 $))) (-15 -3455 ($ (-650 $))) (-15 -1756 ($ (-650 $))) (-15 -2922 ($ (-650 $))) (-15 -2835 ($ (-650 $))) (-15 -3025 ($ $ $)) (-15 -2560 ($ $ $)) (-15 -3045 ($ $ $)) (-15 -3055 ($ $ $)) (-15 -3065 ($ $ $)) (-15 -3075 ($ $ $)) (-15 -3104 ($ $ $)) (-15 -3114 ($ $ $)) (-15 -3114 ($ $)) (-15 * ($ $ $)) (-15 -3125 ($ $ $)) (-15 ** ($ $ $)) (-15 -2538 ($ $ $)) (-15 -2504 ($ $ $)) (-15 -2519 ($ $ $)) (-15 -2548 ($ $ $)) (-15 -1810 ($ $ $)) (-15 -1824 ($ $ $)) (-15 -1796 ($ $)) (-15 -3670 ($ $ $)) (-15 -3670 ($ $))))
+((-4415 (((-1282) (-650 (-52))) 23)) (-1940 (((-1282) (-1168) (-868)) 13) (((-1282) (-868)) 8) (((-1282) (-1168)) 10)))
+(((-869) (-10 -7 (-15 -1940 ((-1282) (-1168))) (-15 -1940 ((-1282) (-868))) (-15 -1940 ((-1282) (-1168) (-868))) (-15 -4415 ((-1282) (-650 (-52)))))) (T -869))
+((-4415 (*1 *2 *3) (-12 (-5 *3 (-650 (-52))) (-5 *2 (-1282)) (-5 *1 (-869)))) (-1940 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1282)) (-5 *1 (-869)))) (-1940 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-869)))) (-1940 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-869)))))
+(-10 -7 (-15 -1940 ((-1282) (-1168))) (-15 -1940 ((-1282) (-868))) (-15 -1940 ((-1282) (-1168) (-868))) (-15 -4415 ((-1282) (-650 (-52)))))
+((-2560 (((-112) $ $) NIL)) (-2800 (((-3 $ "failed") (-1186)) 36)) (-3513 (((-777)) 32)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) 29)) (-3989 (((-1168) $) 43)) (-2267 (($ (-928)) 28)) (-3580 (((-1129) $) NIL)) (-1426 (((-1186) $) 13) (((-542) $) 19) (((-899 (-384)) $) 26) (((-899 (-570)) $) 22)) (-3802 (((-868) $) 16)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 40)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 38)))
+(((-870 |#1|) (-13 (-850) (-620 (-1186)) (-620 (-542)) (-620 (-899 (-384))) (-620 (-899 (-570))) (-10 -8 (-15 -2800 ((-3 $ "failed") (-1186))))) (-650 (-1186))) (T -870))
+((-2800 (*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 -2800 ((-3 $ "failed") (-1186)))))
+((-2560 (((-112) $ $) NIL)) (-3602 (((-512) $) 9)) (-2052 (((-650 (-445)) $) 13)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 21)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 16)))
+(((-871) (-13 (-1109) (-10 -8 (-15 -3602 ((-512) $)) (-15 -2052 ((-650 (-445)) $))))) (T -871))
+((-3602 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-871)))) (-2052 (*1 *2 *1) (-12 (-5 *2 (-650 (-445))) (-5 *1 (-871)))))
+(-13 (-1109) (-10 -8 (-15 -3602 ((-512) $)) (-15 -2052 ((-650 (-445)) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-959 |#1|)) NIL) (((-959 |#1|) $) NIL) (($ |#1|) NIL (|has| |#1| (-174)))) (-2851 (((-777)) NIL T CONST)) (-3891 (((-1282) (-777)) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3125 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3125 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3891 ((-1282) (-777))))) (-1058) (-650 (-1186)) (-650 (-777)) (-777)) (T -872))
+((-3125 (*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)))) (-3891 (*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 -3125 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3891 ((-1282) (-777)))))
+((-3837 (((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|) 38)) (-2370 (((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|) 29)))
+(((-873 |#1| |#2| |#3|) (-10 -7 (-15 -2370 ((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|)) (-15 -3837 ((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|))) (-368) (-1268 |#1|) (-1253 |#1|)) (T -873))
+((-3837 (*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)))) (-2370 (*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 -2370 ((-3 (-413 |#3|) "failed") (-777) (-777) |#2| |#2|)) (-15 -3837 ((-3 (-176 |#3|) "failed") (-777) (-777) |#2| |#2|)))
+((-2370 (((-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 -2370 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) (-15 -2370 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|)))) (-368) (-1186) |#1|) (T -874))
+((-2370 (*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)))) (-2370 (*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 -2370 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|))) (-15 -2370 ((-3 (-413 (-1250 |#2| |#1|)) "failed") (-777) (-777) (-1269 |#1| |#2| |#3|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-3817 (($ $ (-570)) 68)) (-3765 (((-112) $ $) 65)) (-3195 (($) 18 T CONST)) (-2236 (($ (-1182 (-570)) (-570)) 67)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-2769 (($ $) 70)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-3941 (((-777) $) 75)) (-4139 (((-112) $) 35)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1574 (((-570)) 72)) (-1571 (((-570) $) 71)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-3152 (($ $ (-570)) 74)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-3098 (((-1166 (-570)) $) 76)) (-1682 (($ $) 73)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-3170 (((-570) $ (-570)) 69)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-875 |#1|) (-141) (-570)) (T -875))
-((-2737 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-1166 (-570))))) (-4323 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-777)))) (-2431 (*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-2853 (*1 *1 *1) (-4 *1 (-875 *2))) (-1932 (*1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-1442 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-2700 (*1 *1 *1) (-4 *1 (-875 *2))) (-3167 (*1 *2 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-3814 (*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-3235 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *3 (-570)) (-4 *1 (-875 *4)))))
-(-13 (-311) (-148) (-10 -8 (-15 -2737 ((-1166 (-570)) $)) (-15 -4323 ((-777) $)) (-15 -2431 ($ $ (-570))) (-15 -2853 ($ $)) (-15 -1932 ((-570))) (-15 -1442 ((-570) $)) (-15 -2700 ($ $)) (-15 -3167 ((-570) $ (-570))) (-15 -3814 ($ $ (-570))) (-15 -3235 ($ (-1182 (-570)) (-570)))))
+((-3098 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-1166 (-570))))) (-3941 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-777)))) (-3152 (*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-1682 (*1 *1 *1) (-4 *1 (-875 *2))) (-1574 (*1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-1571 (*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-2769 (*1 *1 *1) (-4 *1 (-875 *2))) (-3170 (*1 *2 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-3817 (*1 *1 *1 *2) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))) (-2236 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *3 (-570)) (-4 *1 (-875 *4)))))
+(-13 (-311) (-148) (-10 -8 (-15 -3098 ((-1166 (-570)) $)) (-15 -3941 ((-777) $)) (-15 -3152 ($ $ (-570))) (-15 -1682 ($ $)) (-15 -1574 ((-570))) (-15 -1571 ((-570) $)) (-15 -2769 ($ $)) (-15 -3170 ((-570) $ (-570))) (-15 -3817 ($ $ (-570))) (-15 -2236 ($ (-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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $ (-570)) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-3235 (($ (-1182 (-570)) (-570)) NIL)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2700 (($ $) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-4323 (((-777) $) NIL)) (-4346 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1932 (((-570)) NIL)) (-1442 (((-570) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2431 (($ $ (-570)) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2737 (((-1166 (-570)) $) NIL)) (-2853 (($ $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-3167 (((-570) $ (-570)) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3817 (($ $ (-570)) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2236 (($ (-1182 (-570)) (-570)) NIL)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2769 (($ $) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3941 (((-777) $) NIL)) (-4139 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1574 (((-570)) NIL)) (-1571 (((-570) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-3152 (($ $ (-570)) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3098 (((-1166 (-570)) $) NIL)) (-1682 (($ $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3170 (((-570) $ (-570)) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
(((-876 |#1|) (-875 |#1|) (-570)) (T -876))
NIL
(-875 |#1|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| (-876 |#1|) (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-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))))) (-1964 (($ $) NIL) (($ (-570) $) NIL)) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-876 |#1|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-876 |#1|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-876 |#1|))) (|:| |vec| (-1277 (-876 |#1|)))) (-695 $) (-1277 $)) NIL) (((-695 (-876 |#1|)) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-876 |#1|) (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) NIL (|has| (-876 |#1|) (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-876 |#1|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-876 |#1|) (-893 (-384))))) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL)) (-4399 (((-876 |#1|) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| (-876 |#1|) (-1161)))) (-1479 (((-112) $) NIL (|has| (-876 |#1|) (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| (-876 |#1|) (-856)))) (-2800 (($ $ $) NIL (|has| (-876 |#1|) (-856)))) (-1356 (($ (-1 (-876 |#1|) (-876 |#1|)) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-876 |#1|) (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| (-876 |#1|) (-311)))) (-3665 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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|))))) (-2142 (((-777) $) NIL)) (-1941 (($ $ (-876 |#1|)) NIL (|has| (-876 |#1|) (-290 (-876 |#1|) (-876 |#1|))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 (((-876 |#1|) $) NIL)) (-1425 (((-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)))) (-1587 (((-176 (-413 (-570))) $) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-876 |#1|) (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-876 |#1|)) NIL) (($ (-1186)) NIL (|has| (-876 |#1|) (-1047 (-1186))))) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| (-876 |#1|) (-916))) (|has| (-876 |#1|) (-146))))) (-3499 (((-777)) NIL T CONST)) (-1313 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-551)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-3167 (((-413 (-570)) $ (-570)) NIL)) (-2622 (($ $) NIL (|has| (-876 |#1|) (-826)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-3122 (($ $ $) NIL) (($ (-876 |#1|) (-876 |#1|)) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3167 ((-413 (-570)) $ (-570))) (-15 -1587 ((-176 (-413 (-570))) $)) (-15 -1964 ($ $)) (-15 -1964 ($ (-570) $)))) (-570)) (T -877))
-((-3167 (*1 *2 *1 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-877 *4)) (-14 *4 *3) (-5 *3 (-570)))) (-1587 (*1 *2 *1) (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-877 *3)) (-14 *3 (-570)))) (-1964 (*1 *1 *1) (-12 (-5 *1 (-877 *2)) (-14 *2 (-570)))) (-1964 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-877 *3)) (-14 *3 *2))))
-(-13 (-1001 (-876 |#1|)) (-10 -8 (-15 -3167 ((-413 (-570)) $ (-570))) (-15 -1587 ((-176 (-413 (-570))) $)) (-15 -1964 ($ $)) (-15 -1964 ($ (-570) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 ((|#2| $) NIL (|has| |#2| (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| |#2| (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 ((|#2| $) NIL) (((-1186) $) NIL (|has| |#2| (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-570)))) (((-570) $) NIL (|has| |#2| (-1047 (-570))))) (-1964 (($ $) 35) (($ (-570) $) 38)) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) 64)) (-3446 (($) NIL (|has| |#2| (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) NIL (|has| |#2| (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#2| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#2| (-893 (-384))))) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL)) (-4399 ((|#2| $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| |#2| (-1161)))) (-1479 (((-112) $) NIL (|has| |#2| (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| |#2| (-856)))) (-2800 (($ $ $) NIL (|has| |#2| (-856)))) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 60)) (-2438 (($) NIL (|has| |#2| (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| |#2| (-311)))) (-3665 ((|#2| $) NIL (|has| |#2| (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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|)))) (-2142 (((-777) $) NIL)) (-1941 (($ $ |#2|) NIL (|has| |#2| (-290 |#2| |#2|)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 ((|#2| $) NIL)) (-1425 (((-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)))) (-1587 (((-176 (-413 (-570))) $) 78)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3799 (((-868) $) 106) (($ (-570)) 20) (($ $) NIL) (($ (-413 (-570))) 25) (($ |#2|) 19) (($ (-1186)) NIL (|has| |#2| (-1047 (-1186))))) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-3499 (((-777)) NIL T CONST)) (-1313 ((|#2| $) NIL (|has| |#2| (-551)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-3167 (((-413 (-570)) $ (-570)) 71)) (-2622 (($ $) NIL (|has| |#2| (-826)))) (-1861 (($) 15 T CONST)) (-1875 (($) 17 T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| |#2| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#2| (-856)))) (-3022 (((-112) $ $) 46)) (-3062 (((-112) $ $) NIL (|has| |#2| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#2| (-856)))) (-3122 (($ $ $) 24) (($ |#2| |#2|) 65)) (-3111 (($ $) 50) (($ $ $) 52)) (-3101 (($ $ $) 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 -3167 ((-413 (-570)) $ (-570))) (-15 -1587 ((-176 (-413 (-570))) $)) (-15 -1964 ($ $)) (-15 -1964 ($ (-570) $)))) (-570) (-875 |#1|)) (T -878))
-((-3167 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-413 (-570))) (-5 *1 (-878 *4 *5)) (-5 *3 (-570)) (-4 *5 (-875 *4)))) (-1587 (*1 *2 *1) (-12 (-14 *3 (-570)) (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-878 *3 *4)) (-4 *4 (-875 *3)))) (-1964 (*1 *1 *1) (-12 (-14 *2 (-570)) (-5 *1 (-878 *2 *3)) (-4 *3 (-875 *2)))) (-1964 (*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 -3167 ((-413 (-570)) $ (-570))) (-15 -1587 ((-176 (-413 (-570))) $)) (-15 -1964 ($ $)) (-15 -1964 ($ (-570) $))))
-((-2558 (((-112) $ $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-2686 ((|#2| $) 12)) (-2300 (($ |#1| |#2|) 9)) (-1988 (((-1168) $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3577 (((-1129) $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3543 ((|#1| $) 11)) (-3811 (($ |#1| |#2|) 10)) (-3799 (((-868) $) 18 (-2892 (-12 (|has| |#1| (-619 (-868))) (|has| |#2| (-619 (-868)))) (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109)))))) (-2335 (((-112) $ $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3022 (((-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 -2300 ($ |#1| |#2|)) (-15 -3811 ($ |#1| |#2|)) (-15 -3543 (|#1| $)) (-15 -2686 (|#2| $)))) (-1227) (-1227)) (T -879))
-((-2300 (*1 *1 *2 *3) (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227)))) (-3811 (*1 *1 *2 *3) (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227)))) (-3543 (*1 *2 *1) (-12 (-4 *2 (-1227)) (-5 *1 (-879 *2 *3)) (-4 *3 (-1227)))) (-2686 (*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 -2300 ($ |#1| |#2|)) (-15 -3811 ($ |#1| |#2|)) (-15 -3543 (|#1| $)) (-15 -2686 (|#2| $))))
-((-2558 (((-112) $ $) NIL)) (-2872 (((-570) $) 16)) (-2049 (($ (-158)) 13)) (-1692 (($ (-158)) 14)) (-1988 (((-1168) $) NIL)) (-1820 (((-158) $) 15)) (-3577 (((-1129) $) NIL)) (-2550 (($ (-158)) 11)) (-2454 (($ (-158)) 10)) (-3799 (((-868) $) 24) (($ (-158)) 17)) (-4149 (($ (-158)) 12)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-880) (-13 (-1109) (-10 -8 (-15 -2454 ($ (-158))) (-15 -2550 ($ (-158))) (-15 -4149 ($ (-158))) (-15 -2049 ($ (-158))) (-15 -1692 ($ (-158))) (-15 -1820 ((-158) $)) (-15 -2872 ((-570) $)) (-15 -3799 ($ (-158)))))) (T -880))
-((-2454 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-2550 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-4149 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-2049 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-1692 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-1820 (*1 *2 *1) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-2872 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-880)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
-(-13 (-1109) (-10 -8 (-15 -2454 ($ (-158))) (-15 -2550 ($ (-158))) (-15 -4149 ($ (-158))) (-15 -2049 ($ (-158))) (-15 -1692 ($ (-158))) (-15 -1820 ((-158) $)) (-15 -2872 ((-570) $)) (-15 -3799 ($ (-158)))))
-((-3799 (((-320 (-570)) (-413 (-959 (-48)))) 23) (((-320 (-570)) (-959 (-48))) 18)))
-(((-881) (-10 -7 (-15 -3799 ((-320 (-570)) (-959 (-48)))) (-15 -3799 ((-320 (-570)) (-413 (-959 (-48))))))) (T -881))
-((-3799 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 (-48)))) (-5 *2 (-320 (-570))) (-5 *1 (-881)))) (-3799 (*1 *2 *3) (-12 (-5 *3 (-959 (-48))) (-5 *2 (-320 (-570))) (-5 *1 (-881)))))
-(-10 -7 (-15 -3799 ((-320 (-570)) (-959 (-48)))) (-15 -3799 ((-320 (-570)) (-413 (-959 (-48))))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 18) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1851 (((-112) $ (|[\|\|]| (-512))) 9) (((-112) $ (|[\|\|]| (-1168))) 13)) (-2335 (((-112) $ $) NIL)) (-3983 (((-512) $) 10) (((-1168) $) 14)) (-3022 (((-112) $ $) 15)))
-(((-882) (-13 (-1092) (-1272) (-10 -8 (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -3983 ((-512) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3983 ((-1168) $))))) (T -882))
-((-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)) (-5 *1 (-882)))) (-3983 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-882)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)) (-5 *1 (-882)))) (-3983 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-882)))))
-(-13 (-1092) (-1272) (-10 -8 (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -3983 ((-512) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3983 ((-1168) $))))
-((-1356 (((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|)) 15)))
-(((-883 |#1| |#2|) (-10 -7 (-15 -1356 ((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|)))) (-1227) (-1227)) (T -883))
-((-1356 (*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 -1356 ((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|))))
-((-3301 (($ |#1| |#1|) 8)) (-3930 ((|#1| $ (-777)) 15)))
-(((-884 |#1|) (-10 -8 (-15 -3301 ($ |#1| |#1|)) (-15 -3930 (|#1| $ (-777)))) (-1227)) (T -884))
-((-3930 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-884 *2)) (-4 *2 (-1227)))) (-3301 (*1 *1 *2 *2) (-12 (-5 *1 (-884 *2)) (-4 *2 (-1227)))))
-(-10 -8 (-15 -3301 ($ |#1| |#1|)) (-15 -3930 (|#1| $ (-777))))
-((-1356 (((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)) 15)))
-(((-885 |#1| |#2|) (-10 -7 (-15 -1356 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)))) (-1227) (-1227)) (T -885))
-((-1356 (*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 -1356 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|))))
-((-3301 (($ |#1| |#1| |#1|) 8)) (-3930 ((|#1| $ (-777)) 15)))
-(((-886 |#1|) (-10 -8 (-15 -3301 ($ |#1| |#1| |#1|)) (-15 -3930 (|#1| $ (-777)))) (-1227)) (T -886))
-((-3930 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-886 *2)) (-4 *2 (-1227)))) (-3301 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-886 *2)) (-4 *2 (-1227)))))
-(-10 -8 (-15 -3301 ($ |#1| |#1| |#1|)) (-15 -3930 (|#1| $ (-777))))
-((-2559 (((-650 (-1191)) (-1168)) 9)))
-(((-887) (-10 -7 (-15 -2559 ((-650 (-1191)) (-1168))))) (T -887))
-((-2559 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-887)))))
-(-10 -7 (-15 -2559 ((-650 (-1191)) (-1168))))
-((-1356 (((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|)) 15)))
-(((-888 |#1| |#2|) (-10 -7 (-15 -1356 ((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|)))) (-1227) (-1227)) (T -888))
-((-1356 (*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 -1356 ((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|))))
-((-1810 (($ |#1| |#1| |#1|) 8)) (-3930 ((|#1| $ (-777)) 15)))
-(((-889 |#1|) (-10 -8 (-15 -1810 ($ |#1| |#1| |#1|)) (-15 -3930 (|#1| $ (-777)))) (-1227)) (T -889))
-((-3930 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-889 *2)) (-4 *2 (-1227)))) (-1810 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-1227)))))
-(-10 -8 (-15 -1810 ($ |#1| |#1| |#1|)) (-15 -3930 (|#1| $ (-777))))
-((-2421 (((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570)))) 59)) (-1914 (((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570))) 49)) (-2940 (((-1166 (-650 (-570))) (-650 (-570))) 71) (((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570))) 68)) (-2540 (((-1166 (-650 (-570))) (-570)) 73)) (-4251 (((-1166 (-650 (-928))) (-777) (-777)) 32) (((-1166 (-650 (-928))) (-777)) 25) (((-1166 (-650 (-928))) (-777) (-777) (-777)) 20)) (-3742 (((-1166 (-650 (-928))) (-1166 (-650 (-928)))) 40)) (-2020 (((-650 (-928)) (-650 (-928))) 39)))
-(((-890) (-10 -7 (-15 -4251 ((-1166 (-650 (-928))) (-777) (-777) (-777))) (-15 -4251 ((-1166 (-650 (-928))) (-777))) (-15 -4251 ((-1166 (-650 (-928))) (-777) (-777))) (-15 -2020 ((-650 (-928)) (-650 (-928)))) (-15 -3742 ((-1166 (-650 (-928))) (-1166 (-650 (-928))))) (-15 -1914 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -2421 ((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570))))) (-15 -2940 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -2940 ((-1166 (-650 (-570))) (-650 (-570)))) (-15 -2540 ((-1166 (-650 (-570))) (-570))))) (T -890))
-((-2540 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))) (-2940 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-2940 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-2421 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *3 (-650 (-570))) (-5 *1 (-890)))) (-1914 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-3742 (*1 *2 *2) (-12 (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))) (-2020 (*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-890)))) (-4251 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))) (-4251 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))) (-4251 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))))
-(-10 -7 (-15 -4251 ((-1166 (-650 (-928))) (-777) (-777) (-777))) (-15 -4251 ((-1166 (-650 (-928))) (-777))) (-15 -4251 ((-1166 (-650 (-928))) (-777) (-777))) (-15 -2020 ((-650 (-928)) (-650 (-928)))) (-15 -3742 ((-1166 (-650 (-928))) (-1166 (-650 (-928))))) (-15 -1914 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -2421 ((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570))))) (-15 -2940 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -2940 ((-1166 (-650 (-570))) (-650 (-570)))) (-15 -2540 ((-1166 (-650 (-570))) (-570))))
-((-1425 (((-899 (-384)) $) 9 (|has| |#1| (-620 (-899 (-384))))) (((-899 (-570)) $) 8 (|has| |#1| (-620 (-899 (-570)))))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| (-876 |#1|) (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-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))))) (-1907 (($ $) NIL) (($ (-570) $) NIL)) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-876 |#1|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-876 |#1|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-876 |#1|))) (|:| |vec| (-1277 (-876 |#1|)))) (-695 $) (-1277 $)) NIL) (((-695 (-876 |#1|)) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-876 |#1|) (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) NIL (|has| (-876 |#1|) (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-876 |#1|) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-876 |#1|) (-893 (-384))))) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL)) (-4402 (((-876 |#1|) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| (-876 |#1|) (-1161)))) (-2788 (((-112) $) NIL (|has| (-876 |#1|) (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| (-876 |#1|) (-856)))) (-2472 (($ $ $) NIL (|has| (-876 |#1|) (-856)))) (-1357 (($ (-1 (-876 |#1|) (-876 |#1|)) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-876 |#1|) (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| (-876 |#1|) (-311)))) (-1920 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-876 |#1|) (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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|))))) (-2006 (((-777) $) NIL)) (-1942 (($ $ (-876 |#1|)) NIL (|has| (-876 |#1|) (-290 (-876 |#1|) (-876 |#1|))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 (((-876 |#1|) $) NIL)) (-1426 (((-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)))) (-4428 (((-176 (-413 (-570))) $) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-876 |#1|) (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL) (($ (-876 |#1|)) NIL) (($ (-1186)) NIL (|has| (-876 |#1|) (-1047 (-1186))))) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| (-876 |#1|) (-916))) (|has| (-876 |#1|) (-146))))) (-2851 (((-777)) NIL T CONST)) (-1918 (((-876 |#1|) $) NIL (|has| (-876 |#1|) (-551)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3170 (((-413 (-570)) $ (-570)) NIL)) (-3231 (($ $) NIL (|has| (-876 |#1|) (-826)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-876 |#1|) (-856)))) (-3125 (($ $ $) NIL) (($ (-876 |#1|) (-876 |#1|)) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3170 ((-413 (-570)) $ (-570))) (-15 -4428 ((-176 (-413 (-570))) $)) (-15 -1907 ($ $)) (-15 -1907 ($ (-570) $)))) (-570)) (T -877))
+((-3170 (*1 *2 *1 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-877 *4)) (-14 *4 *3) (-5 *3 (-570)))) (-4428 (*1 *2 *1) (-12 (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-877 *3)) (-14 *3 (-570)))) (-1907 (*1 *1 *1) (-12 (-5 *1 (-877 *2)) (-14 *2 (-570)))) (-1907 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-877 *3)) (-14 *3 *2))))
+(-13 (-1001 (-876 |#1|)) (-10 -8 (-15 -3170 ((-413 (-570)) $ (-570))) (-15 -4428 ((-176 (-413 (-570))) $)) (-15 -1907 ($ $)) (-15 -1907 ($ (-570) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 ((|#2| $) NIL (|has| |#2| (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| |#2| (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 ((|#2| $) NIL) (((-1186) $) NIL (|has| |#2| (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-570)))) (((-570) $) NIL (|has| |#2| (-1047 (-570))))) (-1907 (($ $) 35) (($ (-570) $) 38)) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) 64)) (-3449 (($) NIL (|has| |#2| (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) NIL (|has| |#2| (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| |#2| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| |#2| (-893 (-384))))) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL)) (-4402 ((|#2| $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| |#2| (-1161)))) (-2788 (((-112) $) NIL (|has| |#2| (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| |#2| (-856)))) (-2472 (($ $ $) NIL (|has| |#2| (-856)))) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 60)) (-2439 (($) NIL (|has| |#2| (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| |#2| (-311)))) (-1920 ((|#2| $) NIL (|has| |#2| (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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|)))) (-2006 (((-777) $) NIL)) (-1942 (($ $ |#2|) NIL (|has| |#2| (-290 |#2| |#2|)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 ((|#2| $) NIL)) (-1426 (((-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)))) (-4428 (((-176 (-413 (-570))) $) 78)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-3802 (((-868) $) 106) (($ (-570)) 20) (($ $) NIL) (($ (-413 (-570))) 25) (($ |#2|) 19) (($ (-1186)) NIL (|has| |#2| (-1047 (-1186))))) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2851 (((-777)) NIL T CONST)) (-1918 ((|#2| $) NIL (|has| |#2| (-551)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3170 (((-413 (-570)) $ (-570)) 71)) (-3231 (($ $) NIL (|has| |#2| (-826)))) (-1862 (($) 15 T CONST)) (-1876 (($) 17 T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| |#2| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#2| (-856)))) (-3025 (((-112) $ $) 46)) (-3065 (((-112) $ $) NIL (|has| |#2| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#2| (-856)))) (-3125 (($ $ $) 24) (($ |#2| |#2|) 65)) (-3114 (($ $) 50) (($ $ $) 52)) (-3104 (($ $ $) 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 -3170 ((-413 (-570)) $ (-570))) (-15 -4428 ((-176 (-413 (-570))) $)) (-15 -1907 ($ $)) (-15 -1907 ($ (-570) $)))) (-570) (-875 |#1|)) (T -878))
+((-3170 (*1 *2 *1 *3) (-12 (-14 *4 *3) (-5 *2 (-413 (-570))) (-5 *1 (-878 *4 *5)) (-5 *3 (-570)) (-4 *5 (-875 *4)))) (-4428 (*1 *2 *1) (-12 (-14 *3 (-570)) (-5 *2 (-176 (-413 (-570)))) (-5 *1 (-878 *3 *4)) (-4 *4 (-875 *3)))) (-1907 (*1 *1 *1) (-12 (-14 *2 (-570)) (-5 *1 (-878 *2 *3)) (-4 *3 (-875 *2)))) (-1907 (*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 -3170 ((-413 (-570)) $ (-570))) (-15 -4428 ((-176 (-413 (-570))) $)) (-15 -1907 ($ $)) (-15 -1907 ($ (-570) $))))
+((-2560 (((-112) $ $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-2688 ((|#2| $) 12)) (-2300 (($ |#1| |#2|) 9)) (-3989 (((-1168) $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3580 (((-1129) $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3546 ((|#1| $) 11)) (-3814 (($ |#1| |#2|) 10)) (-3802 (((-868) $) 18 (-2895 (-12 (|has| |#1| (-619 (-868))) (|has| |#2| (-619 (-868)))) (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109)))))) (-3359 (((-112) $ $) NIL (-12 (|has| |#1| (-1109)) (|has| |#2| (-1109))))) (-3025 (((-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 -2300 ($ |#1| |#2|)) (-15 -3814 ($ |#1| |#2|)) (-15 -3546 (|#1| $)) (-15 -2688 (|#2| $)))) (-1227) (-1227)) (T -879))
+((-2300 (*1 *1 *2 *3) (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227)))) (-3814 (*1 *1 *2 *3) (-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227)))) (-3546 (*1 *2 *1) (-12 (-4 *2 (-1227)) (-5 *1 (-879 *2 *3)) (-4 *3 (-1227)))) (-2688 (*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 -2300 ($ |#1| |#2|)) (-15 -3814 ($ |#1| |#2|)) (-15 -3546 (|#1| $)) (-15 -2688 (|#2| $))))
+((-2560 (((-112) $ $) NIL)) (-1891 (((-570) $) 16)) (-3444 (($ (-158)) 13)) (-4227 (($ (-158)) 14)) (-3989 (((-1168) $) NIL)) (-3021 (((-158) $) 15)) (-3580 (((-1129) $) NIL)) (-2550 (($ (-158)) 11)) (-2209 (($ (-158)) 10)) (-3802 (((-868) $) 24) (($ (-158)) 17)) (-4152 (($ (-158)) 12)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-880) (-13 (-1109) (-10 -8 (-15 -2209 ($ (-158))) (-15 -2550 ($ (-158))) (-15 -4152 ($ (-158))) (-15 -3444 ($ (-158))) (-15 -4227 ($ (-158))) (-15 -3021 ((-158) $)) (-15 -1891 ((-570) $)) (-15 -3802 ($ (-158)))))) (T -880))
+((-2209 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-2550 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-4152 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-3444 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-4227 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-3021 (*1 *2 *1) (-12 (-5 *2 (-158)) (-5 *1 (-880)))) (-1891 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-880)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
+(-13 (-1109) (-10 -8 (-15 -2209 ($ (-158))) (-15 -2550 ($ (-158))) (-15 -4152 ($ (-158))) (-15 -3444 ($ (-158))) (-15 -4227 ($ (-158))) (-15 -3021 ((-158) $)) (-15 -1891 ((-570) $)) (-15 -3802 ($ (-158)))))
+((-3802 (((-320 (-570)) (-413 (-959 (-48)))) 23) (((-320 (-570)) (-959 (-48))) 18)))
+(((-881) (-10 -7 (-15 -3802 ((-320 (-570)) (-959 (-48)))) (-15 -3802 ((-320 (-570)) (-413 (-959 (-48))))))) (T -881))
+((-3802 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 (-48)))) (-5 *2 (-320 (-570))) (-5 *1 (-881)))) (-3802 (*1 *2 *3) (-12 (-5 *3 (-959 (-48))) (-5 *2 (-320 (-570))) (-5 *1 (-881)))))
+(-10 -7 (-15 -3802 ((-320 (-570)) (-959 (-48)))) (-15 -3802 ((-320 (-570)) (-413 (-959 (-48))))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 18) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1851 (((-112) $ (|[\|\|]| (-512))) 9) (((-112) $ (|[\|\|]| (-1168))) 13)) (-3359 (((-112) $ $) NIL)) (-3985 (((-512) $) 10) (((-1168) $) 14)) (-3025 (((-112) $ $) 15)))
+(((-882) (-13 (-1092) (-1272) (-10 -8 (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -3985 ((-512) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3985 ((-1168) $))))) (T -882))
+((-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)) (-5 *1 (-882)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-882)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)) (-5 *1 (-882)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-882)))))
+(-13 (-1092) (-1272) (-10 -8 (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -3985 ((-512) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3985 ((-1168) $))))
+((-1357 (((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|)) 15)))
+(((-883 |#1| |#2|) (-10 -7 (-15 -1357 ((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|)))) (-1227) (-1227)) (T -883))
+((-1357 (*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 -1357 ((-884 |#2|) (-1 |#2| |#1|) (-884 |#1|))))
+((-1620 (($ |#1| |#1|) 8)) (-2587 ((|#1| $ (-777)) 15)))
+(((-884 |#1|) (-10 -8 (-15 -1620 ($ |#1| |#1|)) (-15 -2587 (|#1| $ (-777)))) (-1227)) (T -884))
+((-2587 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-884 *2)) (-4 *2 (-1227)))) (-1620 (*1 *1 *2 *2) (-12 (-5 *1 (-884 *2)) (-4 *2 (-1227)))))
+(-10 -8 (-15 -1620 ($ |#1| |#1|)) (-15 -2587 (|#1| $ (-777))))
+((-1357 (((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)) 15)))
+(((-885 |#1| |#2|) (-10 -7 (-15 -1357 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|)))) (-1227) (-1227)) (T -885))
+((-1357 (*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 -1357 ((-886 |#2|) (-1 |#2| |#1|) (-886 |#1|))))
+((-1620 (($ |#1| |#1| |#1|) 8)) (-2587 ((|#1| $ (-777)) 15)))
+(((-886 |#1|) (-10 -8 (-15 -1620 ($ |#1| |#1| |#1|)) (-15 -2587 (|#1| $ (-777)))) (-1227)) (T -886))
+((-2587 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-886 *2)) (-4 *2 (-1227)))) (-1620 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-886 *2)) (-4 *2 (-1227)))))
+(-10 -8 (-15 -1620 ($ |#1| |#1| |#1|)) (-15 -2587 (|#1| $ (-777))))
+((-3840 (((-650 (-1191)) (-1168)) 9)))
+(((-887) (-10 -7 (-15 -3840 ((-650 (-1191)) (-1168))))) (T -887))
+((-3840 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-887)))))
+(-10 -7 (-15 -3840 ((-650 (-1191)) (-1168))))
+((-1357 (((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|)) 15)))
+(((-888 |#1| |#2|) (-10 -7 (-15 -1357 ((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|)))) (-1227) (-1227)) (T -888))
+((-1357 (*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 -1357 ((-889 |#2|) (-1 |#2| |#1|) (-889 |#1|))))
+((-2944 (($ |#1| |#1| |#1|) 8)) (-2587 ((|#1| $ (-777)) 15)))
+(((-889 |#1|) (-10 -8 (-15 -2944 ($ |#1| |#1| |#1|)) (-15 -2587 (|#1| $ (-777)))) (-1227)) (T -889))
+((-2587 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-889 *2)) (-4 *2 (-1227)))) (-2944 (*1 *1 *2 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-1227)))))
+(-10 -8 (-15 -2944 ($ |#1| |#1| |#1|)) (-15 -2587 (|#1| $ (-777))))
+((-3054 (((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570)))) 59)) (-1377 (((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570))) 49)) (-2412 (((-1166 (-650 (-570))) (-650 (-570))) 71) (((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570))) 68)) (-1816 (((-1166 (-650 (-570))) (-570)) 73)) (-1381 (((-1166 (-650 (-928))) (-777) (-777)) 32) (((-1166 (-650 (-928))) (-777)) 25) (((-1166 (-650 (-928))) (-777) (-777) (-777)) 20)) (-3253 (((-1166 (-650 (-928))) (-1166 (-650 (-928)))) 40)) (-4307 (((-650 (-928)) (-650 (-928))) 39)))
+(((-890) (-10 -7 (-15 -1381 ((-1166 (-650 (-928))) (-777) (-777) (-777))) (-15 -1381 ((-1166 (-650 (-928))) (-777))) (-15 -1381 ((-1166 (-650 (-928))) (-777) (-777))) (-15 -4307 ((-650 (-928)) (-650 (-928)))) (-15 -3253 ((-1166 (-650 (-928))) (-1166 (-650 (-928))))) (-15 -1377 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -3054 ((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570))))) (-15 -2412 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -2412 ((-1166 (-650 (-570))) (-650 (-570)))) (-15 -1816 ((-1166 (-650 (-570))) (-570))))) (T -890))
+((-1816 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))) (-2412 (*1 *2 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-2412 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-3054 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *3 (-650 (-570))) (-5 *1 (-890)))) (-1377 (*1 *2 *3 *3) (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-650 (-570))))) (-3253 (*1 *2 *2) (-12 (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))) (-4307 (*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-890)))) (-1381 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))) (-1381 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))) (-1381 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))))
+(-10 -7 (-15 -1381 ((-1166 (-650 (-928))) (-777) (-777) (-777))) (-15 -1381 ((-1166 (-650 (-928))) (-777))) (-15 -1381 ((-1166 (-650 (-928))) (-777) (-777))) (-15 -4307 ((-650 (-928)) (-650 (-928)))) (-15 -3253 ((-1166 (-650 (-928))) (-1166 (-650 (-928))))) (-15 -1377 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -3054 ((-1166 (-650 (-570))) (-650 (-570)) (-1166 (-650 (-570))))) (-15 -2412 ((-1166 (-650 (-570))) (-650 (-570)) (-650 (-570)))) (-15 -2412 ((-1166 (-650 (-570))) (-650 (-570)))) (-15 -1816 ((-1166 (-650 (-570))) (-570))))
+((-1426 (((-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)))))
-((-2558 (((-112) $ $) NIL)) (-4291 (($) 14)) (-3533 (($ (-896 |#1| |#2|) (-896 |#1| |#3|)) 28)) (-2890 (((-896 |#1| |#3|) $) 16)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1599 (((-112) $) 22)) (-2636 (($) 19)) (-3799 (((-868) $) 31)) (-2335 (((-112) $ $) NIL)) (-2031 (((-896 |#1| |#2|) $) 15)) (-3022 (((-112) $ $) 26)))
-(((-892 |#1| |#2| |#3|) (-13 (-1109) (-10 -8 (-15 -1599 ((-112) $)) (-15 -2636 ($)) (-15 -4291 ($)) (-15 -3533 ($ (-896 |#1| |#2|) (-896 |#1| |#3|))) (-15 -2031 ((-896 |#1| |#2|) $)) (-15 -2890 ((-896 |#1| |#3|) $)))) (-1109) (-1109) (-672 |#2|)) (T -892))
-((-1599 (*1 *2 *1) (-12 (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-892 *3 *4 *5)) (-4 *3 (-1109)) (-4 *5 (-672 *4)))) (-2636 (*1 *1) (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109)) (-4 *4 (-672 *3)))) (-4291 (*1 *1) (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109)) (-4 *4 (-672 *3)))) (-3533 (*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)))) (-2031 (*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)))) (-2890 (*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 -1599 ((-112) $)) (-15 -2636 ($)) (-15 -4291 ($)) (-15 -3533 ($ (-896 |#1| |#2|) (-896 |#1| |#3|))) (-15 -2031 ((-896 |#1| |#2|) $)) (-15 -2890 ((-896 |#1| |#3|) $))))
-((-2558 (((-112) $ $) 7)) (-2842 (((-896 |#1| $) $ (-899 |#1|) (-896 |#1| $)) 14)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) NIL)) (-4294 (($) 14)) (-3143 (($ (-896 |#1| |#2|) (-896 |#1| |#3|)) 28)) (-2893 (((-896 |#1| |#3|) $) 16)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1467 (((-112) $) 22)) (-2637 (($) 19)) (-3802 (((-868) $) 31)) (-3359 (((-112) $ $) NIL)) (-3244 (((-896 |#1| |#2|) $) 15)) (-3025 (((-112) $ $) 26)))
+(((-892 |#1| |#2| |#3|) (-13 (-1109) (-10 -8 (-15 -1467 ((-112) $)) (-15 -2637 ($)) (-15 -4294 ($)) (-15 -3143 ($ (-896 |#1| |#2|) (-896 |#1| |#3|))) (-15 -3244 ((-896 |#1| |#2|) $)) (-15 -2893 ((-896 |#1| |#3|) $)))) (-1109) (-1109) (-672 |#2|)) (T -892))
+((-1467 (*1 *2 *1) (-12 (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-892 *3 *4 *5)) (-4 *3 (-1109)) (-4 *5 (-672 *4)))) (-2637 (*1 *1) (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109)) (-4 *4 (-672 *3)))) (-4294 (*1 *1) (-12 (-4 *3 (-1109)) (-5 *1 (-892 *2 *3 *4)) (-4 *2 (-1109)) (-4 *4 (-672 *3)))) (-3143 (*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)))) (-3244 (*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)))) (-2893 (*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 -1467 ((-112) $)) (-15 -2637 ($)) (-15 -4294 ($)) (-15 -3143 ($ (-896 |#1| |#2|) (-896 |#1| |#3|))) (-15 -3244 ((-896 |#1| |#2|) $)) (-15 -2893 ((-896 |#1| |#3|) $))))
+((-2560 (((-112) $ $) 7)) (-1557 (((-896 |#1| $) $ (-899 |#1|) (-896 |#1| $)) 14)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-893 |#1|) (-141) (-1109)) (T -893))
-((-2842 (*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 -2842 ((-896 |t#1| $) $ (-899 |t#1|) (-896 |t#1| $)))))
+((-1557 (*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 -1557 ((-896 |t#1| $) $ (-899 |t#1|) (-896 |t#1| $)))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3190 (((-112) (-650 |#2|) |#3|) 23) (((-112) |#2| |#3|) 18)) (-2676 (((-896 |#1| |#2|) |#2| |#3|) 45 (-12 (-1795 (|has| |#2| (-1047 (-1186)))) (-1795 (|has| |#2| (-1058))))) (((-650 (-298 (-959 |#2|))) |#2| |#3|) 44 (-12 (|has| |#2| (-1058)) (-1795 (|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 -3190 ((-112) |#2| |#3|)) (-15 -3190 ((-112) (-650 |#2|) |#3|)) (-15 -2676 ((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|)) (IF (|has| |#2| (-1047 (-1186))) (-15 -2676 ((-650 (-298 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1058)) (-15 -2676 ((-650 (-298 (-959 |#2|))) |#2| |#3|)) (-15 -2676 ((-896 |#1| |#2|) |#2| |#3|))))) (-1109) (-893 |#1|) (-620 (-899 |#1|))) (T -894))
-((-2676 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-896 *5 *3)) (-5 *1 (-894 *5 *3 *4)) (-1795 (-4 *3 (-1047 (-1186)))) (-1795 (-4 *3 (-1058))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-2676 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 (-959 *3)))) (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-1058)) (-1795 (-4 *3 (-1047 (-1186)))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-2676 (*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))))) (-2676 (*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))))) (-3190 (*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))))) (-3190 (*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 -3190 ((-112) |#2| |#3|)) (-15 -3190 ((-112) (-650 |#2|) |#3|)) (-15 -2676 ((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|)) (IF (|has| |#2| (-1047 (-1186))) (-15 -2676 ((-650 (-298 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1058)) (-15 -2676 ((-650 (-298 (-959 |#2|))) |#2| |#3|)) (-15 -2676 ((-896 |#1| |#2|) |#2| |#3|)))))
-((-1356 (((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|)) 22)))
-(((-895 |#1| |#2| |#3|) (-10 -7 (-15 -1356 ((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|)))) (-1109) (-1109) (-1109)) (T -895))
-((-1356 (*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 -1356 ((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|))))
-((-2558 (((-112) $ $) NIL)) (-3959 (($ $ $) 40)) (-3391 (((-3 (-112) "failed") $ (-899 |#1|)) 37)) (-4291 (($) 12)) (-1988 (((-1168) $) NIL)) (-3302 (($ (-899 |#1|) |#2| $) 20)) (-3577 (((-1129) $) NIL)) (-2092 (((-3 |#2| "failed") (-899 |#1|) $) 51)) (-1599 (((-112) $) 15)) (-2636 (($) 13)) (-3873 (((-650 (-2 (|:| -2106 (-1186)) (|:| -2340 |#2|))) $) 25)) (-3811 (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 |#2|)))) 23)) (-3799 (((-868) $) 45)) (-2335 (((-112) $ $) NIL)) (-1441 (($ (-899 |#1|) |#2| $ |#2|) 49)) (-3947 (($ (-899 |#1|) |#2| $) 48)) (-3022 (((-112) $ $) 42)))
-(((-896 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -1599 ((-112) $)) (-15 -2636 ($)) (-15 -4291 ($)) (-15 -3959 ($ $ $)) (-15 -2092 ((-3 |#2| "failed") (-899 |#1|) $)) (-15 -3947 ($ (-899 |#1|) |#2| $)) (-15 -3302 ($ (-899 |#1|) |#2| $)) (-15 -1441 ($ (-899 |#1|) |#2| $ |#2|)) (-15 -3873 ((-650 (-2 (|:| -2106 (-1186)) (|:| -2340 |#2|))) $)) (-15 -3811 ($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 |#2|))))) (-15 -3391 ((-3 (-112) "failed") $ (-899 |#1|))))) (-1109) (-1109)) (T -896))
-((-1599 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2636 (*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-4291 (*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3959 (*1 *1 *1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-2092 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-4 *2 (-1109)) (-5 *1 (-896 *4 *2)))) (-3947 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-3302 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-1441 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-3873 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 *4)))) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3811 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 *4)))) (-4 *4 (-1109)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)))) (-3391 (*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 -1599 ((-112) $)) (-15 -2636 ($)) (-15 -4291 ($)) (-15 -3959 ($ $ $)) (-15 -2092 ((-3 |#2| "failed") (-899 |#1|) $)) (-15 -3947 ($ (-899 |#1|) |#2| $)) (-15 -3302 ($ (-899 |#1|) |#2| $)) (-15 -1441 ($ (-899 |#1|) |#2| $ |#2|)) (-15 -3873 ((-650 (-2 (|:| -2106 (-1186)) (|:| -2340 |#2|))) $)) (-15 -3811 ($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 |#2|))))) (-15 -3391 ((-3 (-112) "failed") $ (-899 |#1|)))))
-((-4268 (((-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)) (-3391 (((-112) (-650 |#2|) (-899 |#1|)) 42) (((-112) |#2| (-899 |#1|)) 36)) (-3739 (((-1 (-112) |#2|) (-899 |#1|)) 16)) (-4181 (((-650 |#2|) (-899 |#1|)) 24)) (-3617 (((-899 |#1|) (-899 |#1|) |#2|) 20)))
-(((-897 |#1| |#2|) (-10 -7 (-15 -4268 ((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|))) (-15 -4268 ((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|)))) (-15 -4268 ((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|)))) (-15 -3739 ((-1 (-112) |#2|) (-899 |#1|))) (-15 -3391 ((-112) |#2| (-899 |#1|))) (-15 -3391 ((-112) (-650 |#2|) (-899 |#1|))) (-15 -3617 ((-899 |#1|) (-899 |#1|) |#2|)) (-15 -4181 ((-650 |#2|) (-899 |#1|)))) (-1109) (-1227)) (T -897))
-((-4181 (*1 *2 *3) (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-650 *5)) (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))) (-3617 (*1 *2 *2 *3) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-897 *4 *3)) (-4 *3 (-1227)))) (-3391 (*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)))) (-3391 (*1 *2 *3 *4) (-12 (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-897 *5 *3)) (-4 *3 (-1227)))) (-3739 (*1 *2 *3) (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))) (-4268 (*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)))) (-4268 (*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)))) (-4268 (*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 -4268 ((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|))) (-15 -4268 ((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|)))) (-15 -4268 ((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|)))) (-15 -3739 ((-1 (-112) |#2|) (-899 |#1|))) (-15 -3391 ((-112) |#2| (-899 |#1|))) (-15 -3391 ((-112) (-650 |#2|) (-899 |#1|))) (-15 -3617 ((-899 |#1|) (-899 |#1|) |#2|)) (-15 -4181 ((-650 |#2|) (-899 |#1|))))
-((-1356 (((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|)) 19)))
-(((-898 |#1| |#2|) (-10 -7 (-15 -1356 ((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|)))) (-1109) (-1109)) (T -898))
-((-1356 (*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 -1356 ((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|))))
-((-2558 (((-112) $ $) NIL)) (-2262 (($ $ (-650 (-52))) 74)) (-1755 (((-650 $) $) 139)) (-2936 (((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $) 30)) (-1928 (((-112) $) 35)) (-3957 (($ $ (-650 (-1186)) (-52)) 31)) (-4415 (($ $ (-650 (-52))) 73)) (-4380 (((-3 |#1| "failed") $) 71) (((-3 (-1186) "failed") $) 164)) (-3216 ((|#1| $) 68) (((-1186) $) NIL)) (-1824 (($ $) 126)) (-3663 (((-112) $) 55)) (-2341 (((-650 (-52)) $) 50)) (-2572 (($ (-1186) (-112) (-112) (-112)) 75)) (-2115 (((-3 (-650 $) "failed") (-650 $)) 82)) (-1661 (((-112) $) 58)) (-3156 (((-112) $) 57)) (-1988 (((-1168) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) 41)) (-1372 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 48)) (-3352 (((-3 (-2 (|:| |val| $) (|:| -3357 $)) "failed") $) 97)) (-3654 (((-3 (-650 $) "failed") $) 40)) (-2008 (((-3 (-650 $) "failed") $ (-115)) 124) (((-3 (-2 (|:| -3897 (-115)) (|:| |arg| (-650 $))) "failed") $) 107)) (-3931 (((-3 (-650 $) "failed") $) 42)) (-1895 (((-3 (-2 (|:| |val| $) (|:| -3357 (-777))) "failed") $) 45)) (-3093 (((-112) $) 34)) (-3577 (((-1129) $) NIL)) (-2319 (((-112) $) 28)) (-2023 (((-112) $) 52)) (-1377 (((-650 (-52)) $) 130)) (-2315 (((-112) $) 56)) (-1941 (($ (-115) (-650 $)) 104)) (-2918 (((-777) $) 33)) (-3951 (($ $) 72)) (-1425 (($ (-650 $)) 69)) (-3935 (((-112) $) 32)) (-3799 (((-868) $) 63) (($ |#1|) 23) (($ (-1186)) 76)) (-2335 (((-112) $ $) NIL)) (-3617 (($ $ (-52)) 129)) (-1861 (($) 103 T CONST)) (-1875 (($) 83 T CONST)) (-3022 (((-112) $ $) 93)) (-3122 (($ $ $) 117)) (-3101 (($ $ $) 121)) (** (($ $ (-777)) 115) (($ $ $) 64)) (* (($ $ $) 122)))
-(((-899 |#1|) (-13 (-1109) (-1047 |#1|) (-1047 (-1186)) (-10 -8 (-15 0 ($) -3725) (-15 1 ($) -3725) (-15 -3654 ((-3 (-650 $) "failed") $)) (-15 -2209 ((-3 (-650 $) "failed") $)) (-15 -2008 ((-3 (-650 $) "failed") $ (-115))) (-15 -2008 ((-3 (-2 (|:| -3897 (-115)) (|:| |arg| (-650 $))) "failed") $)) (-15 -1895 ((-3 (-2 (|:| |val| $) (|:| -3357 (-777))) "failed") $)) (-15 -1372 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -3931 ((-3 (-650 $) "failed") $)) (-15 -3352 ((-3 (-2 (|:| |val| $) (|:| -3357 $)) "failed") $)) (-15 -1941 ($ (-115) (-650 $))) (-15 -3101 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ $)) (-15 -3122 ($ $ $)) (-15 -2918 ((-777) $)) (-15 -1425 ($ (-650 $))) (-15 -3951 ($ $)) (-15 -3093 ((-112) $)) (-15 -3663 ((-112) $)) (-15 -1928 ((-112) $)) (-15 -3935 ((-112) $)) (-15 -2315 ((-112) $)) (-15 -3156 ((-112) $)) (-15 -1661 ((-112) $)) (-15 -2023 ((-112) $)) (-15 -2341 ((-650 (-52)) $)) (-15 -4415 ($ $ (-650 (-52)))) (-15 -2262 ($ $ (-650 (-52)))) (-15 -2572 ($ (-1186) (-112) (-112) (-112))) (-15 -3957 ($ $ (-650 (-1186)) (-52))) (-15 -2936 ((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $)) (-15 -2319 ((-112) $)) (-15 -1824 ($ $)) (-15 -3617 ($ $ (-52))) (-15 -1377 ((-650 (-52)) $)) (-15 -1755 ((-650 $) $)) (-15 -2115 ((-3 (-650 $) "failed") (-650 $))))) (-1109)) (T -899))
-((-1861 (*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-1875 (*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-3654 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2209 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2008 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-899 *4))) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-2008 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -3897 (-115)) (|:| |arg| (-650 (-899 *3))))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1895 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3357 (-777)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1372 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-899 *3)) (|:| |den| (-899 *3)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3931 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3352 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3357 (-899 *3)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1941 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 (-899 *4))) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-3101 (*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)))) (-3122 (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-2918 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1425 (*1 *1 *2) (-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3951 (*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-3093 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3663 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1928 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3935 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2315 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3156 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1661 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2023 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2341 (*1 *2 *1) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4415 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2262 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2572 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-112)) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-3957 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-52)) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-2936 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2319 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1824 (*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-3617 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1377 (*1 *2 *1) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1755 (*1 *2 *1) (-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2115 (*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 (-1861) ($) -3725) (-15 (-1875) ($) -3725) (-15 -3654 ((-3 (-650 $) "failed") $)) (-15 -2209 ((-3 (-650 $) "failed") $)) (-15 -2008 ((-3 (-650 $) "failed") $ (-115))) (-15 -2008 ((-3 (-2 (|:| -3897 (-115)) (|:| |arg| (-650 $))) "failed") $)) (-15 -1895 ((-3 (-2 (|:| |val| $) (|:| -3357 (-777))) "failed") $)) (-15 -1372 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -3931 ((-3 (-650 $) "failed") $)) (-15 -3352 ((-3 (-2 (|:| |val| $) (|:| -3357 $)) "failed") $)) (-15 -1941 ($ (-115) (-650 $))) (-15 -3101 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ $)) (-15 -3122 ($ $ $)) (-15 -2918 ((-777) $)) (-15 -1425 ($ (-650 $))) (-15 -3951 ($ $)) (-15 -3093 ((-112) $)) (-15 -3663 ((-112) $)) (-15 -1928 ((-112) $)) (-15 -3935 ((-112) $)) (-15 -2315 ((-112) $)) (-15 -3156 ((-112) $)) (-15 -1661 ((-112) $)) (-15 -2023 ((-112) $)) (-15 -2341 ((-650 (-52)) $)) (-15 -4415 ($ $ (-650 (-52)))) (-15 -2262 ($ $ (-650 (-52)))) (-15 -2572 ($ (-1186) (-112) (-112) (-112))) (-15 -3957 ($ $ (-650 (-1186)) (-52))) (-15 -2936 ((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $)) (-15 -2319 ((-112) $)) (-15 -1824 ($ $)) (-15 -3617 ($ $ (-52))) (-15 -1377 ((-650 (-52)) $)) (-15 -1755 ((-650 $) $)) (-15 -2115 ((-3 (-650 $) "failed") (-650 $)))))
-((-2558 (((-112) $ $) NIL)) (-3179 (((-650 |#1|) $) 19)) (-3936 (((-112) $) 49)) (-4380 (((-3 (-678 |#1|) "failed") $) 56)) (-3216 (((-678 |#1|) $) 54)) (-3555 (($ $) 23)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1355 (((-777) $) 61)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-678 |#1|) $) 21)) (-3799 (((-868) $) 47) (($ (-678 |#1|)) 26) (((-825 |#1|) $) 36) (($ |#1|) 25)) (-2335 (((-112) $ $) NIL)) (-1875 (($) 9 T CONST)) (-4141 (((-650 (-678 |#1|)) $) 28)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 12)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 67)))
-(((-900 |#1|) (-13 (-856) (-1047 (-678 |#1|)) (-10 -8 (-15 1 ($) -3725) (-15 -3799 ((-825 |#1|) $)) (-15 -3799 ($ |#1|)) (-15 -3543 ((-678 |#1|) $)) (-15 -1355 ((-777) $)) (-15 -4141 ((-650 (-678 |#1|)) $)) (-15 -3555 ($ $)) (-15 -3936 ((-112) $)) (-15 -3179 ((-650 |#1|) $)))) (-856)) (T -900))
-((-1875 (*1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3799 (*1 *1 *2) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3543 (*1 *2 *1) (-12 (-5 *2 (-678 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-1355 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-4141 (*1 *2 *1) (-12 (-5 *2 (-650 (-678 *3))) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3555 (*1 *1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3936 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3179 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))))
-(-13 (-856) (-1047 (-678 |#1|)) (-10 -8 (-15 (-1875) ($) -3725) (-15 -3799 ((-825 |#1|) $)) (-15 -3799 ($ |#1|)) (-15 -3543 ((-678 |#1|) $)) (-15 -1355 ((-777) $)) (-15 -4141 ((-650 (-678 |#1|)) $)) (-15 -3555 ($ $)) (-15 -3936 ((-112) $)) (-15 -3179 ((-650 |#1|) $))))
-((-4271 ((|#1| |#1| |#1|) 19)))
-(((-901 |#1| |#2|) (-10 -7 (-15 -4271 (|#1| |#1| |#1|))) (-1253 |#2|) (-1058)) (T -901))
-((-4271 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-901 *2 *3)) (-4 *2 (-1253 *3)))))
-(-10 -7 (-15 -4271 (|#1| |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3039 (((-2 (|:| -3039 (-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)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1375 (((-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)) (-3022 (((-112) $ $) 6)))
+((-3006 (((-112) (-650 |#2|) |#3|) 23) (((-112) |#2| |#3|) 18)) (-3736 (((-896 |#1| |#2|) |#2| |#3|) 45 (-12 (-1796 (|has| |#2| (-1047 (-1186)))) (-1796 (|has| |#2| (-1058))))) (((-650 (-298 (-959 |#2|))) |#2| |#3|) 44 (-12 (|has| |#2| (-1058)) (-1796 (|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 -3006 ((-112) |#2| |#3|)) (-15 -3006 ((-112) (-650 |#2|) |#3|)) (-15 -3736 ((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|)) (IF (|has| |#2| (-1047 (-1186))) (-15 -3736 ((-650 (-298 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1058)) (-15 -3736 ((-650 (-298 (-959 |#2|))) |#2| |#3|)) (-15 -3736 ((-896 |#1| |#2|) |#2| |#3|))))) (-1109) (-893 |#1|) (-620 (-899 |#1|))) (T -894))
+((-3736 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-896 *5 *3)) (-5 *1 (-894 *5 *3 *4)) (-1796 (-4 *3 (-1047 (-1186)))) (-1796 (-4 *3 (-1058))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-3736 (*1 *2 *3 *4) (-12 (-4 *5 (-1109)) (-5 *2 (-650 (-298 (-959 *3)))) (-5 *1 (-894 *5 *3 *4)) (-4 *3 (-1058)) (-1796 (-4 *3 (-1047 (-1186)))) (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))) (-3736 (*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))))) (-3736 (*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))))) (-3006 (*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))))) (-3006 (*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 -3006 ((-112) |#2| |#3|)) (-15 -3006 ((-112) (-650 |#2|) |#3|)) (-15 -3736 ((-892 |#1| |#2| (-650 |#2|)) (-650 |#2|) |#3|)) (IF (|has| |#2| (-1047 (-1186))) (-15 -3736 ((-650 (-298 |#2|)) |#2| |#3|)) (IF (|has| |#2| (-1058)) (-15 -3736 ((-650 (-298 (-959 |#2|))) |#2| |#3|)) (-15 -3736 ((-896 |#1| |#2|) |#2| |#3|)))))
+((-1357 (((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|)) 22)))
+(((-895 |#1| |#2| |#3|) (-10 -7 (-15 -1357 ((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|)))) (-1109) (-1109) (-1109)) (T -895))
+((-1357 (*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 -1357 ((-896 |#1| |#3|) (-1 |#3| |#2|) (-896 |#1| |#2|))))
+((-2560 (((-112) $ $) NIL)) (-3962 (($ $ $) 40)) (-4229 (((-3 (-112) "failed") $ (-899 |#1|)) 37)) (-4294 (($) 12)) (-3989 (((-1168) $) NIL)) (-1632 (($ (-899 |#1|) |#2| $) 20)) (-3580 (((-1129) $) NIL)) (-2703 (((-3 |#2| "failed") (-899 |#1|) $) 51)) (-1467 (((-112) $) 15)) (-2637 (($) 13)) (-3875 (((-650 (-2 (|:| -2107 (-1186)) (|:| -2340 |#2|))) $) 25)) (-3814 (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 |#2|)))) 23)) (-3802 (((-868) $) 45)) (-3359 (((-112) $ $) NIL)) (-1560 (($ (-899 |#1|) |#2| $ |#2|) 49)) (-1470 (($ (-899 |#1|) |#2| $) 48)) (-3025 (((-112) $ $) 42)))
+(((-896 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -1467 ((-112) $)) (-15 -2637 ($)) (-15 -4294 ($)) (-15 -3962 ($ $ $)) (-15 -2703 ((-3 |#2| "failed") (-899 |#1|) $)) (-15 -1470 ($ (-899 |#1|) |#2| $)) (-15 -1632 ($ (-899 |#1|) |#2| $)) (-15 -1560 ($ (-899 |#1|) |#2| $ |#2|)) (-15 -3875 ((-650 (-2 (|:| -2107 (-1186)) (|:| -2340 |#2|))) $)) (-15 -3814 ($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 |#2|))))) (-15 -4229 ((-3 (-112) "failed") $ (-899 |#1|))))) (-1109) (-1109)) (T -896))
+((-1467 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2637 (*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-4294 (*1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3962 (*1 *1 *1 *1) (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-2703 (*1 *2 *3 *1) (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-4 *2 (-1109)) (-5 *1 (-896 *4 *2)))) (-1470 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-1632 (*1 *1 *2 *3 *1) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-1560 (*1 *1 *2 *3 *1 *3) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3)) (-4 *3 (-1109)))) (-3875 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 *4)))) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3814 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 *4)))) (-4 *4 (-1109)) (-5 *1 (-896 *3 *4)) (-4 *3 (-1109)))) (-4229 (*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 -1467 ((-112) $)) (-15 -2637 ($)) (-15 -4294 ($)) (-15 -3962 ($ $ $)) (-15 -2703 ((-3 |#2| "failed") (-899 |#1|) $)) (-15 -1470 ($ (-899 |#1|) |#2| $)) (-15 -1632 ($ (-899 |#1|) |#2| $)) (-15 -1560 ($ (-899 |#1|) |#2| $ |#2|)) (-15 -3875 ((-650 (-2 (|:| -2107 (-1186)) (|:| -2340 |#2|))) $)) (-15 -3814 ($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 |#2|))))) (-15 -4229 ((-3 (-112) "failed") $ (-899 |#1|)))))
+((-4271 (((-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)) (-4229 (((-112) (-650 |#2|) (-899 |#1|)) 42) (((-112) |#2| (-899 |#1|)) 36)) (-3742 (((-1 (-112) |#2|) (-899 |#1|)) 16)) (-3198 (((-650 |#2|) (-899 |#1|)) 24)) (-1324 (((-899 |#1|) (-899 |#1|) |#2|) 20)))
+(((-897 |#1| |#2|) (-10 -7 (-15 -4271 ((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|))) (-15 -4271 ((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|)))) (-15 -4271 ((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|)))) (-15 -3742 ((-1 (-112) |#2|) (-899 |#1|))) (-15 -4229 ((-112) |#2| (-899 |#1|))) (-15 -4229 ((-112) (-650 |#2|) (-899 |#1|))) (-15 -1324 ((-899 |#1|) (-899 |#1|) |#2|)) (-15 -3198 ((-650 |#2|) (-899 |#1|)))) (-1109) (-1227)) (T -897))
+((-3198 (*1 *2 *3) (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-650 *5)) (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))) (-1324 (*1 *2 *2 *3) (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-897 *4 *3)) (-4 *3 (-1227)))) (-4229 (*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)))) (-4229 (*1 *2 *3 *4) (-12 (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *2 (-112)) (-5 *1 (-897 *5 *3)) (-4 *3 (-1227)))) (-3742 (*1 *2 *3) (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-1 (-112) *5)) (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))) (-4271 (*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)))) (-4271 (*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)))) (-4271 (*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 -4271 ((-899 |#1|) (-899 |#1|) (-1 (-112) |#2|))) (-15 -4271 ((-899 |#1|) (-899 |#1|) (-650 (-1 (-112) |#2|)))) (-15 -4271 ((-899 |#1|) (-899 |#1|) (-650 (-1186)) (-1 (-112) (-650 |#2|)))) (-15 -3742 ((-1 (-112) |#2|) (-899 |#1|))) (-15 -4229 ((-112) |#2| (-899 |#1|))) (-15 -4229 ((-112) (-650 |#2|) (-899 |#1|))) (-15 -1324 ((-899 |#1|) (-899 |#1|) |#2|)) (-15 -3198 ((-650 |#2|) (-899 |#1|))))
+((-1357 (((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|)) 19)))
+(((-898 |#1| |#2|) (-10 -7 (-15 -1357 ((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|)))) (-1109) (-1109)) (T -898))
+((-1357 (*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 -1357 ((-899 |#2|) (-1 |#2| |#1|) (-899 |#1|))))
+((-2560 (((-112) $ $) NIL)) (-3833 (($ $ (-650 (-52))) 74)) (-1755 (((-650 $) $) 139)) (-2368 (((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $) 30)) (-1527 (((-112) $) 35)) (-1584 (($ $ (-650 (-1186)) (-52)) 31)) (-3557 (($ $ (-650 (-52))) 73)) (-4383 (((-3 |#1| "failed") $) 71) (((-3 (-1186) "failed") $) 164)) (-3220 ((|#1| $) 68) (((-1186) $) NIL)) (-3052 (($ $) 126)) (-1895 (((-112) $) 55)) (-3427 (((-650 (-52)) $) 50)) (-3948 (($ (-1186) (-112) (-112) (-112)) 75)) (-2941 (((-3 (-650 $) "failed") (-650 $)) 82)) (-3953 (((-112) $) 58)) (-2704 (((-112) $) 57)) (-3989 (((-1168) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) 41)) (-1373 (((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $) 48)) (-3952 (((-3 (-2 (|:| |val| $) (|:| -3994 $)) "failed") $) 97)) (-1777 (((-3 (-650 $) "failed") $) 40)) (-4190 (((-3 (-650 $) "failed") $ (-115)) 124) (((-3 (-2 (|:| -3900 (-115)) (|:| |arg| (-650 $))) "failed") $) 107)) (-2596 (((-3 (-650 $) "failed") $) 42)) (-2505 (((-3 (-2 (|:| |val| $) (|:| -3994 (-777))) "failed") $) 45)) (-3307 (((-112) $) 34)) (-3580 (((-1129) $) NIL)) (-3205 (((-112) $) 28)) (-3173 (((-112) $) 52)) (-3771 (((-650 (-52)) $) 130)) (-4334 (((-112) $) 56)) (-1942 (($ (-115) (-650 $)) 104)) (-2921 (((-777) $) 33)) (-3954 (($ $) 72)) (-1426 (($ (-650 $)) 69)) (-2624 (((-112) $) 32)) (-3802 (((-868) $) 63) (($ |#1|) 23) (($ (-1186)) 76)) (-3359 (((-112) $ $) NIL)) (-1324 (($ $ (-52)) 129)) (-1862 (($) 103 T CONST)) (-1876 (($) 83 T CONST)) (-3025 (((-112) $ $) 93)) (-3125 (($ $ $) 117)) (-3104 (($ $ $) 121)) (** (($ $ (-777)) 115) (($ $ $) 64)) (* (($ $ $) 122)))
+(((-899 |#1|) (-13 (-1109) (-1047 |#1|) (-1047 (-1186)) (-10 -8 (-15 0 ($) -3728) (-15 1 ($) -3728) (-15 -1777 ((-3 (-650 $) "failed") $)) (-15 -1369 ((-3 (-650 $) "failed") $)) (-15 -4190 ((-3 (-650 $) "failed") $ (-115))) (-15 -4190 ((-3 (-2 (|:| -3900 (-115)) (|:| |arg| (-650 $))) "failed") $)) (-15 -2505 ((-3 (-2 (|:| |val| $) (|:| -3994 (-777))) "failed") $)) (-15 -1373 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2596 ((-3 (-650 $) "failed") $)) (-15 -3952 ((-3 (-2 (|:| |val| $) (|:| -3994 $)) "failed") $)) (-15 -1942 ($ (-115) (-650 $))) (-15 -3104 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ $)) (-15 -3125 ($ $ $)) (-15 -2921 ((-777) $)) (-15 -1426 ($ (-650 $))) (-15 -3954 ($ $)) (-15 -3307 ((-112) $)) (-15 -1895 ((-112) $)) (-15 -1527 ((-112) $)) (-15 -2624 ((-112) $)) (-15 -4334 ((-112) $)) (-15 -2704 ((-112) $)) (-15 -3953 ((-112) $)) (-15 -3173 ((-112) $)) (-15 -3427 ((-650 (-52)) $)) (-15 -3557 ($ $ (-650 (-52)))) (-15 -3833 ($ $ (-650 (-52)))) (-15 -3948 ($ (-1186) (-112) (-112) (-112))) (-15 -1584 ($ $ (-650 (-1186)) (-52))) (-15 -2368 ((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $)) (-15 -3205 ((-112) $)) (-15 -3052 ($ $)) (-15 -1324 ($ $ (-52))) (-15 -3771 ((-650 (-52)) $)) (-15 -1755 ((-650 $) $)) (-15 -2941 ((-3 (-650 $) "failed") (-650 $))))) (-1109)) (T -899))
+((-1862 (*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-1876 (*1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-1777 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1369 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4190 (*1 *2 *1 *3) (|partial| -12 (-5 *3 (-115)) (-5 *2 (-650 (-899 *4))) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-4190 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| -3900 (-115)) (|:| |arg| (-650 (-899 *3))))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2505 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3994 (-777)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1373 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |num| (-899 *3)) (|:| |den| (-899 *3)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2596 (*1 *2 *1) (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3952 (*1 *2 *1) (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3994 (-899 *3)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1942 (*1 *1 *2 *3) (-12 (-5 *2 (-115)) (-5 *3 (-650 (-899 *4))) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-3104 (*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)))) (-3125 (*1 *1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-2921 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1426 (*1 *1 *2) (-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3954 (*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-3307 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1895 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1527 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2624 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-4334 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2704 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3953 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3173 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3427 (*1 *2 *1) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3557 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3833 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3948 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-112)) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-1584 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-52)) (-5 *1 (-899 *4)) (-4 *4 (-1109)))) (-2368 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52)))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3205 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3052 (*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))) (-1324 (*1 *1 *1 *2) (-12 (-5 *2 (-52)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-3771 (*1 *2 *1) (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-1755 (*1 *2 *1) (-12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))) (-2941 (*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 (-1862) ($) -3728) (-15 (-1876) ($) -3728) (-15 -1777 ((-3 (-650 $) "failed") $)) (-15 -1369 ((-3 (-650 $) "failed") $)) (-15 -4190 ((-3 (-650 $) "failed") $ (-115))) (-15 -4190 ((-3 (-2 (|:| -3900 (-115)) (|:| |arg| (-650 $))) "failed") $)) (-15 -2505 ((-3 (-2 (|:| |val| $) (|:| -3994 (-777))) "failed") $)) (-15 -1373 ((-3 (-2 (|:| |num| $) (|:| |den| $)) "failed") $)) (-15 -2596 ((-3 (-650 $) "failed") $)) (-15 -3952 ((-3 (-2 (|:| |val| $) (|:| -3994 $)) "failed") $)) (-15 -1942 ($ (-115) (-650 $))) (-15 -3104 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))) (-15 ** ($ $ $)) (-15 -3125 ($ $ $)) (-15 -2921 ((-777) $)) (-15 -1426 ($ (-650 $))) (-15 -3954 ($ $)) (-15 -3307 ((-112) $)) (-15 -1895 ((-112) $)) (-15 -1527 ((-112) $)) (-15 -2624 ((-112) $)) (-15 -4334 ((-112) $)) (-15 -2704 ((-112) $)) (-15 -3953 ((-112) $)) (-15 -3173 ((-112) $)) (-15 -3427 ((-650 (-52)) $)) (-15 -3557 ($ $ (-650 (-52)))) (-15 -3833 ($ $ (-650 (-52)))) (-15 -3948 ($ (-1186) (-112) (-112) (-112))) (-15 -1584 ($ $ (-650 (-1186)) (-52))) (-15 -2368 ((-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))) $)) (-15 -3205 ((-112) $)) (-15 -3052 ($ $)) (-15 -1324 ($ $ (-52))) (-15 -3771 ((-650 (-52)) $)) (-15 -1755 ((-650 $) $)) (-15 -2941 ((-3 (-650 $) "failed") (-650 $)))))
+((-2560 (((-112) $ $) NIL)) (-3182 (((-650 |#1|) $) 19)) (-2635 (((-112) $) 49)) (-4383 (((-3 (-678 |#1|) "failed") $) 56)) (-3220 (((-678 |#1|) $) 54)) (-3558 (($ $) 23)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-1356 (((-777) $) 61)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-678 |#1|) $) 21)) (-3802 (((-868) $) 47) (($ (-678 |#1|)) 26) (((-825 |#1|) $) 36) (($ |#1|) 25)) (-3359 (((-112) $ $) NIL)) (-1876 (($) 9 T CONST)) (-2884 (((-650 (-678 |#1|)) $) 28)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 12)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 67)))
+(((-900 |#1|) (-13 (-856) (-1047 (-678 |#1|)) (-10 -8 (-15 1 ($) -3728) (-15 -3802 ((-825 |#1|) $)) (-15 -3802 ($ |#1|)) (-15 -3546 ((-678 |#1|) $)) (-15 -1356 ((-777) $)) (-15 -2884 ((-650 (-678 |#1|)) $)) (-15 -3558 ($ $)) (-15 -2635 ((-112) $)) (-15 -3182 ((-650 |#1|) $)))) (-856)) (T -900))
+((-1876 (*1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-825 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3802 (*1 *1 *2) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-3546 (*1 *2 *1) (-12 (-5 *2 (-678 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-1356 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-2884 (*1 *2 *1) (-12 (-5 *2 (-650 (-678 *3))) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3558 (*1 *1 *1) (-12 (-5 *1 (-900 *2)) (-4 *2 (-856)))) (-2635 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-900 *3)) (-4 *3 (-856)))) (-3182 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-900 *3)) (-4 *3 (-856)))))
+(-13 (-856) (-1047 (-678 |#1|)) (-10 -8 (-15 (-1876) ($) -3728) (-15 -3802 ((-825 |#1|) $)) (-15 -3802 ($ |#1|)) (-15 -3546 ((-678 |#1|) $)) (-15 -1356 ((-777) $)) (-15 -2884 ((-650 (-678 |#1|)) $)) (-15 -3558 ($ $)) (-15 -2635 ((-112) $)) (-15 -3182 ((-650 |#1|) $))))
+((-1602 ((|#1| |#1| |#1|) 19)))
+(((-901 |#1| |#2|) (-10 -7 (-15 -1602 (|#1| |#1| |#1|))) (-1253 |#2|) (-1058)) (T -901))
+((-1602 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-901 *2 *3)) (-4 *2 (-1253 *3)))))
+(-10 -7 (-15 -1602 (|#1| |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3988 (((-2 (|:| -3988 (-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)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3406 (((-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)) (-3025 (((-112) $ $) 6)))
(((-902) (-141)) (T -902))
-((-3039 (*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 (|:| -3039 (-384)) (|:| |explanations| (-1168)))))) (-1375 (*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 -3039 ((-2 (|:| -3039 (-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 -1375 ((-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)))))))
+((-3988 (*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 (|:| -3988 (-384)) (|:| |explanations| (-1168)))))) (-3406 (*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 -3988 ((-2 (|:| -3988 (-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 -3406 ((-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))
-((-1651 ((|#1| |#1| (-777)) 27)) (-1485 (((-3 |#1| "failed") |#1| |#1|) 24)) (-4226 (((-3 (-2 (|:| -4397 |#1|) (|:| -4410 |#1|)) "failed") |#1| (-777) (-777)) 30) (((-650 |#1|) |#1|) 38)))
-(((-903 |#1| |#2|) (-10 -7 (-15 -4226 ((-650 |#1|) |#1|)) (-15 -4226 ((-3 (-2 (|:| -4397 |#1|) (|:| -4410 |#1|)) "failed") |#1| (-777) (-777))) (-15 -1485 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1651 (|#1| |#1| (-777)))) (-1253 |#2|) (-368)) (T -903))
-((-1651 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-5 *1 (-903 *2 *4)) (-4 *2 (-1253 *4)))) (-1485 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-368)) (-5 *1 (-903 *2 *3)) (-4 *2 (-1253 *3)))) (-4226 (*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 (-1253 *5)))) (-4226 (*1 *2 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-903 *3 *4)) (-4 *3 (-1253 *4)))))
-(-10 -7 (-15 -4226 ((-650 |#1|) |#1|)) (-15 -4226 ((-3 (-2 (|:| -4397 |#1|) (|:| -4410 |#1|)) "failed") |#1| (-777) (-777))) (-15 -1485 ((-3 |#1| "failed") |#1| |#1|)) (-15 -1651 (|#1| |#1| (-777))))
-((-3476 (((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168)) 104) (((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227)) 100) (((-1044) (-905) (-1072)) 92) (((-1044) (-905)) 93)) (-3039 (((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072)) 62) (((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905)) 64)))
-(((-904) (-10 -7 (-15 -3476 ((-1044) (-905))) (-15 -3476 ((-1044) (-905) (-1072))) (-15 -3476 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227))) (-15 -3476 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072))))) (T -904))
-((-3039 (*1 *2 *3 *4) (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-904)))) (-3039 (*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-904)))) (-3476 (*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)))) (-3476 (*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)))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-904)))) (-3476 (*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-1044)) (-5 *1 (-904)))))
-(-10 -7 (-15 -3476 ((-1044) (-905))) (-15 -3476 ((-1044) (-905) (-1072))) (-15 -3476 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227))) (-15 -3476 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905))) (-15 -3039 ((-2 (|:| -3039 (-384)) (|:| -3600 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072))))
-((-2558 (((-112) $ $) NIL)) (-3216 (((-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)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-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)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-905) (-13 (-1109) (-10 -8 (-15 -3799 ($ (-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 -3216 ((-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))
-((-3799 (*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)))) (-3216 (*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 -3799 ($ (-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 -3216 ((-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))) $))))
-((-3547 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) 10) (($ $ |#2| (-777)) 12) (($ $ (-650 |#2|) (-650 (-777))) 15)) (-2942 (($ $ |#2|) 16) (($ $ (-650 |#2|)) 18) (($ $ |#2| (-777)) 19) (($ $ (-650 |#2|) (-650 (-777))) 21)))
-(((-906 |#1| |#2|) (-10 -8 (-15 -2942 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -2942 (|#1| |#1| |#2| (-777))) (-15 -2942 (|#1| |#1| (-650 |#2|))) (-15 -2942 (|#1| |#1| |#2|)) (-15 -3547 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -3547 (|#1| |#1| |#2| (-777))) (-15 -3547 (|#1| |#1| (-650 |#2|))) (-15 -3547 (|#1| |#1| |#2|))) (-907 |#2|) (-1109)) (T -906))
-NIL
-(-10 -8 (-15 -2942 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -2942 (|#1| |#1| |#2| (-777))) (-15 -2942 (|#1| |#1| (-650 |#2|))) (-15 -2942 (|#1| |#1| |#2|)) (-15 -3547 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -3547 (|#1| |#1| |#2| (-777))) (-15 -3547 (|#1| |#1| (-650 |#2|))) (-15 -3547 (|#1| |#1| |#2|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3547 (($ $ |#1|) 46) (($ $ (-650 |#1|)) 45) (($ $ |#1| (-777)) 44) (($ $ (-650 |#1|) (-650 (-777))) 43)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ |#1|) 42) (($ $ (-650 |#1|)) 41) (($ $ |#1| (-777)) 40) (($ $ (-650 |#1|) (-650 (-777))) 39)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-3859 ((|#1| |#1| (-777)) 27)) (-2844 (((-3 |#1| "failed") |#1| |#1|) 24)) (-2456 (((-3 (-2 (|:| -4400 |#1|) (|:| -4413 |#1|)) "failed") |#1| (-777) (-777)) 30) (((-650 |#1|) |#1|) 38)))
+(((-903 |#1| |#2|) (-10 -7 (-15 -2456 ((-650 |#1|) |#1|)) (-15 -2456 ((-3 (-2 (|:| -4400 |#1|) (|:| -4413 |#1|)) "failed") |#1| (-777) (-777))) (-15 -2844 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3859 (|#1| |#1| (-777)))) (-1253 |#2|) (-368)) (T -903))
+((-3859 (*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-5 *1 (-903 *2 *4)) (-4 *2 (-1253 *4)))) (-2844 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-368)) (-5 *1 (-903 *2 *3)) (-4 *2 (-1253 *3)))) (-2456 (*1 *2 *3 *4 *4) (|partial| -12 (-5 *4 (-777)) (-4 *5 (-368)) (-5 *2 (-2 (|:| -4400 *3) (|:| -4413 *3))) (-5 *1 (-903 *3 *5)) (-4 *3 (-1253 *5)))) (-2456 (*1 *2 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-903 *3 *4)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -2456 ((-650 |#1|) |#1|)) (-15 -2456 ((-3 (-2 (|:| -4400 |#1|) (|:| -4413 |#1|)) "failed") |#1| (-777) (-777))) (-15 -2844 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3859 (|#1| |#1| (-777))))
+((-2627 (((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168)) 104) (((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227)) 100) (((-1044) (-905) (-1072)) 92) (((-1044) (-905)) 93)) (-3988 (((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072)) 62) (((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905)) 64)))
+(((-904) (-10 -7 (-15 -2627 ((-1044) (-905))) (-15 -2627 ((-1044) (-905) (-1072))) (-15 -2627 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227))) (-15 -2627 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072))))) (T -904))
+((-3988 (*1 *2 *3 *4) (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-904)))) (-3988 (*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168))))) (-5 *1 (-904)))) (-2627 (*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)))) (-2627 (*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)))) (-2627 (*1 *2 *3 *4) (-12 (-5 *3 (-905)) (-5 *4 (-1072)) (-5 *2 (-1044)) (-5 *1 (-904)))) (-2627 (*1 *2 *3) (-12 (-5 *3 (-905)) (-5 *2 (-1044)) (-5 *1 (-904)))))
+(-10 -7 (-15 -2627 ((-1044) (-905))) (-15 -2627 ((-1044) (-905) (-1072))) (-15 -2627 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168) (-227))) (-15 -2627 ((-1044) (-384) (-384) (-384) (-384) (-777) (-777) (-650 (-320 (-384))) (-650 (-650 (-320 (-384)))) (-1168))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905))) (-15 -3988 ((-2 (|:| -3988 (-384)) (|:| -3602 (-1168)) (|:| |explanations| (-650 (-1168)))) (-905) (-1072))))
+((-2560 (((-112) $ $) NIL)) (-3220 (((-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)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-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)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-905) (-13 (-1109) (-10 -8 (-15 -3802 ($ (-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 -3220 ((-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))
+((-3802 (*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)))) (-3220 (*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 -3802 ($ (-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 -3220 ((-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))) $))))
+((-3550 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) 10) (($ $ |#2| (-777)) 12) (($ $ (-650 |#2|) (-650 (-777))) 15)) (-2945 (($ $ |#2|) 16) (($ $ (-650 |#2|)) 18) (($ $ |#2| (-777)) 19) (($ $ (-650 |#2|) (-650 (-777))) 21)))
+(((-906 |#1| |#2|) (-10 -8 (-15 -2945 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -2945 (|#1| |#1| |#2| (-777))) (-15 -2945 (|#1| |#1| (-650 |#2|))) (-15 -2945 (|#1| |#1| |#2|)) (-15 -3550 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -3550 (|#1| |#1| |#2| (-777))) (-15 -3550 (|#1| |#1| (-650 |#2|))) (-15 -3550 (|#1| |#1| |#2|))) (-907 |#2|) (-1109)) (T -906))
+NIL
+(-10 -8 (-15 -2945 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -2945 (|#1| |#1| |#2| (-777))) (-15 -2945 (|#1| |#1| (-650 |#2|))) (-15 -2945 (|#1| |#1| |#2|)) (-15 -3550 (|#1| |#1| (-650 |#2|) (-650 (-777)))) (-15 -3550 (|#1| |#1| |#2| (-777))) (-15 -3550 (|#1| |#1| (-650 |#2|))) (-15 -3550 (|#1| |#1| |#2|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3550 (($ $ |#1|) 46) (($ $ (-650 |#1|)) 45) (($ $ |#1| (-777)) 44) (($ $ (-650 |#1|) (-650 (-777))) 43)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ |#1|) 42) (($ $ (-650 |#1|)) 41) (($ $ |#1| (-777)) 40) (($ $ (-650 |#1|) (-650 (-777))) 39)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-907 |#1|) (-141) (-1109)) (T -907))
-((-3547 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-907 *3)) (-4 *3 (-1109)))) (-3547 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-3547 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *4)) (-5 *3 (-650 (-777))) (-4 *1 (-907 *4)) (-4 *4 (-1109)))) (-2942 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-2942 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-907 *3)) (-4 *3 (-1109)))) (-2942 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-2942 (*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 -3547 ($ $ |t#1|)) (-15 -3547 ($ $ (-650 |t#1|))) (-15 -3547 ($ $ |t#1| (-777))) (-15 -3547 ($ $ (-650 |t#1|) (-650 (-777)))) (-15 -2942 ($ $ |t#1|)) (-15 -2942 ($ $ (-650 |t#1|))) (-15 -2942 ($ $ |t#1| (-777))) (-15 -2942 ($ $ (-650 |t#1|) (-650 (-777))))))
+((-3550 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-907 *3)) (-4 *3 (-1109)))) (-3550 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-3550 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 *4)) (-5 *3 (-650 (-777))) (-4 *1 (-907 *4)) (-4 *4 (-1109)))) (-2945 (*1 *1 *1 *2) (-12 (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-2945 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-907 *3)) (-4 *3 (-1109)))) (-2945 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-907 *2)) (-4 *2 (-1109)))) (-2945 (*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 -3550 ($ $ |t#1|)) (-15 -3550 ($ $ (-650 |t#1|))) (-15 -3550 ($ $ |t#1| (-777))) (-15 -3550 ($ $ (-650 |t#1|) (-650 (-777)))) (-15 -2945 ($ $ |t#1|)) (-15 -2945 ($ $ (-650 |t#1|))) (-15 -2945 ($ $ |t#1| (-777))) (-15 -2945 ($ $ (-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))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 26)) (-4302 (((-112) $ (-777)) NIL)) (-2988 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-2830 (($ $ $) NIL (|has| $ (-6 -4450)))) (-2184 (($ $ $) NIL (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) (($ $ "left" $) NIL (|has| $ (-6 -4450))) (($ $ "right" $) NIL (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4410 (($ $) 25)) (-3864 (($ |#1|) 12) (($ $ $) 17)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-4397 (($ $) 23)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) 20)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-2738 (((-570) $ $) NIL)) (-3817 (((-112) $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-1213 |#1|) $) 9) (((-868) $) 29 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 21 (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-908 |#1|) (-13 (-120 |#1|) (-619 (-1213 |#1|)) (-10 -8 (-15 -3864 ($ |#1|)) (-15 -3864 ($ $ $)))) (-1109)) (T -908))
-((-3864 (*1 *1 *2) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109)))) (-3864 (*1 *1 *1 *1) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109)))))
-(-13 (-120 |#1|) (-619 (-1213 |#1|)) (-10 -8 (-15 -3864 ($ |#1|)) (-15 -3864 ($ $ $))))
-((-3623 ((|#2| (-1151 |#1| |#2|)) 48)))
-(((-909 |#1| |#2|) (-10 -7 (-15 -3623 (|#2| (-1151 |#1| |#2|)))) (-928) (-13 (-1058) (-10 -7 (-6 (-4451 "*"))))) (T -909))
-((-3623 (*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 -3623 (|#2| (-1151 |#1| |#2|))))
-((-2558 (((-112) $ $) 7)) (-1705 (($) 19 T CONST)) (-2875 (((-3 $ "failed") $) 16)) (-3395 (((-1111 |#1|) $ |#1|) 33)) (-4346 (((-112) $) 18)) (-3466 (($ $ $) 31 (-2892 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2800 (($ $ $) 30 (-2892 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-1988 (((-1168) $) 10)) (-1877 (($ $) 25)) (-3577 (((-1129) $) 11)) (-1770 ((|#1| $ |#1|) 35)) (-1941 ((|#1| $ |#1|) 34)) (-1730 (($ (-650 (-650 |#1|))) 36)) (-1367 (($ (-650 |#1|)) 37)) (-2020 (($ $ $) 22)) (-4391 (($ $ $) 21)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1875 (($) 20 T CONST)) (-3072 (((-112) $ $) 28 (-2892 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-3052 (((-112) $ $) 27 (-2892 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 29 (-2892 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-3042 (((-112) $ $) 32)) (-3122 (($ $ $) 24)) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ $ (-570)) 23)) (* (($ $ $) 15)))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 26)) (-1932 (((-112) $ (-777)) NIL)) (-1647 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1408 (($ $ $) NIL (|has| $ (-6 -4453)))) (-2436 (($ $ $) NIL (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) (($ $ "left" $) NIL (|has| $ (-6 -4453))) (($ $ "right" $) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4413 (($ $) 25)) (-3867 (($ |#1|) 12) (($ $ $) 17)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-4400 (($ $) 23)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) 20)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ "value") NIL) (($ $ "left") NIL) (($ $ "right") NIL)) (-3108 (((-570) $ $) NIL)) (-2759 (((-112) $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-1213 |#1|) $) 9) (((-868) $) 29 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 21 (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-908 |#1|) (-13 (-120 |#1|) (-619 (-1213 |#1|)) (-10 -8 (-15 -3867 ($ |#1|)) (-15 -3867 ($ $ $)))) (-1109)) (T -908))
+((-3867 (*1 *1 *2) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109)))) (-3867 (*1 *1 *1 *1) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109)))))
+(-13 (-120 |#1|) (-619 (-1213 |#1|)) (-10 -8 (-15 -3867 ($ |#1|)) (-15 -3867 ($ $ $))))
+((-1405 ((|#2| (-1151 |#1| |#2|)) 48)))
+(((-909 |#1| |#2|) (-10 -7 (-15 -1405 (|#2| (-1151 |#1| |#2|)))) (-928) (-13 (-1058) (-10 -7 (-6 (-4454 "*"))))) (T -909))
+((-1405 (*1 *2 *3) (-12 (-5 *3 (-1151 *4 *2)) (-14 *4 (-928)) (-4 *2 (-13 (-1058) (-10 -7 (-6 (-4454 "*"))))) (-5 *1 (-909 *4 *2)))))
+(-10 -7 (-15 -1405 (|#2| (-1151 |#1| |#2|))))
+((-2560 (((-112) $ $) 7)) (-3195 (($) 19 T CONST)) (-1929 (((-3 $ "failed") $) 16)) (-4248 (((-1111 |#1|) $ |#1|) 33)) (-4139 (((-112) $) 18)) (-3469 (($ $ $) 31 (-2895 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-2472 (($ $ $) 30 (-2895 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-3989 (((-1168) $) 10)) (-1878 (($ $) 25)) (-3580 (((-1129) $) 11)) (-1771 ((|#1| $ |#1|) 35)) (-1942 ((|#1| $ |#1|) 34)) (-3439 (($ (-650 (-650 |#1|))) 36)) (-3424 (($ (-650 |#1|)) 37)) (-4307 (($ $ $) 22)) (-3381 (($ $ $) 21)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1876 (($) 20 T CONST)) (-3075 (((-112) $ $) 28 (-2895 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-3055 (((-112) $ $) 27 (-2895 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 29 (-2895 (|has| |#1| (-856)) (|has| |#1| (-373))))) (-3045 (((-112) $ $) 32)) (-3125 (($ $ $) 24)) (** (($ $ (-928)) 14) (($ $ (-777)) 17) (($ $ (-570)) 23)) (* (($ $ $) 15)))
(((-910 |#1|) (-141) (-1109)) (T -910))
-((-1367 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-910 *3)))) (-1730 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-4 *1 (-910 *3)))) (-1770 (*1 *2 *1 *2) (-12 (-4 *1 (-910 *2)) (-4 *2 (-1109)))) (-1941 (*1 *2 *1 *2) (-12 (-4 *1 (-910 *2)) (-4 *2 (-1109)))) (-3395 (*1 *2 *1 *3) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-1111 *3)))) (-3042 (*1 *2 *1 *1) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(-13 (-479) (-10 -8 (-15 -1367 ($ (-650 |t#1|))) (-15 -1730 ($ (-650 (-650 |t#1|)))) (-15 -1770 (|t#1| $ |t#1|)) (-15 -1941 (|t#1| $ |t#1|)) (-15 -3395 ((-1111 |t#1|) $ |t#1|)) (-15 -3042 ((-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) -2892 (|has| |#1| (-856)) (|has| |#1| (-373))) ((-1121) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-2253 (((-650 (-650 (-777))) $) 160)) (-3981 (((-650 (-777)) (-912 |#1|) $) 188)) (-2739 (((-650 (-777)) (-912 |#1|) $) 189)) (-3497 (((-650 (-912 |#1|)) $) 149)) (-3446 (((-912 |#1|) $ (-570)) 154) (((-912 |#1|) $) 155)) (-2483 (($ (-650 (-912 |#1|))) 162)) (-4323 (((-777) $) 156)) (-2422 (((-1111 (-1111 |#1|)) $) 186)) (-3395 (((-1111 |#1|) $ |#1|) 177) (((-1111 (-1111 |#1|)) $ (-1111 |#1|)) 197) (((-1111 (-650 |#1|)) $ (-650 |#1|)) 200)) (-1903 (((-1111 |#1|) $) 152)) (-4108 (((-112) (-912 |#1|) $) 137)) (-1988 (((-1168) $) NIL)) (-2418 (((-1282) $) 142) (((-1282) $ (-570) (-570)) 201)) (-3577 (((-1129) $) NIL)) (-3866 (((-650 (-912 |#1|)) $) 143)) (-1941 (((-912 |#1|) $ (-777)) 150)) (-2130 (((-777) $) 157)) (-3799 (((-868) $) 174) (((-650 (-912 |#1|)) $) 28) (($ (-650 (-912 |#1|))) 161)) (-2335 (((-112) $ $) NIL)) (-4406 (((-650 |#1|) $) 159)) (-3022 (((-112) $ $) 194)) (-3062 (((-112) $ $) 192)) (-3042 (((-112) $ $) 191)))
-(((-911 |#1|) (-13 (-1109) (-10 -8 (-15 -3799 ((-650 (-912 |#1|)) $)) (-15 -3866 ((-650 (-912 |#1|)) $)) (-15 -1941 ((-912 |#1|) $ (-777))) (-15 -3446 ((-912 |#1|) $ (-570))) (-15 -3446 ((-912 |#1|) $)) (-15 -4323 ((-777) $)) (-15 -2130 ((-777) $)) (-15 -4406 ((-650 |#1|) $)) (-15 -3497 ((-650 (-912 |#1|)) $)) (-15 -2253 ((-650 (-650 (-777))) $)) (-15 -3799 ($ (-650 (-912 |#1|)))) (-15 -2483 ($ (-650 (-912 |#1|)))) (-15 -3395 ((-1111 |#1|) $ |#1|)) (-15 -2422 ((-1111 (-1111 |#1|)) $)) (-15 -3395 ((-1111 (-1111 |#1|)) $ (-1111 |#1|))) (-15 -3395 ((-1111 (-650 |#1|)) $ (-650 |#1|))) (-15 -4108 ((-112) (-912 |#1|) $)) (-15 -3981 ((-650 (-777)) (-912 |#1|) $)) (-15 -2739 ((-650 (-777)) (-912 |#1|) $)) (-15 -1903 ((-1111 |#1|) $)) (-15 -3042 ((-112) $ $)) (-15 -3062 ((-112) $ $)) (-15 -2418 ((-1282) $)) (-15 -2418 ((-1282) $ (-570) (-570))))) (-1109)) (T -911))
-((-3799 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3866 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))) (-3446 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))) (-3446 (*1 *2 *1) (-12 (-5 *2 (-912 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4323 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2130 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4406 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3497 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2253 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-777)))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))) (-2483 (*1 *1 *2) (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))) (-3395 (*1 *2 *1 *3) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2422 (*1 *2 *1) (-12 (-5 *2 (-1111 (-1111 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3395 (*1 *2 *1 *3) (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-1111 *4))) (-5 *1 (-911 *4)) (-5 *3 (-1111 *4)))) (-3395 (*1 *2 *1 *3) (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-650 *4))) (-5 *1 (-911 *4)) (-5 *3 (-650 *4)))) (-4108 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-911 *4)))) (-3981 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777))) (-5 *1 (-911 *4)))) (-2739 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777))) (-5 *1 (-911 *4)))) (-1903 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3042 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3062 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2418 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2418 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -3799 ((-650 (-912 |#1|)) $)) (-15 -3866 ((-650 (-912 |#1|)) $)) (-15 -1941 ((-912 |#1|) $ (-777))) (-15 -3446 ((-912 |#1|) $ (-570))) (-15 -3446 ((-912 |#1|) $)) (-15 -4323 ((-777) $)) (-15 -2130 ((-777) $)) (-15 -4406 ((-650 |#1|) $)) (-15 -3497 ((-650 (-912 |#1|)) $)) (-15 -2253 ((-650 (-650 (-777))) $)) (-15 -3799 ($ (-650 (-912 |#1|)))) (-15 -2483 ($ (-650 (-912 |#1|)))) (-15 -3395 ((-1111 |#1|) $ |#1|)) (-15 -2422 ((-1111 (-1111 |#1|)) $)) (-15 -3395 ((-1111 (-1111 |#1|)) $ (-1111 |#1|))) (-15 -3395 ((-1111 (-650 |#1|)) $ (-650 |#1|))) (-15 -4108 ((-112) (-912 |#1|) $)) (-15 -3981 ((-650 (-777)) (-912 |#1|) $)) (-15 -2739 ((-650 (-777)) (-912 |#1|) $)) (-15 -1903 ((-1111 |#1|) $)) (-15 -3042 ((-112) $ $)) (-15 -3062 ((-112) $ $)) (-15 -2418 ((-1282) $)) (-15 -2418 ((-1282) $ (-570) (-570)))))
-((-2558 (((-112) $ $) NIL)) (-3393 (((-650 $) (-650 $)) 103)) (-4395 (((-570) $) 83)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-4323 (((-777) $) 80)) (-3395 (((-1111 |#1|) $ |#1|) 70)) (-4346 (((-112) $) NIL)) (-2110 (((-112) $) 88)) (-2611 (((-777) $) 84)) (-1903 (((-1111 |#1|) $) 60)) (-3466 (($ $ $) NIL (-2892 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2800 (($ $ $) NIL (-2892 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2515 (((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $) 55)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 130)) (-3577 (((-1129) $) NIL)) (-1585 (((-1111 |#1|) $) 137 (|has| |#1| (-373)))) (-3273 (((-112) $) 81)) (-1770 ((|#1| $ |#1|) 68)) (-1941 ((|#1| $ |#1|) 131)) (-2130 (((-777) $) 62)) (-1730 (($ (-650 (-650 |#1|))) 118)) (-4026 (((-980) $) 74)) (-1367 (($ (-650 |#1|)) 32)) (-2020 (($ $ $) NIL)) (-4391 (($ $ $) NIL)) (-3355 (($ (-650 (-650 |#1|))) 57)) (-1473 (($ (-650 (-650 |#1|))) 123)) (-3485 (($ (-650 |#1|)) 133)) (-3799 (((-868) $) 117) (($ (-650 (-650 |#1|))) 91) (($ (-650 |#1|)) 92)) (-2335 (((-112) $ $) NIL)) (-1875 (($) 24 T CONST)) (-3072 (((-112) $ $) NIL (-2892 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-3052 (((-112) $ $) NIL (-2892 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-3022 (((-112) $ $) 66)) (-3062 (((-112) $ $) NIL (-2892 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-3042 (((-112) $ $) 90)) (-3122 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 33)))
-(((-912 |#1|) (-13 (-910 |#1|) (-10 -8 (-15 -2515 ((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $)) (-15 -3355 ($ (-650 (-650 |#1|)))) (-15 -3799 ($ (-650 (-650 |#1|)))) (-15 -3799 ($ (-650 |#1|))) (-15 -1473 ($ (-650 (-650 |#1|)))) (-15 -2130 ((-777) $)) (-15 -1903 ((-1111 |#1|) $)) (-15 -4026 ((-980) $)) (-15 -4323 ((-777) $)) (-15 -2611 ((-777) $)) (-15 -4395 ((-570) $)) (-15 -3273 ((-112) $)) (-15 -2110 ((-112) $)) (-15 -3393 ((-650 $) (-650 $))) (IF (|has| |#1| (-373)) (-15 -1585 ((-1111 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-551)) (-15 -3485 ($ (-650 |#1|))) (IF (|has| |#1| (-373)) (-15 -3485 ($ (-650 |#1|))) |%noBranch|)))) (-1109)) (T -912))
-((-2515 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-650 *3)) (|:| |image| (-650 *3)))) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3355 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-1473 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-2130 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-1903 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4026 (*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4323 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-2611 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4395 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3273 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-2110 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3393 (*1 *2 *2) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-1585 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-373)) (-4 *3 (-1109)))) (-3485 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
-(-13 (-910 |#1|) (-10 -8 (-15 -2515 ((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $)) (-15 -3355 ($ (-650 (-650 |#1|)))) (-15 -3799 ($ (-650 (-650 |#1|)))) (-15 -3799 ($ (-650 |#1|))) (-15 -1473 ($ (-650 (-650 |#1|)))) (-15 -2130 ((-777) $)) (-15 -1903 ((-1111 |#1|) $)) (-15 -4026 ((-980) $)) (-15 -4323 ((-777) $)) (-15 -2611 ((-777) $)) (-15 -4395 ((-570) $)) (-15 -3273 ((-112) $)) (-15 -2110 ((-112) $)) (-15 -3393 ((-650 $) (-650 $))) (IF (|has| |#1| (-373)) (-15 -1585 ((-1111 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-551)) (-15 -3485 ($ (-650 |#1|))) (IF (|has| |#1| (-373)) (-15 -3485 ($ (-650 |#1|))) |%noBranch|))))
-((-2156 (((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|)) 159)) (-3463 ((|#1|) 97)) (-1977 (((-424 (-1182 |#4|)) (-1182 |#4|)) 168)) (-2526 (((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|)) 84)) (-2943 (((-424 (-1182 |#4|)) (-1182 |#4|)) 178)) (-1831 (((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|) 113)))
-(((-913 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2156 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|))) (-15 -2943 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -1977 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -3463 (|#1|)) (-15 -1831 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|)) (-15 -2526 ((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|)))) (-916) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -913))
-((-2526 (*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)))) (-1831 (*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)))) (-3463 (*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)))) (-1977 (*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)))) (-2943 (*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)))) (-2156 (*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 -2156 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|))) (-15 -2943 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -1977 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -3463 (|#1|)) (-15 -1831 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|)) (-15 -2526 ((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|))))
-((-2156 (((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)) 39)) (-3463 ((|#1|) 73)) (-1977 (((-424 (-1182 |#2|)) (-1182 |#2|)) 122)) (-2526 (((-424 (-1182 |#2|)) (-1182 |#2|)) 106)) (-2943 (((-424 (-1182 |#2|)) (-1182 |#2|)) 133)))
-(((-914 |#1| |#2|) (-10 -7 (-15 -2156 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))) (-15 -2943 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -1977 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -3463 (|#1|)) (-15 -2526 ((-424 (-1182 |#2|)) (-1182 |#2|)))) (-916) (-1253 |#1|)) (T -914))
-((-2526 (*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)))) (-3463 (*1 *2) (-12 (-4 *2 (-916)) (-5 *1 (-914 *2 *3)) (-4 *3 (-1253 *2)))) (-1977 (*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)))) (-2943 (*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)))) (-2156 (*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 -2156 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))) (-15 -2943 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -1977 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -3463 (|#1|)) (-15 -2526 ((-424 (-1182 |#2|)) (-1182 |#2|))))
-((-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 42)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 18)) (-3532 (((-3 $ "failed") $) 36)))
-(((-915 |#1|) (-10 -8 (-15 -3532 ((-3 |#1| "failed") |#1|)) (-15 -2355 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|)))) (-916)) (T -915))
-NIL
-(-10 -8 (-15 -3532 ((-3 |#1| "failed") |#1|)) (-15 -2355 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-3924 (((-424 (-1182 $)) (-1182 $)) 66)) (-4364 (($ $) 57)) (-1652 (((-424 $) $) 58)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 63)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-3618 (((-112) $) 59)) (-4346 (((-112) $) 35)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-1659 (((-424 (-1182 $)) (-1182 $)) 64)) (-2224 (((-424 (-1182 $)) (-1182 $)) 65)) (-3801 (((-424 $) $) 56)) (-2547 (((-3 $ "failed") $ $) 48)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 62 (|has| $ (-146)))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3532 (((-3 $ "failed") $) 61 (|has| $ (-146)))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-3424 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-910 *3)))) (-3439 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-4 *1 (-910 *3)))) (-1771 (*1 *2 *1 *2) (-12 (-4 *1 (-910 *2)) (-4 *2 (-1109)))) (-1942 (*1 *2 *1 *2) (-12 (-4 *1 (-910 *2)) (-4 *2 (-1109)))) (-4248 (*1 *2 *1 *3) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-1111 *3)))) (-3045 (*1 *2 *1 *1) (-12 (-4 *1 (-910 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(-13 (-479) (-10 -8 (-15 -3424 ($ (-650 |t#1|))) (-15 -3439 ($ (-650 (-650 |t#1|)))) (-15 -1771 (|t#1| $ |t#1|)) (-15 -1942 (|t#1| $ |t#1|)) (-15 -4248 ((-1111 |t#1|) $ |t#1|)) (-15 -3045 ((-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) -2895 (|has| |#1| (-856)) (|has| |#1| (-373))) ((-1121) . T) ((-1109) . T))
+((-2560 (((-112) $ $) NIL)) (-1915 (((-650 (-650 (-777))) $) 160)) (-1866 (((-650 (-777)) (-912 |#1|) $) 188)) (-3120 (((-650 (-777)) (-912 |#1|) $) 189)) (-2831 (((-650 (-912 |#1|)) $) 149)) (-3449 (((-912 |#1|) $ (-570)) 154) (((-912 |#1|) $) 155)) (-2507 (($ (-650 (-912 |#1|))) 162)) (-3941 (((-777) $) 156)) (-3064 (((-1111 (-1111 |#1|)) $) 186)) (-4248 (((-1111 |#1|) $ |#1|) 177) (((-1111 (-1111 |#1|)) $ (-1111 |#1|)) 197) (((-1111 (-650 |#1|)) $ (-650 |#1|)) 200)) (-4367 (((-1111 |#1|) $) 152)) (-3767 (((-112) (-912 |#1|) $) 137)) (-3989 (((-1168) $) NIL)) (-3023 (((-1282) $) 142) (((-1282) $ (-570) (-570)) 201)) (-3580 (((-1129) $) NIL)) (-3154 (((-650 (-912 |#1|)) $) 143)) (-1942 (((-912 |#1|) $ (-777)) 150)) (-3079 (((-777) $) 157)) (-3802 (((-868) $) 174) (((-650 (-912 |#1|)) $) 28) (($ (-650 (-912 |#1|))) 161)) (-3359 (((-112) $ $) NIL)) (-4409 (((-650 |#1|) $) 159)) (-3025 (((-112) $ $) 194)) (-3065 (((-112) $ $) 192)) (-3045 (((-112) $ $) 191)))
+(((-911 |#1|) (-13 (-1109) (-10 -8 (-15 -3802 ((-650 (-912 |#1|)) $)) (-15 -3154 ((-650 (-912 |#1|)) $)) (-15 -1942 ((-912 |#1|) $ (-777))) (-15 -3449 ((-912 |#1|) $ (-570))) (-15 -3449 ((-912 |#1|) $)) (-15 -3941 ((-777) $)) (-15 -3079 ((-777) $)) (-15 -4409 ((-650 |#1|) $)) (-15 -2831 ((-650 (-912 |#1|)) $)) (-15 -1915 ((-650 (-650 (-777))) $)) (-15 -3802 ($ (-650 (-912 |#1|)))) (-15 -2507 ($ (-650 (-912 |#1|)))) (-15 -4248 ((-1111 |#1|) $ |#1|)) (-15 -3064 ((-1111 (-1111 |#1|)) $)) (-15 -4248 ((-1111 (-1111 |#1|)) $ (-1111 |#1|))) (-15 -4248 ((-1111 (-650 |#1|)) $ (-650 |#1|))) (-15 -3767 ((-112) (-912 |#1|) $)) (-15 -1866 ((-650 (-777)) (-912 |#1|) $)) (-15 -3120 ((-650 (-777)) (-912 |#1|) $)) (-15 -4367 ((-1111 |#1|) $)) (-15 -3045 ((-112) $ $)) (-15 -3065 ((-112) $ $)) (-15 -3023 ((-1282) $)) (-15 -3023 ((-1282) $ (-570) (-570))))) (-1109)) (T -911))
+((-3802 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3154 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))) (-3449 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-912 *4)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))) (-3449 (*1 *2 *1) (-12 (-5 *2 (-912 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3941 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3079 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4409 (*1 *2 *1) (-12 (-5 *2 (-650 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-2831 (*1 *2 *1) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-1915 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-777)))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))) (-2507 (*1 *1 *2) (-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *3)))) (-4248 (*1 *2 *1 *3) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3064 (*1 *2 *1) (-12 (-5 *2 (-1111 (-1111 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-4248 (*1 *2 *1 *3) (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-1111 *4))) (-5 *1 (-911 *4)) (-5 *3 (-1111 *4)))) (-4248 (*1 *2 *1 *3) (-12 (-4 *4 (-1109)) (-5 *2 (-1111 (-650 *4))) (-5 *1 (-911 *4)) (-5 *3 (-650 *4)))) (-3767 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-112)) (-5 *1 (-911 *4)))) (-1866 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777))) (-5 *1 (-911 *4)))) (-3120 (*1 *2 *3 *1) (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777))) (-5 *1 (-911 *4)))) (-4367 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3045 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3065 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3023 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-911 *3)) (-4 *3 (-1109)))) (-3023 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-911 *4)) (-4 *4 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -3802 ((-650 (-912 |#1|)) $)) (-15 -3154 ((-650 (-912 |#1|)) $)) (-15 -1942 ((-912 |#1|) $ (-777))) (-15 -3449 ((-912 |#1|) $ (-570))) (-15 -3449 ((-912 |#1|) $)) (-15 -3941 ((-777) $)) (-15 -3079 ((-777) $)) (-15 -4409 ((-650 |#1|) $)) (-15 -2831 ((-650 (-912 |#1|)) $)) (-15 -1915 ((-650 (-650 (-777))) $)) (-15 -3802 ($ (-650 (-912 |#1|)))) (-15 -2507 ($ (-650 (-912 |#1|)))) (-15 -4248 ((-1111 |#1|) $ |#1|)) (-15 -3064 ((-1111 (-1111 |#1|)) $)) (-15 -4248 ((-1111 (-1111 |#1|)) $ (-1111 |#1|))) (-15 -4248 ((-1111 (-650 |#1|)) $ (-650 |#1|))) (-15 -3767 ((-112) (-912 |#1|) $)) (-15 -1866 ((-650 (-777)) (-912 |#1|) $)) (-15 -3120 ((-650 (-777)) (-912 |#1|) $)) (-15 -4367 ((-1111 |#1|) $)) (-15 -3045 ((-112) $ $)) (-15 -3065 ((-112) $ $)) (-15 -3023 ((-1282) $)) (-15 -3023 ((-1282) $ (-570) (-570)))))
+((-2560 (((-112) $ $) NIL)) (-3396 (((-650 $) (-650 $)) 103)) (-3408 (((-570) $) 83)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-3941 (((-777) $) 80)) (-4248 (((-1111 |#1|) $ |#1|) 70)) (-4139 (((-112) $) NIL)) (-2888 (((-112) $) 88)) (-4286 (((-777) $) 84)) (-4367 (((-1111 |#1|) $) 60)) (-3469 (($ $ $) NIL (-2895 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-2472 (($ $ $) NIL (-2895 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-1541 (((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $) 55)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 130)) (-3580 (((-1129) $) NIL)) (-4403 (((-1111 |#1|) $) 137 (|has| |#1| (-373)))) (-4418 (((-112) $) 81)) (-1771 ((|#1| $ |#1|) 68)) (-1942 ((|#1| $ |#1|) 131)) (-3079 (((-777) $) 62)) (-3439 (($ (-650 (-650 |#1|))) 118)) (-4134 (((-980) $) 74)) (-3424 (($ (-650 |#1|)) 32)) (-4307 (($ $ $) NIL)) (-3381 (($ $ $) NIL)) (-3974 (($ (-650 (-650 |#1|))) 57)) (-2733 (($ (-650 (-650 |#1|))) 123)) (-2708 (($ (-650 |#1|)) 133)) (-3802 (((-868) $) 117) (($ (-650 (-650 |#1|))) 91) (($ (-650 |#1|)) 92)) (-3359 (((-112) $ $) NIL)) (-1876 (($) 24 T CONST)) (-3075 (((-112) $ $) NIL (-2895 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-3055 (((-112) $ $) NIL (-2895 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-3025 (((-112) $ $) 66)) (-3065 (((-112) $ $) NIL (-2895 (|has| |#1| (-373)) (|has| |#1| (-856))))) (-3045 (((-112) $ $) 90)) (-3125 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ $ $) 33)))
+(((-912 |#1|) (-13 (-910 |#1|) (-10 -8 (-15 -1541 ((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $)) (-15 -3974 ($ (-650 (-650 |#1|)))) (-15 -3802 ($ (-650 (-650 |#1|)))) (-15 -3802 ($ (-650 |#1|))) (-15 -2733 ($ (-650 (-650 |#1|)))) (-15 -3079 ((-777) $)) (-15 -4367 ((-1111 |#1|) $)) (-15 -4134 ((-980) $)) (-15 -3941 ((-777) $)) (-15 -4286 ((-777) $)) (-15 -3408 ((-570) $)) (-15 -4418 ((-112) $)) (-15 -2888 ((-112) $)) (-15 -3396 ((-650 $) (-650 $))) (IF (|has| |#1| (-373)) (-15 -4403 ((-1111 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-551)) (-15 -2708 ($ (-650 |#1|))) (IF (|has| |#1| (-373)) (-15 -2708 ($ (-650 |#1|))) |%noBranch|)))) (-1109)) (T -912))
+((-1541 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |preimage| (-650 *3)) (|:| |image| (-650 *3)))) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3974 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-2733 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))) (-3079 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4367 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4134 (*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3941 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4286 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3408 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4418 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-2888 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-3396 (*1 *2 *2) (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-912 *3)) (-4 *3 (-1109)))) (-4403 (*1 *2 *1) (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-373)) (-4 *3 (-1109)))) (-2708 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+(-13 (-910 |#1|) (-10 -8 (-15 -1541 ((-2 (|:| |preimage| (-650 |#1|)) (|:| |image| (-650 |#1|))) $)) (-15 -3974 ($ (-650 (-650 |#1|)))) (-15 -3802 ($ (-650 (-650 |#1|)))) (-15 -3802 ($ (-650 |#1|))) (-15 -2733 ($ (-650 (-650 |#1|)))) (-15 -3079 ((-777) $)) (-15 -4367 ((-1111 |#1|) $)) (-15 -4134 ((-980) $)) (-15 -3941 ((-777) $)) (-15 -4286 ((-777) $)) (-15 -3408 ((-570) $)) (-15 -4418 ((-112) $)) (-15 -2888 ((-112) $)) (-15 -3396 ((-650 $) (-650 $))) (IF (|has| |#1| (-373)) (-15 -4403 ((-1111 |#1|) $)) |%noBranch|) (IF (|has| |#1| (-551)) (-15 -2708 ($ (-650 |#1|))) (IF (|has| |#1| (-373)) (-15 -2708 ($ (-650 |#1|))) |%noBranch|))))
+((-2148 (((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|)) 159)) (-3695 ((|#1|) 97)) (-3876 (((-424 (-1182 |#4|)) (-1182 |#4|)) 168)) (-1649 (((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|)) 84)) (-2431 (((-424 (-1182 |#4|)) (-1182 |#4|)) 178)) (-3110 (((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|) 113)))
+(((-913 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2148 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|))) (-15 -2431 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -3876 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -3695 (|#1|)) (-15 -3110 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|)) (-15 -1649 ((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|)))) (-916) (-799) (-856) (-956 |#1| |#2| |#3|)) (T -913))
+((-1649 (*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)))) (-3110 (*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)))) (-3695 (*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)))) (-3876 (*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)))) (-2431 (*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)))) (-2148 (*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 -2148 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|))) (-15 -2431 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -3876 ((-424 (-1182 |#4|)) (-1182 |#4|))) (-15 -3695 (|#1|)) (-15 -3110 ((-3 (-650 (-1182 |#4|)) "failed") (-650 (-1182 |#4|)) (-1182 |#4|) |#3|)) (-15 -1649 ((-424 (-1182 |#4|)) (-650 |#3|) (-1182 |#4|))))
+((-2148 (((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|)) 39)) (-3695 ((|#1|) 73)) (-3876 (((-424 (-1182 |#2|)) (-1182 |#2|)) 122)) (-1649 (((-424 (-1182 |#2|)) (-1182 |#2|)) 106)) (-2431 (((-424 (-1182 |#2|)) (-1182 |#2|)) 133)))
+(((-914 |#1| |#2|) (-10 -7 (-15 -2148 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))) (-15 -2431 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -3876 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -3695 (|#1|)) (-15 -1649 ((-424 (-1182 |#2|)) (-1182 |#2|)))) (-916) (-1253 |#1|)) (T -914))
+((-1649 (*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)))) (-3695 (*1 *2) (-12 (-4 *2 (-916)) (-5 *1 (-914 *2 *3)) (-4 *3 (-1253 *2)))) (-3876 (*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)))) (-2431 (*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)))) (-2148 (*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 -2148 ((-3 (-650 (-1182 |#2|)) "failed") (-650 (-1182 |#2|)) (-1182 |#2|))) (-15 -2431 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -3876 ((-424 (-1182 |#2|)) (-1182 |#2|))) (-15 -3695 (|#1|)) (-15 -1649 ((-424 (-1182 |#2|)) (-1182 |#2|))))
+((-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 42)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 18)) (-3132 (((-3 $ "failed") $) 36)))
+(((-915 |#1|) (-10 -8 (-15 -3132 ((-3 |#1| "failed") |#1|)) (-15 -3585 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|)))) (-916)) (T -915))
+NIL
+(-10 -8 (-15 -3132 ((-3 |#1| "failed") |#1|)) (-15 -3585 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-2536 (((-424 (-1182 $)) (-1182 $)) 66)) (-4310 (($ $) 57)) (-3871 (((-424 $) $) 58)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 63)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-1336 (((-112) $) 59)) (-4139 (((-112) $) 35)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3933 (((-424 (-1182 $)) (-1182 $)) 64)) (-1558 (((-424 (-1182 $)) (-1182 $)) 65)) (-3804 (((-424 $) $) 56)) (-2548 (((-3 $ "failed") $ $) 48)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 62 (|has| $ (-146)))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3132 (((-3 $ "failed") $) 61 (|has| $ (-146)))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-916) (-141)) (T -916))
-((-4217 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-916)))) (-3924 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-2224 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-1659 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-2355 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *1))) (-5 *3 (-1182 *1)) (-4 *1 (-916)))) (-4428 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-146)) (-4 *1 (-916)) (-5 *2 (-1277 *1)))) (-3532 (*1 *1 *1) (|partial| -12 (-4 *1 (-146)) (-4 *1 (-916)))))
-(-13 (-1231) (-10 -8 (-15 -3924 ((-424 (-1182 $)) (-1182 $))) (-15 -2224 ((-424 (-1182 $)) (-1182 $))) (-15 -1659 ((-424 (-1182 $)) (-1182 $))) (-15 -4217 ((-1182 $) (-1182 $) (-1182 $))) (-15 -2355 ((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $))) (IF (|has| $ (-146)) (PROGN (-15 -4428 ((-3 (-1277 $) "failed") (-695 $))) (-15 -3532 ((-3 $ "failed") $))) |%noBranch|)))
+((-2361 (*1 *2 *2 *2) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-916)))) (-2536 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-1558 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-3933 (*1 *2 *3) (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))) (-3585 (*1 *2 *2 *3) (|partial| -12 (-5 *2 (-650 (-1182 *1))) (-5 *3 (-1182 *1)) (-4 *1 (-916)))) (-3692 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-146)) (-4 *1 (-916)) (-5 *2 (-1277 *1)))) (-3132 (*1 *1 *1) (|partial| -12 (-4 *1 (-146)) (-4 *1 (-916)))))
+(-13 (-1231) (-10 -8 (-15 -2536 ((-424 (-1182 $)) (-1182 $))) (-15 -1558 ((-424 (-1182 $)) (-1182 $))) (-15 -3933 ((-424 (-1182 $)) (-1182 $))) (-15 -2361 ((-1182 $) (-1182 $) (-1182 $))) (-15 -3585 ((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $))) (IF (|has| $ (-146)) (PROGN (-15 -3692 ((-3 (-1277 $) "failed") (-695 $))) (-15 -3132 ((-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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-1787 (((-112) $) NIL)) (-2509 (((-777)) NIL)) (-3207 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-2640 (((-1199 (-928) (-777)) (-570)) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 $ "failed") $) NIL)) (-3216 (($ $) NIL)) (-3243 (($ (-1277 $)) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-2652 (($) NIL)) (-2542 (((-112) $) NIL)) (-2063 (($ $) NIL) (($ $ (-777)) NIL)) (-3618 (((-112) $) NIL)) (-4323 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-4346 (((-112) $) NIL)) (-2881 (($) NIL (|has| $ (-373)))) (-4019 (((-112) $) NIL (|has| $ (-373)))) (-2959 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-2619 (((-3 $ "failed") $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3521 (((-1182 $) $ (-928)) NIL (|has| $ (-373))) (((-1182 $) $) NIL)) (-1884 (((-928) $) NIL)) (-1779 (((-1182 $) $) NIL (|has| $ (-373)))) (-2991 (((-3 (-1182 $) "failed") $ $) NIL (|has| $ (-373))) (((-1182 $) $) NIL (|has| $ (-373)))) (-4171 (($ $ (-1182 $)) NIL (|has| $ (-373)))) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL T CONST)) (-2268 (($ (-928)) NIL)) (-4064 (((-112) $) NIL)) (-3577 (((-1129) $) NIL)) (-2466 (($) NIL (|has| $ (-373)))) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL)) (-3801 (((-424 $) $) NIL)) (-2587 (((-928)) NIL) (((-839 (-928))) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2289 (((-3 (-777) "failed") $ $) NIL) (((-777) $) NIL)) (-2951 (((-135)) NIL)) (-3547 (($ $ (-777)) NIL) (($ $) NIL)) (-2130 (((-928) $) NIL) (((-839 (-928)) $) NIL)) (-2755 (((-1182 $)) NIL)) (-4003 (($) NIL)) (-4426 (($) NIL (|has| $ (-373)))) (-3424 (((-695 $) (-1277 $)) NIL) (((-1277 $) $) NIL)) (-1425 (((-570) $) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL)) (-3532 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $) (-928)) NIL) (((-1277 $)) NIL)) (-2029 (((-112) $ $) NIL)) (-2561 (((-112) $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3944 (($ $ (-777)) NIL (|has| $ (-373))) (($ $) NIL (|has| $ (-373)))) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-2739 (((-112) $) NIL)) (-1463 (((-777)) NIL)) (-3211 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-3379 (((-1199 (-928) (-777)) (-570)) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 $ "failed") $) NIL)) (-3220 (($ $) NIL)) (-2322 (($ (-1277 $)) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-3511 (($) NIL)) (-1843 (((-112) $) NIL)) (-3599 (($ $) NIL) (($ $ (-777)) NIL)) (-1336 (((-112) $) NIL)) (-3941 (((-839 (-928)) $) NIL) (((-928) $) NIL)) (-4139 (((-112) $) NIL)) (-1977 (($) NIL (|has| $ (-373)))) (-4073 (((-112) $) NIL (|has| $ (-373)))) (-4399 (($ $ (-928)) NIL (|has| $ (-373))) (($ $) NIL)) (-4369 (((-3 $ "failed") $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3043 (((-1182 $) $ (-928)) NIL (|has| $ (-373))) (((-1182 $) $) NIL)) (-2400 (((-928) $) NIL)) (-2665 (((-1182 $) $) NIL (|has| $ (-373)))) (-1672 (((-3 (-1182 $) "failed") $ $) NIL (|has| $ (-373))) (((-1182 $) $) NIL (|has| $ (-373)))) (-3113 (($ $ (-1182 $)) NIL (|has| $ (-373)))) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL T CONST)) (-2267 (($ (-928)) NIL)) (-3315 (((-112) $) NIL)) (-3580 (((-1129) $) NIL)) (-2467 (($) NIL (|has| $ (-373)))) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL)) (-3804 (((-424 $) $) NIL)) (-4068 (((-928)) NIL) (((-839 (-928))) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-4080 (((-3 (-777) "failed") $ $) NIL) (((-777) $) NIL)) (-2517 (((-135)) NIL)) (-3550 (($ $ (-777)) NIL) (($ $) NIL)) (-3079 (((-928) $) NIL) (((-839 (-928)) $) NIL)) (-2075 (((-1182 $)) NIL)) (-3924 (($) NIL)) (-3667 (($) NIL (|has| $ (-373)))) (-3314 (((-695 $) (-1277 $)) NIL) (((-1277 $) $) NIL)) (-1426 (((-570) $) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL)) (-3132 (((-3 $ "failed") $) NIL) (($ $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $) (-928)) NIL) (((-1277 $)) NIL)) (-3228 (((-112) $ $) NIL)) (-3857 (((-112) $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-1427 (($ $ (-777)) NIL (|has| $ (-373))) (($ $) NIL (|has| $ (-373)))) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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)))
-((-4296 (((-3 (-2 (|:| -4323 (-777)) (|:| -1739 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|)) 77)) (-2050 (((-112) (-341 |#2| |#3| |#4| |#5|)) 17)) (-4323 (((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|)) 15)))
-(((-918 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4323 ((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|))) (-15 -2050 ((-112) (-341 |#2| |#3| |#4| |#5|))) (-15 -4296 ((-3 (-2 (|:| -4323 (-777)) (|:| -1739 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|)))) (-13 (-562) (-1047 (-570))) (-436 |#1|) (-1253 |#2|) (-1253 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -918))
-((-4296 (*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 (|:| -4323 (-777)) (|:| -1739 *8))) (-5 *1 (-918 *4 *5 *6 *7 *8)))) (-2050 (*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)))) (-4323 (*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 -4323 ((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|))) (-15 -2050 ((-112) (-341 |#2| |#3| |#4| |#5|))) (-15 -4296 ((-3 (-2 (|:| -4323 (-777)) (|:| -1739 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|))))
-((-4296 (((-3 (-2 (|:| -4323 (-777)) (|:| -1739 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)) 64)) (-2050 (((-112) (-341 (-413 (-570)) |#1| |#2| |#3|)) 16)) (-4323 (((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)) 14)))
-(((-919 |#1| |#2| |#3|) (-10 -7 (-15 -4323 ((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -2050 ((-112) (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -4296 ((-3 (-2 (|:| -4323 (-777)) (|:| -1739 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)))) (-1253 (-413 (-570))) (-1253 (-413 |#1|)) (-347 (-413 (-570)) |#1| |#2|)) (T -919))
-((-4296 (*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 (|:| -4323 (-777)) (|:| -1739 *6))) (-5 *1 (-919 *4 *5 *6)))) (-2050 (*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)))) (-4323 (*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 -4323 ((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -2050 ((-112) (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -4296 ((-3 (-2 (|:| -4323 (-777)) (|:| -1739 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))))
-((-2463 ((|#2| |#2|) 26)) (-3300 (((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))))) 15)) (-3751 (((-928) (-570)) 38)) (-1328 (((-570) |#2|) 45)) (-3620 (((-570) |#2|) 21) (((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|) 20)))
-(((-920 |#1| |#2|) (-10 -7 (-15 -3751 ((-928) (-570))) (-15 -3620 ((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|)) (-15 -3620 ((-570) |#2|)) (-15 -3300 ((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))) (-15 -1328 ((-570) |#2|)) (-15 -2463 (|#2| |#2|))) (-1253 (-413 (-570))) (-1253 (-413 |#1|))) (T -920))
-((-2463 (*1 *2 *2) (-12 (-4 *3 (-1253 (-413 (-570)))) (-5 *1 (-920 *3 *2)) (-4 *2 (-1253 (-413 *3))))) (-1328 (*1 *2 *3) (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-3300 (*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))))) (-3620 (*1 *2 *3) (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-3620 (*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))))) (-3751 (*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 -3751 ((-928) (-570))) (-15 -3620 ((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|)) (-15 -3620 ((-570) |#2|)) (-15 -3300 ((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))) (-15 -1328 ((-570) |#2|)) (-15 -2463 (|#2| |#2|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 ((|#1| $) 100)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-2506 (($ $ $) NIL)) (-2875 (((-3 $ "failed") $) 94)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-2522 (($ |#1| (-424 |#1|)) 92)) (-3743 (((-1182 |#1|) |#1| |#1|) 53)) (-2230 (($ $) 61)) (-4346 (((-112) $) NIL)) (-1468 (((-570) $) 97)) (-3657 (($ $ (-570)) 99)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3809 ((|#1| $) 96)) (-2957 (((-424 |#1|) $) 95)) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) 93)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2744 (($ $) 50)) (-3799 (((-868) $) 124) (($ (-570)) 73) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 41) (((-413 |#1|) $) 78) (($ (-413 (-424 |#1|))) 86)) (-3499 (((-777)) 71 T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) 26 T CONST)) (-1875 (($) 15 T CONST)) (-3022 (((-112) $ $) 87)) (-3122 (($ $ $) NIL)) (-3111 (($ $) 108) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3799 ((-413 |#1|) $)) (-15 -3799 ($ (-413 (-424 |#1|)))) (-15 -2744 ($ $)) (-15 -2957 ((-424 |#1|) $)) (-15 -3809 (|#1| $)) (-15 -3657 ($ $ (-570))) (-15 -1468 ((-570) $)) (-15 -3743 ((-1182 |#1|) |#1| |#1|)) (-15 -2230 ($ $)) (-15 -2522 ($ |#1| (-424 |#1|))) (-15 -1733 (|#1| $)))) (-311)) (T -921))
-((-3799 (*1 *2 *1) (-12 (-5 *2 (-413 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-413 (-424 *3))) (-4 *3 (-311)) (-5 *1 (-921 *3)))) (-2744 (*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-2957 (*1 *2 *1) (-12 (-5 *2 (-424 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3809 (*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-3657 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-1468 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3743 (*1 *2 *3 *3) (-12 (-5 *2 (-1182 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-2230 (*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-2522 (*1 *1 *2 *3) (-12 (-5 *3 (-424 *2)) (-4 *2 (-311)) (-5 *1 (-921 *2)))) (-1733 (*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
-(-13 (-368) (-38 |#1|) (-10 -8 (-15 -3799 ((-413 |#1|) $)) (-15 -3799 ($ (-413 (-424 |#1|)))) (-15 -2744 ($ $)) (-15 -2957 ((-424 |#1|) $)) (-15 -3809 (|#1| $)) (-15 -3657 ($ $ (-570))) (-15 -1468 ((-570) $)) (-15 -3743 ((-1182 |#1|) |#1| |#1|)) (-15 -2230 ($ $)) (-15 -2522 ($ |#1| (-424 |#1|))) (-15 -1733 (|#1| $))))
-((-2522 (((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186)) 17) (((-52) (-413 (-959 |#1|)) (-1186)) 18)))
-(((-922 |#1|) (-10 -7 (-15 -2522 ((-52) (-413 (-959 |#1|)) (-1186))) (-15 -2522 ((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186)))) (-13 (-311) (-148))) (T -922))
-((-2522 (*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)))) (-2522 (*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 -2522 ((-52) (-413 (-959 |#1|)) (-1186))) (-15 -2522 ((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186))))
-((-3721 ((|#4| (-650 |#4|)) 147) (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 84) ((|#4| |#4| |#4|) 146)) (-1942 (((-1182 |#4|) (-650 (-1182 |#4|))) 140) (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 61) ((|#4| (-650 |#4|)) 69) ((|#4| |#4| |#4|) 107)))
-(((-923 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1942 (|#4| |#4| |#4|)) (-15 -1942 (|#4| (-650 |#4|))) (-15 -1942 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1942 ((-1182 |#4|) (-650 (-1182 |#4|)))) (-15 -3721 (|#4| |#4| |#4|)) (-15 -3721 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -3721 (|#4| (-650 |#4|)))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -923))
-((-3721 (*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)))) (-3721 (*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)))) (-3721 (*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)))) (-1942 (*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)))) (-1942 (*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)))) (-1942 (*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)))) (-1942 (*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 -1942 (|#4| |#4| |#4|)) (-15 -1942 (|#4| (-650 |#4|))) (-15 -1942 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1942 ((-1182 |#4|) (-650 (-1182 |#4|)))) (-15 -3721 (|#4| |#4| |#4|)) (-15 -3721 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -3721 (|#4| (-650 |#4|))))
-((-1574 (((-911 (-570)) (-980)) 38) (((-911 (-570)) (-650 (-570))) 34)) (-1720 (((-911 (-570)) (-650 (-570))) 67) (((-911 (-570)) (-928)) 68)) (-3513 (((-911 (-570))) 39)) (-3768 (((-911 (-570))) 53) (((-911 (-570)) (-650 (-570))) 52)) (-3969 (((-911 (-570))) 51) (((-911 (-570)) (-650 (-570))) 50)) (-1487 (((-911 (-570))) 49) (((-911 (-570)) (-650 (-570))) 48)) (-2895 (((-911 (-570))) 47) (((-911 (-570)) (-650 (-570))) 46)) (-1894 (((-911 (-570))) 45) (((-911 (-570)) (-650 (-570))) 44)) (-4067 (((-911 (-570))) 55) (((-911 (-570)) (-650 (-570))) 54)) (-3026 (((-911 (-570)) (-650 (-570))) 72) (((-911 (-570)) (-928)) 74)) (-2411 (((-911 (-570)) (-650 (-570))) 69) (((-911 (-570)) (-928)) 70)) (-2999 (((-911 (-570)) (-650 (-570))) 65) (((-911 (-570)) (-928)) 66)) (-4146 (((-911 (-570)) (-650 (-928))) 57)))
-(((-924) (-10 -7 (-15 -1720 ((-911 (-570)) (-928))) (-15 -1720 ((-911 (-570)) (-650 (-570)))) (-15 -2999 ((-911 (-570)) (-928))) (-15 -2999 ((-911 (-570)) (-650 (-570)))) (-15 -4146 ((-911 (-570)) (-650 (-928)))) (-15 -2411 ((-911 (-570)) (-928))) (-15 -2411 ((-911 (-570)) (-650 (-570)))) (-15 -3026 ((-911 (-570)) (-928))) (-15 -3026 ((-911 (-570)) (-650 (-570)))) (-15 -1894 ((-911 (-570)) (-650 (-570)))) (-15 -1894 ((-911 (-570)))) (-15 -2895 ((-911 (-570)) (-650 (-570)))) (-15 -2895 ((-911 (-570)))) (-15 -1487 ((-911 (-570)) (-650 (-570)))) (-15 -1487 ((-911 (-570)))) (-15 -3969 ((-911 (-570)) (-650 (-570)))) (-15 -3969 ((-911 (-570)))) (-15 -3768 ((-911 (-570)) (-650 (-570)))) (-15 -3768 ((-911 (-570)))) (-15 -4067 ((-911 (-570)) (-650 (-570)))) (-15 -4067 ((-911 (-570)))) (-15 -3513 ((-911 (-570)))) (-15 -1574 ((-911 (-570)) (-650 (-570)))) (-15 -1574 ((-911 (-570)) (-980))))) (T -924))
-((-1574 (*1 *2 *3) (-12 (-5 *3 (-980)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1574 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3513 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4067 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4067 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3768 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3768 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3969 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3969 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1487 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1487 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2895 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2895 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1894 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1894 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3026 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3026 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2411 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2411 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4146 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2999 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2999 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1720 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1720 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(-10 -7 (-15 -1720 ((-911 (-570)) (-928))) (-15 -1720 ((-911 (-570)) (-650 (-570)))) (-15 -2999 ((-911 (-570)) (-928))) (-15 -2999 ((-911 (-570)) (-650 (-570)))) (-15 -4146 ((-911 (-570)) (-650 (-928)))) (-15 -2411 ((-911 (-570)) (-928))) (-15 -2411 ((-911 (-570)) (-650 (-570)))) (-15 -3026 ((-911 (-570)) (-928))) (-15 -3026 ((-911 (-570)) (-650 (-570)))) (-15 -1894 ((-911 (-570)) (-650 (-570)))) (-15 -1894 ((-911 (-570)))) (-15 -2895 ((-911 (-570)) (-650 (-570)))) (-15 -2895 ((-911 (-570)))) (-15 -1487 ((-911 (-570)) (-650 (-570)))) (-15 -1487 ((-911 (-570)))) (-15 -3969 ((-911 (-570)) (-650 (-570)))) (-15 -3969 ((-911 (-570)))) (-15 -3768 ((-911 (-570)) (-650 (-570)))) (-15 -3768 ((-911 (-570)))) (-15 -4067 ((-911 (-570)) (-650 (-570)))) (-15 -4067 ((-911 (-570)))) (-15 -3513 ((-911 (-570)))) (-15 -1574 ((-911 (-570)) (-650 (-570)))) (-15 -1574 ((-911 (-570)) (-980))))
-((-1525 (((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))) 14)) (-2081 (((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))) 13)))
-(((-925 |#1|) (-10 -7 (-15 -2081 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -1525 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))))) (-458)) (T -925))
-((-1525 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-925 *4)))) (-2081 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-925 *4)))))
-(-10 -7 (-15 -2081 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -1525 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))))
-((-3799 (((-320 |#1|) (-483)) 16)))
-(((-926 |#1|) (-10 -7 (-15 -3799 ((-320 |#1|) (-483)))) (-562)) (T -926))
-((-3799 (*1 *2 *3) (-12 (-5 *3 (-483)) (-5 *2 (-320 *4)) (-5 *1 (-926 *4)) (-4 *4 (-562)))))
-(-10 -7 (-15 -3799 ((-320 |#1|) (-483))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-4346 (((-112) $) 35)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-1872 (((-3 (-2 (|:| -3941 (-777)) (|:| -1743 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|)) 77)) (-3456 (((-112) (-341 |#2| |#3| |#4| |#5|)) 17)) (-3941 (((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|)) 15)))
+(((-918 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3941 ((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|))) (-15 -3456 ((-112) (-341 |#2| |#3| |#4| |#5|))) (-15 -1872 ((-3 (-2 (|:| -3941 (-777)) (|:| -1743 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|)))) (-13 (-562) (-1047 (-570))) (-436 |#1|) (-1253 |#2|) (-1253 (-413 |#3|)) (-347 |#2| |#3| |#4|)) (T -918))
+((-1872 (*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 (|:| -3941 (-777)) (|:| -1743 *8))) (-5 *1 (-918 *4 *5 *6 *7 *8)))) (-3456 (*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)))) (-3941 (*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 -3941 ((-3 (-777) "failed") (-341 |#2| |#3| |#4| |#5|))) (-15 -3456 ((-112) (-341 |#2| |#3| |#4| |#5|))) (-15 -1872 ((-3 (-2 (|:| -3941 (-777)) (|:| -1743 |#5|)) "failed") (-341 |#2| |#3| |#4| |#5|))))
+((-1872 (((-3 (-2 (|:| -3941 (-777)) (|:| -1743 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)) 64)) (-3456 (((-112) (-341 (-413 (-570)) |#1| |#2| |#3|)) 16)) (-3941 (((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)) 14)))
+(((-919 |#1| |#2| |#3|) (-10 -7 (-15 -3941 ((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -3456 ((-112) (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -1872 ((-3 (-2 (|:| -3941 (-777)) (|:| -1743 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|)))) (-1253 (-413 (-570))) (-1253 (-413 |#1|)) (-347 (-413 (-570)) |#1| |#2|)) (T -919))
+((-1872 (*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 (|:| -3941 (-777)) (|:| -1743 *6))) (-5 *1 (-919 *4 *5 *6)))) (-3456 (*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)))) (-3941 (*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 -3941 ((-3 (-777) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -3456 ((-112) (-341 (-413 (-570)) |#1| |#2| |#3|))) (-15 -1872 ((-3 (-2 (|:| -3941 (-777)) (|:| -1743 |#3|)) "failed") (-341 (-413 (-570)) |#1| |#2| |#3|))))
+((-2307 ((|#2| |#2|) 26)) (-1606 (((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))))) 15)) (-3333 (((-928) (-570)) 38)) (-1806 (((-570) |#2|) 45)) (-1363 (((-570) |#2|) 21) (((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|) 20)))
+(((-920 |#1| |#2|) (-10 -7 (-15 -3333 ((-928) (-570))) (-15 -1363 ((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|)) (-15 -1363 ((-570) |#2|)) (-15 -1606 ((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))) (-15 -1806 ((-570) |#2|)) (-15 -2307 (|#2| |#2|))) (-1253 (-413 (-570))) (-1253 (-413 |#1|))) (T -920))
+((-2307 (*1 *2 *2) (-12 (-4 *3 (-1253 (-413 (-570)))) (-5 *1 (-920 *3 *2)) (-4 *2 (-1253 (-413 *3))))) (-1806 (*1 *2 *3) (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-1606 (*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))))) (-1363 (*1 *2 *3) (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3)) (-4 *3 (-1253 (-413 *4))))) (-1363 (*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))))) (-3333 (*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 -3333 ((-928) (-570))) (-15 -1363 ((-2 (|:| |den| (-570)) (|:| |gcdnum| (-570))) |#1|)) (-15 -1363 ((-570) |#2|)) (-15 -1606 ((-570) (-650 (-2 (|:| |den| (-570)) (|:| |gcdnum| (-570)))))) (-15 -1806 ((-570) |#2|)) (-15 -2307 (|#2| |#2|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 ((|#1| $) 100)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-2504 (($ $ $) NIL)) (-1929 (((-3 $ "failed") $) 94)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-1615 (($ |#1| (-424 |#1|)) 92)) (-3262 (((-1182 |#1|) |#1| |#1|) 53)) (-1619 (($ $) 61)) (-4139 (((-112) $) NIL)) (-2678 (((-570) $) 97)) (-1817 (($ $ (-570)) 99)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2705 ((|#1| $) 96)) (-4376 (((-424 |#1|) $) 95)) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) 93)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3155 (($ $) 50)) (-3802 (((-868) $) 124) (($ (-570)) 73) (($ $) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 41) (((-413 |#1|) $) 78) (($ (-413 (-424 |#1|))) 86)) (-2851 (((-777)) 71 T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) 26 T CONST)) (-1876 (($) 15 T CONST)) (-3025 (((-112) $ $) 87)) (-3125 (($ $ $) NIL)) (-3114 (($ $) 108) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3802 ((-413 |#1|) $)) (-15 -3802 ($ (-413 (-424 |#1|)))) (-15 -3155 ($ $)) (-15 -4376 ((-424 |#1|) $)) (-15 -2705 (|#1| $)) (-15 -1817 ($ $ (-570))) (-15 -2678 ((-570) $)) (-15 -3262 ((-1182 |#1|) |#1| |#1|)) (-15 -1619 ($ $)) (-15 -1615 ($ |#1| (-424 |#1|))) (-15 -3472 (|#1| $)))) (-311)) (T -921))
+((-3802 (*1 *2 *1) (-12 (-5 *2 (-413 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-413 (-424 *3))) (-4 *3 (-311)) (-5 *1 (-921 *3)))) (-3155 (*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-4376 (*1 *2 *1) (-12 (-5 *2 (-424 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-2705 (*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-1817 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-2678 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-3262 (*1 *2 *3 *3) (-12 (-5 *2 (-1182 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))) (-1619 (*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))) (-1615 (*1 *1 *2 *3) (-12 (-5 *3 (-424 *2)) (-4 *2 (-311)) (-5 *1 (-921 *2)))) (-3472 (*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
+(-13 (-368) (-38 |#1|) (-10 -8 (-15 -3802 ((-413 |#1|) $)) (-15 -3802 ($ (-413 (-424 |#1|)))) (-15 -3155 ($ $)) (-15 -4376 ((-424 |#1|) $)) (-15 -2705 (|#1| $)) (-15 -1817 ($ $ (-570))) (-15 -2678 ((-570) $)) (-15 -3262 ((-1182 |#1|) |#1| |#1|)) (-15 -1619 ($ $)) (-15 -1615 ($ |#1| (-424 |#1|))) (-15 -3472 (|#1| $))))
+((-1615 (((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186)) 17) (((-52) (-413 (-959 |#1|)) (-1186)) 18)))
+(((-922 |#1|) (-10 -7 (-15 -1615 ((-52) (-413 (-959 |#1|)) (-1186))) (-15 -1615 ((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186)))) (-13 (-311) (-148))) (T -922))
+((-1615 (*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)))) (-1615 (*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 -1615 ((-52) (-413 (-959 |#1|)) (-1186))) (-15 -1615 ((-52) (-959 |#1|) (-424 (-959 |#1|)) (-1186))))
+((-4254 ((|#4| (-650 |#4|)) 147) (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 84) ((|#4| |#4| |#4|) 146)) (-1939 (((-1182 |#4|) (-650 (-1182 |#4|))) 140) (((-1182 |#4|) (-1182 |#4|) (-1182 |#4|)) 61) ((|#4| (-650 |#4|)) 69) ((|#4| |#4| |#4|) 107)))
+(((-923 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1939 (|#4| |#4| |#4|)) (-15 -1939 (|#4| (-650 |#4|))) (-15 -1939 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1939 ((-1182 |#4|) (-650 (-1182 |#4|)))) (-15 -4254 (|#4| |#4| |#4|)) (-15 -4254 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -4254 (|#4| (-650 |#4|)))) (-799) (-856) (-311) (-956 |#3| |#1| |#2|)) (T -923))
+((-4254 (*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)))) (-4254 (*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)))) (-4254 (*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)))) (-1939 (*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)))) (-1939 (*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)))) (-1939 (*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)))) (-1939 (*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 -1939 (|#4| |#4| |#4|)) (-15 -1939 (|#4| (-650 |#4|))) (-15 -1939 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -1939 ((-1182 |#4|) (-650 (-1182 |#4|)))) (-15 -4254 (|#4| |#4| |#4|)) (-15 -4254 ((-1182 |#4|) (-1182 |#4|) (-1182 |#4|))) (-15 -4254 (|#4| (-650 |#4|))))
+((-4299 (((-911 (-570)) (-980)) 38) (((-911 (-570)) (-650 (-570))) 34)) (-3312 (((-911 (-570)) (-650 (-570))) 67) (((-911 (-570)) (-928)) 68)) (-2973 (((-911 (-570))) 39)) (-3510 (((-911 (-570))) 53) (((-911 (-570)) (-650 (-570))) 52)) (-1719 (((-911 (-570))) 51) (((-911 (-570)) (-650 (-570))) 50)) (-2865 (((-911 (-570))) 49) (((-911 (-570)) (-650 (-570))) 48)) (-1990 (((-911 (-570))) 47) (((-911 (-570)) (-650 (-570))) 46)) (-2495 (((-911 (-570))) 45) (((-911 (-570)) (-650 (-570))) 44)) (-3349 (((-911 (-570))) 55) (((-911 (-570)) (-650 (-570))) 54)) (-3877 (((-911 (-570)) (-650 (-570))) 72) (((-911 (-570)) (-928)) 74)) (-2956 (((-911 (-570)) (-650 (-570))) 69) (((-911 (-570)) (-928)) 70)) (-1775 (((-911 (-570)) (-650 (-570))) 65) (((-911 (-570)) (-928)) 66)) (-2927 (((-911 (-570)) (-650 (-928))) 57)))
+(((-924) (-10 -7 (-15 -3312 ((-911 (-570)) (-928))) (-15 -3312 ((-911 (-570)) (-650 (-570)))) (-15 -1775 ((-911 (-570)) (-928))) (-15 -1775 ((-911 (-570)) (-650 (-570)))) (-15 -2927 ((-911 (-570)) (-650 (-928)))) (-15 -2956 ((-911 (-570)) (-928))) (-15 -2956 ((-911 (-570)) (-650 (-570)))) (-15 -3877 ((-911 (-570)) (-928))) (-15 -3877 ((-911 (-570)) (-650 (-570)))) (-15 -2495 ((-911 (-570)) (-650 (-570)))) (-15 -2495 ((-911 (-570)))) (-15 -1990 ((-911 (-570)) (-650 (-570)))) (-15 -1990 ((-911 (-570)))) (-15 -2865 ((-911 (-570)) (-650 (-570)))) (-15 -2865 ((-911 (-570)))) (-15 -1719 ((-911 (-570)) (-650 (-570)))) (-15 -1719 ((-911 (-570)))) (-15 -3510 ((-911 (-570)) (-650 (-570)))) (-15 -3510 ((-911 (-570)))) (-15 -3349 ((-911 (-570)) (-650 (-570)))) (-15 -3349 ((-911 (-570)))) (-15 -2973 ((-911 (-570)))) (-15 -4299 ((-911 (-570)) (-650 (-570)))) (-15 -4299 ((-911 (-570)) (-980))))) (T -924))
+((-4299 (*1 *2 *3) (-12 (-5 *3 (-980)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-4299 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2973 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3349 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3349 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3510 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3510 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1719 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1719 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2865 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2865 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1990 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1990 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2495 (*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2495 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3877 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3877 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2956 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2956 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-2927 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1775 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-1775 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3312 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))) (-3312 (*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(-10 -7 (-15 -3312 ((-911 (-570)) (-928))) (-15 -3312 ((-911 (-570)) (-650 (-570)))) (-15 -1775 ((-911 (-570)) (-928))) (-15 -1775 ((-911 (-570)) (-650 (-570)))) (-15 -2927 ((-911 (-570)) (-650 (-928)))) (-15 -2956 ((-911 (-570)) (-928))) (-15 -2956 ((-911 (-570)) (-650 (-570)))) (-15 -3877 ((-911 (-570)) (-928))) (-15 -3877 ((-911 (-570)) (-650 (-570)))) (-15 -2495 ((-911 (-570)) (-650 (-570)))) (-15 -2495 ((-911 (-570)))) (-15 -1990 ((-911 (-570)) (-650 (-570)))) (-15 -1990 ((-911 (-570)))) (-15 -2865 ((-911 (-570)) (-650 (-570)))) (-15 -2865 ((-911 (-570)))) (-15 -1719 ((-911 (-570)) (-650 (-570)))) (-15 -1719 ((-911 (-570)))) (-15 -3510 ((-911 (-570)) (-650 (-570)))) (-15 -3510 ((-911 (-570)))) (-15 -3349 ((-911 (-570)) (-650 (-570)))) (-15 -3349 ((-911 (-570)))) (-15 -2973 ((-911 (-570)))) (-15 -4299 ((-911 (-570)) (-650 (-570)))) (-15 -4299 ((-911 (-570)) (-980))))
+((-2016 (((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))) 14)) (-2594 (((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))) 13)))
+(((-925 |#1|) (-10 -7 (-15 -2594 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2016 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186))))) (-458)) (T -925))
+((-2016 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-925 *4)))) (-2594 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458)) (-5 *1 (-925 *4)))))
+(-10 -7 (-15 -2594 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2016 ((-650 (-959 |#1|)) (-650 (-959 |#1|)) (-650 (-1186)))))
+((-3802 (((-320 |#1|) (-483)) 16)))
+(((-926 |#1|) (-10 -7 (-15 -3802 ((-320 |#1|) (-483)))) (-562)) (T -926))
+((-3802 (*1 *2 *3) (-12 (-5 *3 (-483)) (-5 *2 (-320 *4)) (-5 *1 (-926 *4)) (-4 *4 (-562)))))
+(-10 -7 (-15 -3802 ((-320 |#1|) (-483))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-4139 (((-112) $) 35)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-927) (-141)) (T -927))
-((-3035 (*1 *2 *3) (-12 (-4 *1 (-927)) (-5 *2 (-2 (|:| -1452 (-650 *1)) (|:| -2466 *1))) (-5 *3 (-650 *1)))) (-3132 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-927)))))
-(-13 (-458) (-10 -8 (-15 -3035 ((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $))) (-15 -3132 ((-3 (-650 $) "failed") (-650 $) $))))
+((-3958 (*1 *2 *3) (-12 (-4 *1 (-927)) (-5 *2 (-2 (|:| -1453 (-650 *1)) (|:| -2467 *1))) (-5 *3 (-650 *1)))) (-3677 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-927)))))
+(-13 (-458) (-10 -8 (-15 -3958 ((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $))) (-15 -3677 ((-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))
-((-2558 (((-112) $ $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1942 (($ $ $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1875 (($) NIL T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)) (-3101 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ $ $) NIL)))
-(((-928) (-13 (-800) (-732) (-10 -8 (-15 -1942 ($ $ $)) (-6 (-4451 "*"))))) (T -928))
-((-1942 (*1 *1 *1 *1) (-5 *1 (-928))))
-(-13 (-800) (-732) (-10 -8 (-15 -1942 ($ $ $)) (-6 (-4451 "*"))))
+((-2560 (((-112) $ $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1939 (($ $ $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1876 (($) NIL T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ $ $) NIL)))
+(((-928) (-13 (-800) (-732) (-10 -8 (-15 -1939 ($ $ $)) (-6 (-4454 "*"))))) (T -928))
+((-1939 (*1 *1 *1 *1) (-5 *1 (-928))))
+(-13 (-800) (-732) (-10 -8 (-15 -1939 ($ $ $)) (-6 (-4454 "*"))))
((|NonNegativeInteger|) (> |#1| 0))
-((-4155 ((|#2| (-650 |#1|) (-650 |#1|)) 28)))
-(((-929 |#1| |#2|) (-10 -7 (-15 -4155 (|#2| (-650 |#1|) (-650 |#1|)))) (-368) (-1253 |#1|)) (T -929))
-((-4155 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-4 *2 (-1253 *4)) (-5 *1 (-929 *4 *2)))))
-(-10 -7 (-15 -4155 (|#2| (-650 |#1|) (-650 |#1|))))
-((-2626 (((-1182 |#2|) (-650 |#2|) (-650 |#2|)) 17) (((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|)) 13)))
-(((-930 |#1| |#2|) (-10 -7 (-15 -2626 ((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|))) (-15 -2626 ((-1182 |#2|) (-650 |#2|) (-650 |#2|)))) (-1186) (-368)) (T -930))
-((-2626 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-368)) (-5 *2 (-1182 *5)) (-5 *1 (-930 *4 *5)) (-14 *4 (-1186)))) (-2626 (*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 -2626 ((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|))) (-15 -2626 ((-1182 |#2|) (-650 |#2|) (-650 |#2|))))
-((-3434 (((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168)) 174)) (-1448 ((|#4| |#4|) 193)) (-1818 (((-650 (-413 (-959 |#1|))) (-650 (-1186))) 146)) (-2780 (((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-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)) (-2692 (((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|)) 69)) (-4421 (((-695 |#4|) (-695 |#4|) (-650 |#4|)) 65)) (-3578 (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168)) 186)) (-4007 (((-570) (-695 |#4|) (-928) (-1168)) 166) (((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168)) 165) (((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168)) 164) (((-570) (-695 |#4|) (-1168)) 154) (((-570) (-695 |#4|) (-650 (-1186)) (-1168)) 153) (((-570) (-695 |#4|) (-650 |#4|) (-1168)) 152) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928)) 151) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928)) 150) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928)) 149) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|)) 148) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186))) 147) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|)) 143)) (-2697 ((|#4| (-959 |#1|)) 80)) (-2499 (((-112) (-650 |#4|) (-650 (-650 |#4|))) 190)) (-3726 (((-650 (-650 (-570))) (-570) (-570)) 159)) (-2878 (((-650 (-650 |#4|)) (-650 (-650 |#4|))) 106)) (-4087 (((-777) (-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|))))) 100)) (-2417 (((-777) (-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|))))) 99)) (-2042 (((-112) (-650 (-959 |#1|))) 19) (((-112) (-650 |#4|)) 15)) (-4215 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|)) 84)) (-2119 (((-650 |#4|) |#4|) 57)) (-2828 (((-650 (-413 (-959 |#1|))) (-650 |#4|)) 142) (((-695 (-413 (-959 |#1|))) (-695 |#4|)) 66) (((-413 (-959 |#1|)) |#4|) 139)) (-2641 (((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570)) 112)) (-2630 (((-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777)) 98)) (-3217 (((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777)) 121)) (-2772 (((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2415 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -4006 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) 56)))
-(((-931 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928))) (-15 -4007 ((-570) (-695 |#4|) (-650 |#4|) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-650 (-1186)) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-928) (-1168))) (-15 -3434 ((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -3578 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -2641 ((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570))) (-15 -2828 ((-413 (-959 |#1|)) |#4|)) (-15 -2828 ((-695 (-413 (-959 |#1|))) (-695 |#4|))) (-15 -2828 ((-650 (-413 (-959 |#1|))) (-650 |#4|))) (-15 -1818 ((-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2697 (|#4| (-959 |#1|))) (-15 -4215 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|))) (-15 -2630 ((-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777))) (-15 -2692 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|))) (-15 -2772 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2415 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -4006 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-15 -2119 ((-650 |#4|) |#4|)) (-15 -2417 ((-777) (-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -4087 ((-777) (-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -2878 ((-650 (-650 |#4|)) (-650 (-650 |#4|)))) (-15 -3726 ((-650 (-650 (-570))) (-570) (-570))) (-15 -2499 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -3217 ((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777))) (-15 -4421 ((-695 |#4|) (-695 |#4|) (-650 |#4|))) (-15 -2780 ((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-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 -1448 (|#4| |#4|)) (-15 -2042 ((-112) (-650 |#4|))) (-15 -2042 ((-112) (-650 (-959 |#1|))))) (-13 (-311) (-148)) (-13 (-856) (-620 (-1186))) (-799) (-956 |#1| |#3| |#2|)) (T -931))
-((-2042 (*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)))) (-2042 (*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)))) (-1448 (*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)))) (-2780 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *9))))))))) (-5 *1 (-931 *9 *10 *11 *12)))) (-4421 (*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)))) (-3217 (*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)))) (-2499 (*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)))) (-3726 (*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)))) (-2878 (*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)))) (-4087 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4006 (-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)))) (-2417 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4006 (-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)))) (-2119 (*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)))) (-2772 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2415 (-695 (-413 (-959 *4)))) (|:| |vec| (-650 (-413 (-959 *4)))) (|:| -4006 (-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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *4))))))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-2692 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1277 (-413 (-959 *4)))) (|:| -1972 (-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)))) (-2630 (*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 (|:| -4006 (-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)))) (-4215 (*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)))) (-2697 (*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)))) (-1818 (*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)))) (-2828 (*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)))) (-2828 (*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)))) (-2828 (*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)))) (-2641 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *8)))))))))) (|:| |rgsz| (-570)))) (-5 *1 (-931 *8 *9 *10 *11)) (-5 *7 (-570)))) (-3578 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *4)))))))))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-3434 (*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)))) (|:| -1972 (-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)))) (-4007 (*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)))) (-4007 (*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)))) (-4007 (*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)))) (-4007 (*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)))) (-4007 (*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)))) (-4007 (*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)))) (-4007 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-4007 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *6)))))))))) (-5 *1 (-931 *6 *7 *8 *9)))) (-4007 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *6)))))))))) (-5 *1 (-931 *6 *7 *8 *9)) (-5 *4 (-650 *9)))) (-4007 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *4)))))))))) (-5 *1 (-931 *4 *5 *6 *7)))) (-4007 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-4007 (*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)))) (|:| -1972 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
-(-10 -7 (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928))) (-15 -4007 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928))) (-15 -4007 ((-570) (-695 |#4|) (-650 |#4|) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-650 (-1186)) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168))) (-15 -4007 ((-570) (-695 |#4|) (-928) (-1168))) (-15 -3434 ((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -3578 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -2641 ((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570))) (-15 -2828 ((-413 (-959 |#1|)) |#4|)) (-15 -2828 ((-695 (-413 (-959 |#1|))) (-695 |#4|))) (-15 -2828 ((-650 (-413 (-959 |#1|))) (-650 |#4|))) (-15 -1818 ((-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2697 (|#4| (-959 |#1|))) (-15 -4215 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|))) (-15 -2630 ((-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777))) (-15 -2692 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|))) (-15 -2772 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2415 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -4006 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-15 -2119 ((-650 |#4|) |#4|)) (-15 -2417 ((-777) (-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -4087 ((-777) (-650 (-2 (|:| -4006 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -2878 ((-650 (-650 |#4|)) (-650 (-650 |#4|)))) (-15 -3726 ((-650 (-650 (-570))) (-570) (-570))) (-15 -2499 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -3217 ((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777))) (-15 -4421 ((-695 |#4|) (-695 |#4|) (-650 |#4|))) (-15 -2780 ((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -1972 (-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 -1448 (|#4| |#4|)) (-15 -2042 ((-112) (-650 |#4|))) (-15 -2042 ((-112) (-650 (-959 |#1|)))))
-((-4245 (((-934) |#1| (-1186)) 17) (((-934) |#1| (-1186) (-1103 (-227))) 21)) (-2257 (((-934) |#1| |#1| (-1186) (-1103 (-227))) 19) (((-934) |#1| (-1186) (-1103 (-227))) 15)))
-(((-932 |#1|) (-10 -7 (-15 -2257 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -2257 ((-934) |#1| |#1| (-1186) (-1103 (-227)))) (-15 -4245 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -4245 ((-934) |#1| (-1186)))) (-620 (-542))) (T -932))
-((-4245 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-4245 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-2257 (*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))))) (-2257 (*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 -2257 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -2257 ((-934) |#1| |#1| (-1186) (-1103 (-227)))) (-15 -4245 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -4245 ((-934) |#1| (-1186))))
-((-2565 (($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 121)) (-1489 (((-1103 (-227)) $) 64)) (-1477 (((-1103 (-227)) $) 63)) (-3841 (((-1103 (-227)) $) 62)) (-3953 (((-650 (-650 (-227))) $) 69)) (-1548 (((-1103 (-227)) $) 65)) (-4321 (((-570) (-570)) 57)) (-3343 (((-570) (-570)) 52)) (-4368 (((-570) (-570)) 55)) (-3762 (((-112) (-112)) 59)) (-1564 (((-570)) 56)) (-1401 (($ $ (-1103 (-227))) 124) (($ $) 125)) (-1368 (($ (-1 (-950 (-227)) (-227)) (-1103 (-227))) 131) (($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 132)) (-2257 (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227))) 134) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 135) (($ $ (-1103 (-227))) 127)) (-4261 (((-570)) 60)) (-1467 (((-570)) 50)) (-1446 (((-570)) 53)) (-3778 (((-650 (-650 (-950 (-227)))) $) 151)) (-2975 (((-112) (-112)) 61)) (-3799 (((-868) $) 149)) (-2833 (((-112)) 58)))
-(((-933) (-13 (-983) (-10 -8 (-15 -1368 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -1368 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2257 ($ $ (-1103 (-227)))) (-15 -2565 ($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1401 ($ $ (-1103 (-227)))) (-15 -1401 ($ $)) (-15 -1548 ((-1103 (-227)) $)) (-15 -3953 ((-650 (-650 (-227))) $)) (-15 -1467 ((-570))) (-15 -3343 ((-570) (-570))) (-15 -1446 ((-570))) (-15 -4368 ((-570) (-570))) (-15 -1564 ((-570))) (-15 -4321 ((-570) (-570))) (-15 -2833 ((-112))) (-15 -3762 ((-112) (-112))) (-15 -4261 ((-570))) (-15 -2975 ((-112) (-112)))))) (T -933))
-((-1368 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-1368 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-2257 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-2257 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-2257 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-2565 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-1401 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-1401 (*1 *1 *1) (-5 *1 (-933))) (-1548 (*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-3953 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-933)))) (-1467 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-3343 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-1446 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-4368 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-1564 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-4321 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-2833 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))) (-3762 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))) (-4261 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-2975 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
-(-13 (-983) (-10 -8 (-15 -1368 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -1368 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2257 ($ $ (-1103 (-227)))) (-15 -2565 ($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1401 ($ $ (-1103 (-227)))) (-15 -1401 ($ $)) (-15 -1548 ((-1103 (-227)) $)) (-15 -3953 ((-650 (-650 (-227))) $)) (-15 -1467 ((-570))) (-15 -3343 ((-570) (-570))) (-15 -1446 ((-570))) (-15 -4368 ((-570) (-570))) (-15 -1564 ((-570))) (-15 -4321 ((-570) (-570))) (-15 -2833 ((-112))) (-15 -3762 ((-112) (-112))) (-15 -4261 ((-570))) (-15 -2975 ((-112) (-112)))))
-((-2565 (($ $ (-1103 (-227))) 122) (($ $ (-1103 (-227)) (-1103 (-227))) 123)) (-1477 (((-1103 (-227)) $) 73)) (-3841 (((-1103 (-227)) $) 72)) (-1548 (((-1103 (-227)) $) 74)) (-3010 (((-570) (-570)) 66)) (-2183 (((-570) (-570)) 61)) (-3130 (((-570) (-570)) 64)) (-2473 (((-112) (-112)) 68)) (-1498 (((-570)) 65)) (-1401 (($ $ (-1103 (-227))) 126) (($ $) 127)) (-1368 (($ (-1 (-950 (-227)) (-227)) (-1103 (-227))) 141) (($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 142)) (-4245 (($ (-1 (-227) (-227)) (-1103 (-227))) 149) (($ (-1 (-227) (-227))) 153)) (-2257 (($ (-1 (-227) (-227)) (-1103 (-227))) 137) (($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227))) 138) (($ (-650 (-1 (-227) (-227))) (-1103 (-227))) 146) (($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227))) 147) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227))) 139) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 140) (($ $ (-1103 (-227))) 128)) (-2799 (((-112) $) 69)) (-1967 (((-570)) 70)) (-4198 (((-570)) 59)) (-2586 (((-570)) 62)) (-3778 (((-650 (-650 (-950 (-227)))) $) 35)) (-2932 (((-112) (-112)) 71)) (-3799 (((-868) $) 167)) (-1536 (((-112)) 67)))
-(((-934) (-13 (-962) (-10 -8 (-15 -2257 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2257 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)))) (-15 -2257 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1368 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -1368 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -4245 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -4245 ($ (-1 (-227) (-227)))) (-15 -2257 ($ $ (-1103 (-227)))) (-15 -2799 ((-112) $)) (-15 -2565 ($ $ (-1103 (-227)))) (-15 -2565 ($ $ (-1103 (-227)) (-1103 (-227)))) (-15 -1401 ($ $ (-1103 (-227)))) (-15 -1401 ($ $)) (-15 -1548 ((-1103 (-227)) $)) (-15 -4198 ((-570))) (-15 -2183 ((-570) (-570))) (-15 -2586 ((-570))) (-15 -3130 ((-570) (-570))) (-15 -1498 ((-570))) (-15 -3010 ((-570) (-570))) (-15 -1536 ((-112))) (-15 -2473 ((-112) (-112))) (-15 -1967 ((-570))) (-15 -2932 ((-112) (-112)))))) (T -934))
-((-2257 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2257 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2257 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2257 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2257 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2257 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1368 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1368 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-4245 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-4245 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-934)))) (-2257 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2799 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-2565 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2565 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-1401 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-1401 (*1 *1 *1) (-5 *1 (-934))) (-1548 (*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-4198 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2183 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2586 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-3130 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-1498 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-3010 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-1536 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-2473 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-1967 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2932 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(-13 (-962) (-10 -8 (-15 -2257 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2257 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)))) (-15 -2257 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2257 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1368 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -1368 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -4245 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -4245 ($ (-1 (-227) (-227)))) (-15 -2257 ($ $ (-1103 (-227)))) (-15 -2799 ((-112) $)) (-15 -2565 ($ $ (-1103 (-227)))) (-15 -2565 ($ $ (-1103 (-227)) (-1103 (-227)))) (-15 -1401 ($ $ (-1103 (-227)))) (-15 -1401 ($ $)) (-15 -1548 ((-1103 (-227)) $)) (-15 -4198 ((-570))) (-15 -2183 ((-570) (-570))) (-15 -2586 ((-570))) (-15 -3130 ((-570) (-570))) (-15 -1498 ((-570))) (-15 -3010 ((-570) (-570))) (-15 -1536 ((-112))) (-15 -2473 ((-112) (-112))) (-15 -1967 ((-570))) (-15 -2932 ((-112) (-112)))))
-((-4344 (((-650 (-1103 (-227))) (-650 (-650 (-950 (-227))))) 34)))
-(((-935) (-10 -7 (-15 -4344 ((-650 (-1103 (-227))) (-650 (-650 (-950 (-227)))))))) (T -935))
-((-4344 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-1103 (-227)))) (-5 *1 (-935)))))
-(-10 -7 (-15 -4344 ((-650 (-1103 (-227))) (-650 (-650 (-950 (-227)))))))
-((-3601 ((|#2| |#2|) 28)) (-4192 ((|#2| |#2|) 29)) (-3725 ((|#2| |#2|) 27)) (-3683 ((|#2| |#2| (-512)) 26)))
-(((-936 |#1| |#2|) (-10 -7 (-15 -3683 (|#2| |#2| (-512))) (-15 -3725 (|#2| |#2|)) (-15 -3601 (|#2| |#2|)) (-15 -4192 (|#2| |#2|))) (-1109) (-436 |#1|)) (T -936))
-((-4192 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3601 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3725 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3683 (*1 *2 *2 *3) (-12 (-5 *3 (-512)) (-4 *4 (-1109)) (-5 *1 (-936 *4 *2)) (-4 *2 (-436 *4)))))
-(-10 -7 (-15 -3683 (|#2| |#2| (-512))) (-15 -3725 (|#2| |#2|)) (-15 -3601 (|#2| |#2|)) (-15 -4192 (|#2| |#2|)))
-((-3601 (((-320 (-570)) (-1186)) 16)) (-4192 (((-320 (-570)) (-1186)) 14)) (-3725 (((-320 (-570)) (-1186)) 12)) (-3683 (((-320 (-570)) (-1186) (-512)) 19)))
-(((-937) (-10 -7 (-15 -3683 ((-320 (-570)) (-1186) (-512))) (-15 -3725 ((-320 (-570)) (-1186))) (-15 -3601 ((-320 (-570)) (-1186))) (-15 -4192 ((-320 (-570)) (-1186))))) (T -937))
-((-4192 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3601 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3725 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3683 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-512)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))))
-(-10 -7 (-15 -3683 ((-320 (-570)) (-1186) (-512))) (-15 -3725 ((-320 (-570)) (-1186))) (-15 -3601 ((-320 (-570)) (-1186))) (-15 -4192 ((-320 (-570)) (-1186))))
-((-2842 (((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|)) 25)) (-2188 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
-(((-938 |#1| |#2| |#3|) (-10 -7 (-15 -2188 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2842 ((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-893 |#1|) (-13 (-1109) (-1047 |#2|))) (T -938))
-((-2842 (*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)))) (-2188 (*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 -2188 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -2842 ((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|))))
-((-2842 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 30)))
-(((-939 |#1| |#2| |#3|) (-10 -7 (-15 -2842 ((-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))
-((-2842 (*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 -2842 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))
-((-2842 (((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|)) 13)))
-(((-940 |#1|) (-10 -7 (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|)))) (-551)) (T -940))
-((-2842 (*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 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))))
-((-2842 (((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|)) 57)))
-(((-941 |#1| |#2|) (-10 -7 (-15 -2842 ((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|)))) (-1109) (-13 (-1109) (-1047 (-618 $)) (-620 (-899 |#1|)) (-893 |#1|))) (T -941))
-((-2842 (*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 -2842 ((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|))))
-((-2842 (((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|)) 17)))
-(((-942 |#1| |#2| |#3|) (-10 -7 (-15 -2842 ((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|)))) (-1109) (-893 |#1|) (-672 |#2|)) (T -942))
-((-2842 (*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 -2842 ((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|))))
-((-2842 (((-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 -2842 ((-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 -2842 ((-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))
-((-2842 (*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)))) (-2842 (*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 -2842 ((-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 -2842 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|))) |%noBranch|))
-((-4268 ((|#2| |#2| (-650 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
-(((-944 |#1| |#2| |#3|) (-10 -7 (-15 -4268 (|#2| |#2| (-1 (-112) |#3|))) (-15 -4268 (|#2| |#2| (-650 (-1 (-112) |#3|))))) (-1109) (-436 |#1|) (-1227)) (T -944))
-((-4268 (*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)))) (-4268 (*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 -4268 (|#2| |#2| (-1 (-112) |#3|))) (-15 -4268 (|#2| |#2| (-650 (-1 (-112) |#3|)))))
-((-4268 (((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|))) 18) (((-320 (-570)) (-1186) (-1 (-112) |#1|)) 15)))
-(((-945 |#1|) (-10 -7 (-15 -4268 ((-320 (-570)) (-1186) (-1 (-112) |#1|))) (-15 -4268 ((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|))))) (-1227)) (T -945))
-((-4268 (*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)))) (-4268 (*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 -4268 ((-320 (-570)) (-1186) (-1 (-112) |#1|))) (-15 -4268 ((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|)))))
-((-2842 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 25)))
-(((-946 |#1| |#2| |#3|) (-10 -7 (-15 -2842 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-13 (-562) (-893 |#1|) (-620 (-899 |#1|))) (-1001 |#2|)) (T -946))
-((-2842 (*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 -2842 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))
-((-2842 (((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186))) 18)))
-(((-947 |#1|) (-10 -7 (-15 -2842 ((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186))))) (-1109)) (T -947))
-((-2842 (*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 -2842 ((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186)))))
-((-2551 (((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) 34)) (-2842 (((-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 -2842 ((-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 -2551 ((-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))
-((-2551 (*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)))) (-2842 (*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 -2842 ((-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 -2551 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))))
-((-4016 (((-1182 (-413 (-570))) (-570)) 79)) (-2100 (((-1182 (-570)) (-570)) 82)) (-2159 (((-1182 (-570)) (-570)) 76)) (-3169 (((-570) (-1182 (-570))) 72)) (-2953 (((-1182 (-413 (-570))) (-570)) 65)) (-2810 (((-1182 (-570)) (-570)) 49)) (-2228 (((-1182 (-570)) (-570)) 84)) (-3286 (((-1182 (-570)) (-570)) 83)) (-1685 (((-1182 (-413 (-570))) (-570)) 67)))
-(((-949) (-10 -7 (-15 -1685 ((-1182 (-413 (-570))) (-570))) (-15 -3286 ((-1182 (-570)) (-570))) (-15 -2228 ((-1182 (-570)) (-570))) (-15 -2810 ((-1182 (-570)) (-570))) (-15 -2953 ((-1182 (-413 (-570))) (-570))) (-15 -3169 ((-570) (-1182 (-570)))) (-15 -2159 ((-1182 (-570)) (-570))) (-15 -2100 ((-1182 (-570)) (-570))) (-15 -4016 ((-1182 (-413 (-570))) (-570))))) (T -949))
-((-4016 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2100 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2159 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-3169 (*1 *2 *3) (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-570)) (-5 *1 (-949)))) (-2953 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2810 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2228 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-3286 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-1685 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(-10 -7 (-15 -1685 ((-1182 (-413 (-570))) (-570))) (-15 -3286 ((-1182 (-570)) (-570))) (-15 -2228 ((-1182 (-570)) (-570))) (-15 -2810 ((-1182 (-570)) (-570))) (-15 -2953 ((-1182 (-413 (-570))) (-570))) (-15 -3169 ((-570) (-1182 (-570)))) (-15 -2159 ((-1182 (-570)) (-570))) (-15 -2100 ((-1182 (-570)) (-570))) (-15 -4016 ((-1182 (-413 (-570))) (-570))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3504 (($ (-777)) NIL (|has| |#1| (-23)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-4027 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3377 (($ (-650 |#1|)) 9)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1378 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4291 (($ (-777) |#1|) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4202 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3231 (((-112) $ (-777)) NIL)) (-1355 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) NIL (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-2431 (($ $ (-650 |#1|)) 25)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 18) (($ $ (-1244 (-570))) NIL)) (-2609 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-2951 (((-928) $) 13)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3432 (($ $ $) 23)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542)))) (($ (-650 |#1|)) 14)) (-3811 (($ (-650 |#1|)) NIL)) (-2584 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 24) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3111 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3101 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2569 (((-777) $) 11 (|has| $ (-6 -4449)))))
+((-2975 ((|#2| (-650 |#1|) (-650 |#1|)) 28)))
+(((-929 |#1| |#2|) (-10 -7 (-15 -2975 (|#2| (-650 |#1|) (-650 |#1|)))) (-368) (-1253 |#1|)) (T -929))
+((-2975 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-4 *2 (-1253 *4)) (-5 *1 (-929 *4 *2)))))
+(-10 -7 (-15 -2975 (|#2| (-650 |#1|) (-650 |#1|))))
+((-3263 (((-1182 |#2|) (-650 |#2|) (-650 |#2|)) 17) (((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|)) 13)))
+(((-930 |#1| |#2|) (-10 -7 (-15 -3263 ((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|))) (-15 -3263 ((-1182 |#2|) (-650 |#2|) (-650 |#2|)))) (-1186) (-368)) (T -930))
+((-3263 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *5)) (-4 *5 (-368)) (-5 *2 (-1182 *5)) (-5 *1 (-930 *4 *5)) (-14 *4 (-1186)))) (-3263 (*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 -3263 ((-1250 |#1| |#2|) (-1250 |#1| |#2|) (-650 |#2|) (-650 |#2|))) (-15 -3263 ((-1182 |#2|) (-650 |#2|) (-650 |#2|))))
+((-3413 (((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168)) 174)) (-1635 ((|#4| |#4|) 193)) (-3000 (((-650 (-413 (-959 |#1|))) (-650 (-1186))) 146)) (-2314 (((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-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)) (-2706 (((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|)) 69)) (-3617 (((-695 |#4|) (-695 |#4|) (-650 |#4|)) 65)) (-2329 (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168)) 186)) (-3956 (((-570) (-695 |#4|) (-928) (-1168)) 166) (((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168)) 165) (((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168)) 164) (((-570) (-695 |#4|) (-1168)) 154) (((-570) (-695 |#4|) (-650 (-1186)) (-1168)) 153) (((-570) (-695 |#4|) (-650 |#4|) (-1168)) 152) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928)) 151) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928)) 150) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928)) 149) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|)) 148) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186))) 147) (((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|)) 143)) (-2748 ((|#4| (-959 |#1|)) 80)) (-1348 (((-112) (-650 |#4|) (-650 (-650 |#4|))) 190)) (-4296 (((-650 (-650 (-570))) (-570) (-570)) 159)) (-1957 (((-650 (-650 |#4|)) (-650 (-650 |#4|))) 106)) (-3586 (((-777) (-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|))))) 100)) (-3013 (((-777) (-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|))))) 99)) (-3352 (((-112) (-650 (-959 |#1|))) 19) (((-112) (-650 |#4|)) 15)) (-2341 (((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|)) 84)) (-2978 (((-650 |#4|) |#4|) 57)) (-1385 (((-650 (-413 (-959 |#1|))) (-650 |#4|)) 142) (((-695 (-413 (-959 |#1|))) (-695 |#4|)) 66) (((-413 (-959 |#1|)) |#4|) 139)) (-3393 (((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570)) 112)) (-3289 (((-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777)) 98)) (-2072 (((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777)) 121)) (-2250 (((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2990 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -4009 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) 56)))
+(((-931 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928))) (-15 -3956 ((-570) (-695 |#4|) (-650 |#4|) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-650 (-1186)) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-928) (-1168))) (-15 -3413 ((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -2329 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -3393 ((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570))) (-15 -1385 ((-413 (-959 |#1|)) |#4|)) (-15 -1385 ((-695 (-413 (-959 |#1|))) (-695 |#4|))) (-15 -1385 ((-650 (-413 (-959 |#1|))) (-650 |#4|))) (-15 -3000 ((-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2748 (|#4| (-959 |#1|))) (-15 -2341 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|))) (-15 -3289 ((-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777))) (-15 -2706 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|))) (-15 -2250 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2990 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -4009 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-15 -2978 ((-650 |#4|) |#4|)) (-15 -3013 ((-777) (-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -3586 ((-777) (-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -1957 ((-650 (-650 |#4|)) (-650 (-650 |#4|)))) (-15 -4296 ((-650 (-650 (-570))) (-570) (-570))) (-15 -1348 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -2072 ((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777))) (-15 -3617 ((-695 |#4|) (-695 |#4|) (-650 |#4|))) (-15 -2314 ((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-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 -1635 (|#4| |#4|)) (-15 -3352 ((-112) (-650 |#4|))) (-15 -3352 ((-112) (-650 (-959 |#1|))))) (-13 (-311) (-148)) (-13 (-856) (-620 (-1186))) (-799) (-956 |#1| |#3| |#2|)) (T -931))
+((-3352 (*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)))) (-3352 (*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)))) (-1635 (*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)))) (-2314 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *9))))))))) (-5 *1 (-931 *9 *10 *11 *12)))) (-3617 (*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)))) (-2072 (*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)))) (-1348 (*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)))) (-4296 (*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)))) (-1957 (*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)))) (-3586 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4009 (-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)))) (-3013 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4009 (-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)))) (-2978 (*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)))) (-2250 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -2990 (-695 (-413 (-959 *4)))) (|:| |vec| (-650 (-413 (-959 *4)))) (|:| -4009 (-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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *4))))))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-2706 (*1 *2 *2 *3) (-12 (-5 *2 (-2 (|:| |partsol| (-1277 (-413 (-959 *4)))) (|:| -3827 (-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)))) (-3289 (*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 (|:| -4009 (-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)))) (-2341 (*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)))) (-2748 (*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)))) (-3000 (*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)))) (-1385 (*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)))) (-1385 (*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)))) (-1385 (*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)))) (-3393 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *8)))))))))) (|:| |rgsz| (-570)))) (-5 *1 (-931 *8 *9 *10 *11)) (-5 *7 (-570)))) (-2329 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *4)))))))))) (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))) (-3413 (*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)))) (|:| -3827 (-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)))) (-3956 (*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)))) (-3956 (*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)))) (-3956 (*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)))) (-3956 (*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)))) (-3956 (*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)))) (-3956 (*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)))) (-3956 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-3956 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *6)))))))))) (-5 *1 (-931 *6 *7 *8 *9)))) (-3956 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *6)))))))))) (-5 *1 (-931 *6 *7 *8 *9)) (-5 *4 (-650 *9)))) (-3956 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *4)))))))))) (-5 *1 (-931 *4 *5 *6 *7)))) (-3956 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)))) (-3956 (*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)))) (|:| -3827 (-650 (-1277 (-413 (-959 *5)))))))))) (-5 *1 (-931 *5 *6 *7 *8)) (-5 *4 (-650 *8)))))
+(-10 -7 (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 |#4|) (-928))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-650 (-1186)) (-928))) (-15 -3956 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-695 |#4|) (-928))) (-15 -3956 ((-570) (-695 |#4|) (-650 |#4|) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-650 (-1186)) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-650 |#4|) (-928) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-650 (-1186)) (-928) (-1168))) (-15 -3956 ((-570) (-695 |#4|) (-928) (-1168))) (-15 -3413 ((-570) (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -2329 ((-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|))))))))) (-1168))) (-15 -3393 ((-2 (|:| |rgl| (-650 (-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))))))) (|:| |rgsz| (-570))) (-695 |#4|) (-650 (-413 (-959 |#1|))) (-777) (-1168) (-570))) (-15 -1385 ((-413 (-959 |#1|)) |#4|)) (-15 -1385 ((-695 (-413 (-959 |#1|))) (-695 |#4|))) (-15 -1385 ((-650 (-413 (-959 |#1|))) (-650 |#4|))) (-15 -3000 ((-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2748 (|#4| (-959 |#1|))) (-15 -2341 ((-2 (|:| |sysok| (-112)) (|:| |z0| (-650 |#4|)) (|:| |n0| (-650 |#4|))) (-650 |#4|) (-650 |#4|))) (-15 -3289 ((-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))) (-695 |#4|) (-777))) (-15 -2706 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-650 |#4|))) (-15 -2250 ((-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-650 (-1277 (-413 (-959 |#1|)))))) (-2 (|:| -2990 (-695 (-413 (-959 |#1|)))) (|:| |vec| (-650 (-413 (-959 |#1|)))) (|:| -4009 (-777)) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (-15 -2978 ((-650 |#4|) |#4|)) (-15 -3013 ((-777) (-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -3586 ((-777) (-650 (-2 (|:| -4009 (-777)) (|:| |eqns| (-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570)))))) (|:| |fgb| (-650 |#4|)))))) (-15 -1957 ((-650 (-650 |#4|)) (-650 (-650 |#4|)))) (-15 -4296 ((-650 (-650 (-570))) (-570) (-570))) (-15 -1348 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -2072 ((-650 (-2 (|:| |det| |#4|) (|:| |rows| (-650 (-570))) (|:| |cols| (-650 (-570))))) (-695 |#4|) (-777))) (-15 -3617 ((-695 |#4|) (-695 |#4|) (-650 |#4|))) (-15 -2314 ((-2 (|:| |eqzro| (-650 |#4|)) (|:| |neqzro| (-650 |#4|)) (|:| |wcond| (-650 (-959 |#1|))) (|:| |bsoln| (-2 (|:| |partsol| (-1277 (-413 (-959 |#1|)))) (|:| -3827 (-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 -1635 (|#4| |#4|)) (-15 -3352 ((-112) (-650 |#4|))) (-15 -3352 ((-112) (-650 (-959 |#1|)))))
+((-2629 (((-934) |#1| (-1186)) 17) (((-934) |#1| (-1186) (-1103 (-227))) 21)) (-1956 (((-934) |#1| |#1| (-1186) (-1103 (-227))) 19) (((-934) |#1| (-1186) (-1103 (-227))) 15)))
+(((-932 |#1|) (-10 -7 (-15 -1956 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -1956 ((-934) |#1| |#1| (-1186) (-1103 (-227)))) (-15 -2629 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -2629 ((-934) |#1| (-1186)))) (-620 (-542))) (T -932))
+((-2629 (*1 *2 *3 *4) (-12 (-5 *4 (-1186)) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-2629 (*1 *2 *3 *4 *5) (-12 (-5 *4 (-1186)) (-5 *5 (-1103 (-227))) (-5 *2 (-934)) (-5 *1 (-932 *3)) (-4 *3 (-620 (-542))))) (-1956 (*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))))) (-1956 (*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 -1956 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -1956 ((-934) |#1| |#1| (-1186) (-1103 (-227)))) (-15 -2629 ((-934) |#1| (-1186) (-1103 (-227)))) (-15 -2629 ((-934) |#1| (-1186))))
+((-3898 (($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 121)) (-1490 (((-1103 (-227)) $) 64)) (-1478 (((-1103 (-227)) $) 63)) (-3844 (((-1103 (-227)) $) 62)) (-1536 (((-650 (-650 (-227))) $) 69)) (-2235 (((-1103 (-227)) $) 65)) (-3920 (((-570) (-570)) 57)) (-3882 (((-570) (-570)) 52)) (-4352 (((-570) (-570)) 55)) (-3446 (((-112) (-112)) 59)) (-2406 (((-570)) 56)) (-3963 (($ $ (-1103 (-227))) 124) (($ $) 125)) (-3166 (($ (-1 (-950 (-227)) (-227)) (-1103 (-227))) 131) (($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 132)) (-1956 (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227))) 134) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 135) (($ $ (-1103 (-227))) 127)) (-1489 (((-570)) 60)) (-2670 (((-570)) 50)) (-1609 (((-570)) 53)) (-3604 (((-650 (-650 (-950 (-227)))) $) 151)) (-1486 (((-112) (-112)) 61)) (-3802 (((-868) $) 149)) (-1452 (((-112)) 58)))
+(((-933) (-13 (-983) (-10 -8 (-15 -3166 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -3166 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1956 ($ $ (-1103 (-227)))) (-15 -3898 ($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3963 ($ $ (-1103 (-227)))) (-15 -3963 ($ $)) (-15 -2235 ((-1103 (-227)) $)) (-15 -1536 ((-650 (-650 (-227))) $)) (-15 -2670 ((-570))) (-15 -3882 ((-570) (-570))) (-15 -1609 ((-570))) (-15 -4352 ((-570) (-570))) (-15 -2406 ((-570))) (-15 -3920 ((-570) (-570))) (-15 -1452 ((-112))) (-15 -3446 ((-112) (-112))) (-15 -1489 ((-570))) (-15 -1486 ((-112) (-112)))))) (T -933))
+((-3166 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-3166 (*1 *1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-1956 (*1 *1 *2 *2 *2 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-1956 (*1 *1 *2 *2 *2 *2 *3 *3 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-933)))) (-1956 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-3898 (*1 *1 *1 *2 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-3963 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-3963 (*1 *1 *1) (-5 *1 (-933))) (-2235 (*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-933)))) (-1536 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-933)))) (-2670 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-3882 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-1609 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-4352 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-2406 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-3920 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-1452 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))) (-3446 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))) (-1489 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))) (-1486 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+(-13 (-983) (-10 -8 (-15 -3166 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -3166 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1956 ($ $ (-1103 (-227)))) (-15 -3898 ($ $ (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3963 ($ $ (-1103 (-227)))) (-15 -3963 ($ $)) (-15 -2235 ((-1103 (-227)) $)) (-15 -1536 ((-650 (-650 (-227))) $)) (-15 -2670 ((-570))) (-15 -3882 ((-570) (-570))) (-15 -1609 ((-570))) (-15 -4352 ((-570) (-570))) (-15 -2406 ((-570))) (-15 -3920 ((-570) (-570))) (-15 -1452 ((-112))) (-15 -3446 ((-112) (-112))) (-15 -1489 ((-570))) (-15 -1486 ((-112) (-112)))))
+((-3898 (($ $ (-1103 (-227))) 122) (($ $ (-1103 (-227)) (-1103 (-227))) 123)) (-1478 (((-1103 (-227)) $) 73)) (-3844 (((-1103 (-227)) $) 72)) (-2235 (((-1103 (-227)) $) 74)) (-1893 (((-570) (-570)) 66)) (-2428 (((-570) (-570)) 61)) (-3654 (((-570) (-570)) 64)) (-2402 (((-112) (-112)) 68)) (-2967 (((-570)) 65)) (-3963 (($ $ (-1103 (-227))) 126) (($ $) 127)) (-3166 (($ (-1 (-950 (-227)) (-227)) (-1103 (-227))) 141) (($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 142)) (-2629 (($ (-1 (-227) (-227)) (-1103 (-227))) 149) (($ (-1 (-227) (-227))) 153)) (-1956 (($ (-1 (-227) (-227)) (-1103 (-227))) 137) (($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227))) 138) (($ (-650 (-1 (-227) (-227))) (-1103 (-227))) 146) (($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227))) 147) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227))) 139) (($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227))) 140) (($ $ (-1103 (-227))) 128)) (-2460 (((-112) $) 69)) (-3779 (((-570)) 70)) (-2190 (((-570)) 59)) (-4058 (((-570)) 62)) (-3604 (((-650 (-650 (-950 (-227)))) $) 35)) (-2935 (((-112) (-112)) 71)) (-3802 (((-868) $) 167)) (-2116 (((-112)) 67)))
+(((-934) (-13 (-962) (-10 -8 (-15 -1956 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1956 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)))) (-15 -1956 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3166 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -3166 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2629 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2629 ($ (-1 (-227) (-227)))) (-15 -1956 ($ $ (-1103 (-227)))) (-15 -2460 ((-112) $)) (-15 -3898 ($ $ (-1103 (-227)))) (-15 -3898 ($ $ (-1103 (-227)) (-1103 (-227)))) (-15 -3963 ($ $ (-1103 (-227)))) (-15 -3963 ($ $)) (-15 -2235 ((-1103 (-227)) $)) (-15 -2190 ((-570))) (-15 -2428 ((-570) (-570))) (-15 -4058 ((-570))) (-15 -3654 ((-570) (-570))) (-15 -2967 ((-570))) (-15 -1893 ((-570) (-570))) (-15 -2116 ((-112))) (-15 -2402 ((-112) (-112))) (-15 -3779 ((-570))) (-15 -2935 ((-112) (-112)))))) (T -934))
+((-1956 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1956 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1956 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1956 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-1 (-227) (-227)))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1956 (*1 *1 *2 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-1956 (*1 *1 *2 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3166 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-3166 (*1 *1 *2 *3 *3 *3) (-12 (-5 *2 (-1 (-950 (-227)) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2629 (*1 *1 *2 *3) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *3 (-1103 (-227))) (-5 *1 (-934)))) (-2629 (*1 *1 *2) (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-934)))) (-1956 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2460 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-3898 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-3898 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-3963 (*1 *1 *1 *2) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-3963 (*1 *1 *1) (-5 *1 (-934))) (-2235 (*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))) (-2190 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2428 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-4058 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-3654 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2967 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-1893 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2116 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-2402 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))) (-3779 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))) (-2935 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(-13 (-962) (-10 -8 (-15 -1956 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -1956 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)))) (-15 -1956 ($ (-650 (-1 (-227) (-227))) (-1103 (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)))) (-15 -1956 ($ (-1 (-227) (-227)) (-1 (-227) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -3166 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)))) (-15 -3166 ($ (-1 (-950 (-227)) (-227)) (-1103 (-227)) (-1103 (-227)) (-1103 (-227)))) (-15 -2629 ($ (-1 (-227) (-227)) (-1103 (-227)))) (-15 -2629 ($ (-1 (-227) (-227)))) (-15 -1956 ($ $ (-1103 (-227)))) (-15 -2460 ((-112) $)) (-15 -3898 ($ $ (-1103 (-227)))) (-15 -3898 ($ $ (-1103 (-227)) (-1103 (-227)))) (-15 -3963 ($ $ (-1103 (-227)))) (-15 -3963 ($ $)) (-15 -2235 ((-1103 (-227)) $)) (-15 -2190 ((-570))) (-15 -2428 ((-570) (-570))) (-15 -4058 ((-570))) (-15 -3654 ((-570) (-570))) (-15 -2967 ((-570))) (-15 -1893 ((-570) (-570))) (-15 -2116 ((-112))) (-15 -2402 ((-112) (-112))) (-15 -3779 ((-570))) (-15 -2935 ((-112) (-112)))))
+((-4117 (((-650 (-1103 (-227))) (-650 (-650 (-950 (-227))))) 34)))
+(((-935) (-10 -7 (-15 -4117 ((-650 (-1103 (-227))) (-650 (-650 (-950 (-227)))))))) (T -935))
+((-4117 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-1103 (-227)))) (-5 *1 (-935)))))
+(-10 -7 (-15 -4117 ((-650 (-1103 (-227))) (-650 (-650 (-950 (-227)))))))
+((-3603 ((|#2| |#2|) 28)) (-4197 ((|#2| |#2|) 29)) (-3728 ((|#2| |#2|) 27)) (-3686 ((|#2| |#2| (-512)) 26)))
+(((-936 |#1| |#2|) (-10 -7 (-15 -3686 (|#2| |#2| (-512))) (-15 -3728 (|#2| |#2|)) (-15 -3603 (|#2| |#2|)) (-15 -4197 (|#2| |#2|))) (-1109) (-436 |#1|)) (T -936))
+((-4197 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3603 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3728 (*1 *2 *2) (-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3)))) (-3686 (*1 *2 *2 *3) (-12 (-5 *3 (-512)) (-4 *4 (-1109)) (-5 *1 (-936 *4 *2)) (-4 *2 (-436 *4)))))
+(-10 -7 (-15 -3686 (|#2| |#2| (-512))) (-15 -3728 (|#2| |#2|)) (-15 -3603 (|#2| |#2|)) (-15 -4197 (|#2| |#2|)))
+((-3603 (((-320 (-570)) (-1186)) 16)) (-4197 (((-320 (-570)) (-1186)) 14)) (-3728 (((-320 (-570)) (-1186)) 12)) (-3686 (((-320 (-570)) (-1186) (-512)) 19)))
+(((-937) (-10 -7 (-15 -3686 ((-320 (-570)) (-1186) (-512))) (-15 -3728 ((-320 (-570)) (-1186))) (-15 -3603 ((-320 (-570)) (-1186))) (-15 -4197 ((-320 (-570)) (-1186))))) (T -937))
+((-4197 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3603 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3728 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))) (-3686 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-512)) (-5 *2 (-320 (-570))) (-5 *1 (-937)))))
+(-10 -7 (-15 -3686 ((-320 (-570)) (-1186) (-512))) (-15 -3728 ((-320 (-570)) (-1186))) (-15 -3603 ((-320 (-570)) (-1186))) (-15 -4197 ((-320 (-570)) (-1186))))
+((-1557 (((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|)) 25)) (-2470 (((-1 (-112) |#2|) (-1 (-112) |#3|)) 13)))
+(((-938 |#1| |#2| |#3|) (-10 -7 (-15 -2470 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -1557 ((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-893 |#1|) (-13 (-1109) (-1047 |#2|))) (T -938))
+((-1557 (*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)))) (-2470 (*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 -2470 ((-1 (-112) |#2|) (-1 (-112) |#3|))) (-15 -1557 ((-896 |#1| |#3|) |#2| (-899 |#1|) (-896 |#1| |#3|))))
+((-1557 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 30)))
+(((-939 |#1| |#2| |#3|) (-10 -7 (-15 -1557 ((-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))
+((-1557 (*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 -1557 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))
+((-1557 (((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|)) 13)))
+(((-940 |#1|) (-10 -7 (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|)))) (-551)) (T -940))
+((-1557 (*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 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))))
+((-1557 (((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|)) 57)))
+(((-941 |#1| |#2|) (-10 -7 (-15 -1557 ((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|)))) (-1109) (-13 (-1109) (-1047 (-618 $)) (-620 (-899 |#1|)) (-893 |#1|))) (T -941))
+((-1557 (*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 -1557 ((-896 |#1| |#2|) (-618 |#2|) (-899 |#1|) (-896 |#1| |#2|))))
+((-1557 (((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|)) 17)))
+(((-942 |#1| |#2| |#3|) (-10 -7 (-15 -1557 ((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|)))) (-1109) (-893 |#1|) (-672 |#2|)) (T -942))
+((-1557 (*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 -1557 ((-892 |#1| |#2| |#3|) |#3| (-899 |#1|) (-892 |#1| |#2| |#3|))))
+((-1557 (((-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 -1557 ((-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 -1557 ((-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))
+((-1557 (*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)))) (-1557 (*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 -1557 ((-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 -1557 ((-896 |#1| |#5|) |#5| (-899 |#1|) (-896 |#1| |#5|))) |%noBranch|))
+((-4271 ((|#2| |#2| (-650 (-1 (-112) |#3|))) 12) ((|#2| |#2| (-1 (-112) |#3|)) 13)))
+(((-944 |#1| |#2| |#3|) (-10 -7 (-15 -4271 (|#2| |#2| (-1 (-112) |#3|))) (-15 -4271 (|#2| |#2| (-650 (-1 (-112) |#3|))))) (-1109) (-436 |#1|) (-1227)) (T -944))
+((-4271 (*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)))) (-4271 (*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 -4271 (|#2| |#2| (-1 (-112) |#3|))) (-15 -4271 (|#2| |#2| (-650 (-1 (-112) |#3|)))))
+((-4271 (((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|))) 18) (((-320 (-570)) (-1186) (-1 (-112) |#1|)) 15)))
+(((-945 |#1|) (-10 -7 (-15 -4271 ((-320 (-570)) (-1186) (-1 (-112) |#1|))) (-15 -4271 ((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|))))) (-1227)) (T -945))
+((-4271 (*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)))) (-4271 (*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 -4271 ((-320 (-570)) (-1186) (-1 (-112) |#1|))) (-15 -4271 ((-320 (-570)) (-1186) (-650 (-1 (-112) |#1|)))))
+((-1557 (((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)) 25)))
+(((-946 |#1| |#2| |#3|) (-10 -7 (-15 -1557 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))) (-1109) (-13 (-562) (-893 |#1|) (-620 (-899 |#1|))) (-1001 |#2|)) (T -946))
+((-1557 (*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 -1557 ((-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))))
+((-1557 (((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186))) 18)))
+(((-947 |#1|) (-10 -7 (-15 -1557 ((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186))))) (-1109)) (T -947))
+((-1557 (*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 -1557 ((-896 |#1| (-1186)) (-1186) (-899 |#1|) (-896 |#1| (-1186)))))
+((-1933 (((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|))) 34)) (-1557 (((-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 -1557 ((-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 -1933 ((-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))
+((-1933 (*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)))) (-1557 (*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 -1557 ((-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 -1933 ((-896 |#1| |#3|) (-650 |#3|) (-650 (-899 |#1|)) (-896 |#1| |#3|) (-1 (-896 |#1| |#3|) |#3| (-899 |#1|) (-896 |#1| |#3|)))))
+((-4045 (((-1182 (-413 (-570))) (-570)) 79)) (-2790 (((-1182 (-570)) (-570)) 82)) (-2172 (((-1182 (-570)) (-570)) 76)) (-2826 (((-570) (-1182 (-570))) 72)) (-4340 (((-1182 (-413 (-570))) (-570)) 65)) (-2555 (((-1182 (-570)) (-570)) 49)) (-1595 (((-1182 (-570)) (-570)) 84)) (-1442 (((-1182 (-570)) (-570)) 83)) (-4167 (((-1182 (-413 (-570))) (-570)) 67)))
+(((-949) (-10 -7 (-15 -4167 ((-1182 (-413 (-570))) (-570))) (-15 -1442 ((-1182 (-570)) (-570))) (-15 -1595 ((-1182 (-570)) (-570))) (-15 -2555 ((-1182 (-570)) (-570))) (-15 -4340 ((-1182 (-413 (-570))) (-570))) (-15 -2826 ((-570) (-1182 (-570)))) (-15 -2172 ((-1182 (-570)) (-570))) (-15 -2790 ((-1182 (-570)) (-570))) (-15 -4045 ((-1182 (-413 (-570))) (-570))))) (T -949))
+((-4045 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2790 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2172 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2826 (*1 *2 *3) (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-570)) (-5 *1 (-949)))) (-4340 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))) (-2555 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-1595 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-1442 (*1 *2 *3) (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))) (-4167 (*1 *2 *3) (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
+(-10 -7 (-15 -4167 ((-1182 (-413 (-570))) (-570))) (-15 -1442 ((-1182 (-570)) (-570))) (-15 -1595 ((-1182 (-570)) (-570))) (-15 -2555 ((-1182 (-570)) (-570))) (-15 -4340 ((-1182 (-413 (-570))) (-570))) (-15 -2826 ((-570) (-1182 (-570)))) (-15 -2172 ((-1182 (-570)) (-570))) (-15 -2790 ((-1182 (-570)) (-570))) (-15 -4045 ((-1182 (-413 (-570))) (-570))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3507 (($ (-777)) NIL (|has| |#1| (-23)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-4029 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3380 (($ (-650 |#1|)) 9)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-1379 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4294 (($ (-777) |#1|) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2234 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-2193 (((-112) $ (-777)) NIL)) (-1356 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) NIL (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-3152 (($ $ (-650 |#1|)) 25)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 18) (($ $ (-1244 (-570))) NIL)) (-4266 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-2517 (((-928) $) 13)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3385 (($ $ $) 23)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542)))) (($ (-650 |#1|)) 14)) (-3814 (($ (-650 |#1|)) NIL)) (-2585 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) 24) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3114 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3104 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2570 (((-777) $) 11 (|has| $ (-6 -4452)))))
(((-950 |#1|) (-989 |#1|) (-1058)) (T -950))
NIL
(-989 |#1|)
-((-3031 (((-487 |#1| |#2|) (-959 |#2|)) 22)) (-1443 (((-249 |#1| |#2|) (-959 |#2|)) 35)) (-1945 (((-959 |#2|) (-487 |#1| |#2|)) 27)) (-4292 (((-249 |#1| |#2|) (-487 |#1| |#2|)) 57)) (-3493 (((-959 |#2|) (-249 |#1| |#2|)) 32)) (-1620 (((-487 |#1| |#2|) (-249 |#1| |#2|)) 48)))
-(((-951 |#1| |#2|) (-10 -7 (-15 -1620 ((-487 |#1| |#2|) (-249 |#1| |#2|))) (-15 -4292 ((-249 |#1| |#2|) (-487 |#1| |#2|))) (-15 -3031 ((-487 |#1| |#2|) (-959 |#2|))) (-15 -1945 ((-959 |#2|) (-487 |#1| |#2|))) (-15 -3493 ((-959 |#2|) (-249 |#1| |#2|))) (-15 -1443 ((-249 |#1| |#2|) (-959 |#2|)))) (-650 (-1186)) (-1058)) (T -951))
-((-1443 (*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))))) (-3493 (*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)))) (-1945 (*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)))) (-3031 (*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))))) (-4292 (*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)))) (-1620 (*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 -1620 ((-487 |#1| |#2|) (-249 |#1| |#2|))) (-15 -4292 ((-249 |#1| |#2|) (-487 |#1| |#2|))) (-15 -3031 ((-487 |#1| |#2|) (-959 |#2|))) (-15 -1945 ((-959 |#2|) (-487 |#1| |#2|))) (-15 -3493 ((-959 |#2|) (-249 |#1| |#2|))) (-15 -1443 ((-249 |#1| |#2|) (-959 |#2|))))
-((-3170 (((-650 |#2|) |#2| |#2|) 10)) (-1357 (((-777) (-650 |#1|)) 48 (|has| |#1| (-854)))) (-2423 (((-650 |#2|) |#2|) 11)) (-3828 (((-777) (-650 |#1|) (-570) (-570)) 52 (|has| |#1| (-854)))) (-4109 ((|#1| |#2|) 38 (|has| |#1| (-854)))))
-(((-952 |#1| |#2|) (-10 -7 (-15 -3170 ((-650 |#2|) |#2| |#2|)) (-15 -2423 ((-650 |#2|) |#2|)) (IF (|has| |#1| (-854)) (PROGN (-15 -4109 (|#1| |#2|)) (-15 -1357 ((-777) (-650 |#1|))) (-15 -3828 ((-777) (-650 |#1|) (-570) (-570)))) |%noBranch|)) (-368) (-1253 |#1|)) (T -952))
-((-3828 (*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)))) (-1357 (*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)))) (-4109 (*1 *2 *3) (-12 (-4 *2 (-368)) (-4 *2 (-854)) (-5 *1 (-952 *2 *3)) (-4 *3 (-1253 *2)))) (-2423 (*1 *2 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3)) (-4 *3 (-1253 *4)))) (-3170 (*1 *2 *3 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3)) (-4 *3 (-1253 *4)))))
-(-10 -7 (-15 -3170 ((-650 |#2|) |#2| |#2|)) (-15 -2423 ((-650 |#2|) |#2|)) (IF (|has| |#1| (-854)) (PROGN (-15 -4109 (|#1| |#2|)) (-15 -1357 ((-777) (-650 |#1|))) (-15 -3828 ((-777) (-650 |#1|) (-570) (-570)))) |%noBranch|))
-((-1356 (((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|)) 19)))
-(((-953 |#1| |#2|) (-10 -7 (-15 -1356 ((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|)))) (-1058) (-1058)) (T -953))
-((-1356 (*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 -1356 ((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|))))
-((-3775 (((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|)) 18)))
-(((-954 |#1| |#2|) (-10 -7 (-15 -3775 ((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|)))) (-1186) (-1058)) (T -954))
-((-3775 (*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 -3775 ((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|))))
-((-3415 (((-777) $) 88) (((-777) $ (-650 |#4|)) 93)) (-4364 (($ $) 203)) (-1652 (((-424 $) $) 195)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 141)) (-4380 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) 74)) (-3216 ((|#2| $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL) ((|#4| $) 73)) (-4322 (($ $ $ |#4|) 95)) (-4196 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 131) (((-695 |#2|) (-695 $)) 121)) (-3988 (($ $) 210) (($ $ |#4|) 213)) (-1938 (((-650 $) $) 77)) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 229) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 222)) (-4008 (((-650 $) $) 34)) (-3912 (($ |#2| |#3|) NIL) (($ $ |#4| (-777)) NIL) (($ $ (-650 |#4|) (-650 (-777))) 71)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ |#4|) 192)) (-2209 (((-3 (-650 $) "failed") $) 52)) (-3654 (((-3 (-650 $) "failed") $) 39)) (-1895 (((-3 (-2 (|:| |var| |#4|) (|:| -3357 (-777))) "failed") $) 57)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 134)) (-1659 (((-424 (-1182 $)) (-1182 $)) 147)) (-2224 (((-424 (-1182 $)) (-1182 $)) 145)) (-3801 (((-424 $) $) 165)) (-1770 (($ $ (-650 (-298 $))) 24) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-650 |#4|) (-650 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-650 |#4|) (-650 $)) NIL)) (-3570 (($ $ |#4|) 97)) (-1425 (((-899 (-384)) $) 243) (((-899 (-570)) $) 236) (((-542) $) 251)) (-1848 ((|#2| $) NIL) (($ $ |#4|) 205)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 184)) (-2249 ((|#2| $ |#3|) NIL) (($ $ |#4| (-777)) 62) (($ $ (-650 |#4|) (-650 (-777))) 69)) (-3532 (((-3 $ "failed") $) 186)) (-2335 (((-112) $ $) 216)))
-(((-955 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -4364 (|#1| |#1|)) (-15 -3532 ((-3 |#1| "failed") |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -2842 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -2224 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2355 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -4428 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -3988 (|#1| |#1| |#4|)) (-15 -1848 (|#1| |#1| |#4|)) (-15 -3570 (|#1| |#1| |#4|)) (-15 -4322 (|#1| |#1| |#1| |#4|)) (-15 -1938 ((-650 |#1|) |#1|)) (-15 -3415 ((-777) |#1| (-650 |#4|))) (-15 -3415 ((-777) |#1|)) (-15 -1895 ((-3 (-2 (|:| |var| |#4|) (|:| -3357 (-777))) "failed") |#1|)) (-15 -2209 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3654 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3912 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3912 (|#1| |#1| |#4| (-777))) (-15 -2631 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1| |#4|)) (-15 -4008 ((-650 |#1|) |#1|)) (-15 -2249 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -2249 (|#1| |#1| |#4| (-777))) (-15 -4196 ((-695 |#2|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -4380 ((-3 |#4| "failed") |#1|)) (-15 -3216 (|#4| |#1|)) (-15 -1770 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#4| |#1|)) (-15 -1770 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#4| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3912 (|#1| |#2| |#3|)) (-15 -2249 (|#2| |#1| |#3|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -1848 (|#2| |#1|)) (-15 -3988 (|#1| |#1|)) (-15 -2335 ((-112) |#1| |#1|))) (-956 |#2| |#3| |#4|) (-1058) (-799) (-856)) (T -955))
-NIL
-(-10 -8 (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -4364 (|#1| |#1|)) (-15 -3532 ((-3 |#1| "failed") |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -2842 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -2224 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2355 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -4428 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -3988 (|#1| |#1| |#4|)) (-15 -1848 (|#1| |#1| |#4|)) (-15 -3570 (|#1| |#1| |#4|)) (-15 -4322 (|#1| |#1| |#1| |#4|)) (-15 -1938 ((-650 |#1|) |#1|)) (-15 -3415 ((-777) |#1| (-650 |#4|))) (-15 -3415 ((-777) |#1|)) (-15 -1895 ((-3 (-2 (|:| |var| |#4|) (|:| -3357 (-777))) "failed") |#1|)) (-15 -2209 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3654 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3912 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3912 (|#1| |#1| |#4| (-777))) (-15 -2631 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1| |#4|)) (-15 -4008 ((-650 |#1|) |#1|)) (-15 -2249 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -2249 (|#1| |#1| |#4| (-777))) (-15 -4196 ((-695 |#2|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -4380 ((-3 |#4| "failed") |#1|)) (-15 -3216 (|#4| |#1|)) (-15 -1770 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#4| |#1|)) (-15 -1770 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1770 (|#1| |#1| |#4| |#2|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3912 (|#1| |#2| |#3|)) (-15 -2249 (|#2| |#1| |#3|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -1848 (|#2| |#1|)) (-15 -3988 (|#1| |#1|)) (-15 -2335 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 |#3|) $) 112)) (-3775 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-3074 (($ $) 90 (|has| |#1| (-562)))) (-3475 (((-112) $) 92 (|has| |#1| (-562)))) (-3415 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-3990 (((-3 $ "failed") $ $) 20)) (-3924 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-4364 (($ $) 100 (|has| |#1| (-458)))) (-1652 (((-424 $) $) 99 (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-1705 (($) 18 T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139)) (-4322 (($ $ $ |#3|) 110 (|has| |#1| (-174)))) (-1956 (($ $) 156)) (-4196 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-2875 (((-3 $ "failed") $) 37)) (-3988 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1938 (((-650 $) $) 111)) (-3618 (((-112) $) 98 (|has| |#1| (-916)))) (-3720 (($ $ |#1| |#2| $) 174)) (-2842 (((-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)))))) (-4346 (((-112) $) 35)) (-3173 (((-777) $) 171)) (-1742 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-4008 (((-650 $) $) 128)) (-2359 (((-112) $) 154)) (-3912 (($ |#1| |#2|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ |#3|) 122)) (-2575 ((|#2| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-1918 (($ (-1 |#2| |#2|) $) 173)) (-1356 (($ (-1 |#1| |#1|) $) 153)) (-3362 (((-3 |#3| "failed") $) 125)) (-1915 (($ $) 151)) (-1927 ((|#1| $) 150)) (-1899 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-1988 (((-1168) $) 10)) (-2209 (((-3 (-650 $) "failed") $) 116)) (-3654 (((-3 (-650 $) "failed") $) 117)) (-1895 (((-3 (-2 (|:| |var| |#3|) (|:| -3357 (-777))) "failed") $) 115)) (-3577 (((-1129) $) 11)) (-1886 (((-112) $) 168)) (-1898 ((|#1| $) 169)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1942 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3801 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2547 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1770 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140)) (-3570 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3547 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43)) (-2130 ((|#2| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131)) (-1425 (((-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)))))) (-1848 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1809 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ $) 87 (|has| |#1| (-562))) (($ (-413 (-570))) 80 (-2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))))) (-2186 (((-650 |#1|) $) 170)) (-2249 ((|#1| $ |#2|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3532 (((-3 $ "failed") $) 81 (-2892 (-1809 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) 32 T CONST)) (-4247 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))
+((-3916 (((-487 |#1| |#2|) (-959 |#2|)) 22)) (-1585 (((-249 |#1| |#2|) (-959 |#2|)) 35)) (-1686 (((-959 |#2|) (-487 |#1| |#2|)) 27)) (-1819 (((-249 |#1| |#2|) (-487 |#1| |#2|)) 57)) (-2783 (((-959 |#2|) (-249 |#1| |#2|)) 32)) (-1691 (((-487 |#1| |#2|) (-249 |#1| |#2|)) 48)))
+(((-951 |#1| |#2|) (-10 -7 (-15 -1691 ((-487 |#1| |#2|) (-249 |#1| |#2|))) (-15 -1819 ((-249 |#1| |#2|) (-487 |#1| |#2|))) (-15 -3916 ((-487 |#1| |#2|) (-959 |#2|))) (-15 -1686 ((-959 |#2|) (-487 |#1| |#2|))) (-15 -2783 ((-959 |#2|) (-249 |#1| |#2|))) (-15 -1585 ((-249 |#1| |#2|) (-959 |#2|)))) (-650 (-1186)) (-1058)) (T -951))
+((-1585 (*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))))) (-2783 (*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)))) (-1686 (*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)))) (-3916 (*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))))) (-1819 (*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)))) (-1691 (*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 -1691 ((-487 |#1| |#2|) (-249 |#1| |#2|))) (-15 -1819 ((-249 |#1| |#2|) (-487 |#1| |#2|))) (-15 -3916 ((-487 |#1| |#2|) (-959 |#2|))) (-15 -1686 ((-959 |#2|) (-487 |#1| |#2|))) (-15 -2783 ((-959 |#2|) (-249 |#1| |#2|))) (-15 -1585 ((-249 |#1| |#2|) (-959 |#2|))))
+((-2836 (((-650 |#2|) |#2| |#2|) 10)) (-2093 (((-777) (-650 |#1|)) 48 (|has| |#1| (-854)))) (-3074 (((-650 |#2|) |#2|) 11)) (-2847 (((-777) (-650 |#1|) (-570) (-570)) 52 (|has| |#1| (-854)))) (-3777 ((|#1| |#2|) 38 (|has| |#1| (-854)))))
+(((-952 |#1| |#2|) (-10 -7 (-15 -2836 ((-650 |#2|) |#2| |#2|)) (-15 -3074 ((-650 |#2|) |#2|)) (IF (|has| |#1| (-854)) (PROGN (-15 -3777 (|#1| |#2|)) (-15 -2093 ((-777) (-650 |#1|))) (-15 -2847 ((-777) (-650 |#1|) (-570) (-570)))) |%noBranch|)) (-368) (-1253 |#1|)) (T -952))
+((-2847 (*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)))) (-2093 (*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)))) (-3777 (*1 *2 *3) (-12 (-4 *2 (-368)) (-4 *2 (-854)) (-5 *1 (-952 *2 *3)) (-4 *3 (-1253 *2)))) (-3074 (*1 *2 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3)) (-4 *3 (-1253 *4)))) (-2836 (*1 *2 *3 *3) (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -2836 ((-650 |#2|) |#2| |#2|)) (-15 -3074 ((-650 |#2|) |#2|)) (IF (|has| |#1| (-854)) (PROGN (-15 -3777 (|#1| |#2|)) (-15 -2093 ((-777) (-650 |#1|))) (-15 -2847 ((-777) (-650 |#1|) (-570) (-570)))) |%noBranch|))
+((-1357 (((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|)) 19)))
+(((-953 |#1| |#2|) (-10 -7 (-15 -1357 ((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|)))) (-1058) (-1058)) (T -953))
+((-1357 (*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 -1357 ((-959 |#2|) (-1 |#2| |#1|) (-959 |#1|))))
+((-3778 (((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|)) 18)))
+(((-954 |#1| |#2|) (-10 -7 (-15 -3778 ((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|)))) (-1186) (-1058)) (T -954))
+((-3778 (*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 -3778 ((-1250 |#1| (-959 |#2|)) (-959 |#2|) (-1273 |#1|))))
+((-3249 (((-777) $) 88) (((-777) $ (-650 |#4|)) 93)) (-4310 (($ $) 203)) (-3871 (((-424 $) $) 195)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 141)) (-4383 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) 74)) (-3220 ((|#2| $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL) ((|#4| $) 73)) (-3930 (($ $ $ |#4|) 95)) (-2179 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 131) (((-695 |#2|) (-695 $)) 121)) (-1944 (($ $) 210) (($ $ |#4|) 213)) (-1938 (((-650 $) $) 77)) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 229) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 222)) (-3967 (((-650 $) $) 34)) (-3915 (($ |#2| |#3|) NIL) (($ $ |#4| (-777)) NIL) (($ $ (-650 |#4|) (-650 (-777))) 71)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ |#4|) 192)) (-1369 (((-3 (-650 $) "failed") $) 52)) (-1777 (((-3 (-650 $) "failed") $) 39)) (-2505 (((-3 (-2 (|:| |var| |#4|) (|:| -3994 (-777))) "failed") $) 57)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 134)) (-3933 (((-424 (-1182 $)) (-1182 $)) 147)) (-1558 (((-424 (-1182 $)) (-1182 $)) 145)) (-3804 (((-424 $) $) 165)) (-1771 (($ $ (-650 (-298 $))) 24) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#4| |#2|) NIL) (($ $ (-650 |#4|) (-650 |#2|)) NIL) (($ $ |#4| $) NIL) (($ $ (-650 |#4|) (-650 $)) NIL)) (-2265 (($ $ |#4|) 97)) (-1426 (((-899 (-384)) $) 243) (((-899 (-570)) $) 236) (((-542) $) 251)) (-2077 ((|#2| $) NIL) (($ $ |#4|) 205)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 184)) (-1864 ((|#2| $ |#3|) NIL) (($ $ |#4| (-777)) 62) (($ $ (-650 |#4|) (-650 (-777))) 69)) (-3132 (((-3 $ "failed") $) 186)) (-3359 (((-112) $ $) 216)))
+(((-955 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -4310 (|#1| |#1|)) (-15 -3132 ((-3 |#1| "failed") |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1557 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -1558 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3933 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3585 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3692 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -1944 (|#1| |#1| |#4|)) (-15 -2077 (|#1| |#1| |#4|)) (-15 -2265 (|#1| |#1| |#4|)) (-15 -3930 (|#1| |#1| |#1| |#4|)) (-15 -1938 ((-650 |#1|) |#1|)) (-15 -3249 ((-777) |#1| (-650 |#4|))) (-15 -3249 ((-777) |#1|)) (-15 -2505 ((-3 (-2 (|:| |var| |#4|) (|:| -3994 (-777))) "failed") |#1|)) (-15 -1369 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1777 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3915 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3915 (|#1| |#1| |#4| (-777))) (-15 -3300 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1| |#4|)) (-15 -3967 ((-650 |#1|) |#1|)) (-15 -1864 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -1864 (|#1| |#1| |#4| (-777))) (-15 -2179 ((-695 |#2|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -4383 ((-3 |#4| "failed") |#1|)) (-15 -3220 (|#4| |#1|)) (-15 -1771 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#4| |#1|)) (-15 -1771 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#4| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3915 (|#1| |#2| |#3|)) (-15 -1864 (|#2| |#1| |#3|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -2077 (|#2| |#1|)) (-15 -1944 (|#1| |#1|)) (-15 -3359 ((-112) |#1| |#1|))) (-956 |#2| |#3| |#4|) (-1058) (-799) (-856)) (T -955))
+NIL
+(-10 -8 (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -4310 (|#1| |#1|)) (-15 -3132 ((-3 |#1| "failed") |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1557 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -1558 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3933 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3585 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -3692 ((-3 (-1277 |#1|) "failed") (-695 |#1|))) (-15 -1944 (|#1| |#1| |#4|)) (-15 -2077 (|#1| |#1| |#4|)) (-15 -2265 (|#1| |#1| |#4|)) (-15 -3930 (|#1| |#1| |#1| |#4|)) (-15 -1938 ((-650 |#1|) |#1|)) (-15 -3249 ((-777) |#1| (-650 |#4|))) (-15 -3249 ((-777) |#1|)) (-15 -2505 ((-3 (-2 (|:| |var| |#4|) (|:| -3994 (-777))) "failed") |#1|)) (-15 -1369 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -1777 ((-3 (-650 |#1|) "failed") |#1|)) (-15 -3915 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -3915 (|#1| |#1| |#4| (-777))) (-15 -3300 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1| |#4|)) (-15 -3967 ((-650 |#1|) |#1|)) (-15 -1864 (|#1| |#1| (-650 |#4|) (-650 (-777)))) (-15 -1864 (|#1| |#1| |#4| (-777))) (-15 -2179 ((-695 |#2|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -4383 ((-3 |#4| "failed") |#1|)) (-15 -3220 (|#4| |#1|)) (-15 -1771 (|#1| |#1| (-650 |#4|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#4| |#1|)) (-15 -1771 (|#1| |#1| (-650 |#4|) (-650 |#2|))) (-15 -1771 (|#1| |#1| |#4| |#2|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3915 (|#1| |#2| |#3|)) (-15 -1864 (|#2| |#1| |#3|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -2077 (|#2| |#1|)) (-15 -1944 (|#1| |#1|)) (-15 -3359 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 |#3|) $) 112)) (-3778 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-4306 (($ $) 90 (|has| |#1| (-562)))) (-2617 (((-112) $) 92 (|has| |#1| (-562)))) (-3249 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-1966 (((-3 $ "failed") $ $) 20)) (-2536 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-4310 (($ $) 100 (|has| |#1| (-458)))) (-3871 (((-424 $) $) 99 (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-3195 (($) 18 T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) ((|#3| $) 139)) (-3930 (($ $ $ |#3|) 110 (|has| |#1| (-174)))) (-1954 (($ $) 156)) (-2179 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-1929 (((-3 $ "failed") $) 37)) (-1944 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1938 (((-650 $) $) 111)) (-1336 (((-112) $) 98 (|has| |#1| (-916)))) (-4243 (($ $ |#1| |#2| $) 174)) (-1557 (((-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)))))) (-4139 (((-112) $) 35)) (-2867 (((-777) $) 171)) (-1744 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-3967 (((-650 $) $) 128)) (-3633 (((-112) $) 154)) (-3915 (($ |#1| |#2|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ |#3|) 122)) (-3970 ((|#2| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-1414 (($ (-1 |#2| |#2|) $) 173)) (-1357 (($ (-1 |#1| |#1|) $) 153)) (-4023 (((-3 |#3| "failed") $) 125)) (-1914 (($ $) 151)) (-1928 ((|#1| $) 150)) (-1901 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-3989 (((-1168) $) 10)) (-1369 (((-3 (-650 $) "failed") $) 116)) (-1777 (((-3 (-650 $) "failed") $) 117)) (-2505 (((-3 (-2 (|:| |var| |#3|) (|:| -3994 (-777))) "failed") $) 115)) (-3580 (((-1129) $) 11)) (-1887 (((-112) $) 168)) (-1900 ((|#1| $) 169)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1939 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3804 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2548 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-1771 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140)) (-2265 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3550 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43)) (-3079 ((|#2| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131)) (-1426 (((-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)))))) (-2077 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1810 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (($ $) 87 (|has| |#1| (-562))) (($ (-413 (-570))) 80 (-2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))))) (-2459 (((-650 |#1|) $) 170)) (-1864 ((|#1| $ |#2|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3132 (((-3 $ "failed") $) 81 (-2895 (-1810 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) 32 T CONST)) (-2648 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3988 (*1 *1 *1) (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2130 (*1 *2 *1 *3) (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-777)))) (-2130 (*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))))) (-2249 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *2 (-856)))) (-2249 (*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)))) (-4008 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-3775 (*1 *2 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-1182 *1)) (-4 *1 (-956 *4 *5 *3)))) (-3775 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-1182 *3)))) (-3362 (*1 *2 *1) (|partial| -12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2575 (*1 *2 *1 *3) (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-777)))) (-2575 (*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))))) (-2631 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-956 *4 *5 *3)))) (-3912 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *2 (-856)))) (-3912 (*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)))) (-1742 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *4)) (-4 *4 (-1058)) (-4 *1 (-956 *4 *5 *3)) (-4 *5 (-799)) (-4 *3 (-856)))) (-1742 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)))) (-3654 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-2209 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-1895 (*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) (|:| -3357 (-777)))))) (-3415 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-777)))) (-3415 (*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)))) (-1755 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *5)))) (-1938 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-4322 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-174)))) (-3570 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-174)))) (-1848 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-458)))) (-3988 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-458)))) (-4364 (*1 *1 *1) (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1652 (*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 -2130 ((-777) $ |t#3|)) (-15 -2130 ((-650 (-777)) $ (-650 |t#3|))) (-15 -2249 ($ $ |t#3| (-777))) (-15 -2249 ($ $ (-650 |t#3|) (-650 (-777)))) (-15 -4008 ((-650 $) $)) (-15 -3775 ((-1182 $) $ |t#3|)) (-15 -3775 ((-1182 |t#1|) $)) (-15 -3362 ((-3 |t#3| "failed") $)) (-15 -2575 ((-777) $ |t#3|)) (-15 -2575 ((-650 (-777)) $ (-650 |t#3|))) (-15 -2631 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $ |t#3|)) (-15 -3912 ($ $ |t#3| (-777))) (-15 -3912 ($ $ (-650 |t#3|) (-650 (-777)))) (-15 -1742 ($ (-1182 |t#1|) |t#3|)) (-15 -1742 ($ (-1182 $) |t#3|)) (-15 -3654 ((-3 (-650 $) "failed") $)) (-15 -2209 ((-3 (-650 $) "failed") $)) (-15 -1895 ((-3 (-2 (|:| |var| |t#3|) (|:| -3357 (-777))) "failed") $)) (-15 -3415 ((-777) $)) (-15 -3415 ((-777) $ (-650 |t#3|))) (-15 -1755 ((-650 |t#3|) $)) (-15 -1938 ((-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 -4322 ($ $ $ |t#3|)) (-15 -3570 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-6 (-458)) (-15 -1848 ($ $ |t#3|)) (-15 -3988 ($ $)) (-15 -3988 ($ $ |t#3|)) (-15 -1652 ((-424 $) $)) (-15 -4364 ($ $))) |%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 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#3|) . T) ((-622 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-174) -2892 (|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) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2892 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2892 (|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 $) -2892 (|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 $) -2892 (|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 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
-((-1755 (((-650 |#2|) |#5|) 40)) (-3775 (((-1182 |#5|) |#5| |#2| (-1182 |#5|)) 23) (((-413 (-1182 |#5|)) |#5| |#2|) 16)) (-1742 ((|#5| (-413 (-1182 |#5|)) |#2|) 30)) (-3362 (((-3 |#2| "failed") |#5|) 71)) (-2209 (((-3 (-650 |#5|) "failed") |#5|) 65)) (-3352 (((-3 (-2 (|:| |val| |#5|) (|:| -3357 (-570))) "failed") |#5|) 53)) (-3654 (((-3 (-650 |#5|) "failed") |#5|) 67)) (-1895 (((-3 (-2 (|:| |var| |#2|) (|:| -3357 (-570))) "failed") |#5|) 57)))
-(((-957 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1755 ((-650 |#2|) |#5|)) (-15 -3362 ((-3 |#2| "failed") |#5|)) (-15 -3775 ((-413 (-1182 |#5|)) |#5| |#2|)) (-15 -1742 (|#5| (-413 (-1182 |#5|)) |#2|)) (-15 -3775 ((-1182 |#5|) |#5| |#2| (-1182 |#5|))) (-15 -3654 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -2209 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -1895 ((-3 (-2 (|:| |var| |#2|) (|:| -3357 (-570))) "failed") |#5|)) (-15 -3352 ((-3 (-2 (|:| |val| |#5|) (|:| -3357 (-570))) "failed") |#5|))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3799 ($ |#4|)) (-15 -4399 (|#4| $)) (-15 -4413 (|#4| $))))) (T -957))
-((-3352 (*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) (|:| -3357 (-570)))) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-1895 (*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) (|:| -3357 (-570)))) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-2209 (*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 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-3654 (*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 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-3775 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3799 ($ *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)))) (-1742 (*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 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))) (-5 *1 (-957 *5 *4 *6 *7 *2)) (-4 *7 (-956 *6 *5 *4)))) (-3775 (*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 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))) (-3362 (*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 -3799 ($ *6)) (-15 -4399 (*6 $)) (-15 -4413 (*6 $))))))) (-1755 (*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 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))))
-(-10 -7 (-15 -1755 ((-650 |#2|) |#5|)) (-15 -3362 ((-3 |#2| "failed") |#5|)) (-15 -3775 ((-413 (-1182 |#5|)) |#5| |#2|)) (-15 -1742 (|#5| (-413 (-1182 |#5|)) |#2|)) (-15 -3775 ((-1182 |#5|) |#5| |#2| (-1182 |#5|))) (-15 -3654 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -2209 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -1895 ((-3 (-2 (|:| |var| |#2|) (|:| -3357 (-570))) "failed") |#5|)) (-15 -3352 ((-3 (-2 (|:| |val| |#5|) (|:| -3357 (-570))) "failed") |#5|)))
-((-1356 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
-(((-958 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1356 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3101 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777)))))) (T -958))
-((-1356 (*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 -3101 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777)))))) (-5 *1 (-958 *6 *7 *8 *5 *2)) (-4 *5 (-956 *8 *6 *7)))))
-(-10 -7 (-15 -1356 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-1186)) $) 16)) (-3775 (((-1182 $) $ (-1186)) 21) (((-1182 |#1|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-1186))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1186) $) NIL)) (-4322 (($ $ $ (-1186)) NIL (|has| |#1| (-174)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1186)) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-3720 (($ $ |#1| (-537 (-1186)) $) NIL)) (-2842 (((-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)))))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-1742 (($ (-1182 |#1|) (-1186)) NIL) (($ (-1182 $) (-1186)) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-1186)) NIL)) (-2575 (((-537 (-1186)) $) NIL) (((-777) $ (-1186)) NIL) (((-650 (-777)) $ (-650 (-1186))) NIL)) (-1918 (($ (-1 (-537 (-1186)) (-537 (-1186))) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3362 (((-3 (-1186) "failed") $) 19)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1988 (((-1168) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-1186)) (|:| -3357 (-777))) "failed") $) NIL)) (-2898 (($ $ (-1186)) 29 (|has| |#1| (-38 (-413 (-570)))))) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1770 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1186) |#1|) NIL) (($ $ (-650 (-1186)) (-650 |#1|)) NIL) (($ $ (-1186) $) NIL) (($ $ (-650 (-1186)) (-650 $)) NIL)) (-3570 (($ $ (-1186)) NIL (|has| |#1| (-174)))) (-3547 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-2130 (((-537 (-1186)) $) NIL) (((-777) $ (-1186)) NIL) (((-650 (-777)) $ (-650 (-1186))) NIL)) (-1425 (((-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)))))) (-1848 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1186)) NIL (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) 25) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1186)) 27) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2898 ($ $ (-1186))) |%noBranch|))) (-1058)) (T -959))
-((-2898 (*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 -2898 ($ $ (-1186))) |%noBranch|)))
-((-3849 (((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) |#3| (-777)) 49)) (-2260 (((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777)) 44)) (-2196 (((-2 (|:| -3357 (-777)) (|:| -1452 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777)) 65)) (-2157 (((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) |#5| (-777)) 74 (|has| |#3| (-458)))))
-(((-960 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3849 ((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) |#3| (-777))) (-15 -2260 ((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777))) (IF (|has| |#3| (-458)) (-15 -2157 ((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) |#5| (-777))) |%noBranch|) (-15 -2196 ((-2 (|:| -3357 (-777)) (|:| -1452 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777)))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3799 ($ |#4|)) (-15 -4399 (|#4| $)) (-15 -4413 (|#4| $))))) (T -960))
-((-2196 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562)) (-4 *3 (-956 *7 *5 *6)) (-5 *2 (-2 (|:| -3357 (-777)) (|:| -1452 *3) (|:| |radicand| (-650 *3)))) (-5 *1 (-960 *5 *6 *7 *3 *8)) (-5 *4 (-777)) (-4 *8 (-13 (-368) (-10 -8 (-15 -3799 ($ *3)) (-15 -4399 (*3 $)) (-15 -4413 (*3 $))))))) (-2157 (*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 (|:| -3357 (-777)) (|:| -1452 *3) (|:| |radicand| *3))) (-5 *1 (-960 *5 *6 *7 *8 *3)) (-5 *4 (-777)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3799 ($ *8)) (-15 -4399 (*8 $)) (-15 -4413 (*8 $))))))) (-2260 (*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 (|:| -3357 (-777)) (|:| -1452 *9) (|:| |radicand| *9))) (-5 *1 (-960 *5 *6 *7 *8 *9)) (-5 *4 (-777)) (-4 *9 (-13 (-368) (-10 -8 (-15 -3799 ($ *8)) (-15 -4399 (*8 $)) (-15 -4413 (*8 $))))))) (-3849 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-562)) (-4 *7 (-956 *3 *5 *6)) (-5 *2 (-2 (|:| -3357 (-777)) (|:| -1452 *8) (|:| |radicand| *8))) (-5 *1 (-960 *5 *6 *3 *7 *8)) (-5 *4 (-777)) (-4 *8 (-13 (-368) (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))))
-(-10 -7 (-15 -3849 ((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) |#3| (-777))) (-15 -2260 ((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777))) (IF (|has| |#3| (-458)) (-15 -2157 ((-2 (|:| -3357 (-777)) (|:| -1452 |#5|) (|:| |radicand| |#5|)) |#5| (-777))) |%noBranch|) (-15 -2196 ((-2 (|:| -3357 (-777)) (|:| -1452 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777))))
-((-2558 (((-112) $ $) NIL)) (-3676 (($ (-1129)) 8)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 15) (((-1129) $) 12)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 11)))
-(((-961) (-13 (-1109) (-619 (-1129)) (-10 -8 (-15 -3676 ($ (-1129)))))) (T -961))
-((-3676 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-961)))))
-(-13 (-1109) (-619 (-1129)) (-10 -8 (-15 -3676 ($ (-1129)))))
-((-1477 (((-1103 (-227)) $) 8)) (-3841 (((-1103 (-227)) $) 9)) (-3778 (((-650 (-650 (-950 (-227)))) $) 10)) (-3799 (((-868) $) 6)))
+((-1944 (*1 *1 *1) (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-3079 (*1 *2 *1 *3) (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3079 (*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))))) (-1864 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *2 (-856)))) (-1864 (*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)))) (-3967 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-3778 (*1 *2 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-1182 *1)) (-4 *1 (-956 *4 *5 *3)))) (-3778 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-1182 *3)))) (-4023 (*1 *2 *1) (|partial| -12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-3970 (*1 *2 *1 *3) (-12 (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-777)))) (-3970 (*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))))) (-3300 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-956 *4 *5 *3)))) (-3915 (*1 *1 *1 *2 *3) (-12 (-5 *3 (-777)) (-4 *1 (-956 *4 *5 *2)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *2 (-856)))) (-3915 (*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)))) (-1744 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *4)) (-4 *4 (-1058)) (-4 *1 (-956 *4 *5 *3)) (-4 *5 (-799)) (-4 *3 (-856)))) (-1744 (*1 *1 *2 *3) (-12 (-5 *2 (-1182 *1)) (-4 *1 (-956 *4 *5 *3)) (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)))) (-1777 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-1369 (*1 *2 *1) (|partial| -12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-2505 (*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) (|:| -3994 (-777)))))) (-3249 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-777)))) (-3249 (*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)))) (-1755 (*1 *2 *1) (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *5)))) (-1938 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-956 *3 *4 *5)))) (-3930 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-174)))) (-2265 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-174)))) (-2077 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-458)))) (-1944 (*1 *1 *1 *2) (-12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)) (-4 *3 (-458)))) (-4310 (*1 *1 *1) (-12 (-4 *1 (-956 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-3871 (*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 -3079 ((-777) $ |t#3|)) (-15 -3079 ((-650 (-777)) $ (-650 |t#3|))) (-15 -1864 ($ $ |t#3| (-777))) (-15 -1864 ($ $ (-650 |t#3|) (-650 (-777)))) (-15 -3967 ((-650 $) $)) (-15 -3778 ((-1182 $) $ |t#3|)) (-15 -3778 ((-1182 |t#1|) $)) (-15 -4023 ((-3 |t#3| "failed") $)) (-15 -3970 ((-777) $ |t#3|)) (-15 -3970 ((-650 (-777)) $ (-650 |t#3|))) (-15 -3300 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $ |t#3|)) (-15 -3915 ($ $ |t#3| (-777))) (-15 -3915 ($ $ (-650 |t#3|) (-650 (-777)))) (-15 -1744 ($ (-1182 |t#1|) |t#3|)) (-15 -1744 ($ (-1182 $) |t#3|)) (-15 -1777 ((-3 (-650 $) "failed") $)) (-15 -1369 ((-3 (-650 $) "failed") $)) (-15 -2505 ((-3 (-2 (|:| |var| |t#3|) (|:| -3994 (-777))) "failed") $)) (-15 -3249 ((-777) $)) (-15 -3249 ((-777) $ (-650 |t#3|))) (-15 -1755 ((-650 |t#3|) $)) (-15 -1938 ((-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 -3930 ($ $ $ |t#3|)) (-15 -2265 ($ $ |t#3|))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-6 (-458)) (-15 -2077 ($ $ |t#3|)) (-15 -1944 ($ $)) (-15 -1944 ($ $ |t#3|)) (-15 -3871 ((-424 $) $)) (-15 -4310 ($ $))) |%noBranch|) (IF (|has| |t#1| (-6 -4450)) (-6 -4450) |%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 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#3|) . T) ((-622 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-174) -2895 (|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) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2895 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2895 (|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 $) -2895 (|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 $) -2895 (|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 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
+((-1755 (((-650 |#2|) |#5|) 40)) (-3778 (((-1182 |#5|) |#5| |#2| (-1182 |#5|)) 23) (((-413 (-1182 |#5|)) |#5| |#2|) 16)) (-1744 ((|#5| (-413 (-1182 |#5|)) |#2|) 30)) (-4023 (((-3 |#2| "failed") |#5|) 71)) (-1369 (((-3 (-650 |#5|) "failed") |#5|) 65)) (-3952 (((-3 (-2 (|:| |val| |#5|) (|:| -3994 (-570))) "failed") |#5|) 53)) (-1777 (((-3 (-650 |#5|) "failed") |#5|) 67)) (-2505 (((-3 (-2 (|:| |var| |#2|) (|:| -3994 (-570))) "failed") |#5|) 57)))
+(((-957 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1755 ((-650 |#2|) |#5|)) (-15 -4023 ((-3 |#2| "failed") |#5|)) (-15 -3778 ((-413 (-1182 |#5|)) |#5| |#2|)) (-15 -1744 (|#5| (-413 (-1182 |#5|)) |#2|)) (-15 -3778 ((-1182 |#5|) |#5| |#2| (-1182 |#5|))) (-15 -1777 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -1369 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -2505 ((-3 (-2 (|:| |var| |#2|) (|:| -3994 (-570))) "failed") |#5|)) (-15 -3952 ((-3 (-2 (|:| |val| |#5|) (|:| -3994 (-570))) "failed") |#5|))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3802 ($ |#4|)) (-15 -4402 (|#4| $)) (-15 -4416 (|#4| $))))) (T -957))
+((-3952 (*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) (|:| -3994 (-570)))) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))) (-2505 (*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) (|:| -3994 (-570)))) (-5 *1 (-957 *4 *5 *6 *7 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))) (-1369 (*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 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))) (-1777 (*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 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))) (-3778 (*1 *2 *3 *4 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))) (-4 *7 (-956 *6 *5 *4)) (-4 *5 (-799)) (-4 *4 (-856)) (-4 *6 (-1058)) (-5 *1 (-957 *5 *4 *6 *7 *3)))) (-1744 (*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 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))) (-5 *1 (-957 *5 *4 *6 *7 *2)) (-4 *7 (-956 *6 *5 *4)))) (-3778 (*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 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))) (-4023 (*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 -3802 ($ *6)) (-15 -4402 (*6 $)) (-15 -4416 (*6 $))))))) (-1755 (*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 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))))
+(-10 -7 (-15 -1755 ((-650 |#2|) |#5|)) (-15 -4023 ((-3 |#2| "failed") |#5|)) (-15 -3778 ((-413 (-1182 |#5|)) |#5| |#2|)) (-15 -1744 (|#5| (-413 (-1182 |#5|)) |#2|)) (-15 -3778 ((-1182 |#5|) |#5| |#2| (-1182 |#5|))) (-15 -1777 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -1369 ((-3 (-650 |#5|) "failed") |#5|)) (-15 -2505 ((-3 (-2 (|:| |var| |#2|) (|:| -3994 (-570))) "failed") |#5|)) (-15 -3952 ((-3 (-2 (|:| |val| |#5|) (|:| -3994 (-570))) "failed") |#5|)))
+((-1357 ((|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|) 24)))
+(((-958 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1357 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|))) (-799) (-856) (-1058) (-956 |#3| |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3104 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777)))))) (T -958))
+((-1357 (*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 -3104 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777)))))) (-5 *1 (-958 *6 *7 *8 *5 *2)) (-4 *5 (-956 *8 *6 *7)))))
+(-10 -7 (-15 -1357 (|#5| (-1 |#5| |#2|) (-1 |#5| |#3|) |#4|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-1186)) $) 16)) (-3778 (((-1182 $) $ (-1186)) 21) (((-1182 |#1|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-1186))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1186) $) NIL)) (-3930 (($ $ $ (-1186)) NIL (|has| |#1| (-174)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1186)) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-4243 (($ $ |#1| (-537 (-1186)) $) NIL)) (-1557 (((-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)))))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-1744 (($ (-1182 |#1|) (-1186)) NIL) (($ (-1182 $) (-1186)) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-1186)) NIL)) (-3970 (((-537 (-1186)) $) NIL) (((-777) $ (-1186)) NIL) (((-650 (-777)) $ (-650 (-1186))) NIL)) (-1414 (($ (-1 (-537 (-1186)) (-537 (-1186))) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4023 (((-3 (-1186) "failed") $) 19)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3989 (((-1168) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-1186)) (|:| -3994 (-777))) "failed") $) NIL)) (-2023 (($ $ (-1186)) 29 (|has| |#1| (-38 (-413 (-570)))))) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1771 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1186) |#1|) NIL) (($ $ (-650 (-1186)) (-650 |#1|)) NIL) (($ $ (-1186) $) NIL) (($ $ (-650 (-1186)) (-650 $)) NIL)) (-2265 (($ $ (-1186)) NIL (|has| |#1| (-174)))) (-3550 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3079 (((-537 (-1186)) $) NIL) (((-777) $ (-1186)) NIL) (((-650 (-777)) $ (-650 (-1186))) NIL)) (-1426 (((-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)))))) (-2077 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1186)) NIL (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) 25) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1186)) 27) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -2023 ($ $ (-1186))) |%noBranch|))) (-1058)) (T -959))
+((-2023 (*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 -2023 ($ $ (-1186))) |%noBranch|)))
+((-3018 (((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) |#3| (-777)) 49)) (-3812 (((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777)) 44)) (-2554 (((-2 (|:| -3994 (-777)) (|:| -1453 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777)) 65)) (-2161 (((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) |#5| (-777)) 74 (|has| |#3| (-458)))))
+(((-960 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3018 ((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) |#3| (-777))) (-15 -3812 ((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777))) (IF (|has| |#3| (-458)) (-15 -2161 ((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) |#5| (-777))) |%noBranch|) (-15 -2554 ((-2 (|:| -3994 (-777)) (|:| -1453 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777)))) (-799) (-856) (-562) (-956 |#3| |#1| |#2|) (-13 (-368) (-10 -8 (-15 -3802 ($ |#4|)) (-15 -4402 (|#4| $)) (-15 -4416 (|#4| $))))) (T -960))
+((-2554 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562)) (-4 *3 (-956 *7 *5 *6)) (-5 *2 (-2 (|:| -3994 (-777)) (|:| -1453 *3) (|:| |radicand| (-650 *3)))) (-5 *1 (-960 *5 *6 *7 *3 *8)) (-5 *4 (-777)) (-4 *8 (-13 (-368) (-10 -8 (-15 -3802 ($ *3)) (-15 -4402 (*3 $)) (-15 -4416 (*3 $))))))) (-2161 (*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 (|:| -3994 (-777)) (|:| -1453 *3) (|:| |radicand| *3))) (-5 *1 (-960 *5 *6 *7 *8 *3)) (-5 *4 (-777)) (-4 *3 (-13 (-368) (-10 -8 (-15 -3802 ($ *8)) (-15 -4402 (*8 $)) (-15 -4416 (*8 $))))))) (-3812 (*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 (|:| -3994 (-777)) (|:| -1453 *9) (|:| |radicand| *9))) (-5 *1 (-960 *5 *6 *7 *8 *9)) (-5 *4 (-777)) (-4 *9 (-13 (-368) (-10 -8 (-15 -3802 ($ *8)) (-15 -4402 (*8 $)) (-15 -4416 (*8 $))))))) (-3018 (*1 *2 *3 *4) (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-562)) (-4 *7 (-956 *3 *5 *6)) (-5 *2 (-2 (|:| -3994 (-777)) (|:| -1453 *8) (|:| |radicand| *8))) (-5 *1 (-960 *5 *6 *3 *7 *8)) (-5 *4 (-777)) (-4 *8 (-13 (-368) (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))))
+(-10 -7 (-15 -3018 ((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) |#3| (-777))) (-15 -3812 ((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) (-413 (-570)) (-777))) (IF (|has| |#3| (-458)) (-15 -2161 ((-2 (|:| -3994 (-777)) (|:| -1453 |#5|) (|:| |radicand| |#5|)) |#5| (-777))) |%noBranch|) (-15 -2554 ((-2 (|:| -3994 (-777)) (|:| -1453 |#4|) (|:| |radicand| (-650 |#4|))) |#4| (-777))))
+((-2560 (((-112) $ $) NIL)) (-3679 (($ (-1129)) 8)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 15) (((-1129) $) 12)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 11)))
+(((-961) (-13 (-1109) (-619 (-1129)) (-10 -8 (-15 -3679 ($ (-1129)))))) (T -961))
+((-3679 (*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-961)))))
+(-13 (-1109) (-619 (-1129)) (-10 -8 (-15 -3679 ($ (-1129)))))
+((-1478 (((-1103 (-227)) $) 8)) (-3844 (((-1103 (-227)) $) 9)) (-3604 (((-650 (-650 (-950 (-227)))) $) 10)) (-3802 (((-868) $) 6)))
(((-962) (-141)) (T -962))
-((-3778 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-650 (-650 (-950 (-227))))))) (-3841 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227))))) (-1477 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227))))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3778 ((-650 (-650 (-950 (-227)))) $)) (-15 -3841 ((-1103 (-227)) $)) (-15 -1477 ((-1103 (-227)) $))))
+((-3604 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-650 (-650 (-950 (-227))))))) (-3844 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227))))) (-1478 (*1 *2 *1) (-12 (-4 *1 (-962)) (-5 *2 (-1103 (-227))))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3604 ((-650 (-650 (-950 (-227)))) $)) (-15 -3844 ((-1103 (-227)) $)) (-15 -1478 ((-1103 (-227)) $))))
(((-619 (-868)) . T))
-((-3238 (((-3 (-695 |#1|) "failed") |#2| (-928)) 18)))
-(((-963 |#1| |#2|) (-10 -7 (-15 -3238 ((-3 (-695 |#1|) "failed") |#2| (-928)))) (-562) (-662 |#1|)) (T -963))
-((-3238 (*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 -3238 ((-3 (-695 |#1|) "failed") |#2| (-928))))
-((-3482 (((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|) 16)) (-3624 ((|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|) 18)) (-1356 (((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|)) 13)))
-(((-964 |#1| |#2|) (-10 -7 (-15 -3482 ((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -3624 (|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -1356 ((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|)))) (-1227) (-1227)) (T -964))
-((-1356 (*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)))) (-3624 (*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)))) (-3482 (*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 -3482 ((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -3624 (|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -1356 ((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) |#1|) 19 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) 18 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 16)) (-4027 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4291 (($ (-777) |#1|) 15)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) 11 (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) NIL (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) 20 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 17) (($ $ (-1244 (-570))) NIL)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) 21)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 14)) (-2584 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2569 (((-777) $) 8 (|has| $ (-6 -4449)))))
+((-2269 (((-3 (-695 |#1|) "failed") |#2| (-928)) 18)))
+(((-963 |#1| |#2|) (-10 -7 (-15 -2269 ((-3 (-695 |#1|) "failed") |#2| (-928)))) (-562) (-662 |#1|)) (T -963))
+((-2269 (*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 -2269 ((-3 (-695 |#1|) "failed") |#2| (-928))))
+((-2677 (((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|) 16)) (-3627 ((|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|) 18)) (-1357 (((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|)) 13)))
+(((-964 |#1| |#2|) (-10 -7 (-15 -2677 ((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -3627 (|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -1357 ((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|)))) (-1227) (-1227)) (T -964))
+((-1357 (*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)))) (-3627 (*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)))) (-2677 (*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 -2677 ((-965 |#2|) (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -3627 (|#2| (-1 |#2| |#1| |#2|) (-965 |#1|) |#2|)) (-15 -1357 ((-965 |#2|) (-1 |#2| |#1|) (-965 |#1|))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) |#1|) 19 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) 18 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 16)) (-4029 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-4294 (($ (-777) |#1|) 15)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) 11 (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) NIL (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) 20 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) 17) (($ $ (-1244 (-570))) NIL)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) 21)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 14)) (-2585 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-2570 (((-777) $) 8 (|has| $ (-6 -4452)))))
(((-965 |#1|) (-19 |#1|) (-1227)) (T -965))
NIL
(-19 |#1|)
-((-2212 (($ $ (-1101 $)) 7) (($ $ (-1186)) 6)))
+((-1411 (($ $ (-1101 $)) 7) (($ $ (-1186)) 6)))
(((-966) (-141)) (T -966))
-((-2212 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-966)))) (-2212 (*1 *1 *1 *2) (-12 (-4 *1 (-966)) (-5 *2 (-1186)))))
-(-13 (-10 -8 (-15 -2212 ($ $ (-1186))) (-15 -2212 ($ $ (-1101 $)))))
-((-2652 (((-2 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186)) 26) (((-2 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186))) 27) (((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186)) 49)))
-(((-967 |#1|) (-10 -7 (-15 -2652 ((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186))) (-15 -2652 ((-2 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2652 ((-2 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186)))) (-13 (-368) (-148))) (T -967))
-((-2652 (*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 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 *6))) (|:| |prim| (-1182 *6)))) (-5 *1 (-967 *6)))) (-2652 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-368) (-148))) (-5 *2 (-2 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 *5))) (|:| |prim| (-1182 *5)))) (-5 *1 (-967 *5)))) (-2652 (*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 -2652 ((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186))) (-15 -2652 ((-2 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -2652 ((-2 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186))))
-((-4079 (((-650 |#1|) |#1| |#1|) 47)) (-3618 (((-112) |#1|) 44)) (-3763 ((|#1| |#1|) 79)) (-2203 ((|#1| |#1|) 78)))
-(((-968 |#1|) (-10 -7 (-15 -3618 ((-112) |#1|)) (-15 -2203 (|#1| |#1|)) (-15 -3763 (|#1| |#1|)) (-15 -4079 ((-650 |#1|) |#1| |#1|))) (-551)) (T -968))
-((-4079 (*1 *2 *3 *3) (-12 (-5 *2 (-650 *3)) (-5 *1 (-968 *3)) (-4 *3 (-551)))) (-3763 (*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))) (-2203 (*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))) (-3618 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-968 *3)) (-4 *3 (-551)))))
-(-10 -7 (-15 -3618 ((-112) |#1|)) (-15 -2203 (|#1| |#1|)) (-15 -3763 (|#1| |#1|)) (-15 -4079 ((-650 |#1|) |#1| |#1|)))
-((-3029 (((-1282) (-868)) 9)))
-(((-969) (-10 -7 (-15 -3029 ((-1282) (-868))))) (T -969))
-((-3029 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-969)))))
-(-10 -7 (-15 -3029 ((-1282) (-868))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 78 (|has| |#1| (-562)))) (-3074 (($ $) 79 (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 34)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1956 (($ $) 31)) (-2875 (((-3 $ "failed") $) 42)) (-3988 (($ $) NIL (|has| |#1| (-458)))) (-3720 (($ $ |#1| |#2| $) 62)) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) 17)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| |#2|) NIL)) (-2575 ((|#2| $) 24)) (-1918 (($ (-1 |#2| |#2|) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1915 (($ $) 28)) (-1927 ((|#1| $) 26)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) 51)) (-1898 ((|#1| $) NIL)) (-1319 (($ $ |#2| |#1| $) 90 (-12 (|has| |#2| (-132)) (|has| |#1| (-562))))) (-2547 (((-3 $ "failed") $ $) 91 (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) 85 (|has| |#1| (-562)))) (-2130 ((|#2| $) 22)) (-1848 ((|#1| $) NIL (|has| |#1| (-458)))) (-3799 (((-868) $) NIL) (($ (-570)) 46) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 41) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ |#2|) 37)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) 15 T CONST)) (-4247 (($ $ $ (-777)) 74 (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) 84 (|has| |#1| (-562)))) (-1861 (($) 27 T CONST)) (-1875 (($) 12 T CONST)) (-3022 (((-112) $ $) 83)) (-3122 (($ $ |#1|) 92 (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1319 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|))) (-1058) (-798)) (T -970))
-((-1319 (*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 -1319 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL (-2892 (-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)))))) (-3744 (($ $ $) 65 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))) (-3990 (((-3 $ "failed") $ $) 52 (-2892 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))))) (-3510 (((-777)) 36 (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-2427 ((|#2| $) 22)) (-3964 ((|#1| $) 21)) (-1705 (($) NIL (-2892 (-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)) (-2875 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3446 (($) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-4346 (((-112) $) NIL (-2892 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3466 (($ $ $) NIL (-2892 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2800 (($ $ $) NIL (-2892 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3875 (($ |#1| |#2|) 20)) (-1884 (((-928) $) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 39 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-2268 (($ (-928)) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-3577 (((-1129) $) NIL)) (-2020 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-4391 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-3799 (((-868) $) 14)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 42 (-2892 (-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)) (-1875 (($) 25 (-2892 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))) CONST)) (-3072 (((-112) $ $) NIL (-2892 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3052 (((-112) $ $) NIL (-2892 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3022 (((-112) $ $) 19)) (-3062 (((-112) $ $) NIL (-2892 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3042 (((-112) $ $) 69 (-2892 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3122 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-3111 (($ $ $) 58 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 55 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-3101 (($ $ $) 45 (-2892 (-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 (-2892 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))) (($ $ (-928)) NIL (-2892 (-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 (-2892 (-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 (-2892 (-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 (-2892 (-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 -3875 ($ |#1| |#2|)) (-15 -3964 (|#1| $)) (-15 -2427 (|#2| $)))) (-1109) (-1109)) (T -971))
-((-3875 (*1 *1 *2 *3) (-12 (-5 *1 (-971 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-3964 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-971 *2 *3)) (-4 *3 (-1109)))) (-2427 (*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 -3875 ($ |#1| |#2|)) (-15 -3964 (|#1| $)) (-15 -2427 (|#2| $))))
-((-2308 (((-1113) $) 12)) (-3194 (($ (-512) (-1113)) 14)) (-3600 (((-512) $) 9)) (-3799 (((-868) $) 24)))
-(((-972) (-13 (-619 (-868)) (-10 -8 (-15 -3600 ((-512) $)) (-15 -2308 ((-1113) $)) (-15 -3194 ($ (-512) (-1113)))))) (T -972))
-((-3600 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-972)))) (-2308 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-972)))) (-3194 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-972)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3600 ((-512) $)) (-15 -2308 ((-1113) $)) (-15 -3194 ($ (-512) (-1113)))))
-((-2558 (((-112) $ $) NIL)) (-3106 (($) NIL T CONST)) (-1823 (($ $ $) 30)) (-1795 (($ $) 24)) (-1988 (((-1168) $) NIL)) (-3025 (((-697 (-879 $ $)) $) 55)) (-3023 (((-697 $) $) 45)) (-3976 (((-697 (-879 $ $)) $) 56)) (-1380 (((-697 (-879 $ $)) $) 57)) (-2442 (((-697 |#1|) $) 36)) (-2229 (((-697 (-879 $ $)) $) 54)) (-3991 (($ $ $) 31)) (-3577 (((-1129) $) NIL)) (-1954 (($) NIL T CONST)) (-2148 (($ $ $) 32)) (-3053 (($ $ $) 29)) (-4358 (($ $ $) 27)) (-3799 (((-868) $) 59) (($ |#1|) 12)) (-2335 (((-112) $ $) NIL)) (-1809 (($ $ $) 28)) (-3022 (((-112) $ $) NIL)))
-(((-973 |#1|) (-13 (-976) (-622 |#1|) (-10 -8 (-15 -2442 ((-697 |#1|) $)) (-15 -3023 ((-697 $) $)) (-15 -2229 ((-697 (-879 $ $)) $)) (-15 -3025 ((-697 (-879 $ $)) $)) (-15 -3976 ((-697 (-879 $ $)) $)) (-15 -1380 ((-697 (-879 $ $)) $)) (-15 -4358 ($ $ $)) (-15 -3053 ($ $ $)))) (-1109)) (T -973))
-((-2442 (*1 *2 *1) (-12 (-5 *2 (-697 *3)) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3023 (*1 *2 *1) (-12 (-5 *2 (-697 (-973 *3))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-2229 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3025 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3976 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-1380 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-4358 (*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))) (-3053 (*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
-(-13 (-976) (-622 |#1|) (-10 -8 (-15 -2442 ((-697 |#1|) $)) (-15 -3023 ((-697 $) $)) (-15 -2229 ((-697 (-879 $ $)) $)) (-15 -3025 ((-697 (-879 $ $)) $)) (-15 -3976 ((-697 (-879 $ $)) $)) (-15 -1380 ((-697 (-879 $ $)) $)) (-15 -4358 ($ $ $)) (-15 -3053 ($ $ $))))
-((-4092 (((-973 |#1|) (-973 |#1|)) 46)) (-1922 (((-973 |#1|) (-973 |#1|)) 22)) (-2031 (((-1111 |#1|) (-973 |#1|)) 41)))
-(((-974 |#1|) (-13 (-1227) (-10 -7 (-15 -1922 ((-973 |#1|) (-973 |#1|))) (-15 -2031 ((-1111 |#1|) (-973 |#1|))) (-15 -4092 ((-973 |#1|) (-973 |#1|))))) (-1109)) (T -974))
-((-1922 (*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))) (-2031 (*1 *2 *3) (-12 (-5 *3 (-973 *4)) (-4 *4 (-1109)) (-5 *2 (-1111 *4)) (-5 *1 (-974 *4)))) (-4092 (*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))))
-(-13 (-1227) (-10 -7 (-15 -1922 ((-973 |#1|) (-973 |#1|))) (-15 -2031 ((-1111 |#1|) (-973 |#1|))) (-15 -4092 ((-973 |#1|) (-973 |#1|)))))
-((-1356 (((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|)) 29)))
-(((-975 |#1| |#2|) (-13 (-1227) (-10 -7 (-15 -1356 ((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|))))) (-1109) (-1109)) (T -975))
-((-1356 (*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 -1356 ((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|)))))
-((-2558 (((-112) $ $) 15)) (-3106 (($) 14 T CONST)) (-1823 (($ $ $) 6)) (-1795 (($ $) 8)) (-1988 (((-1168) $) 19)) (-3991 (($ $ $) 12)) (-3577 (((-1129) $) 18)) (-1954 (($) 13 T CONST)) (-2148 (($ $ $) 11)) (-3799 (((-868) $) 17)) (-2335 (((-112) $ $) 20)) (-1809 (($ $ $) 7)) (-3022 (((-112) $ $) 16)))
+((-1411 (*1 *1 *1 *2) (-12 (-5 *2 (-1101 *1)) (-4 *1 (-966)))) (-1411 (*1 *1 *1 *2) (-12 (-4 *1 (-966)) (-5 *2 (-1186)))))
+(-13 (-10 -8 (-15 -1411 ($ $ (-1186))) (-15 -1411 ($ $ (-1101 $)))))
+((-3511 (((-2 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186)) 26) (((-2 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186))) 27) (((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186)) 49)))
+(((-967 |#1|) (-10 -7 (-15 -3511 ((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186))) (-15 -3511 ((-2 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -3511 ((-2 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186)))) (-13 (-368) (-148))) (T -967))
+((-3511 (*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 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 *6))) (|:| |prim| (-1182 *6)))) (-5 *1 (-967 *6)))) (-3511 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-959 *5))) (-5 *4 (-650 (-1186))) (-4 *5 (-13 (-368) (-148))) (-5 *2 (-2 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 *5))) (|:| |prim| (-1182 *5)))) (-5 *1 (-967 *5)))) (-3511 (*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 -3511 ((-2 (|:| |coef1| (-570)) (|:| |coef2| (-570)) (|:| |prim| (-1182 |#1|))) (-959 |#1|) (-1186) (-959 |#1|) (-1186))) (-15 -3511 ((-2 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)))) (-15 -3511 ((-2 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 |#1|))) (|:| |prim| (-1182 |#1|))) (-650 (-959 |#1|)) (-650 (-1186)) (-1186))))
+((-3496 (((-650 |#1|) |#1| |#1|) 47)) (-1336 (((-112) |#1|) 44)) (-3458 ((|#1| |#1|) 79)) (-4419 ((|#1| |#1|) 78)))
+(((-968 |#1|) (-10 -7 (-15 -1336 ((-112) |#1|)) (-15 -4419 (|#1| |#1|)) (-15 -3458 (|#1| |#1|)) (-15 -3496 ((-650 |#1|) |#1| |#1|))) (-551)) (T -968))
+((-3496 (*1 *2 *3 *3) (-12 (-5 *2 (-650 *3)) (-5 *1 (-968 *3)) (-4 *3 (-551)))) (-3458 (*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))) (-4419 (*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))) (-1336 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-968 *3)) (-4 *3 (-551)))))
+(-10 -7 (-15 -1336 ((-112) |#1|)) (-15 -4419 (|#1| |#1|)) (-15 -3458 (|#1| |#1|)) (-15 -3496 ((-650 |#1|) |#1| |#1|)))
+((-3032 (((-1282) (-868)) 9)))
+(((-969) (-10 -7 (-15 -3032 ((-1282) (-868))))) (T -969))
+((-3032 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-969)))))
+(-10 -7 (-15 -3032 ((-1282) (-868))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 78 (|has| |#1| (-562)))) (-4306 (($ $) 79 (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 34)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1954 (($ $) 31)) (-1929 (((-3 $ "failed") $) 42)) (-1944 (($ $) NIL (|has| |#1| (-458)))) (-4243 (($ $ |#1| |#2| $) 62)) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) 17)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| |#2|) NIL)) (-3970 ((|#2| $) 24)) (-1414 (($ (-1 |#2| |#2|) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-1914 (($ $) 28)) (-1928 ((|#1| $) 26)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) 51)) (-1900 ((|#1| $) NIL)) (-1701 (($ $ |#2| |#1| $) 90 (-12 (|has| |#2| (-132)) (|has| |#1| (-562))))) (-2548 (((-3 $ "failed") $ $) 91 (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) 85 (|has| |#1| (-562)))) (-3079 ((|#2| $) 22)) (-2077 ((|#1| $) NIL (|has| |#1| (-458)))) (-3802 (((-868) $) NIL) (($ (-570)) 46) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 41) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ |#2|) 37)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) 15 T CONST)) (-2648 (($ $ $ (-777)) 74 (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) 84 (|has| |#1| (-562)))) (-1862 (($) 27 T CONST)) (-1876 (($) 12 T CONST)) (-3025 (((-112) $ $) 83)) (-3125 (($ $ |#1|) 92 (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1701 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4450)) (-6 -4450) |%noBranch|))) (-1058) (-798)) (T -970))
+((-1701 (*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 -1701 ($ $ |#2| |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4450)) (-6 -4450) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL (-2895 (-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)))))) (-3271 (($ $ $) 65 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))))) (-1966 (((-3 $ "failed") $ $) 52 (-2895 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))) (-12 (|has| |#1| (-132)) (|has| |#2| (-132))) (-12 (|has| |#1| (-799)) (|has| |#2| (-799)))))) (-3513 (((-777)) 36 (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-3112 ((|#2| $) 22)) (-1657 ((|#1| $) 21)) (-3195 (($) NIL (-2895 (-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)) (-1929 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3449 (($) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-4139 (((-112) $) NIL (-2895 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))))) (-3469 (($ $ $) NIL (-2895 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2472 (($ $ $) NIL (-2895 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-2062 (($ |#1| |#2|) 20)) (-2400 (((-928) $) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 39 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-2267 (($ (-928)) NIL (-12 (|has| |#1| (-373)) (|has| |#2| (-373))))) (-3580 (((-1129) $) NIL)) (-4307 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-3381 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-3802 (((-868) $) 14)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 42 (-2895 (-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)) (-1876 (($) 25 (-2895 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732)))) CONST)) (-3075 (((-112) $ $) NIL (-2895 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3055 (((-112) $ $) NIL (-2895 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3025 (((-112) $ $) 19)) (-3065 (((-112) $ $) NIL (-2895 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3045 (((-112) $ $) 69 (-2895 (-12 (|has| |#1| (-799)) (|has| |#2| (-799))) (-12 (|has| |#1| (-856)) (|has| |#2| (-856)))))) (-3125 (($ $ $) NIL (-12 (|has| |#1| (-479)) (|has| |#2| (-479))))) (-3114 (($ $ $) 58 (-12 (|has| |#1| (-21)) (|has| |#2| (-21)))) (($ $) 55 (-12 (|has| |#1| (-21)) (|has| |#2| (-21))))) (-3104 (($ $ $) 45 (-2895 (-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 (-2895 (-12 (|has| |#1| (-479)) (|has| |#2| (-479))) (-12 (|has| |#1| (-732)) (|has| |#2| (-732))))) (($ $ (-928)) NIL (-2895 (-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 (-2895 (-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 (-2895 (-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 (-2895 (-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 -2062 ($ |#1| |#2|)) (-15 -1657 (|#1| $)) (-15 -3112 (|#2| $)))) (-1109) (-1109)) (T -971))
+((-2062 (*1 *1 *2 *3) (-12 (-5 *1 (-971 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-1657 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-971 *2 *3)) (-4 *3 (-1109)))) (-3112 (*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 -2062 ($ |#1| |#2|)) (-15 -1657 (|#1| $)) (-15 -3112 (|#2| $))))
+((-2308 (((-1113) $) 12)) (-3197 (($ (-512) (-1113)) 14)) (-3602 (((-512) $) 9)) (-3802 (((-868) $) 24)))
+(((-972) (-13 (-619 (-868)) (-10 -8 (-15 -3602 ((-512) $)) (-15 -2308 ((-1113) $)) (-15 -3197 ($ (-512) (-1113)))))) (T -972))
+((-3602 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-972)))) (-2308 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-972)))) (-3197 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-972)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3602 ((-512) $)) (-15 -2308 ((-1113) $)) (-15 -3197 ($ (-512) (-1113)))))
+((-2560 (((-112) $ $) NIL)) (-3109 (($) NIL T CONST)) (-1824 (($ $ $) 30)) (-1796 (($ $) 24)) (-3989 (((-1168) $) NIL)) (-3865 (((-697 (-879 $ $)) $) 55)) (-3848 (((-697 $) $) 45)) (-1811 (((-697 (-879 $ $)) $) 56)) (-3781 (((-697 (-879 $ $)) $) 57)) (-2079 (((-697 |#1|) $) 36)) (-1607 (((-697 (-879 $ $)) $) 54)) (-1978 (($ $ $) 31)) (-3580 (((-1129) $) NIL)) (-1953 (($) NIL T CONST)) (-2073 (($ $ $) 32)) (-4103 (($ $ $) 29)) (-4267 (($ $ $) 27)) (-3802 (((-868) $) 59) (($ |#1|) 12)) (-3359 (((-112) $ $) NIL)) (-1810 (($ $ $) 28)) (-3025 (((-112) $ $) NIL)))
+(((-973 |#1|) (-13 (-976) (-622 |#1|) (-10 -8 (-15 -2079 ((-697 |#1|) $)) (-15 -3848 ((-697 $) $)) (-15 -1607 ((-697 (-879 $ $)) $)) (-15 -3865 ((-697 (-879 $ $)) $)) (-15 -1811 ((-697 (-879 $ $)) $)) (-15 -3781 ((-697 (-879 $ $)) $)) (-15 -4267 ($ $ $)) (-15 -4103 ($ $ $)))) (-1109)) (T -973))
+((-2079 (*1 *2 *1) (-12 (-5 *2 (-697 *3)) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3848 (*1 *2 *1) (-12 (-5 *2 (-697 (-973 *3))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-1607 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3865 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-1811 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-3781 (*1 *2 *1) (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))) (-4267 (*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))) (-4103 (*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
+(-13 (-976) (-622 |#1|) (-10 -8 (-15 -2079 ((-697 |#1|) $)) (-15 -3848 ((-697 $) $)) (-15 -1607 ((-697 (-879 $ $)) $)) (-15 -3865 ((-697 (-879 $ $)) $)) (-15 -1811 ((-697 (-879 $ $)) $)) (-15 -3781 ((-697 (-879 $ $)) $)) (-15 -4267 ($ $ $)) (-15 -4103 ($ $ $))))
+((-3643 (((-973 |#1|) (-973 |#1|)) 46)) (-1473 (((-973 |#1|) (-973 |#1|)) 22)) (-3244 (((-1111 |#1|) (-973 |#1|)) 41)))
+(((-974 |#1|) (-13 (-1227) (-10 -7 (-15 -1473 ((-973 |#1|) (-973 |#1|))) (-15 -3244 ((-1111 |#1|) (-973 |#1|))) (-15 -3643 ((-973 |#1|) (-973 |#1|))))) (-1109)) (T -974))
+((-1473 (*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))) (-3244 (*1 *2 *3) (-12 (-5 *3 (-973 *4)) (-4 *4 (-1109)) (-5 *2 (-1111 *4)) (-5 *1 (-974 *4)))) (-3643 (*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))))
+(-13 (-1227) (-10 -7 (-15 -1473 ((-973 |#1|) (-973 |#1|))) (-15 -3244 ((-1111 |#1|) (-973 |#1|))) (-15 -3643 ((-973 |#1|) (-973 |#1|)))))
+((-1357 (((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|)) 29)))
+(((-975 |#1| |#2|) (-13 (-1227) (-10 -7 (-15 -1357 ((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|))))) (-1109) (-1109)) (T -975))
+((-1357 (*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 -1357 ((-973 |#2|) (-1 |#2| |#1|) (-973 |#1|)))))
+((-2560 (((-112) $ $) 15)) (-3109 (($) 14 T CONST)) (-1824 (($ $ $) 6)) (-1796 (($ $) 8)) (-3989 (((-1168) $) 19)) (-1978 (($ $ $) 12)) (-3580 (((-1129) $) 18)) (-1953 (($) 13 T CONST)) (-2073 (($ $ $) 11)) (-3802 (((-868) $) 17)) (-3359 (((-112) $ $) 20)) (-1810 (($ $ $) 7)) (-3025 (((-112) $ $) 16)))
(((-976) (-141)) (T -976))
-((-3106 (*1 *1) (-4 *1 (-976))) (-1954 (*1 *1) (-4 *1 (-976))) (-3991 (*1 *1 *1 *1) (-4 *1 (-976))) (-2148 (*1 *1 *1 *1) (-4 *1 (-976))))
-(-13 (-113) (-1109) (-10 -8 (-15 -3106 ($) -3725) (-15 -1954 ($) -3725) (-15 -3991 ($ $ $)) (-15 -2148 ($ $ $))))
+((-3109 (*1 *1) (-4 *1 (-976))) (-1953 (*1 *1) (-4 *1 (-976))) (-1978 (*1 *1 *1 *1) (-4 *1 (-976))) (-2073 (*1 *1 *1 *1) (-4 *1 (-976))))
+(-13 (-113) (-1109) (-10 -8 (-15 -3109 ($) -3728) (-15 -1953 ($) -3728) (-15 -1978 ($ $ $)) (-15 -2073 ($ $ $))))
(((-102) . T) ((-113) . T) ((-619 (-868)) . T) ((-1109) . T) ((-1227) . T))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-1705 (($) 7 T CONST)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2168 (($ $ $) 44)) (-2024 (($ $ $) 45)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2800 ((|#1| $) 46)) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3195 (($) 7 T CONST)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2270 (($ $ $) 44)) (-3183 (($ $ $) 45)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2472 ((|#1| $) 46)) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-977 |#1|) (-141) (-856)) (T -977))
-((-2800 (*1 *2 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))) (-2024 (*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))) (-2168 (*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4449) (-15 -2800 (|t#1| $)) (-15 -2024 ($ $ $)) (-15 -2168 ($ $ $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-1329 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1942 |#2|)) |#2| |#2|) 105)) (-2022 ((|#2| |#2| |#2|) 103)) (-4123 (((-2 (|:| |coef2| |#2|) (|:| -1942 |#2|)) |#2| |#2|) 107)) (-2505 (((-2 (|:| |coef1| |#2|) (|:| -1942 |#2|)) |#2| |#2|) 109)) (-3765 (((-2 (|:| |coef2| |#2|) (|:| -2407 |#1|)) |#2| |#2|) 131 (|has| |#1| (-458)))) (-2074 (((-2 (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|) 56)) (-1686 (((-2 (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|) 80)) (-2414 (((-2 (|:| |coef1| |#2|) (|:| -4322 |#1|)) |#2| |#2|) 82)) (-3394 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 96)) (-3968 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 89)) (-4416 (((-2 (|:| |coef2| |#2|) (|:| -3570 |#1|)) |#2|) 121)) (-1598 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 92)) (-3941 (((-650 (-777)) |#2| |#2|) 102)) (-3632 ((|#1| |#2| |#2|) 50)) (-4417 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2407 |#1|)) |#2| |#2|) 129 (|has| |#1| (-458)))) (-2407 ((|#1| |#2| |#2|) 127 (|has| |#1| (-458)))) (-3241 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|) 54)) (-1399 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|) 79)) (-4322 ((|#1| |#2| |#2|) 76)) (-3640 (((-2 (|:| -1452 |#1|) (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2|) 41)) (-1767 ((|#2| |#2| |#2| |#2| |#1|) 67)) (-3688 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 94)) (-1759 ((|#2| |#2| |#2|) 93)) (-2912 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 87)) (-3852 ((|#2| |#2| |#2| (-777)) 85)) (-1942 ((|#2| |#2| |#2|) 135 (|has| |#1| (-458)))) (-2547 (((-1277 |#2|) (-1277 |#2|) |#1|) 22)) (-2384 (((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2|) 46)) (-1506 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3570 |#1|)) |#2|) 119)) (-3570 ((|#1| |#2|) 116)) (-2358 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 91)) (-2568 ((|#2| |#2| |#2| (-777)) 90)) (-3856 (((-650 |#2|) |#2| |#2|) 99)) (-2072 ((|#2| |#2| |#1| |#1| (-777)) 62)) (-3133 ((|#1| |#1| |#1| (-777)) 61)) (* (((-1277 |#2|) |#1| (-1277 |#2|)) 17)))
-(((-978 |#1| |#2|) (-10 -7 (-15 -4322 (|#1| |#2| |#2|)) (-15 -1399 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|)) (-15 -1686 ((-2 (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|)) (-15 -2414 ((-2 (|:| |coef1| |#2|) (|:| -4322 |#1|)) |#2| |#2|)) (-15 -3852 (|#2| |#2| |#2| (-777))) (-15 -2912 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3968 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -2568 (|#2| |#2| |#2| (-777))) (-15 -2358 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1598 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1759 (|#2| |#2| |#2|)) (-15 -3688 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3394 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2022 (|#2| |#2| |#2|)) (-15 -1329 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1942 |#2|)) |#2| |#2|)) (-15 -4123 ((-2 (|:| |coef2| |#2|) (|:| -1942 |#2|)) |#2| |#2|)) (-15 -2505 ((-2 (|:| |coef1| |#2|) (|:| -1942 |#2|)) |#2| |#2|)) (-15 -3570 (|#1| |#2|)) (-15 -1506 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3570 |#1|)) |#2|)) (-15 -4416 ((-2 (|:| |coef2| |#2|) (|:| -3570 |#1|)) |#2|)) (-15 -3856 ((-650 |#2|) |#2| |#2|)) (-15 -3941 ((-650 (-777)) |#2| |#2|)) (IF (|has| |#1| (-458)) (PROGN (-15 -2407 (|#1| |#2| |#2|)) (-15 -4417 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2407 |#1|)) |#2| |#2|)) (-15 -3765 ((-2 (|:| |coef2| |#2|) (|:| -2407 |#1|)) |#2| |#2|)) (-15 -1942 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1277 |#2|) |#1| (-1277 |#2|))) (-15 -2547 ((-1277 |#2|) (-1277 |#2|) |#1|)) (-15 -3640 ((-2 (|:| -1452 |#1|) (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2|)) (-15 -2384 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2|)) (-15 -3133 (|#1| |#1| |#1| (-777))) (-15 -2072 (|#2| |#2| |#1| |#1| (-777))) (-15 -1767 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3632 (|#1| |#2| |#2|)) (-15 -3241 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|)) (-15 -2074 ((-2 (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|))) (-562) (-1253 |#1|)) (T -978))
-((-2074 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4322 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3241 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4322 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3632 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-1767 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-2072 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3133 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *2 (-562)) (-5 *1 (-978 *2 *4)) (-4 *4 (-1253 *2)))) (-2384 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3640 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -1452 *4) (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2547 (*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)))) (-1942 (*1 *2 *2 *2) (-12 (-4 *3 (-458)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3765 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2407 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-4417 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2407 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2407 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-4 *2 (-458)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-3941 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-777))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3856 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-4416 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3570 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1506 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3570 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3570 (*1 *2 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-2505 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1942 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-4123 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1942 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1329 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1942 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2022 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3394 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3688 (*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)))) (-1759 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-1598 (*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)))) (-2358 (*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)))) (-2568 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2)) (-4 *2 (-1253 *4)))) (-3968 (*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)))) (-2912 (*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)))) (-3852 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2)) (-4 *2 (-1253 *4)))) (-2414 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -4322 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1686 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4322 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1399 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4322 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-4322 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))))
-(-10 -7 (-15 -4322 (|#1| |#2| |#2|)) (-15 -1399 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|)) (-15 -1686 ((-2 (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|)) (-15 -2414 ((-2 (|:| |coef1| |#2|) (|:| -4322 |#1|)) |#2| |#2|)) (-15 -3852 (|#2| |#2| |#2| (-777))) (-15 -2912 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3968 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -2568 (|#2| |#2| |#2| (-777))) (-15 -2358 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1598 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1759 (|#2| |#2| |#2|)) (-15 -3688 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3394 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -2022 (|#2| |#2| |#2|)) (-15 -1329 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1942 |#2|)) |#2| |#2|)) (-15 -4123 ((-2 (|:| |coef2| |#2|) (|:| -1942 |#2|)) |#2| |#2|)) (-15 -2505 ((-2 (|:| |coef1| |#2|) (|:| -1942 |#2|)) |#2| |#2|)) (-15 -3570 (|#1| |#2|)) (-15 -1506 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3570 |#1|)) |#2|)) (-15 -4416 ((-2 (|:| |coef2| |#2|) (|:| -3570 |#1|)) |#2|)) (-15 -3856 ((-650 |#2|) |#2| |#2|)) (-15 -3941 ((-650 (-777)) |#2| |#2|)) (IF (|has| |#1| (-458)) (PROGN (-15 -2407 (|#1| |#2| |#2|)) (-15 -4417 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2407 |#1|)) |#2| |#2|)) (-15 -3765 ((-2 (|:| |coef2| |#2|) (|:| -2407 |#1|)) |#2| |#2|)) (-15 -1942 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1277 |#2|) |#1| (-1277 |#2|))) (-15 -2547 ((-1277 |#2|) (-1277 |#2|) |#1|)) (-15 -3640 ((-2 (|:| -1452 |#1|) (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2|)) (-15 -2384 ((-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) |#2| |#2|)) (-15 -3133 (|#1| |#1| |#1| (-777))) (-15 -2072 (|#2| |#2| |#1| |#1| (-777))) (-15 -1767 (|#2| |#2| |#2| |#2| |#1|)) (-15 -3632 (|#1| |#2| |#2|)) (-15 -3241 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|)) (-15 -2074 ((-2 (|:| |coef2| |#2|) (|:| -4322 |#1|)) |#2| |#2|)))
-((-2558 (((-112) $ $) NIL)) (-3863 (((-1226) $) 13)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1434 (((-1144) $) 10)) (-3799 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-979) (-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $)) (-15 -3863 ((-1226) $))))) (T -979))
-((-1434 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-979)))) (-3863 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-979)))))
-(-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $)) (-15 -3863 ((-1226) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 18)) (-3990 (((-3 $ "failed") $ $) 36)) (-1705 (($) NIL T CONST)) (-2813 (((-650 (-879 (-928) (-928))) $) 50)) (-3099 (((-928) $) 78)) (-2267 (($ (-650 (-928))) 16)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2020 (($ $) 53)) (-3799 (((-868) $) 74) (((-650 (-928)) $) 11)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 8 T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 22)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 20)) (-3101 (($ $ $) 24)) (* (($ (-928) $) NIL) (($ (-777) $) 31)))
-(((-980) (-13 (-801) (-619 (-650 (-928))) (-10 -8 (-15 -2267 ($ (-650 (-928)))) (-15 -2813 ((-650 (-879 (-928) (-928))) $)) (-15 -3099 ((-928) $)) (-15 -2020 ($ $))))) (T -980))
-((-2267 (*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-980)))) (-2813 (*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-928) (-928)))) (-5 *1 (-980)))) (-3099 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-980)))) (-2020 (*1 *1 *1) (-5 *1 (-980))))
-(-13 (-801) (-619 (-650 (-928))) (-10 -8 (-15 -2267 ($ (-650 (-928)))) (-15 -2813 ((-650 (-879 (-928) (-928))) $)) (-15 -3099 ((-928) $)) (-15 -2020 ($ $))))
-((-3122 (($ $ |#2|) 31)) (-3111 (($ $) 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 -3122 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#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 -3122 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 |#3|) $) 86)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1956 (($ $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-2379 (((-112) $) 85)) (-4346 (((-112) $) 35)) (-2359 (((-112) $) 74)) (-3912 (($ |#1| |#2|) 73) (($ $ |#3| |#2|) 88) (($ $ (-650 |#3|) (-650 |#2|)) 87)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-2130 ((|#2| $) 76)) (-2853 (($ $) 84)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-2249 ((|#1| $ |#2|) 71)) (-3532 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))))
+((-2472 (*1 *2 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))) (-3183 (*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))) (-2270 (*1 *1 *1 *1) (-12 (-4 *1 (-977 *2)) (-4 *2 (-856)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4452) (-15 -2472 (|t#1| $)) (-15 -3183 ($ $ $)) (-15 -2270 ($ $ $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-1821 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#2|)) |#2| |#2|) 105)) (-3162 ((|#2| |#2| |#2|) 103)) (-2731 (((-2 (|:| |coef2| |#2|) (|:| -1939 |#2|)) |#2| |#2|) 107)) (-1416 (((-2 (|:| |coef1| |#2|) (|:| -1939 |#2|)) |#2| |#2|) 109)) (-3478 (((-2 (|:| |coef2| |#2|) (|:| -2915 |#1|)) |#2| |#2|) 131 (|has| |#1| (-458)))) (-3707 (((-2 (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|) 56)) (-4177 (((-2 (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|) 80)) (-2983 (((-2 (|:| |coef1| |#2|) (|:| -3930 |#1|)) |#2| |#2|) 82)) (-4239 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 96)) (-1706 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 89)) (-3569 (((-2 (|:| |coef2| |#2|) (|:| -2265 |#1|)) |#2|) 121)) (-1454 (((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 92)) (-1387 (((-650 (-777)) |#2| |#2|) 102)) (-1501 ((|#1| |#2| |#2|) 50)) (-3581 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2915 |#1|)) |#2| |#2|) 129 (|has| |#1| (-458)))) (-2915 ((|#1| |#2| |#2|) 127 (|has| |#1| (-458)))) (-2301 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|) 54)) (-3951 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|) 79)) (-3930 ((|#1| |#2| |#2|) 76)) (-1601 (((-2 (|:| -1453 |#1|) (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2|) 41)) (-2588 ((|#2| |#2| |#2| |#2| |#1|) 67)) (-3939 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|) 94)) (-3693 ((|#2| |#2| |#2|) 93)) (-2144 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 87)) (-3050 ((|#2| |#2| |#2| (-777)) 85)) (-1939 ((|#2| |#2| |#2|) 135 (|has| |#1| (-458)))) (-2548 (((-1277 |#2|) (-1277 |#2|) |#1|) 22)) (-2696 (((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2|) 46)) (-3036 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2265 |#1|)) |#2|) 119)) (-2265 ((|#1| |#2|) 116)) (-3621 (((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777)) 91)) (-3929 ((|#2| |#2| |#2| (-777)) 90)) (-3089 (((-650 |#2|) |#2| |#2|) 99)) (-3689 ((|#2| |#2| |#1| |#1| (-777)) 62)) (-3688 ((|#1| |#1| |#1| (-777)) 61)) (* (((-1277 |#2|) |#1| (-1277 |#2|)) 17)))
+(((-978 |#1| |#2|) (-10 -7 (-15 -3930 (|#1| |#2| |#2|)) (-15 -3951 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|)) (-15 -4177 ((-2 (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|)) (-15 -2983 ((-2 (|:| |coef1| |#2|) (|:| -3930 |#1|)) |#2| |#2|)) (-15 -3050 (|#2| |#2| |#2| (-777))) (-15 -2144 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1706 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3929 (|#2| |#2| |#2| (-777))) (-15 -3621 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1454 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3693 (|#2| |#2| |#2|)) (-15 -3939 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4239 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3162 (|#2| |#2| |#2|)) (-15 -1821 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#2|)) |#2| |#2|)) (-15 -2731 ((-2 (|:| |coef2| |#2|) (|:| -1939 |#2|)) |#2| |#2|)) (-15 -1416 ((-2 (|:| |coef1| |#2|) (|:| -1939 |#2|)) |#2| |#2|)) (-15 -2265 (|#1| |#2|)) (-15 -3036 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2265 |#1|)) |#2|)) (-15 -3569 ((-2 (|:| |coef2| |#2|) (|:| -2265 |#1|)) |#2|)) (-15 -3089 ((-650 |#2|) |#2| |#2|)) (-15 -1387 ((-650 (-777)) |#2| |#2|)) (IF (|has| |#1| (-458)) (PROGN (-15 -2915 (|#1| |#2| |#2|)) (-15 -3581 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2915 |#1|)) |#2| |#2|)) (-15 -3478 ((-2 (|:| |coef2| |#2|) (|:| -2915 |#1|)) |#2| |#2|)) (-15 -1939 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1277 |#2|) |#1| (-1277 |#2|))) (-15 -2548 ((-1277 |#2|) (-1277 |#2|) |#1|)) (-15 -1601 ((-2 (|:| -1453 |#1|) (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2|)) (-15 -2696 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2|)) (-15 -3688 (|#1| |#1| |#1| (-777))) (-15 -3689 (|#2| |#2| |#1| |#1| (-777))) (-15 -2588 (|#2| |#2| |#2| |#2| |#1|)) (-15 -1501 (|#1| |#2| |#2|)) (-15 -2301 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|)) (-15 -3707 ((-2 (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|))) (-562) (-1253 |#1|)) (T -978))
+((-3707 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3930 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2301 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3930 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1501 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-2588 (*1 *2 *2 *2 *2 *3) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3689 (*1 *2 *2 *3 *3 *4) (-12 (-5 *4 (-777)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3688 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *2 (-562)) (-5 *1 (-978 *2 *4)) (-4 *4 (-1253 *2)))) (-2696 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1601 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -1453 *4) (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2548 (*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)))) (-1939 (*1 *2 *2 *2) (-12 (-4 *3 (-458)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-3478 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2915 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3581 (*1 *2 *3 *3) (-12 (-4 *4 (-458)) (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2915 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2915 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-4 *2 (-458)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-1387 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-777))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3089 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3569 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2265 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3036 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2265 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2265 (*1 *2 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))) (-1416 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1939 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-2731 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1939 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-1821 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1939 *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3162 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-4239 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3939 (*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)))) (-3693 (*1 *2 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))) (-1454 (*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)))) (-3621 (*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)))) (-3929 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2)) (-4 *2 (-1253 *4)))) (-1706 (*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)))) (-2144 (*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)))) (-3050 (*1 *2 *2 *2 *3) (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2)) (-4 *2 (-1253 *4)))) (-2983 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3930 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-4177 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3930 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3951 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3930 *4))) (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))) (-3930 (*1 *2 *3 *3) (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))))
+(-10 -7 (-15 -3930 (|#1| |#2| |#2|)) (-15 -3951 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|)) (-15 -4177 ((-2 (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|)) (-15 -2983 ((-2 (|:| |coef1| |#2|) (|:| -3930 |#1|)) |#2| |#2|)) (-15 -3050 (|#2| |#2| |#2| (-777))) (-15 -2144 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1706 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3929 (|#2| |#2| |#2| (-777))) (-15 -3621 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -1454 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2| (-777))) (-15 -3693 (|#2| |#2| |#2|)) (-15 -3939 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -4239 ((-2 (|:| |coef2| |#2|) (|:| |subResultant| |#2|)) |#2| |#2|)) (-15 -3162 (|#2| |#2| |#2|)) (-15 -1821 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -1939 |#2|)) |#2| |#2|)) (-15 -2731 ((-2 (|:| |coef2| |#2|) (|:| -1939 |#2|)) |#2| |#2|)) (-15 -1416 ((-2 (|:| |coef1| |#2|) (|:| -1939 |#2|)) |#2| |#2|)) (-15 -2265 (|#1| |#2|)) (-15 -3036 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2265 |#1|)) |#2|)) (-15 -3569 ((-2 (|:| |coef2| |#2|) (|:| -2265 |#1|)) |#2|)) (-15 -3089 ((-650 |#2|) |#2| |#2|)) (-15 -1387 ((-650 (-777)) |#2| |#2|)) (IF (|has| |#1| (-458)) (PROGN (-15 -2915 (|#1| |#2| |#2|)) (-15 -3581 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -2915 |#1|)) |#2| |#2|)) (-15 -3478 ((-2 (|:| |coef2| |#2|) (|:| -2915 |#1|)) |#2| |#2|)) (-15 -1939 (|#2| |#2| |#2|))) |%noBranch|) (-15 * ((-1277 |#2|) |#1| (-1277 |#2|))) (-15 -2548 ((-1277 |#2|) (-1277 |#2|) |#1|)) (-15 -1601 ((-2 (|:| -1453 |#1|) (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2|)) (-15 -2696 ((-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) |#2| |#2|)) (-15 -3688 (|#1| |#1| |#1| (-777))) (-15 -3689 (|#2| |#2| |#1| |#1| (-777))) (-15 -2588 (|#2| |#2| |#2| |#2| |#1|)) (-15 -1501 (|#1| |#2| |#2|)) (-15 -2301 ((-2 (|:| |coef1| |#2|) (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|)) (-15 -3707 ((-2 (|:| |coef2| |#2|) (|:| -3930 |#1|)) |#2| |#2|)))
+((-2560 (((-112) $ $) NIL)) (-3866 (((-1226) $) 13)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1435 (((-1144) $) 10)) (-3802 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-979) (-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $)) (-15 -3866 ((-1226) $))))) (T -979))
+((-1435 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-979)))) (-3866 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-979)))))
+(-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $)) (-15 -3866 ((-1226) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 18)) (-1966 (((-3 $ "failed") $ $) 36)) (-3195 (($) NIL T CONST)) (-2565 (((-650 (-879 (-928) (-928))) $) 50)) (-3364 (((-928) $) 78)) (-3883 (($ (-650 (-928))) 16)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-4307 (($ $) 53)) (-3802 (((-868) $) 74) (((-650 (-928)) $) 11)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 8 T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 22)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 20)) (-3104 (($ $ $) 24)) (* (($ (-928) $) NIL) (($ (-777) $) 31)))
+(((-980) (-13 (-801) (-619 (-650 (-928))) (-10 -8 (-15 -3883 ($ (-650 (-928)))) (-15 -2565 ((-650 (-879 (-928) (-928))) $)) (-15 -3364 ((-928) $)) (-15 -4307 ($ $))))) (T -980))
+((-3883 (*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-980)))) (-2565 (*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-928) (-928)))) (-5 *1 (-980)))) (-3364 (*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-980)))) (-4307 (*1 *1 *1) (-5 *1 (-980))))
+(-13 (-801) (-619 (-650 (-928))) (-10 -8 (-15 -3883 ($ (-650 (-928)))) (-15 -2565 ((-650 (-879 (-928) (-928))) $)) (-15 -3364 ((-928) $)) (-15 -4307 ($ $))))
+((-3125 (($ $ |#2|) 31)) (-3114 (($ $) 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 -3125 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#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 -3125 (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 * (|#1| (-928) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 |#3|) $) 86)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1954 (($ $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-2646 (((-112) $) 85)) (-4139 (((-112) $) 35)) (-3633 (((-112) $) 74)) (-3915 (($ |#1| |#2|) 73) (($ $ |#3| |#2|) 88) (($ $ (-650 |#3|) (-650 |#2|)) 87)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3079 ((|#2| $) 76)) (-1682 (($ $) 84)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1864 ((|#1| $ |#2|) 71)) (-3132 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1927 (*1 *2 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *3 (-798)) (-4 *4 (-856)) (-4 *2 (-1058)))) (-1915 (*1 *1 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *4 (-856)))) (-2130 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *2 *4)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *2 (-798)))) (-3912 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-982 *4 *3 *2)) (-4 *4 (-1058)) (-4 *3 (-798)) (-4 *2 (-856)))) (-3912 (*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)))) (-1755 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *5 (-856)) (-5 *2 (-650 *5)))) (-2379 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2853 (*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 -3912 ($ $ |t#3| |t#2|)) (-15 -3912 ($ $ (-650 |t#3|) (-650 |t#2|))) (-15 -1915 ($ $)) (-15 -1927 (|t#1| $)) (-15 -2130 (|t#2| $)) (-15 -1755 ((-650 |t#3|) $)) (-15 -2379 ((-112) $)) (-15 -2853 ($ $))))
-(((-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 $ $) -2892 (|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) -2892 (|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 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1489 (((-1103 (-227)) $) 8)) (-1477 (((-1103 (-227)) $) 9)) (-3841 (((-1103 (-227)) $) 10)) (-3778 (((-650 (-650 (-950 (-227)))) $) 11)) (-3799 (((-868) $) 6)))
+((-1928 (*1 *2 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *3 (-798)) (-4 *4 (-856)) (-4 *2 (-1058)))) (-1914 (*1 *1 *1) (-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798)) (-4 *4 (-856)))) (-3079 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *2 *4)) (-4 *3 (-1058)) (-4 *4 (-856)) (-4 *2 (-798)))) (-3915 (*1 *1 *1 *2 *3) (-12 (-4 *1 (-982 *4 *3 *2)) (-4 *4 (-1058)) (-4 *3 (-798)) (-4 *2 (-856)))) (-3915 (*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)))) (-1755 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *5 (-856)) (-5 *2 (-650 *5)))) (-2646 (*1 *2 *1) (-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1682 (*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 -3915 ($ $ |t#3| |t#2|)) (-15 -3915 ($ $ (-650 |t#3|) (-650 |t#2|))) (-15 -1914 ($ $)) (-15 -1928 (|t#1| $)) (-15 -3079 (|t#2| $)) (-15 -1755 ((-650 |t#3|) $)) (-15 -2646 ((-112) $)) (-15 -1682 ($ $))))
+(((-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 $ $) -2895 (|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) -2895 (|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 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
+((-1490 (((-1103 (-227)) $) 8)) (-1478 (((-1103 (-227)) $) 9)) (-3844 (((-1103 (-227)) $) 10)) (-3604 (((-650 (-650 (-950 (-227)))) $) 11)) (-3802 (((-868) $) 6)))
(((-983) (-141)) (T -983))
-((-3778 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-650 (-650 (-950 (-227))))))) (-3841 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))) (-1477 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))) (-1489 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3778 ((-650 (-650 (-950 (-227)))) $)) (-15 -3841 ((-1103 (-227)) $)) (-15 -1477 ((-1103 (-227)) $)) (-15 -1489 ((-1103 (-227)) $))))
+((-3604 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-650 (-650 (-950 (-227))))))) (-3844 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))) (-1478 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))) (-1490 (*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3604 ((-650 (-650 (-950 (-227)))) $)) (-15 -3844 ((-1103 (-227)) $)) (-15 -1478 ((-1103 (-227)) $)) (-15 -1490 ((-1103 (-227)) $))))
(((-619 (-868)) . T))
-((-1755 (((-650 |#4|) $) 23)) (-3051 (((-112) $) 55)) (-1416 (((-112) $) 54)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#4|) 42)) (-3737 (((-112) $) 56)) (-2467 (((-112) $ $) 62)) (-4047 (((-112) $ $) 65)) (-1876 (((-112) $) 60)) (-2450 (((-650 |#5|) (-650 |#5|) $) 98)) (-4059 (((-650 |#5|) (-650 |#5|) $) 95)) (-3691 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 88)) (-1423 (((-650 |#4|) $) 27)) (-3907 (((-112) |#4| $) 34)) (-4375 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-3710 (($ $ |#4|) 39)) (-4224 (($ $ |#4|) 38)) (-1615 (($ $ |#4|) 40)) (-3022 (((-112) $ $) 46)))
-(((-984 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1416 ((-112) |#1|)) (-15 -2450 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -4059 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3691 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4375 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3737 ((-112) |#1|)) (-15 -4047 ((-112) |#1| |#1|)) (-15 -2467 ((-112) |#1| |#1|)) (-15 -1876 ((-112) |#1|)) (-15 -3051 ((-112) |#1|)) (-15 -3393 ((-2 (|:| |under| |#1|) (|:| -3665 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3710 (|#1| |#1| |#4|)) (-15 -1615 (|#1| |#1| |#4|)) (-15 -4224 (|#1| |#1| |#4|)) (-15 -3907 ((-112) |#4| |#1|)) (-15 -1423 ((-650 |#4|) |#1|)) (-15 -1755 ((-650 |#4|) |#1|)) (-15 -3022 ((-112) |#1| |#1|))) (-985 |#2| |#3| |#4| |#5|) (-1058) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -984))
+((-1755 (((-650 |#4|) $) 23)) (-4092 (((-112) $) 55)) (-1320 (((-112) $) 54)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#4|) 42)) (-3230 (((-112) $) 56)) (-2339 (((-112) $ $) 62)) (-4337 (((-112) $ $) 65)) (-2327 (((-112) $) 60)) (-2167 (((-650 |#5|) (-650 |#5|) $) 98)) (-3276 (((-650 |#5|) (-650 |#5|) $) 95)) (-3971 (((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| $) 88)) (-1388 (((-650 |#4|) $) 27)) (-2387 (((-112) |#4| $) 34)) (-4427 (((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| $) 81)) (-4138 (($ $ |#4|) 39)) (-2435 (($ $ |#4|) 38)) (-1631 (($ $ |#4|) 40)) (-3025 (((-112) $ $) 46)))
+(((-984 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -1320 ((-112) |#1|)) (-15 -2167 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3276 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3971 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4427 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3230 ((-112) |#1|)) (-15 -4337 ((-112) |#1| |#1|)) (-15 -2339 ((-112) |#1| |#1|)) (-15 -2327 ((-112) |#1|)) (-15 -4092 ((-112) |#1|)) (-15 -3396 ((-2 (|:| |under| |#1|) (|:| -1920 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -4138 (|#1| |#1| |#4|)) (-15 -1631 (|#1| |#1| |#4|)) (-15 -2435 (|#1| |#1| |#4|)) (-15 -2387 ((-112) |#4| |#1|)) (-15 -1388 ((-650 |#4|) |#1|)) (-15 -1755 ((-650 |#4|) |#1|)) (-15 -3025 ((-112) |#1| |#1|))) (-985 |#2| |#3| |#4| |#5|) (-1058) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -984))
NIL
-(-10 -8 (-15 -1416 ((-112) |#1|)) (-15 -2450 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -4059 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3691 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4375 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3737 ((-112) |#1|)) (-15 -4047 ((-112) |#1| |#1|)) (-15 -2467 ((-112) |#1| |#1|)) (-15 -1876 ((-112) |#1|)) (-15 -3051 ((-112) |#1|)) (-15 -3393 ((-2 (|:| |under| |#1|) (|:| -3665 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -3710 (|#1| |#1| |#4|)) (-15 -1615 (|#1| |#1| |#4|)) (-15 -4224 (|#1| |#1| |#4|)) (-15 -3907 ((-112) |#4| |#1|)) (-15 -1423 ((-650 |#4|) |#1|)) (-15 -1755 ((-650 |#4|) |#1|)) (-15 -3022 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-1755 (((-650 |#3|) $) 34)) (-3051 (((-112) $) 27)) (-1416 (((-112) $) 18 (|has| |#1| (-562)))) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) 28)) (-4302 (((-112) $ (-777)) 45)) (-1431 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449)))) (-1705 (($) 46 T CONST)) (-3737 (((-112) $) 23 (|has| |#1| (-562)))) (-2467 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4047 (((-112) $ $) 24 (|has| |#1| (-562)))) (-1876 (((-112) $) 26 (|has| |#1| (-562)))) (-2450 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) 37)) (-3216 (($ (-650 |#4|)) 36)) (-3579 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3624 ((|#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)))) (-3627 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-1724 ((|#3| $) 35)) (-2929 (((-112) $ (-777)) 44)) (-2752 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 48)) (-1423 (((-650 |#3|) $) 33)) (-3907 (((-112) |#3| $) 32)) (-3231 (((-112) $ (-777)) 43)) (-1988 (((-1168) $) 10)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3577 (((-1129) $) 11)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-3642 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 39)) (-2017 (((-112) $) 42)) (-2380 (($) 41)) (-3584 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3951 (($ $) 40)) (-1425 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 61)) (-3710 (($ $ |#3|) 29)) (-4224 (($ $ |#3|) 31)) (-1615 (($ $ |#3|) 30)) (-3799 (((-868) $) 12) (((-650 |#4|) $) 38)) (-2335 (((-112) $ $) 9)) (-4371 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 6)) (-2569 (((-777) $) 47 (|has| $ (-6 -4449)))))
+(-10 -8 (-15 -1320 ((-112) |#1|)) (-15 -2167 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3276 ((-650 |#5|) (-650 |#5|) |#1|)) (-15 -3971 ((-2 (|:| |rnum| |#2|) (|:| |polnum| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -4427 ((-2 (|:| |num| |#5|) (|:| |den| |#2|)) |#5| |#1|)) (-15 -3230 ((-112) |#1|)) (-15 -4337 ((-112) |#1| |#1|)) (-15 -2339 ((-112) |#1| |#1|)) (-15 -2327 ((-112) |#1|)) (-15 -4092 ((-112) |#1|)) (-15 -3396 ((-2 (|:| |under| |#1|) (|:| -1920 |#1|) (|:| |upper| |#1|)) |#1| |#4|)) (-15 -4138 (|#1| |#1| |#4|)) (-15 -1631 (|#1| |#1| |#4|)) (-15 -2435 (|#1| |#1| |#4|)) (-15 -2387 ((-112) |#4| |#1|)) (-15 -1388 ((-650 |#4|) |#1|)) (-15 -1755 ((-650 |#4|) |#1|)) (-15 -3025 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-1755 (((-650 |#3|) $) 34)) (-4092 (((-112) $) 27)) (-1320 (((-112) $) 18 (|has| |#1| (-562)))) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) 28)) (-1932 (((-112) $ (-777)) 45)) (-1434 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4452)))) (-3195 (($) 46 T CONST)) (-3230 (((-112) $) 23 (|has| |#1| (-562)))) (-2339 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4337 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2327 (((-112) $) 26 (|has| |#1| (-562)))) (-2167 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) 37)) (-3220 (($ (-650 |#4|)) 36)) (-3582 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4452)))) (-3630 (((-650 |#4|) $) 53 (|has| $ (-6 -4452)))) (-3357 ((|#3| $) 35)) (-2317 (((-112) $ (-777)) 44)) (-2052 (((-650 |#4|) $) 54 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 48)) (-1388 (((-650 |#3|) $) 33)) (-2387 (((-112) |#3| $) 32)) (-2193 (((-112) $ (-777)) 43)) (-3989 (((-1168) $) 10)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3580 (((-1129) $) 11)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1627 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 39)) (-4283 (((-112) $) 42)) (-2656 (($) 41)) (-3587 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4452)))) (-3954 (($ $) 40)) (-1426 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 61)) (-4138 (($ $ |#3|) 29)) (-2435 (($ $ |#3|) 31)) (-1631 (($ $ |#3|) 30)) (-3802 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3359 (((-112) $ $) 9)) (-4379 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 6)) (-2570 (((-777) $) 47 (|has| $ (-6 -4452)))))
(((-985 |#1| |#2| |#3| |#4|) (-141) (-1058) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -985))
-((-4380 (*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)))) (-3216 (*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)))) (-1724 (*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)))) (-1755 (*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)))) (-1423 (*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)))) (-3907 (*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)))) (-4224 (*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)))) (-1615 (*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)))) (-3710 (*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)))) (-3393 (*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) (|:| -3665 *1) (|:| |upper| *1))) (-4 *1 (-985 *4 *5 *3 *6)))) (-3051 (*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)))) (-1876 (*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)))) (-2467 (*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)))) (-4047 (*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)))) (-3737 (*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)))) (-4375 (*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))))) (-3691 (*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))))) (-4059 (*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)))) (-2450 (*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)))) (-1416 (*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 -4380 ((-3 $ "failed") (-650 |t#4|))) (-15 -3216 ($ (-650 |t#4|))) (-15 -1724 (|t#3| $)) (-15 -1755 ((-650 |t#3|) $)) (-15 -1423 ((-650 |t#3|) $)) (-15 -3907 ((-112) |t#3| $)) (-15 -4224 ($ $ |t#3|)) (-15 -1615 ($ $ |t#3|)) (-15 -3710 ($ $ |t#3|)) (-15 -3393 ((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |t#3|)) (-15 -3051 ((-112) $)) (IF (|has| |t#1| (-562)) (PROGN (-15 -1876 ((-112) $)) (-15 -2467 ((-112) $ $)) (-15 -4047 ((-112) $ $)) (-15 -3737 ((-112) $)) (-15 -4375 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3691 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -4059 ((-650 |t#4|) (-650 |t#4|) $)) (-15 -2450 ((-650 |t#4|) (-650 |t#4|) $)) (-15 -1416 ((-112) $))) |%noBranch|)))
+((-4383 (*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)))) (-3220 (*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)))) (-3357 (*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)))) (-1755 (*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)))) (-1388 (*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)))) (-2387 (*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)))) (-2435 (*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)))) (-1631 (*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)))) (-4138 (*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)))) (-3396 (*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) (|:| -1920 *1) (|:| |upper| *1))) (-4 *1 (-985 *4 *5 *3 *6)))) (-4092 (*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)))) (-2327 (*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)))) (-2339 (*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)))) (-4337 (*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)))) (-3230 (*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)))) (-4427 (*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))))) (-3971 (*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))))) (-3276 (*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)))) (-2167 (*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)))) (-1320 (*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 -4452) (-15 -4383 ((-3 $ "failed") (-650 |t#4|))) (-15 -3220 ($ (-650 |t#4|))) (-15 -3357 (|t#3| $)) (-15 -1755 ((-650 |t#3|) $)) (-15 -1388 ((-650 |t#3|) $)) (-15 -2387 ((-112) |t#3| $)) (-15 -2435 ($ $ |t#3|)) (-15 -1631 ($ $ |t#3|)) (-15 -4138 ($ $ |t#3|)) (-15 -3396 ((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |t#3|)) (-15 -4092 ((-112) $)) (IF (|has| |t#1| (-562)) (PROGN (-15 -2327 ((-112) $)) (-15 -2339 ((-112) $ $)) (-15 -4337 ((-112) $ $)) (-15 -3230 ((-112) $)) (-15 -4427 ((-2 (|:| |num| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3971 ((-2 (|:| |rnum| |t#1|) (|:| |polnum| |t#4|) (|:| |den| |t#1|)) |t#4| $)) (-15 -3276 ((-650 |t#4|) (-650 |t#4|) $)) (-15 -2167 ((-650 |t#4|) (-650 |t#4|) $)) (-15 -1320 ((-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))
-((-2922 (((-650 |#4|) |#4| |#4|) 136)) (-3653 (((-650 |#4|) (-650 |#4|) (-112)) 125 (|has| |#1| (-458))) (((-650 |#4|) (-650 |#4|)) 126 (|has| |#1| (-458)))) (-1957 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 44)) (-3180 (((-112) |#4|) 43)) (-3307 (((-650 |#4|) |#4|) 121 (|has| |#1| (-458)))) (-1582 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|)) 24)) (-2044 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|)) 30)) (-3378 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|)) 31)) (-2726 (((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|)) 90)) (-2731 (((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 103)) (-3405 (((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 129)) (-1553 (((-650 |#4|) (-650 |#4|)) 128)) (-2087 (((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112)) 59) (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 61)) (-4236 ((|#4| |#4| (-650 |#4|)) 60)) (-1984 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 132 (|has| |#1| (-458)))) (-2570 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 135 (|has| |#1| (-458)))) (-3095 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 134 (|has| |#1| (-458)))) (-4389 (((-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)) (-3558 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 118 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-3134 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 52)) (-2494 (((-112) (-650 |#4|)) 79)) (-1557 (((-112) (-650 |#4|) (-650 (-650 |#4|))) 67)) (-3582 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 37)) (-3375 (((-112) |#4|) 36)) (-4367 (((-650 |#4|) (-650 |#4|)) 116 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-2352 (((-650 |#4|) (-650 |#4|)) 117 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-2165 (((-650 |#4|) (-650 |#4|)) 83)) (-2190 (((-650 |#4|) (-650 |#4|)) 97)) (-3639 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-3109 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 50)) (-3712 (((-112) |#4|) 45)))
-(((-986 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -4389 ((-650 |#4|) (-650 |#4|))) (-15 -4389 ((-650 |#4|) |#4| |#4|)) (-15 -1553 ((-650 |#4|) (-650 |#4|))) (-15 -2922 ((-650 |#4|) |#4| |#4|)) (-15 -4389 ((-650 |#4|) (-650 |#4|) |#4|)) (-15 -4389 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -4389 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|)))) (-15 -3639 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1557 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -2494 ((-112) (-650 |#4|))) (-15 -1582 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|))) (-15 -2044 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3378 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3134 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3180 ((-112) |#4|)) (-15 -1957 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3375 ((-112) |#4|)) (-15 -3582 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3712 ((-112) |#4|)) (-15 -3109 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2087 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2087 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112))) (-15 -4236 (|#4| |#4| (-650 |#4|))) (-15 -2165 ((-650 |#4|) (-650 |#4|))) (-15 -2726 ((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|))) (-15 -2190 ((-650 |#4|) (-650 |#4|))) (-15 -2731 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3405 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-458)) (PROGN (-15 -3307 ((-650 |#4|) |#4|)) (-15 -3653 ((-650 |#4|) (-650 |#4|))) (-15 -3653 ((-650 |#4|) (-650 |#4|) (-112))) (-15 -1984 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3095 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2570 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (PROGN (-15 -2352 ((-650 |#4|) (-650 |#4|))) (-15 -4367 ((-650 |#4|) (-650 |#4|))) (-15 -3558 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) |%noBranch|)) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -986))
-((-3558 (*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)))) (-4367 (*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)))) (-2352 (*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)))) (-2570 (*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)))) (-3095 (*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)))) (-1984 (*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)))) (-3653 (*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)))) (-3653 (*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)))) (-3307 (*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)))) (-3405 (*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)))) (-2731 (*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)))) (-2190 (*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)))) (-2726 (*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)) (|:| -3353 (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-2165 (*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)))) (-4236 (*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)))) (-2087 (*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)))) (-2087 (*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)))) (-3109 (*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)))) (-3712 (*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)))) (-3582 (*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)))) (-3375 (*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)))) (-1957 (*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)))) (-3180 (*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)))) (-3134 (*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)))) (-3378 (*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)))) (-2044 (*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)))) (-1582 (*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)))) (-2494 (*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)))) (-1557 (*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)))) (-3639 (*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)))) (-4389 (*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)))) (-4389 (*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)))) (-4389 (*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)))) (-2922 (*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)))) (-1553 (*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)))) (-4389 (*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)))) (-4389 (*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 -4389 ((-650 |#4|) (-650 |#4|))) (-15 -4389 ((-650 |#4|) |#4| |#4|)) (-15 -1553 ((-650 |#4|) (-650 |#4|))) (-15 -2922 ((-650 |#4|) |#4| |#4|)) (-15 -4389 ((-650 |#4|) (-650 |#4|) |#4|)) (-15 -4389 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -4389 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|)))) (-15 -3639 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1557 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -2494 ((-112) (-650 |#4|))) (-15 -1582 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|))) (-15 -2044 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3378 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3134 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3180 ((-112) |#4|)) (-15 -1957 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3375 ((-112) |#4|)) (-15 -3582 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -3712 ((-112) |#4|)) (-15 -3109 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2087 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2087 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112))) (-15 -4236 (|#4| |#4| (-650 |#4|))) (-15 -2165 ((-650 |#4|) (-650 |#4|))) (-15 -2726 ((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|))) (-15 -2190 ((-650 |#4|) (-650 |#4|))) (-15 -2731 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3405 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-458)) (PROGN (-15 -3307 ((-650 |#4|) |#4|)) (-15 -3653 ((-650 |#4|) (-650 |#4|))) (-15 -3653 ((-650 |#4|) (-650 |#4|) (-112))) (-15 -1984 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3095 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2570 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (PROGN (-15 -2352 ((-650 |#4|) (-650 |#4|))) (-15 -4367 ((-650 |#4|) (-650 |#4|))) (-15 -3558 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) |%noBranch|))
-((-2742 (((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-2027 (((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)) 46)) (-2075 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
-(((-987 |#1|) (-10 -7 (-15 -2742 ((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2075 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2027 ((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)))) (-368)) (T -987))
-((-2027 (*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)))) (-2075 (*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)))) (-2742 (*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 -2742 ((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2075 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -2027 ((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))))
-((-1652 (((-424 |#4|) |#4|) 56)))
-(((-988 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1652 ((-424 |#4|) |#4|))) (-856) (-799) (-458) (-956 |#3| |#2| |#1|)) (T -988))
-((-1652 (*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 -1652 ((-424 |#4|) |#4|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3504 (($ (-777)) 113 (|has| |#1| (-23)))) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-2844 (($ $) 91 (|has| $ (-6 -4450)))) (-2377 (($ $) 101)) (-3579 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 52)) (-4027 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3377 (($ (-650 |#1|)) 119)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1378 (((-695 |#1|) $ $) 106 (|has| |#1| (-1058)))) (-4291 (($ (-777) |#1|) 70)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-3466 (($ $ $) 88 (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-2800 (($ $ $) 87 (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-4202 ((|#1| $) 103 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-3231 (((-112) $ (-777)) 10)) (-1355 ((|#1| $) 104 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 43 (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2147 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-2431 (($ $ (-650 |#1|)) 117)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-2609 ((|#1| $ $) 107 (|has| |#1| (-1058)))) (-2951 (((-928) $) 118)) (-4326 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3432 (($ $ $) 105)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2906 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 80 (|has| |#1| (-620 (-542)))) (($ (-650 |#1|)) 120)) (-3811 (($ (-650 |#1|)) 71)) (-2584 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) 85 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 84 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3062 (((-112) $ $) 86 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 83 (|has| |#1| (-856)))) (-3111 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-3101 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-570) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-732))) (($ $ |#1|) 108 (|has| |#1| (-732)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2242 (((-650 |#4|) |#4| |#4|) 136)) (-1761 (((-650 |#4|) (-650 |#4|) (-112)) 125 (|has| |#1| (-458))) (((-650 |#4|) (-650 |#4|)) 126 (|has| |#1| (-458)))) (-1815 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 44)) (-2920 (((-112) |#4|) 43)) (-1693 (((-650 |#4|) |#4|) 121 (|has| |#1| (-458)))) (-4371 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|)) 24)) (-3378 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|)) 30)) (-4132 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|)) 31)) (-3019 (((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|)) 90)) (-3061 (((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 103)) (-4335 (((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 129)) (-2288 (((-650 |#4|) (-650 |#4|)) 128)) (-2651 (((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112)) 59) (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 61)) (-2551 ((|#4| |#4| (-650 |#4|)) 60)) (-3947 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 132 (|has| |#1| (-458)))) (-3940 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 135 (|has| |#1| (-458)))) (-3329 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 134 (|has| |#1| (-458)))) (-3355 (((-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)) (-2168 (((-650 |#4|) (-650 |#4|) (-650 |#4|)) 118 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-3699 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 52)) (-4425 (((-112) (-650 |#4|)) 79)) (-2331 (((-112) (-650 |#4|) (-650 (-650 |#4|))) 67)) (-2359 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 37)) (-4110 (((-112) |#4|) 36)) (-4343 (((-650 |#4|) (-650 |#4|)) 116 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-3549 (((-650 |#4|) (-650 |#4|)) 117 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-2237 (((-650 |#4|) (-650 |#4|)) 83)) (-2489 (((-650 |#4|) (-650 |#4|)) 97)) (-1589 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-3466 (((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|)) 50)) (-4163 (((-112) |#4|) 45)))
+(((-986 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3355 ((-650 |#4|) (-650 |#4|))) (-15 -3355 ((-650 |#4|) |#4| |#4|)) (-15 -2288 ((-650 |#4|) (-650 |#4|))) (-15 -2242 ((-650 |#4|) |#4| |#4|)) (-15 -3355 ((-650 |#4|) (-650 |#4|) |#4|)) (-15 -3355 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3355 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|)))) (-15 -1589 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2331 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -4425 ((-112) (-650 |#4|))) (-15 -4371 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|))) (-15 -3378 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -4132 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3699 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2920 ((-112) |#4|)) (-15 -1815 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -4110 ((-112) |#4|)) (-15 -2359 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -4163 ((-112) |#4|)) (-15 -3466 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2651 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2651 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112))) (-15 -2551 (|#4| |#4| (-650 |#4|))) (-15 -2237 ((-650 |#4|) (-650 |#4|))) (-15 -3019 ((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|))) (-15 -2489 ((-650 |#4|) (-650 |#4|))) (-15 -3061 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4335 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-458)) (PROGN (-15 -1693 ((-650 |#4|) |#4|)) (-15 -1761 ((-650 |#4|) (-650 |#4|))) (-15 -1761 ((-650 |#4|) (-650 |#4|) (-112))) (-15 -3947 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3329 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3940 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (PROGN (-15 -3549 ((-650 |#4|) (-650 |#4|))) (-15 -4343 ((-650 |#4|) (-650 |#4|))) (-15 -2168 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) |%noBranch|)) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -986))
+((-2168 (*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)))) (-4343 (*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)))) (-3549 (*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)))) (-3940 (*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)))) (-3329 (*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)))) (-3947 (*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)))) (-1761 (*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)))) (-1761 (*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)))) (-1693 (*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)))) (-4335 (*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)))) (-3061 (*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)))) (-2489 (*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)))) (-3019 (*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)) (|:| -3356 (-650 *7)))) (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))) (-2237 (*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)))) (-2551 (*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)))) (-2651 (*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)))) (-2651 (*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)))) (-3466 (*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)))) (-4163 (*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)))) (-2359 (*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)))) (-4110 (*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)))) (-1815 (*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)))) (-2920 (*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)))) (-3699 (*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)))) (-4132 (*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)))) (-3378 (*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)))) (-4371 (*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)))) (-4425 (*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)))) (-2331 (*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)))) (-1589 (*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)))) (-3355 (*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)))) (-3355 (*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)))) (-3355 (*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)))) (-2242 (*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)))) (-2288 (*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)))) (-3355 (*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)))) (-3355 (*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 -3355 ((-650 |#4|) (-650 |#4|))) (-15 -3355 ((-650 |#4|) |#4| |#4|)) (-15 -2288 ((-650 |#4|) (-650 |#4|))) (-15 -2242 ((-650 |#4|) |#4| |#4|)) (-15 -3355 ((-650 |#4|) (-650 |#4|) |#4|)) (-15 -3355 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3355 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-1 (-650 |#4|) (-650 |#4|)))) (-15 -1589 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2331 ((-112) (-650 |#4|) (-650 (-650 |#4|)))) (-15 -4425 ((-112) (-650 |#4|))) (-15 -4371 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-1 (-112) |#4|) (-650 |#4|))) (-15 -3378 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -4132 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 (-1 (-112) |#4|)) (-650 |#4|))) (-15 -3699 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2920 ((-112) |#4|)) (-15 -1815 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -4110 ((-112) |#4|)) (-15 -2359 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -4163 ((-112) |#4|)) (-15 -3466 ((-2 (|:| |goodPols| (-650 |#4|)) (|:| |badPols| (-650 |#4|))) (-650 |#4|))) (-15 -2651 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -2651 ((-650 |#4|) (-650 |#4|) (-650 |#4|) (-112))) (-15 -2551 (|#4| |#4| (-650 |#4|))) (-15 -2237 ((-650 |#4|) (-650 |#4|))) (-15 -3019 ((-3 (-2 (|:| |bas| (-482 |#1| |#2| |#3| |#4|)) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|))) (-15 -2489 ((-650 |#4|) (-650 |#4|))) (-15 -3061 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -4335 ((-650 |#4|) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (IF (|has| |#1| (-458)) (PROGN (-15 -1693 ((-650 |#4|) |#4|)) (-15 -1761 ((-650 |#4|) (-650 |#4|))) (-15 -1761 ((-650 |#4|) (-650 |#4|) (-112))) (-15 -3947 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3329 ((-650 |#4|) (-650 |#4|) (-650 |#4|))) (-15 -3940 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (PROGN (-15 -3549 ((-650 |#4|) (-650 |#4|))) (-15 -4343 ((-650 |#4|) (-650 |#4|))) (-15 -2168 ((-650 |#4|) (-650 |#4|) (-650 |#4|)))) |%noBranch|) |%noBranch|))
+((-3138 (((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 19)) (-3209 (((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)) 46)) (-3716 (((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|)) 16)))
+(((-987 |#1|) (-10 -7 (-15 -3138 ((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3716 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3209 ((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|)))) (-368)) (T -987))
+((-3209 (*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)))) (-3716 (*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)))) (-3138 (*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 -3138 ((-2 (|:| R (-695 |#1|)) (|:| A (-695 |#1|)) (|:| |Ainv| (-695 |#1|))) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3716 ((-695 |#1|) (-695 |#1|) (-695 |#1|) (-99 |#1|) (-1 |#1| |#1|))) (-15 -3209 ((-650 (-2 (|:| C (-695 |#1|)) (|:| |g| (-1277 |#1|)))) (-695 |#1|) (-1277 |#1|))))
+((-3871 (((-424 |#4|) |#4|) 56)))
+(((-988 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3871 ((-424 |#4|) |#4|))) (-856) (-799) (-458) (-956 |#3| |#2| |#1|)) (T -988))
+((-3871 (*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 -3871 ((-424 |#4|) |#4|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3507 (($ (-777)) 113 (|has| |#1| (-23)))) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4453))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4453))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-1582 (($ $) 91 (|has| $ (-6 -4453)))) (-2380 (($ $) 101)) (-3582 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 52)) (-4029 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3380 (($ (-650 |#1|)) 119)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-1379 (((-695 |#1|) $ $) 106 (|has| |#1| (-1058)))) (-4294 (($ (-777) |#1|) 70)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-3469 (($ $ $) 88 (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-2472 (($ $ $) 87 (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2234 ((|#1| $) 103 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-2193 (((-112) $ (-777)) 10)) (-1356 ((|#1| $) 104 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 43 (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2061 (($ $ |#1|) 42 (|has| $ (-6 -4453)))) (-3152 (($ $ (-650 |#1|)) 117)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4266 ((|#1| $ $) 107 (|has| |#1| (-1058)))) (-2517 (((-928) $) 118)) (-4330 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3385 (($ $ $) 105)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2087 (($ $ $ (-570)) 92 (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 80 (|has| |#1| (-620 (-542)))) (($ (-650 |#1|)) 120)) (-3814 (($ (-650 |#1|)) 71)) (-2585 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) 85 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 84 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3065 (((-112) $ $) 86 (|has| |#1| (-856)))) (-3045 (((-112) $ $) 83 (|has| |#1| (-856)))) (-3114 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-3104 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-570) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-732))) (($ $ |#1|) 108 (|has| |#1| (-732)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-989 |#1|) (-141) (-1058)) (T -989))
-((-3377 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-989 *3)))) (-2951 (*1 *2 *1) (-12 (-4 *1 (-989 *3)) (-4 *3 (-1058)) (-5 *2 (-928)))) (-3432 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2)) (-4 *2 (-1058)))) (-2431 (*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 -3377 ($ (-650 |t#1|))) (-15 -2951 ((-928) $)) (-15 -3432 ($ $ $)) (-15 -2431 ($ $ (-650 |t#1|)))))
-(((-34) . T) ((-102) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2892 (|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) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T) ((-1275 |#1|) . T))
-((-1356 (((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|)) 17)))
-(((-990 |#1| |#2|) (-10 -7 (-15 -1356 ((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|)))) (-1058) (-1058)) (T -990))
-((-1356 (*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 -1356 ((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|))))
-((-1391 ((|#1| (-950 |#1|)) 14)) (-3772 ((|#1| (-950 |#1|)) 13)) (-3335 ((|#1| (-950 |#1|)) 12)) (-3750 ((|#1| (-950 |#1|)) 16)) (-2872 ((|#1| (-950 |#1|)) 24)) (-2848 ((|#1| (-950 |#1|)) 15)) (-2471 ((|#1| (-950 |#1|)) 17)) (-1820 ((|#1| (-950 |#1|)) 23)) (-3181 ((|#1| (-950 |#1|)) 22)))
-(((-991 |#1|) (-10 -7 (-15 -3335 (|#1| (-950 |#1|))) (-15 -3772 (|#1| (-950 |#1|))) (-15 -1391 (|#1| (-950 |#1|))) (-15 -2848 (|#1| (-950 |#1|))) (-15 -3750 (|#1| (-950 |#1|))) (-15 -2471 (|#1| (-950 |#1|))) (-15 -3181 (|#1| (-950 |#1|))) (-15 -1820 (|#1| (-950 |#1|))) (-15 -2872 (|#1| (-950 |#1|)))) (-1058)) (T -991))
-((-2872 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1820 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3181 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-2471 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3750 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-2848 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1391 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3772 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3335 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(-10 -7 (-15 -3335 (|#1| (-950 |#1|))) (-15 -3772 (|#1| (-950 |#1|))) (-15 -1391 (|#1| (-950 |#1|))) (-15 -2848 (|#1| (-950 |#1|))) (-15 -3750 (|#1| (-950 |#1|))) (-15 -2471 (|#1| (-950 |#1|))) (-15 -3181 (|#1| (-950 |#1|))) (-15 -1820 (|#1| (-950 |#1|))) (-15 -2872 (|#1| (-950 |#1|))))
-((-1472 (((-3 |#1| "failed") |#1|) 18)) (-1815 (((-3 |#1| "failed") |#1|) 6)) (-3327 (((-3 |#1| "failed") |#1|) 16)) (-1352 (((-3 |#1| "failed") |#1|) 4)) (-1337 (((-3 |#1| "failed") |#1|) 20)) (-1389 (((-3 |#1| "failed") |#1|) 8)) (-2593 (((-3 |#1| "failed") |#1| (-777)) 1)) (-2681 (((-3 |#1| "failed") |#1|) 3)) (-3086 (((-3 |#1| "failed") |#1|) 2)) (-1627 (((-3 |#1| "failed") |#1|) 21)) (-4124 (((-3 |#1| "failed") |#1|) 9)) (-3507 (((-3 |#1| "failed") |#1|) 19)) (-2928 (((-3 |#1| "failed") |#1|) 7)) (-4131 (((-3 |#1| "failed") |#1|) 17)) (-4153 (((-3 |#1| "failed") |#1|) 5)) (-1803 (((-3 |#1| "failed") |#1|) 24)) (-3589 (((-3 |#1| "failed") |#1|) 12)) (-1865 (((-3 |#1| "failed") |#1|) 22)) (-3214 (((-3 |#1| "failed") |#1|) 10)) (-3158 (((-3 |#1| "failed") |#1|) 26)) (-2665 (((-3 |#1| "failed") |#1|) 14)) (-3810 (((-3 |#1| "failed") |#1|) 27)) (-4119 (((-3 |#1| "failed") |#1|) 15)) (-3091 (((-3 |#1| "failed") |#1|) 25)) (-1949 (((-3 |#1| "failed") |#1|) 13)) (-3061 (((-3 |#1| "failed") |#1|) 23)) (-3899 (((-3 |#1| "failed") |#1|) 11)))
+((-3380 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1058)) (-4 *1 (-989 *3)))) (-2517 (*1 *2 *1) (-12 (-4 *1 (-989 *3)) (-4 *3 (-1058)) (-5 *2 (-928)))) (-3385 (*1 *1 *1 *1) (-12 (-4 *1 (-989 *2)) (-4 *2 (-1058)))) (-3152 (*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 -3380 ($ (-650 |t#1|))) (-15 -2517 ((-928) $)) (-15 -3385 ($ $ $)) (-15 -3152 ($ $ (-650 |t#1|)))))
+(((-34) . T) ((-102) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2895 (|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) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T) ((-1275 |#1|) . T))
+((-1357 (((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|)) 17)))
+(((-990 |#1| |#2|) (-10 -7 (-15 -1357 ((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|)))) (-1058) (-1058)) (T -990))
+((-1357 (*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 -1357 ((-950 |#2|) (-1 |#2| |#1|) (-950 |#1|))))
+((-3432 ((|#1| (-950 |#1|)) 14)) (-3543 ((|#1| (-950 |#1|)) 13)) (-3813 ((|#1| (-950 |#1|)) 12)) (-3320 ((|#1| (-950 |#1|)) 16)) (-1891 ((|#1| (-950 |#1|)) 24)) (-1621 ((|#1| (-950 |#1|)) 15)) (-2381 ((|#1| (-950 |#1|)) 17)) (-3021 ((|#1| (-950 |#1|)) 23)) (-2929 ((|#1| (-950 |#1|)) 22)))
+(((-991 |#1|) (-10 -7 (-15 -3813 (|#1| (-950 |#1|))) (-15 -3543 (|#1| (-950 |#1|))) (-15 -3432 (|#1| (-950 |#1|))) (-15 -1621 (|#1| (-950 |#1|))) (-15 -3320 (|#1| (-950 |#1|))) (-15 -2381 (|#1| (-950 |#1|))) (-15 -2929 (|#1| (-950 |#1|))) (-15 -3021 (|#1| (-950 |#1|))) (-15 -1891 (|#1| (-950 |#1|)))) (-1058)) (T -991))
+((-1891 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3021 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-2929 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-2381 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3320 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-1621 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3432 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3543 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))) (-3813 (*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(-10 -7 (-15 -3813 (|#1| (-950 |#1|))) (-15 -3543 (|#1| (-950 |#1|))) (-15 -3432 (|#1| (-950 |#1|))) (-15 -1621 (|#1| (-950 |#1|))) (-15 -3320 (|#1| (-950 |#1|))) (-15 -2381 (|#1| (-950 |#1|))) (-15 -2929 (|#1| (-950 |#1|))) (-15 -3021 (|#1| (-950 |#1|))) (-15 -1891 (|#1| (-950 |#1|))))
+((-2722 (((-3 |#1| "failed") |#1|) 18)) (-2981 (((-3 |#1| "failed") |#1|) 6)) (-1902 (((-3 |#1| "failed") |#1|) 16)) (-2059 (((-3 |#1| "failed") |#1|) 4)) (-1912 (((-3 |#1| "failed") |#1|) 20)) (-3210 (((-3 |#1| "failed") |#1|) 8)) (-4126 (((-3 |#1| "failed") |#1| (-777)) 1)) (-3782 (((-3 |#1| "failed") |#1|) 3)) (-3245 (((-3 |#1| "failed") |#1|) 2)) (-1768 (((-3 |#1| "failed") |#1|) 21)) (-2742 (((-3 |#1| "failed") |#1|) 9)) (-2926 (((-3 |#1| "failed") |#1|) 19)) (-2306 (((-3 |#1| "failed") |#1|) 7)) (-2797 (((-3 |#1| "failed") |#1|) 17)) (-2966 (((-3 |#1| "failed") |#1|) 5)) (-2881 (((-3 |#1| "failed") |#1|) 24)) (-2424 (((-3 |#1| "failed") |#1|) 12)) (-2230 (((-3 |#1| "failed") |#1|) 22)) (-2049 (((-3 |#1| "failed") |#1|) 10)) (-2724 (((-3 |#1| "failed") |#1|) 26)) (-3646 (((-3 |#1| "failed") |#1|) 14)) (-2715 (((-3 |#1| "failed") |#1|) 27)) (-2700 (((-3 |#1| "failed") |#1|) 15)) (-3288 (((-3 |#1| "failed") |#1|) 25)) (-1732 (((-3 |#1| "failed") |#1|) 13)) (-4191 (((-3 |#1| "failed") |#1|) 23)) (-2304 (((-3 |#1| "failed") |#1|) 11)))
(((-992 |#1|) (-141) (-1212)) (T -992))
-((-3810 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3158 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3091 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1803 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3061 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1865 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1627 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1337 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3507 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1472 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4131 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3327 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4119 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2665 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1949 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3589 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3899 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3214 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4124 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1389 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2928 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1815 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4153 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1352 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2681 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3086 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2593 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(-13 (-10 -7 (-15 -2593 ((-3 |t#1| "failed") |t#1| (-777))) (-15 -3086 ((-3 |t#1| "failed") |t#1|)) (-15 -2681 ((-3 |t#1| "failed") |t#1|)) (-15 -1352 ((-3 |t#1| "failed") |t#1|)) (-15 -4153 ((-3 |t#1| "failed") |t#1|)) (-15 -1815 ((-3 |t#1| "failed") |t#1|)) (-15 -2928 ((-3 |t#1| "failed") |t#1|)) (-15 -1389 ((-3 |t#1| "failed") |t#1|)) (-15 -4124 ((-3 |t#1| "failed") |t#1|)) (-15 -3214 ((-3 |t#1| "failed") |t#1|)) (-15 -3899 ((-3 |t#1| "failed") |t#1|)) (-15 -3589 ((-3 |t#1| "failed") |t#1|)) (-15 -1949 ((-3 |t#1| "failed") |t#1|)) (-15 -2665 ((-3 |t#1| "failed") |t#1|)) (-15 -4119 ((-3 |t#1| "failed") |t#1|)) (-15 -3327 ((-3 |t#1| "failed") |t#1|)) (-15 -4131 ((-3 |t#1| "failed") |t#1|)) (-15 -1472 ((-3 |t#1| "failed") |t#1|)) (-15 -3507 ((-3 |t#1| "failed") |t#1|)) (-15 -1337 ((-3 |t#1| "failed") |t#1|)) (-15 -1627 ((-3 |t#1| "failed") |t#1|)) (-15 -1865 ((-3 |t#1| "failed") |t#1|)) (-15 -3061 ((-3 |t#1| "failed") |t#1|)) (-15 -1803 ((-3 |t#1| "failed") |t#1|)) (-15 -3091 ((-3 |t#1| "failed") |t#1|)) (-15 -3158 ((-3 |t#1| "failed") |t#1|)) (-15 -3810 ((-3 |t#1| "failed") |t#1|))))
-((-2620 ((|#4| |#4| (-650 |#3|)) 57) ((|#4| |#4| |#3|) 56)) (-2343 ((|#4| |#4| (-650 |#3|)) 24) ((|#4| |#4| |#3|) 20)) (-1356 ((|#4| (-1 |#4| (-959 |#1|)) |#4|) 31)))
-(((-993 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2343 (|#4| |#4| |#3|)) (-15 -2343 (|#4| |#4| (-650 |#3|))) (-15 -2620 (|#4| |#4| |#3|)) (-15 -2620 (|#4| |#4| (-650 |#3|))) (-15 -1356 (|#4| (-1 |#4| (-959 |#1|)) |#4|))) (-1058) (-799) (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-3 $ "failed") (-1186))))) (-956 (-959 |#1|) |#2| |#3|)) (T -993))
-((-1356 (*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 -1425 ((-1186) $)) (-15 -2798 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *6 *2)))) (-2620 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-3 $ "failed") (-1186)))))) (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2)) (-4 *2 (-956 (-959 *4) *5 *6)))) (-2620 (*1 *2 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3)))) (-2343 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-3 $ "failed") (-1186)))))) (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2)) (-4 *2 (-956 (-959 *4) *5 *6)))) (-2343 (*1 *2 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $)) (-15 -2798 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3)))))
-(-10 -7 (-15 -2343 (|#4| |#4| |#3|)) (-15 -2343 (|#4| |#4| (-650 |#3|))) (-15 -2620 (|#4| |#4| |#3|)) (-15 -2620 (|#4| |#4| (-650 |#3|))) (-15 -1356 (|#4| (-1 |#4| (-959 |#1|)) |#4|)))
-((-1888 ((|#2| |#3|) 35)) (-4396 (((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|) 79)) (-2673 (((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) 100)))
-(((-994 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2673 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -4396 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)) (-15 -1888 (|#2| |#3|))) (-354) (-1253 |#1|) (-1253 |#2|) (-730 |#2| |#3|)) (T -994))
-((-1888 (*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)))) (-4396 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 *3)) (-5 *2 (-2 (|:| -1972 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-994 *4 *3 *5 *6)) (-4 *6 (-730 *3 *5)))) (-2673 (*1 *2) (-12 (-4 *3 (-354)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -1972 (-695 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-695 *4)))) (-5 *1 (-994 *3 *4 *5 *6)) (-4 *6 (-730 *4 *5)))))
-(-10 -7 (-15 -2673 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -4396 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)) (-15 -1888 (|#2| |#3|)))
+((-2715 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2724 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3288 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2881 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4191 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2230 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1768 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1912 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2926 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2722 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2797 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1902 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2700 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3646 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-1732 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2424 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2304 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2049 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2742 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3210 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2306 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2981 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2966 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-2059 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3782 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-3245 (*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))) (-4126 (*1 *2 *2 *3) (|partial| -12 (-5 *3 (-777)) (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(-13 (-10 -7 (-15 -4126 ((-3 |t#1| "failed") |t#1| (-777))) (-15 -3245 ((-3 |t#1| "failed") |t#1|)) (-15 -3782 ((-3 |t#1| "failed") |t#1|)) (-15 -2059 ((-3 |t#1| "failed") |t#1|)) (-15 -2966 ((-3 |t#1| "failed") |t#1|)) (-15 -2981 ((-3 |t#1| "failed") |t#1|)) (-15 -2306 ((-3 |t#1| "failed") |t#1|)) (-15 -3210 ((-3 |t#1| "failed") |t#1|)) (-15 -2742 ((-3 |t#1| "failed") |t#1|)) (-15 -2049 ((-3 |t#1| "failed") |t#1|)) (-15 -2304 ((-3 |t#1| "failed") |t#1|)) (-15 -2424 ((-3 |t#1| "failed") |t#1|)) (-15 -1732 ((-3 |t#1| "failed") |t#1|)) (-15 -3646 ((-3 |t#1| "failed") |t#1|)) (-15 -2700 ((-3 |t#1| "failed") |t#1|)) (-15 -1902 ((-3 |t#1| "failed") |t#1|)) (-15 -2797 ((-3 |t#1| "failed") |t#1|)) (-15 -2722 ((-3 |t#1| "failed") |t#1|)) (-15 -2926 ((-3 |t#1| "failed") |t#1|)) (-15 -1912 ((-3 |t#1| "failed") |t#1|)) (-15 -1768 ((-3 |t#1| "failed") |t#1|)) (-15 -2230 ((-3 |t#1| "failed") |t#1|)) (-15 -4191 ((-3 |t#1| "failed") |t#1|)) (-15 -2881 ((-3 |t#1| "failed") |t#1|)) (-15 -3288 ((-3 |t#1| "failed") |t#1|)) (-15 -2724 ((-3 |t#1| "failed") |t#1|)) (-15 -2715 ((-3 |t#1| "failed") |t#1|))))
+((-4378 ((|#4| |#4| (-650 |#3|)) 57) ((|#4| |#4| |#3|) 56)) (-3453 ((|#4| |#4| (-650 |#3|)) 24) ((|#4| |#4| |#3|) 20)) (-1357 ((|#4| (-1 |#4| (-959 |#1|)) |#4|) 31)))
+(((-993 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3453 (|#4| |#4| |#3|)) (-15 -3453 (|#4| |#4| (-650 |#3|))) (-15 -4378 (|#4| |#4| |#3|)) (-15 -4378 (|#4| |#4| (-650 |#3|))) (-15 -1357 (|#4| (-1 |#4| (-959 |#1|)) |#4|))) (-1058) (-799) (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-3 $ "failed") (-1186))))) (-956 (-959 |#1|) |#2| |#3|)) (T -993))
+((-1357 (*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 -1426 ((-1186) $)) (-15 -2800 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *6 *2)))) (-4378 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-3 $ "failed") (-1186)))))) (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2)) (-4 *2 (-956 (-959 *4) *5 *6)))) (-4378 (*1 *2 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3)))) (-3453 (*1 *2 *2 *3) (-12 (-5 *3 (-650 *6)) (-4 *6 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-3 $ "failed") (-1186)))))) (-4 *4 (-1058)) (-4 *5 (-799)) (-5 *1 (-993 *4 *5 *6 *2)) (-4 *2 (-956 (-959 *4) *5 *6)))) (-3453 (*1 *2 *2 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $)) (-15 -2800 ((-3 $ "failed") (-1186)))))) (-5 *1 (-993 *4 *5 *3 *2)) (-4 *2 (-956 (-959 *4) *5 *3)))))
+(-10 -7 (-15 -3453 (|#4| |#4| |#3|)) (-15 -3453 (|#4| |#4| (-650 |#3|))) (-15 -4378 (|#4| |#4| |#3|)) (-15 -4378 (|#4| |#4| (-650 |#3|))) (-15 -1357 (|#4| (-1 |#4| (-959 |#1|)) |#4|)))
+((-2432 ((|#2| |#3|) 35)) (-3422 (((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|) 79)) (-3710 (((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) 100)))
+(((-994 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3710 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -3422 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)) (-15 -2432 (|#2| |#3|))) (-354) (-1253 |#1|) (-1253 |#2|) (-730 |#2| |#3|)) (T -994))
+((-2432 (*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)))) (-3422 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 *3)) (-5 *2 (-2 (|:| -3827 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-994 *4 *3 *5 *6)) (-4 *6 (-730 *3 *5)))) (-3710 (*1 *2) (-12 (-4 *3 (-354)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -3827 (-695 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-695 *4)))) (-5 *1 (-994 *3 *4 *5 *6)) (-4 *6 (-730 *4 *5)))))
+(-10 -7 (-15 -3710 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -3422 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)) (-15 -2432 (|#2| |#3|)))
((-4370 (((-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 -4370 ((-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))
((-4370 (*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 -4370 ((-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))) (-996 (-413 (-570)) (-870 |#1|) (-242 |#2| (-777)) (-249 |#1| (-413 (-570)))))))
-((-2558 (((-112) $ $) NIL)) (-2667 (((-3 (-112) "failed") $) 71)) (-4092 (($ $) 36 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-3087 (($ $ (-3 (-112) "failed")) 72)) (-2369 (($ (-650 |#4|) |#4|) 25)) (-1988 (((-1168) $) NIL)) (-3760 (($ $) 69)) (-3577 (((-1129) $) NIL)) (-2017 (((-112) $) 70)) (-2380 (($) 30)) (-2455 ((|#4| $) 74)) (-3464 (((-650 |#4|) $) 73)) (-3799 (((-868) $) 68)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-996 |#1| |#2| |#3| |#4|) (-13 (-1109) (-619 (-868)) (-10 -8 (-15 -2380 ($)) (-15 -2369 ($ (-650 |#4|) |#4|)) (-15 -2667 ((-3 (-112) "failed") $)) (-15 -3087 ($ $ (-3 (-112) "failed"))) (-15 -2017 ((-112) $)) (-15 -3464 ((-650 |#4|) $)) (-15 -2455 (|#4| $)) (-15 -3760 ($ $)) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (-15 -4092 ($ $)) |%noBranch|) |%noBranch|))) (-458) (-856) (-799) (-956 |#1| |#3| |#2|)) (T -996))
-((-2380 (*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)))) (-2369 (*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)))) (-2667 (*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)))) (-3087 (*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)))) (-2017 (*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)))) (-3464 (*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)))) (-2455 (*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)))) (-3760 (*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)))) (-4092 (*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 -2380 ($)) (-15 -2369 ($ (-650 |#4|) |#4|)) (-15 -2667 ((-3 (-112) "failed") $)) (-15 -3087 ($ $ (-3 (-112) "failed"))) (-15 -2017 ((-112) $)) (-15 -3464 ((-650 |#4|) $)) (-15 -2455 (|#4| $)) (-15 -3760 ($ $)) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (-15 -4092 ($ $)) |%noBranch|) |%noBranch|)))
-((-3451 (((-112) |#5| |#5|) 44)) (-2759 (((-112) |#5| |#5|) 59)) (-3614 (((-112) |#5| (-650 |#5|)) 81) (((-112) |#5| |#5|) 68)) (-1850 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-2668 (((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) 70)) (-2409 (((-1282)) 32)) (-1608 (((-1282) (-1168) (-1168) (-1168)) 28)) (-3311 (((-650 |#5|) (-650 |#5|)) 100)) (-2960 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) 92)) (-3079 (((-650 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112)) 122)) (-3492 (((-112) |#5| |#5|) 53)) (-1836 (((-3 (-112) "failed") |#5| |#5|) 78)) (-1961 (((-112) (-650 |#4|) (-650 |#4|)) 64)) (-3888 (((-112) (-650 |#4|) (-650 |#4|)) 66)) (-2971 (((-112) (-650 |#4|) (-650 |#4|)) 67)) (-4293 (((-3 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)) 117)) (-3520 (((-650 |#5|) (-650 |#5|)) 49)))
-(((-997 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1608 ((-1282) (-1168) (-1168) (-1168))) (-15 -2409 ((-1282))) (-15 -3451 ((-112) |#5| |#5|)) (-15 -3520 ((-650 |#5|) (-650 |#5|))) (-15 -3492 ((-112) |#5| |#5|)) (-15 -2759 ((-112) |#5| |#5|)) (-15 -1850 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1961 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -3888 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2971 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1836 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3614 ((-112) |#5| |#5|)) (-15 -3614 ((-112) |#5| (-650 |#5|))) (-15 -3311 ((-650 |#5|) (-650 |#5|))) (-15 -2668 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) (-15 -2960 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-15 -3079 ((-650 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -4293 ((-3 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#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))
-((-4293 (*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 (|:| -4305 (-650 *9)) (|:| -3684 *4) (|:| |ineq| (-650 *9)))) (-5 *1 (-997 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9)) (-4 *4 (-1080 *6 *7 *8 *9)))) (-3079 (*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 (|:| -4305 (-650 *9)) (|:| -3684 *10) (|:| |ineq| (-650 *9))))) (-5 *1 (-997 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))) (-2960 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3684 *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)))) (-2668 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3684 *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)))) (-3311 (*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)))) (-3614 (*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)))) (-3614 (*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)))) (-1836 (*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)))) (-2971 (*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)))) (-3888 (*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)))) (-1961 (*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)))) (-1850 (*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)))) (-2759 (*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)))) (-3492 (*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)))) (-3520 (*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)))) (-3451 (*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)))) (-2409 (*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)))) (-1608 (*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 -1608 ((-1282) (-1168) (-1168) (-1168))) (-15 -2409 ((-1282))) (-15 -3451 ((-112) |#5| |#5|)) (-15 -3520 ((-650 |#5|) (-650 |#5|))) (-15 -3492 ((-112) |#5| |#5|)) (-15 -2759 ((-112) |#5| |#5|)) (-15 -1850 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1961 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -3888 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2971 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1836 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3614 ((-112) |#5| |#5|)) (-15 -3614 ((-112) |#5| (-650 |#5|))) (-15 -3311 ((-650 |#5|) (-650 |#5|))) (-15 -2668 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) (-15 -2960 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-15 -3079 ((-650 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -4293 ((-3 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-2798 (((-1186) $) 15)) (-2308 (((-1168) $) 16)) (-3530 (($ (-1186) (-1168)) 14)) (-3799 (((-868) $) 13)))
-(((-998) (-13 (-619 (-868)) (-10 -8 (-15 -3530 ($ (-1186) (-1168))) (-15 -2798 ((-1186) $)) (-15 -2308 ((-1168) $))))) (T -998))
-((-3530 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-998)))) (-2798 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-998)))) (-2308 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-998)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3530 ($ (-1186) (-1168))) (-15 -2798 ((-1186) $)) (-15 -2308 ((-1168) $))))
-((-1356 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
-(((-999 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#4| (-1 |#2| |#1|) |#3|))) (-562) (-562) (-1001 |#1|) (-1001 |#2|)) (T -999))
-((-1356 (*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 -1356 (|#4| (-1 |#2| |#1|) |#3|)))
-((-4380 (((-3 |#2| "failed") $) NIL) (((-3 (-1186) "failed") $) 66) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) 96)) (-3216 ((|#2| $) NIL) (((-1186) $) 61) (((-413 (-570)) $) NIL) (((-570) $) 93)) (-4196 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 115) (((-695 |#2|) (-695 $)) 28)) (-3446 (($) 99)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 76) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 85)) (-1330 (($ $) 10)) (-2619 (((-3 $ "failed") $) 20)) (-1356 (($ (-1 |#2| |#2|) $) 22)) (-2438 (($) 16)) (-2564 (($ $) 55)) (-3547 (($ $) 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)) (-2978 (($ $) 12)) (-1425 (((-899 (-570)) $) 71) (((-899 (-384)) $) 80) (((-542) $) 40) (((-384) $) 44) (((-227) $) 48)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 91) (($ |#2|) NIL) (($ (-1186)) 58)) (-3499 (((-777)) 31)) (-3042 (((-112) $ $) 51)))
-(((-1000 |#1| |#2|) (-10 -8 (-15 -3042 ((-112) |#1| |#1|)) (-15 -2438 (|#1|)) (-15 -2619 ((-3 |#1| "failed") |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -1425 ((-227) |#1|)) (-15 -1425 ((-384) |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -3799 (|#1| (-1186))) (-15 -4380 ((-3 (-1186) "failed") |#1|)) (-15 -3216 ((-1186) |#1|)) (-15 -3446 (|#1|)) (-15 -2564 (|#1| |#1|)) (-15 -2978 (|#1| |#1|)) (-15 -1330 (|#1| |#1|)) (-15 -2842 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -4196 ((-695 |#2|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| |#1|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-1001 |#2|) (-562)) (T -1000))
-((-3499 (*1 *2) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-1000 *3 *4)) (-4 *3 (-1001 *4)))))
-(-10 -8 (-15 -3042 ((-112) |#1| |#1|)) (-15 -2438 (|#1|)) (-15 -2619 ((-3 |#1| "failed") |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -1425 ((-227) |#1|)) (-15 -1425 ((-384) |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -3799 (|#1| (-1186))) (-15 -4380 ((-3 (-1186) "failed") |#1|)) (-15 -3216 ((-1186) |#1|)) (-15 -3446 (|#1|)) (-15 -2564 (|#1| |#1|)) (-15 -2978 (|#1| |#1|)) (-15 -1330 (|#1| |#1|)) (-15 -2842 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -2842 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -4196 ((-695 |#2|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| |#1|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1733 ((|#1| $) 147 (|has| |#1| (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-3924 (((-424 (-1182 $)) (-1182 $)) 138 (|has| |#1| (-916)))) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 141 (|has| |#1| (-916)))) (-3473 (((-112) $ $) 65)) (-4395 (((-570) $) 128 (|has| |#1| (-826)))) (-1705 (($) 18 T CONST)) (-4380 (((-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))))) (-3216 ((|#1| $) 186) (((-1186) $) 137 (|has| |#1| (-1047 (-1186)))) (((-413 (-570)) $) 120 (|has| |#1| (-1047 (-570)))) (((-570) $) 118 (|has| |#1| (-1047 (-570))))) (-2506 (($ $ $) 61)) (-4196 (((-695 (-570)) (-695 $)) 160 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 159 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 158) (((-695 |#1|) (-695 $)) 157)) (-2875 (((-3 $ "failed") $) 37)) (-3446 (($) 145 (|has| |#1| (-551)))) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-3618 (((-112) $) 79)) (-3903 (((-112) $) 130 (|has| |#1| (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 154 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 153 (|has| |#1| (-893 (-384))))) (-4346 (((-112) $) 35)) (-1330 (($ $) 149)) (-4399 ((|#1| $) 151)) (-2619 (((-3 $ "failed") $) 116 (|has| |#1| (-1161)))) (-1479 (((-112) $) 129 (|has| |#1| (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3466 (($ $ $) 126 (|has| |#1| (-856)))) (-2800 (($ $ $) 125 (|has| |#1| (-856)))) (-1356 (($ (-1 |#1| |#1|) $) 177)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-2438 (($) 115 (|has| |#1| (-1161)) CONST)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2564 (($ $) 146 (|has| |#1| (-311)))) (-3665 ((|#1| $) 143 (|has| |#1| (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) 140 (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) 139 (|has| |#1| (-916)))) (-3801 (((-424 $) $) 82)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-1770 (($ $ (-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|)))) (-2142 (((-777) $) 64)) (-1941 (($ $ |#1|) 184 (|has| |#1| (-290 |#1| |#1|)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-3547 (($ $) 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)) (-2978 (($ $) 148)) (-4413 ((|#1| $) 150)) (-1425 (((-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)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 142 (-1809 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 189) (($ (-1186)) 135 (|has| |#1| (-1047 (-1186))))) (-3532 (((-3 $ "failed") $) 134 (-2892 (|has| |#1| (-146)) (-1809 (|has| $ (-146)) (|has| |#1| (-916)))))) (-3499 (((-777)) 32 T CONST)) (-1313 ((|#1| $) 144 (|has| |#1| (-551)))) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-2622 (($ $) 127 (|has| |#1| (-826)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) 123 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 122 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 124 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 121 (|has| |#1| (-856)))) (-3122 (($ $ $) 73) (($ |#1| |#1|) 152)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ |#1| $) 188) (($ $ |#1|) 187)))
+((-2560 (((-112) $ $) NIL)) (-2668 (((-3 (-112) "failed") $) 71)) (-3643 (($ $) 36 (-12 (|has| |#1| (-148)) (|has| |#1| (-311))))) (-3252 (($ $ (-3 (-112) "failed")) 72)) (-3729 (($ (-650 |#4|) |#4|) 25)) (-3989 (((-1168) $) NIL)) (-3420 (($ $) 69)) (-3580 (((-1129) $) NIL)) (-4283 (((-112) $) 70)) (-2656 (($) 30)) (-2220 ((|#4| $) 74)) (-3705 (((-650 |#4|) $) 73)) (-3802 (((-868) $) 68)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-996 |#1| |#2| |#3| |#4|) (-13 (-1109) (-619 (-868)) (-10 -8 (-15 -2656 ($)) (-15 -3729 ($ (-650 |#4|) |#4|)) (-15 -2668 ((-3 (-112) "failed") $)) (-15 -3252 ($ $ (-3 (-112) "failed"))) (-15 -4283 ((-112) $)) (-15 -3705 ((-650 |#4|) $)) (-15 -2220 (|#4| $)) (-15 -3420 ($ $)) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (-15 -3643 ($ $)) |%noBranch|) |%noBranch|))) (-458) (-856) (-799) (-956 |#1| |#3| |#2|)) (T -996))
+((-2656 (*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)))) (-3729 (*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)))) (-2668 (*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)))) (-3252 (*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)))) (-4283 (*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)))) (-3705 (*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)))) (-2220 (*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)))) (-3420 (*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)))) (-3643 (*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 -2656 ($)) (-15 -3729 ($ (-650 |#4|) |#4|)) (-15 -2668 ((-3 (-112) "failed") $)) (-15 -3252 ($ $ (-3 (-112) "failed"))) (-15 -4283 ((-112) $)) (-15 -3705 ((-650 |#4|) $)) (-15 -2220 (|#4| $)) (-15 -3420 ($ $)) (IF (|has| |#1| (-311)) (IF (|has| |#1| (-148)) (-15 -3643 ($ $)) |%noBranch|) |%noBranch|)))
+((-3573 (((-112) |#5| |#5|) 44)) (-2120 (((-112) |#5| |#5|) 59)) (-4426 (((-112) |#5| (-650 |#5|)) 81) (((-112) |#5| |#5|) 68)) (-2099 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-3656 (((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) 70)) (-2933 (((-1282)) 32)) (-1568 (((-1282) (-1168) (-1168) (-1168)) 28)) (-1728 (((-650 |#5|) (-650 |#5|)) 100)) (-4411 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) 92)) (-3190 (((-650 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112)) 122)) (-2772 (((-112) |#5| |#5|) 53)) (-1980 (((-3 (-112) "failed") |#5| |#5|) 78)) (-1868 (((-112) (-650 |#4|) (-650 |#4|)) 64)) (-2195 (((-112) (-650 |#4|) (-650 |#4|)) 66)) (-1433 (((-112) (-650 |#4|) (-650 |#4|)) 67)) (-1832 (((-3 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)) 117)) (-3033 (((-650 |#5|) (-650 |#5|)) 49)))
+(((-997 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1568 ((-1282) (-1168) (-1168) (-1168))) (-15 -2933 ((-1282))) (-15 -3573 ((-112) |#5| |#5|)) (-15 -3033 ((-650 |#5|) (-650 |#5|))) (-15 -2772 ((-112) |#5| |#5|)) (-15 -2120 ((-112) |#5| |#5|)) (-15 -2099 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1868 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2195 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1433 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1980 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4426 ((-112) |#5| |#5|)) (-15 -4426 ((-112) |#5| (-650 |#5|))) (-15 -1728 ((-650 |#5|) (-650 |#5|))) (-15 -3656 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) (-15 -4411 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-15 -3190 ((-650 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1832 ((-3 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#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))
+((-1832 (*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 (|:| -4308 (-650 *9)) (|:| -3687 *4) (|:| |ineq| (-650 *9)))) (-5 *1 (-997 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9)) (-4 *4 (-1080 *6 *7 *8 *9)))) (-3190 (*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 (|:| -4308 (-650 *9)) (|:| -3687 *10) (|:| |ineq| (-650 *9))))) (-5 *1 (-997 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))) (-4411 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3687 *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)))) (-3656 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3687 *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)))) (-1728 (*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)))) (-4426 (*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)))) (-4426 (*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)))) (-1980 (*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)))) (-1433 (*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)))) (-2195 (*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)))) (-1868 (*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)))) (-2099 (*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)))) (-2120 (*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)))) (-2772 (*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)))) (-3033 (*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)))) (-3573 (*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)))) (-2933 (*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)))) (-1568 (*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 -1568 ((-1282) (-1168) (-1168) (-1168))) (-15 -2933 ((-1282))) (-15 -3573 ((-112) |#5| |#5|)) (-15 -3033 ((-650 |#5|) (-650 |#5|))) (-15 -2772 ((-112) |#5| |#5|)) (-15 -2120 ((-112) |#5| |#5|)) (-15 -2099 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1868 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2195 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1433 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1980 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4426 ((-112) |#5| |#5|)) (-15 -4426 ((-112) |#5| (-650 |#5|))) (-15 -1728 ((-650 |#5|) (-650 |#5|))) (-15 -3656 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) (-15 -4411 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-15 -3190 ((-650 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1832 ((-3 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-2800 (((-1186) $) 15)) (-2308 (((-1168) $) 16)) (-3533 (($ (-1186) (-1168)) 14)) (-3802 (((-868) $) 13)))
+(((-998) (-13 (-619 (-868)) (-10 -8 (-15 -3533 ($ (-1186) (-1168))) (-15 -2800 ((-1186) $)) (-15 -2308 ((-1168) $))))) (T -998))
+((-3533 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1168)) (-5 *1 (-998)))) (-2800 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-998)))) (-2308 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-998)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3533 ($ (-1186) (-1168))) (-15 -2800 ((-1186) $)) (-15 -2308 ((-1168) $))))
+((-1357 ((|#4| (-1 |#2| |#1|) |#3|) 14)))
+(((-999 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#4| (-1 |#2| |#1|) |#3|))) (-562) (-562) (-1001 |#1|) (-1001 |#2|)) (T -999))
+((-1357 (*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 -1357 (|#4| (-1 |#2| |#1|) |#3|)))
+((-4383 (((-3 |#2| "failed") $) NIL) (((-3 (-1186) "failed") $) 66) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) 96)) (-3220 ((|#2| $) NIL) (((-1186) $) 61) (((-413 (-570)) $) NIL) (((-570) $) 93)) (-2179 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 115) (((-695 |#2|) (-695 $)) 28)) (-3449 (($) 99)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 76) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 85)) (-1834 (($ $) 10)) (-4369 (((-3 $ "failed") $) 20)) (-1357 (($ (-1 |#2| |#2|) $) 22)) (-2439 (($) 16)) (-3889 (($ $) 55)) (-3550 (($ $) 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)) (-1526 (($ $) 12)) (-1426 (((-899 (-570)) $) 71) (((-899 (-384)) $) 80) (((-542) $) 40) (((-384) $) 44) (((-227) $) 48)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 91) (($ |#2|) NIL) (($ (-1186)) 58)) (-2851 (((-777)) 31)) (-3045 (((-112) $ $) 51)))
+(((-1000 |#1| |#2|) (-10 -8 (-15 -3045 ((-112) |#1| |#1|)) (-15 -2439 (|#1|)) (-15 -4369 ((-3 |#1| "failed") |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -1426 ((-227) |#1|)) (-15 -1426 ((-384) |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -3802 (|#1| (-1186))) (-15 -4383 ((-3 (-1186) "failed") |#1|)) (-15 -3220 ((-1186) |#1|)) (-15 -3449 (|#1|)) (-15 -3889 (|#1| |#1|)) (-15 -1526 (|#1| |#1|)) (-15 -1834 (|#1| |#1|)) (-15 -1557 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -2179 ((-695 |#2|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| |#1|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-1001 |#2|) (-562)) (T -1000))
+((-2851 (*1 *2) (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-1000 *3 *4)) (-4 *3 (-1001 *4)))))
+(-10 -8 (-15 -3045 ((-112) |#1| |#1|)) (-15 -2439 (|#1|)) (-15 -4369 ((-3 |#1| "failed") |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -1426 ((-227) |#1|)) (-15 -1426 ((-384) |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -3802 (|#1| (-1186))) (-15 -4383 ((-3 (-1186) "failed") |#1|)) (-15 -3220 ((-1186) |#1|)) (-15 -3449 (|#1|)) (-15 -3889 (|#1| |#1|)) (-15 -1526 (|#1| |#1|)) (-15 -1834 (|#1| |#1|)) (-15 -1557 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1557 ((-896 (-570) |#1|) |#1| (-899 (-570)) (-896 (-570) |#1|))) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -2179 ((-695 |#2|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| |#1|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3472 ((|#1| $) 147 (|has| |#1| (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-2536 (((-424 (-1182 $)) (-1182 $)) 138 (|has| |#1| (-916)))) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 141 (|has| |#1| (-916)))) (-3765 (((-112) $ $) 65)) (-3408 (((-570) $) 128 (|has| |#1| (-826)))) (-3195 (($) 18 T CONST)) (-4383 (((-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))))) (-3220 ((|#1| $) 186) (((-1186) $) 137 (|has| |#1| (-1047 (-1186)))) (((-413 (-570)) $) 120 (|has| |#1| (-1047 (-570)))) (((-570) $) 118 (|has| |#1| (-1047 (-570))))) (-2504 (($ $ $) 61)) (-2179 (((-695 (-570)) (-695 $)) 160 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 159 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 158) (((-695 |#1|) (-695 $)) 157)) (-1929 (((-3 $ "failed") $) 37)) (-3449 (($) 145 (|has| |#1| (-551)))) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-1336 (((-112) $) 79)) (-2346 (((-112) $) 130 (|has| |#1| (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 154 (|has| |#1| (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 153 (|has| |#1| (-893 (-384))))) (-4139 (((-112) $) 35)) (-1834 (($ $) 149)) (-4402 ((|#1| $) 151)) (-4369 (((-3 $ "failed") $) 116 (|has| |#1| (-1161)))) (-2788 (((-112) $) 129 (|has| |#1| (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3469 (($ $ $) 126 (|has| |#1| (-856)))) (-2472 (($ $ $) 125 (|has| |#1| (-856)))) (-1357 (($ (-1 |#1| |#1|) $) 177)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-2439 (($) 115 (|has| |#1| (-1161)) CONST)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3889 (($ $) 146 (|has| |#1| (-311)))) (-1920 ((|#1| $) 143 (|has| |#1| (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) 140 (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) 139 (|has| |#1| (-916)))) (-3804 (((-424 $) $) 82)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-1771 (($ $ (-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|)))) (-2006 (((-777) $) 64)) (-1942 (($ $ |#1|) 184 (|has| |#1| (-290 |#1| |#1|)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-3550 (($ $) 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)) (-1526 (($ $) 148)) (-4416 ((|#1| $) 150)) (-1426 (((-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)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 142 (-1810 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 189) (($ (-1186)) 135 (|has| |#1| (-1047 (-1186))))) (-3132 (((-3 $ "failed") $) 134 (-2895 (|has| |#1| (-146)) (-1810 (|has| $ (-146)) (|has| |#1| (-916)))))) (-2851 (((-777)) 32 T CONST)) (-1918 ((|#1| $) 144 (|has| |#1| (-551)))) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-3231 (($ $) 127 (|has| |#1| (-826)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) 123 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 122 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 124 (|has| |#1| (-856)))) (-3045 (((-112) $ $) 121 (|has| |#1| (-856)))) (-3125 (($ $ $) 73) (($ |#1| |#1|) 152)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3122 (*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)))) (-1330 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-2978 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-1733 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311)))) (-2564 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311)))) (-3446 (*1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-551)) (-4 *2 (-562)))) (-1313 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551)))) (-3665 (*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 -3122 ($ |t#1| |t#1|)) (-15 -4399 (|t#1| $)) (-15 -4413 (|t#1| $)) (-15 -1330 ($ $)) (-15 -2978 ($ $)) (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 -1733 (|t#1| $)) (-15 -2564 ($ $))) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -3446 ($)) (-15 -1313 (|t#1| $)) (-15 -3665 (|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) -2892 (|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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-3246 (($ (-1151 |#1| |#2|)) 11)) (-2571 (((-1151 |#1| |#2|) $) 12)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1941 ((|#2| $ (-242 |#1| |#2|)) 16)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL)))
-(((-1002 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -3246 ($ (-1151 |#1| |#2|))) (-15 -2571 ((-1151 |#1| |#2|) $)) (-15 -1941 (|#2| $ (-242 |#1| |#2|))))) (-928) (-368)) (T -1002))
-((-3246 (*1 *1 *2) (-12 (-5 *2 (-1151 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368)) (-5 *1 (-1002 *3 *4)))) (-2571 (*1 *2 *1) (-12 (-5 *2 (-1151 *3 *4)) (-5 *1 (-1002 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368)))) (-1941 (*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 -3246 ($ (-1151 |#1| |#2|))) (-15 -2571 ((-1151 |#1| |#2|) $)) (-15 -1941 (|#2| $ (-242 |#1| |#2|)))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1434 (((-1144) $) 9)) (-3799 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1003) (-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $))))) (T -1003))
-((-1434 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1003)))))
-(-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $))))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) 8)) (-1705 (($) 7 T CONST)) (-2084 (($ $) 47)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1355 (((-777) $) 46)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1612 ((|#1| $) 45)) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-3528 ((|#1| |#1| $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2524 ((|#1| $) 48)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 43)) (-3073 ((|#1| $) 44)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-3125 (*1 *1 *2 *2) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-4402 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-4416 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-1834 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-1526 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)))) (-3472 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311)))) (-3889 (*1 *1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-311)))) (-3449 (*1 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-551)) (-4 *2 (-562)))) (-1918 (*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551)))) (-1920 (*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 -3125 ($ |t#1| |t#1|)) (-15 -4402 (|t#1| $)) (-15 -4416 (|t#1| $)) (-15 -1834 ($ $)) (-15 -1526 ($ $)) (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 -3472 (|t#1| $)) (-15 -3889 ($ $))) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -3449 ($)) (-15 -1918 (|t#1| $)) (-15 -1920 (|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) -2895 (|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))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-2354 (($ (-1151 |#1| |#2|)) 11)) (-2572 (((-1151 |#1| |#2|) $) 12)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1942 ((|#2| $ (-242 |#1| |#2|)) 16)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL)))
+(((-1002 |#1| |#2|) (-13 (-21) (-10 -8 (-15 -2354 ($ (-1151 |#1| |#2|))) (-15 -2572 ((-1151 |#1| |#2|) $)) (-15 -1942 (|#2| $ (-242 |#1| |#2|))))) (-928) (-368)) (T -1002))
+((-2354 (*1 *1 *2) (-12 (-5 *2 (-1151 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368)) (-5 *1 (-1002 *3 *4)))) (-2572 (*1 *2 *1) (-12 (-5 *2 (-1151 *3 *4)) (-5 *1 (-1002 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368)))) (-1942 (*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 -2354 ($ (-1151 |#1| |#2|))) (-15 -2572 ((-1151 |#1| |#2|) $)) (-15 -1942 (|#2| $ (-242 |#1| |#2|)))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1435 (((-1144) $) 9)) (-3802 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1003) (-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $))))) (T -1003))
+((-1435 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1003)))))
+(-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) 8)) (-3195 (($) 7 T CONST)) (-2622 (($ $) 47)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-1356 (((-777) $) 46)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1593 ((|#1| $) 45)) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-3102 ((|#1| |#1| $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1640 ((|#1| $) 48)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 43)) (-4295 ((|#1| $) 44)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1004 |#1|) (-141) (-1227)) (T -1004))
-((-3528 (*1 *2 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-2524 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-2084 (*1 *1 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-1355 (*1 *2 *1) (-12 (-4 *1 (-1004 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-1612 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-3073 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4449) (-15 -3528 (|t#1| |t#1| $)) (-15 -2524 (|t#1| $)) (-15 -2084 ($ $)) (-15 -1355 ((-777) $)) (-15 -1612 (|t#1| $)) (-15 -3073 (|t#1| $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3467 (((-112) $) 43)) (-4380 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 46)) (-3216 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 44)) (-2805 (((-3 (-413 (-570)) "failed") $) 78)) (-3242 (((-112) $) 72)) (-2068 (((-413 (-570)) $) 76)) (-4346 (((-112) $) 42)) (-2959 ((|#2| $) 22)) (-1356 (($ (-1 |#2| |#2|) $) 19)) (-1877 (($ $) 58)) (-3547 (($ $) 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)) (-1425 (((-542) $) 67)) (-2020 (($ $) 17)) (-3799 (((-868) $) 53) (($ (-570)) 39) (($ |#2|) 37) (($ (-413 (-570))) NIL)) (-3499 (((-777)) 10)) (-2622 ((|#2| $) 71)) (-3022 (((-112) $ $) 26)) (-3042 (((-112) $ $) 69)) (-3111 (($ $) 30) (($ $ $) 29)) (-3101 (($ $ $) 27)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 34) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 31) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
-(((-1005 |#1| |#2|) (-10 -8 (-15 -3799 (|#1| (-413 (-570)))) (-15 -3042 ((-112) |#1| |#1|)) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 -1877 (|#1| |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -2622 (|#2| |#1|)) (-15 -2959 (|#2| |#1|)) (-15 -2020 (|#1| |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 -4346 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -3467 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3101 (|#1| |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|))) (-1006 |#2|) (-174)) (T -1005))
-((-3499 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-1005 *3 *4)) (-4 *3 (-1006 *4)))))
-(-10 -8 (-15 -3799 (|#1| (-413 (-570)))) (-15 -3042 ((-112) |#1| |#1|)) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 -1877 (|#1| |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -2622 (|#2| |#1|)) (-15 -2959 (|#2| |#1|)) (-15 -2020 (|#1| |#1|)) (-15 -1356 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 -4346 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -3467 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3101 (|#1| |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-4380 (((-3 (-570) "failed") $) 127 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 125 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 122)) (-3216 (((-570) $) 126 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 124 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 123)) (-4196 (((-695 (-570)) (-695 $)) 97 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 96 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 95) (((-695 |#1|) (-695 $)) 94)) (-2875 (((-3 $ "failed") $) 37)) (-3823 ((|#1| $) 87)) (-2805 (((-3 (-413 (-570)) "failed") $) 83 (|has| |#1| (-551)))) (-3242 (((-112) $) 85 (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) 84 (|has| |#1| (-551)))) (-2338 (($ |#1| |#1| |#1| |#1|) 88)) (-4346 (((-112) $) 35)) (-2959 ((|#1| $) 89)) (-3466 (($ $ $) 76 (|has| |#1| (-856)))) (-2800 (($ $ $) 75 (|has| |#1| (-856)))) (-1356 (($ (-1 |#1| |#1|) $) 98)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 80 (|has| |#1| (-368)))) (-1605 ((|#1| $) 90)) (-3105 ((|#1| $) 91)) (-2452 ((|#1| $) 92)) (-3577 (((-1129) $) 11)) (-1770 (($ $ (-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|)))) (-1941 (($ $ |#1|) 105 (|has| |#1| (-290 |#1| |#1|)))) (-3547 (($ $) 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)) (-1425 (((-542) $) 81 (|has| |#1| (-620 (-542))))) (-2020 (($ $) 93)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 70 (-2892 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3532 (((-3 $ "failed") $) 82 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2622 ((|#1| $) 86 (|has| |#1| (-1069)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) 73 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 72 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 74 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 71 (|has| |#1| (-856)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))
+((-3102 (*1 *2 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-1640 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-2622 (*1 *1 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-1356 (*1 *2 *1) (-12 (-4 *1 (-1004 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-1593 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))) (-4295 (*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4452) (-15 -3102 (|t#1| |t#1| $)) (-15 -1640 (|t#1| $)) (-15 -2622 ($ $)) (-15 -1356 ((-777) $)) (-15 -1593 (|t#1| $)) (-15 -4295 (|t#1| $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3721 (((-112) $) 43)) (-4383 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#2| "failed") $) 46)) (-3220 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#2| $) 44)) (-2502 (((-3 (-413 (-570)) "failed") $) 78)) (-2313 (((-112) $) 72)) (-3645 (((-413 (-570)) $) 76)) (-4139 (((-112) $) 42)) (-4399 ((|#2| $) 22)) (-1357 (($ (-1 |#2| |#2|) $) 19)) (-1878 (($ $) 58)) (-3550 (($ $) 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)) (-1426 (((-542) $) 67)) (-4307 (($ $) 17)) (-3802 (((-868) $) 53) (($ (-570)) 39) (($ |#2|) 37) (($ (-413 (-570))) NIL)) (-2851 (((-777)) 10)) (-3231 ((|#2| $) 71)) (-3025 (((-112) $ $) 26)) (-3045 (((-112) $ $) 69)) (-3114 (($ $) 30) (($ $ $) 29)) (-3104 (($ $ $) 27)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 34) (($ $ $) NIL) (($ $ |#2|) NIL) (($ |#2| $) 31) (($ $ (-413 (-570))) NIL) (($ (-413 (-570)) $) NIL)))
+(((-1005 |#1| |#2|) (-10 -8 (-15 -3802 (|#1| (-413 (-570)))) (-15 -3045 ((-112) |#1| |#1|)) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 -1878 (|#1| |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -3231 (|#2| |#1|)) (-15 -4399 (|#2| |#1|)) (-15 -4307 (|#1| |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 -4139 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -3721 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3104 (|#1| |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|))) (-1006 |#2|) (-174)) (T -1005))
+((-2851 (*1 *2) (-12 (-4 *4 (-174)) (-5 *2 (-777)) (-5 *1 (-1005 *3 *4)) (-4 *3 (-1006 *4)))))
+(-10 -8 (-15 -3802 (|#1| (-413 (-570)))) (-15 -3045 ((-112) |#1| |#1|)) (-15 * (|#1| (-413 (-570)) |#1|)) (-15 * (|#1| |#1| (-413 (-570)))) (-15 -1878 (|#1| |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -3231 (|#2| |#1|)) (-15 -4399 (|#2| |#1|)) (-15 -4307 (|#1| |#1|)) (-15 -1357 (|#1| (-1 |#2| |#2|) |#1|)) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 -4139 ((-112) |#1|)) (-15 * (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 * (|#1| (-777) |#1|)) (-15 -3721 ((-112) |#1|)) (-15 * (|#1| (-928) |#1|)) (-15 -3104 (|#1| |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-4383 (((-3 (-570) "failed") $) 127 (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 125 (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) 122)) (-3220 (((-570) $) 126 (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) 124 (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) 123)) (-2179 (((-695 (-570)) (-695 $)) 97 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 96 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 95) (((-695 |#1|) (-695 $)) 94)) (-1929 (((-3 $ "failed") $) 37)) (-3826 ((|#1| $) 87)) (-2502 (((-3 (-413 (-570)) "failed") $) 83 (|has| |#1| (-551)))) (-2313 (((-112) $) 85 (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) 84 (|has| |#1| (-551)))) (-3399 (($ |#1| |#1| |#1| |#1|) 88)) (-4139 (((-112) $) 35)) (-4399 ((|#1| $) 89)) (-3469 (($ $ $) 76 (|has| |#1| (-856)))) (-2472 (($ $ $) 75 (|has| |#1| (-856)))) (-1357 (($ (-1 |#1| |#1|) $) 98)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 80 (|has| |#1| (-368)))) (-1533 ((|#1| $) 90)) (-3433 ((|#1| $) 91)) (-2189 ((|#1| $) 92)) (-3580 (((-1129) $) 11)) (-1771 (($ $ (-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|)))) (-1942 (($ $ |#1|) 105 (|has| |#1| (-290 |#1| |#1|)))) (-3550 (($ $) 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)) (-1426 (((-542) $) 81 (|has| |#1| (-620 (-542))))) (-4307 (($ $) 93)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 44) (($ (-413 (-570))) 70 (-2895 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3132 (((-3 $ "failed") $) 82 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3231 ((|#1| $) 86 (|has| |#1| (-1069)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) 73 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 72 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 74 (|has| |#1| (-856)))) (-3045 (((-112) $ $) 71 (|has| |#1| (-856)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2020 (*1 *1 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2452 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3105 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-1605 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2959 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2338 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3823 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2622 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-3242 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-2068 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2805 (*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 -2020 ($ $)) (-15 -2452 (|t#1| $)) (-15 -3105 (|t#1| $)) (-15 -1605 (|t#1| $)) (-15 -2959 (|t#1| $)) (-15 -2338 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -3823 (|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 -2622 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -3242 ((-112) $)) (-15 -2068 ((-413 (-570)) $)) (-15 -2805 ((-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 $ $) -2892 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2892 (|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) -2892 (|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 $) -2892 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-1065 #0#) |has| |#1| (-368)) ((-1065 |#1|) . T) ((-1065 $) -2892 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-1356 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
-(((-1007 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#3| (-1 |#4| |#2|) |#1|))) (-1006 |#2|) (-174) (-1006 |#4|) (-174)) (T -1007))
-((-1356 (*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 -1356 (|#3| (-1 |#4| |#2|) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3823 ((|#1| $) 12)) (-2805 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-3242 (((-112) $) NIL (|has| |#1| (-551)))) (-2068 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-2338 (($ |#1| |#1| |#1| |#1|) 16)) (-4346 (((-112) $) NIL)) (-2959 ((|#1| $) NIL)) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-1605 ((|#1| $) 15)) (-3105 ((|#1| $) 14)) (-2452 ((|#1| $) 13)) (-3577 (((-1129) $) NIL)) (-1770 (($ $ (-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|)))) (-1941 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-3547 (($ $) 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)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-2020 (($ $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2622 ((|#1| $) NIL (|has| |#1| (-1069)))) (-1861 (($) 8 T CONST)) (-1875 (($) 10 T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))))
+((-4307 (*1 *1 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-2189 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3433 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-1533 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-4399 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3399 (*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3826 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))) (-3231 (*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)) (-4 *2 (-1069)))) (-2313 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112)))) (-3645 (*1 *2 *1) (-12 (-4 *1 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-413 (-570))))) (-2502 (*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 -4307 ($ $)) (-15 -2189 (|t#1| $)) (-15 -3433 (|t#1| $)) (-15 -1533 (|t#1| $)) (-15 -4399 (|t#1| $)) (-15 -3399 ($ |t#1| |t#1| |t#1| |t#1|)) (-15 -3826 (|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 -3231 (|t#1| $)) |%noBranch|) (IF (|has| |t#1| (-551)) (PROGN (-15 -2313 ((-112) $)) (-15 -3645 ((-413 (-570)) $)) (-15 -2502 ((-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 $ $) -2895 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2895 (|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) -2895 (|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 $) -2895 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-1065 #0#) |has| |#1| (-368)) ((-1065 |#1|) . T) ((-1065 $) -2895 (|has| |#1| (-368)) (|has| |#1| (-294))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
+((-1357 ((|#3| (-1 |#4| |#2|) |#1|) 16)))
+(((-1007 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#3| (-1 |#4| |#2|) |#1|))) (-1006 |#2|) (-174) (-1006 |#4|) (-174)) (T -1007))
+((-1357 (*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 -1357 (|#3| (-1 |#4| |#2|) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3826 ((|#1| $) 12)) (-2502 (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-551)))) (-2313 (((-112) $) NIL (|has| |#1| (-551)))) (-3645 (((-413 (-570)) $) NIL (|has| |#1| (-551)))) (-3399 (($ |#1| |#1| |#1| |#1|) 16)) (-4139 (((-112) $) NIL)) (-4399 ((|#1| $) NIL)) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-1533 ((|#1| $) 15)) (-3433 ((|#1| $) 14)) (-2189 ((|#1| $) 13)) (-3580 (((-1129) $) NIL)) (-1771 (($ $ (-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|)))) (-1942 (($ $ |#1|) NIL (|has| |#1| (-290 |#1| |#1|)))) (-3550 (($ $) 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)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-4307 (($ $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3231 ((|#1| $) NIL (|has| |#1| (-1069)))) (-1862 (($) 8 T CONST)) (-1876 (($) 10 T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4302 (((-112) $ (-777)) NIL)) (-1705 (($) NIL T CONST)) (-2084 (($ $) 23)) (-2197 (($ (-650 |#1|)) 33)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1355 (((-777) $) 26)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1490 ((|#1| $) 28)) (-1385 (($ |#1| $) 17)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1612 ((|#1| $) 27)) (-3647 ((|#1| $) 22)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-3528 ((|#1| |#1| $) 16)) (-2017 (((-112) $) 18)) (-2380 (($) NIL)) (-2524 ((|#1| $) 21)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) NIL)) (-3073 ((|#1| $) 30)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1009 |#1|) (-13 (-1004 |#1|) (-10 -8 (-15 -2197 ($ (-650 |#1|))))) (-1109)) (T -1009))
-((-2197 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1009 *3)))))
-(-13 (-1004 |#1|) (-10 -8 (-15 -2197 ($ (-650 |#1|)))))
-((-3814 (($ $) 12)) (-2923 (($ $ (-570)) 13)))
-(((-1010 |#1|) (-10 -8 (-15 -3814 (|#1| |#1|)) (-15 -2923 (|#1| |#1| (-570)))) (-1011)) (T -1010))
-NIL
-(-10 -8 (-15 -3814 (|#1| |#1|)) (-15 -2923 (|#1| |#1| (-570))))
-((-3814 (($ $) 6)) (-2923 (($ $ (-570)) 7)) (** (($ $ (-413 (-570))) 8)))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1932 (((-112) $ (-777)) NIL)) (-3195 (($) NIL T CONST)) (-2622 (($ $) 23)) (-2564 (($ (-650 |#1|)) 33)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-1356 (((-777) $) 26)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2885 ((|#1| $) 28)) (-3502 (($ |#1| $) 17)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1593 ((|#1| $) 27)) (-1684 ((|#1| $) 22)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-3102 ((|#1| |#1| $) 16)) (-4283 (((-112) $) 18)) (-2656 (($) NIL)) (-1640 ((|#1| $) 21)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) NIL)) (-4295 ((|#1| $) 30)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1009 |#1|) (-13 (-1004 |#1|) (-10 -8 (-15 -2564 ($ (-650 |#1|))))) (-1109)) (T -1009))
+((-2564 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1009 *3)))))
+(-13 (-1004 |#1|) (-10 -8 (-15 -2564 ($ (-650 |#1|)))))
+((-3817 (($ $) 12)) (-2252 (($ $ (-570)) 13)))
+(((-1010 |#1|) (-10 -8 (-15 -3817 (|#1| |#1|)) (-15 -2252 (|#1| |#1| (-570)))) (-1011)) (T -1010))
+NIL
+(-10 -8 (-15 -3817 (|#1| |#1|)) (-15 -2252 (|#1| |#1| (-570))))
+((-3817 (($ $) 6)) (-2252 (($ $ (-570)) 7)) (** (($ $ (-413 (-570))) 8)))
(((-1011) (-141)) (T -1011))
-((** (*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-413 (-570))))) (-2923 (*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-570)))) (-3814 (*1 *1 *1) (-4 *1 (-1011))))
-(-13 (-10 -8 (-15 -3814 ($ $)) (-15 -2923 ($ $ (-570))) (-15 ** ($ $ (-413 (-570))))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1437 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| (-413 |#2|) (-368)))) (-3074 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3475 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-1806 (((-695 (-413 |#2|)) (-1277 $)) NIL) (((-695 (-413 |#2|))) NIL)) (-3207 (((-413 |#2|) $) NIL)) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-413 |#2|) (-354)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1652 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-3473 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3510 (((-777)) NIL (|has| (-413 |#2|) (-373)))) (-3757 (((-112)) NIL)) (-3673 (((-112) |#1|) 162) (((-112) |#2|) 166)) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 (((-570) $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) NIL)) (-3243 (($ (-1277 (-413 |#2|)) (-1277 $)) NIL) (($ (-1277 (-413 |#2|))) 79) (($ (-1277 |#2|) |#2|) NIL)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-413 |#2|) (-354)))) (-2506 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2818 (((-695 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) NIL) (((-695 (-413 |#2|)) (-695 $)) NIL)) (-1726 (((-1277 $) (-1277 $)) NIL)) (-3624 (($ |#3|) 73) (((-3 $ "failed") (-413 |#3|)) NIL (|has| (-413 |#2|) (-368)))) (-2875 (((-3 $ "failed") $) NIL)) (-3040 (((-650 (-650 |#1|))) NIL (|has| |#1| (-373)))) (-2792 (((-112) |#1| |#1|) NIL)) (-4006 (((-928)) NIL)) (-3446 (($) NIL (|has| (-413 |#2|) (-373)))) (-1370 (((-112)) NIL)) (-1625 (((-112) |#1|) 61) (((-112) |#2|) 164)) (-2518 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| (-413 |#2|) (-368)))) (-3988 (($ $) NIL)) (-2652 (($) NIL (|has| (-413 |#2|) (-354)))) (-2542 (((-112) $) NIL (|has| (-413 |#2|) (-354)))) (-2063 (($ $ (-777)) NIL (|has| (-413 |#2|) (-354))) (($ $) NIL (|has| (-413 |#2|) (-354)))) (-3618 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-4323 (((-928) $) NIL (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) NIL (|has| (-413 |#2|) (-354)))) (-4346 (((-112) $) NIL)) (-2279 (((-777)) NIL)) (-2871 (((-1277 $) (-1277 $)) NIL)) (-2959 (((-413 |#2|) $) NIL)) (-3652 (((-650 (-959 |#1|)) (-1186)) NIL (|has| |#1| (-368)))) (-2619 (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-354)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-3521 ((|#3| $) NIL (|has| (-413 |#2|) (-368)))) (-1884 (((-928) $) NIL (|has| (-413 |#2|) (-373)))) (-3612 ((|#3| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-1988 (((-1168) $) NIL)) (-2541 (((-695 (-413 |#2|))) 57)) (-4138 (((-695 (-413 |#2|))) 56)) (-1877 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-1549 (($ (-1277 |#2|) |#2|) 80)) (-3865 (((-695 (-413 |#2|))) 55)) (-2707 (((-695 (-413 |#2|))) 54)) (-3796 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 95)) (-3186 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 86)) (-1603 (((-1277 $)) 51)) (-2673 (((-1277 $)) 50)) (-1992 (((-112) $) NIL)) (-2480 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2438 (($) NIL (|has| (-413 |#2|) (-354)) CONST)) (-2268 (($ (-928)) NIL (|has| (-413 |#2|) (-373)))) (-2962 (((-3 |#2| "failed")) 70)) (-3577 (((-1129) $) NIL)) (-1663 (((-777)) NIL)) (-2466 (($) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-413 |#2|) (-368)))) (-1942 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| (-413 |#2|) (-354)))) (-3801 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2547 (((-3 $ "failed") $ $) NIL (|has| (-413 |#2|) (-368)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2142 (((-777) $) NIL (|has| (-413 |#2|) (-368)))) (-1941 ((|#1| $ |#1| |#1|) NIL)) (-2915 (((-3 |#2| "failed")) 68)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3570 (((-413 |#2|) (-1277 $)) NIL) (((-413 |#2|)) 47)) (-2289 (((-777) $) NIL (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) NIL (|has| (-413 |#2|) (-354)))) (-3547 (($ $ (-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 (-2892 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2892 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-1998 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368)))) (-2755 ((|#3|) 58)) (-4003 (($) NIL (|has| (-413 |#2|) (-354)))) (-3424 (((-1277 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 |#2|)) $) 81) (((-695 (-413 |#2|)) (-1277 $)) NIL)) (-1425 (((-1277 (-413 |#2|)) $) NIL) (($ (-1277 (-413 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-413 |#2|) (-354)))) (-2709 (((-1277 $) (-1277 $)) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 |#2|)) NIL) (($ (-413 (-570))) NIL (-2892 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-368)))) (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3532 (($ $) NIL (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-146)))) (-3553 ((|#3| $) NIL)) (-3499 (((-777)) NIL T CONST)) (-3129 (((-112)) 65)) (-2965 (((-112) |#1|) 167) (((-112) |#2|) 168)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) NIL)) (-2029 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-1719 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-2245 (((-112)) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-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 (-2892 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2892 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))))
+((** (*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-413 (-570))))) (-2252 (*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-570)))) (-3817 (*1 *1 *1) (-4 *1 (-1011))))
+(-13 (-10 -8 (-15 -3817 ($ $)) (-15 -2252 ($ $ (-570))) (-15 ** ($ $ (-413 (-570))))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1504 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| (-413 |#2|) (-368)))) (-4306 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-2617 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-2913 (((-695 (-413 |#2|)) (-1277 $)) NIL) (((-695 (-413 |#2|))) NIL)) (-3211 (((-413 |#2|) $) NIL)) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| (-413 |#2|) (-354)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3871 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-3765 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3513 (((-777)) NIL (|has| (-413 |#2|) (-373)))) (-3392 (((-112)) NIL)) (-1992 (((-112) |#1|) 162) (((-112) |#2|) 166)) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 (((-570) $) NIL (|has| (-413 |#2|) (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| (-413 |#2|) (-1047 (-413 (-570))))) (((-413 |#2|) $) NIL)) (-2322 (($ (-1277 (-413 |#2|)) (-1277 $)) NIL) (($ (-1277 (-413 |#2|))) 79) (($ (-1277 |#2|) |#2|) NIL)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| (-413 |#2|) (-354)))) (-2504 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-2595 (((-695 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-413 |#2|) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-413 |#2|))) (|:| |vec| (-1277 (-413 |#2|)))) (-695 $) (-1277 $)) NIL) (((-695 (-413 |#2|)) (-695 $)) NIL)) (-3383 (((-1277 $) (-1277 $)) NIL)) (-3627 (($ |#3|) 73) (((-3 $ "failed") (-413 |#3|)) NIL (|has| (-413 |#2|) (-368)))) (-1929 (((-3 $ "failed") $) NIL)) (-3997 (((-650 (-650 |#1|))) NIL (|has| |#1| (-373)))) (-2397 (((-112) |#1| |#1|) NIL)) (-4009 (((-928)) NIL)) (-3449 (($) NIL (|has| (-413 |#2|) (-373)))) (-3176 (((-112)) NIL)) (-1738 (((-112) |#1|) 61) (((-112) |#2|) 164)) (-2519 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| (-413 |#2|) (-368)))) (-1944 (($ $) NIL)) (-3511 (($) NIL (|has| (-413 |#2|) (-354)))) (-1843 (((-112) $) NIL (|has| (-413 |#2|) (-354)))) (-3599 (($ $ (-777)) NIL (|has| (-413 |#2|) (-354))) (($ $) NIL (|has| (-413 |#2|) (-354)))) (-1336 (((-112) $) NIL (|has| (-413 |#2|) (-368)))) (-3941 (((-928) $) NIL (|has| (-413 |#2|) (-354))) (((-839 (-928)) $) NIL (|has| (-413 |#2|) (-354)))) (-4139 (((-112) $) NIL)) (-3995 (((-777)) NIL)) (-1874 (((-1277 $) (-1277 $)) NIL)) (-4399 (((-413 |#2|) $) NIL)) (-1747 (((-650 (-959 |#1|)) (-1186)) NIL (|has| |#1| (-368)))) (-4369 (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-354)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-3043 ((|#3| $) NIL (|has| (-413 |#2|) (-368)))) (-2400 (((-928) $) NIL (|has| (-413 |#2|) (-373)))) (-3615 ((|#3| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3989 (((-1168) $) NIL)) (-1831 (((-695 (-413 |#2|))) 57)) (-2873 (((-695 (-413 |#2|))) 56)) (-1878 (($ $) NIL (|has| (-413 |#2|) (-368)))) (-2246 (($ (-1277 |#2|) |#2|) 80)) (-3147 (((-695 (-413 |#2|))) 55)) (-2843 (((-695 (-413 |#2|))) 54)) (-3770 (((-2 (|:| |num| (-695 |#2|)) (|:| |den| |#2|)) (-1 |#2| |#2|)) 95)) (-2977 (((-2 (|:| |num| (-1277 |#2|)) (|:| |den| |#2|)) $) 86)) (-1505 (((-1277 $)) 51)) (-3710 (((-1277 $)) 50)) (-4026 (((-112) $) NIL)) (-2475 (((-112) $) NIL) (((-112) $ |#1|) NIL) (((-112) $ |#2|) NIL)) (-2439 (($) NIL (|has| (-413 |#2|) (-354)) CONST)) (-2267 (($ (-928)) NIL (|has| (-413 |#2|) (-373)))) (-1311 (((-3 |#2| "failed")) 70)) (-3580 (((-1129) $) NIL)) (-3973 (((-777)) NIL)) (-2467 (($) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| (-413 |#2|) (-368)))) (-1939 (($ (-650 $)) NIL (|has| (-413 |#2|) (-368))) (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| (-413 |#2|) (-354)))) (-3804 (((-424 $) $) NIL (|has| (-413 |#2|) (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| (-413 |#2|) (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2548 (((-3 $ "failed") $ $) NIL (|has| (-413 |#2|) (-368)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| (-413 |#2|) (-368)))) (-2006 (((-777) $) NIL (|has| (-413 |#2|) (-368)))) (-1942 ((|#1| $ |#1| |#1|) NIL)) (-2175 (((-3 |#2| "failed")) 68)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| (-413 |#2|) (-368)))) (-2265 (((-413 |#2|) (-1277 $)) NIL) (((-413 |#2|)) 47)) (-4080 (((-777) $) NIL (|has| (-413 |#2|) (-354))) (((-3 (-777) "failed") $ $) NIL (|has| (-413 |#2|) (-354)))) (-3550 (($ $ (-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 (-2895 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2895 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-4083 (((-695 (-413 |#2|)) (-1277 $) (-1 (-413 |#2|) (-413 |#2|))) NIL (|has| (-413 |#2|) (-368)))) (-2075 ((|#3|) 58)) (-3924 (($) NIL (|has| (-413 |#2|) (-354)))) (-3314 (((-1277 (-413 |#2|)) $ (-1277 $)) NIL) (((-695 (-413 |#2|)) (-1277 $) (-1277 $)) NIL) (((-1277 (-413 |#2|)) $) 81) (((-695 (-413 |#2|)) (-1277 $)) NIL)) (-1426 (((-1277 (-413 |#2|)) $) NIL) (($ (-1277 (-413 |#2|))) NIL) ((|#3| $) NIL) (($ |#3|) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| (-413 |#2|) (-354)))) (-2864 (((-1277 $) (-1277 $)) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-413 |#2|)) NIL) (($ (-413 (-570))) NIL (-2895 (|has| (-413 |#2|) (-1047 (-413 (-570)))) (|has| (-413 |#2|) (-368)))) (($ $) NIL (|has| (-413 |#2|) (-368)))) (-3132 (($ $) NIL (|has| (-413 |#2|) (-354))) (((-3 $ "failed") $) NIL (|has| (-413 |#2|) (-146)))) (-2124 ((|#3| $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3644 (((-112)) 65)) (-1345 (((-112) |#1|) 167) (((-112) |#2|) 168)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) NIL)) (-3228 (((-112) $ $) NIL (|has| (-413 |#2|) (-368)))) (-3302 (((-2 (|:| |num| $) (|:| |den| |#2|) (|:| |derivden| |#2|) (|:| |gd| |#2|)) $ (-1 |#2| |#2|)) NIL)) (-1807 (((-112)) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-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 (-2895 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354)))) (($ $) NIL (-2895 (-12 (|has| (-413 |#2|) (-235)) (|has| (-413 |#2|) (-368))) (|has| (-413 |#2|) (-354))))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ $) NIL (|has| (-413 |#2|) (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3740 (((-650 (-570)) $) 73)) (-2307 (($ (-650 (-570))) 81)) (-1733 (((-570) $) 48 (|has| (-570) (-311)))) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL (|has| (-570) (-826)))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2506 (($ $ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3446 (($) NIL (|has| (-570) (-551)))) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4020 (((-650 (-570)) $) 79)) (-3903 (((-112) $) NIL (|has| (-570) (-826)))) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL)) (-4399 (((-570) $) 45)) (-2619 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-1479 (((-112) $) NIL (|has| (-570) (-826)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| (-570) (-856)))) (-1356 (($ (-1 (-570) (-570)) $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL)) (-2438 (($) NIL (|has| (-570) (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-2564 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) 50)) (-3972 (((-1166 (-570)) $) 78)) (-4356 (($ (-650 (-570)) (-650 (-570))) 82)) (-3665 (((-570) $) 64 (|has| (-570) (-551)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3801 (((-424 $) $) NIL)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1770 (($ $ (-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))))) (-2142 (((-777) $) NIL)) (-1941 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $) 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)) (-2978 (($ $) NIL)) (-4413 (((-570) $) 47)) (-1869 (((-650 (-570)) $) 80)) (-1425 (((-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)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3799 (((-868) $) 107) (($ (-570)) 51) (($ $) NIL) (($ (-413 (-570))) 27) (($ (-570)) 51) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) 25)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-3499 (((-777)) 13 T CONST)) (-1313 (((-570) $) 62 (|has| (-570) (-551)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-2622 (($ $) NIL (|has| (-570) (-826)))) (-1861 (($) 14 T CONST)) (-1875 (($) 17 T CONST)) (-2942 (($ $) 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)) (-3072 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3022 (((-112) $ $) 21)) (-3062 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3042 (((-112) $ $) 40 (|has| (-570) (-856)))) (-3122 (($ $ $) 36) (($ (-570) (-570)) 38)) (-3111 (($ $) 23) (($ $ $) 30)) (-3101 (($ $ $) 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 -2564 ((-413 (-570)) $)) (-15 -3740 ((-650 (-570)) $)) (-15 -3972 ((-1166 (-570)) $)) (-15 -4020 ((-650 (-570)) $)) (-15 -1869 ((-650 (-570)) $)) (-15 -2307 ($ (-650 (-570)))) (-15 -4356 ($ (-650 (-570)) (-650 (-570)))))) (-570)) (T -1013))
-((-2564 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-3740 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-3972 (*1 *2 *1) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-4020 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-1869 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-2307 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-4356 (*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 -2564 ((-413 (-570)) $)) (-15 -3740 ((-650 (-570)) $)) (-15 -3972 ((-1166 (-570)) $)) (-15 -4020 ((-650 (-570)) $)) (-15 -1869 ((-650 (-570)) $)) (-15 -2307 ($ (-650 (-570)))) (-15 -4356 ($ (-650 (-570)) (-650 (-570))))))
-((-1424 (((-52) (-413 (-570)) (-570)) 9)))
-(((-1014) (-10 -7 (-15 -1424 ((-52) (-413 (-570)) (-570))))) (T -1014))
-((-1424 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-570))) (-5 *4 (-570)) (-5 *2 (-52)) (-5 *1 (-1014)))))
-(-10 -7 (-15 -1424 ((-52) (-413 (-570)) (-570))))
-((-3510 (((-570)) 23)) (-2580 (((-570)) 28)) (-3666 (((-1282) (-570)) 26)) (-4030 (((-570) (-570)) 29) (((-570)) 22)))
-(((-1015) (-10 -7 (-15 -4030 ((-570))) (-15 -3510 ((-570))) (-15 -4030 ((-570) (-570))) (-15 -3666 ((-1282) (-570))) (-15 -2580 ((-570))))) (T -1015))
-((-2580 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-3666 (*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1015)))) (-4030 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-3510 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-4030 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
-(-10 -7 (-15 -4030 ((-570))) (-15 -3510 ((-570))) (-15 -4030 ((-570) (-570))) (-15 -3666 ((-1282) (-570))) (-15 -2580 ((-570))))
-((-3361 (((-424 |#1|) |#1|) 43)) (-3801 (((-424 |#1|) |#1|) 41)))
-(((-1016 |#1|) (-10 -7 (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3361 ((-424 |#1|) |#1|))) (-1253 (-413 (-570)))) (T -1016))
-((-3361 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3)) (-4 *3 (-1253 (-413 (-570)))))) (-3801 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3)) (-4 *3 (-1253 (-413 (-570)))))))
-(-10 -7 (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3361 ((-424 |#1|) |#1|)))
-((-2805 (((-3 (-413 (-570)) "failed") |#1|) 15)) (-3242 (((-112) |#1|) 14)) (-2068 (((-413 (-570)) |#1|) 10)))
-(((-1017 |#1|) (-10 -7 (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|))) (-1047 (-413 (-570)))) (T -1017))
-((-2805 (*1 *2 *3) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))) (-3242 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1017 *3)) (-4 *3 (-1047 (-413 (-570)))))) (-2068 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))))
-(-10 -7 (-15 -2068 ((-413 (-570)) |#1|)) (-15 -3242 ((-112) |#1|)) (-15 -2805 ((-3 (-413 (-570)) "failed") |#1|)))
-((-3932 ((|#2| $ "value" |#2|) 12)) (-1941 ((|#2| $ "value") 10)) (-3746 (((-112) $ $) 18)))
-(((-1018 |#1| |#2|) (-10 -8 (-15 -3932 (|#2| |#1| "value" |#2|)) (-15 -3746 ((-112) |#1| |#1|)) (-15 -1941 (|#2| |#1| "value"))) (-1019 |#2|) (-1227)) (T -1018))
-NIL
-(-10 -8 (-15 -3932 (|#2| |#1| "value" |#2|)) (-15 -3746 ((-112) |#1| |#1|)) (-15 -1941 (|#2| |#1| "value")))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-4302 (((-112) $ (-777)) 8)) (-2988 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-1705 (($) 7 T CONST)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 51)) (-2439 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-2403 (((-650 |#1|) $) 46)) (-2606 (((-112) $) 50)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ "value") 48)) (-2738 (((-570) $ $) 45)) (-3817 (((-112) $) 47)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 52)) (-3746 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3238 (((-650 (-570)) $) 73)) (-4258 (($ (-650 (-570))) 81)) (-3472 (((-570) $) 48 (|has| (-570) (-311)))) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL (|has| (-570) (-826)))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-570) $) NIL) (((-1186) $) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) NIL (|has| (-570) (-1047 (-570)))) (((-570) $) NIL (|has| (-570) (-1047 (-570))))) (-2504 (($ $ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| (-570) (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3449 (($) NIL (|has| (-570) (-551)))) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-4082 (((-650 (-570)) $) 79)) (-2346 (((-112) $) NIL (|has| (-570) (-826)))) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL (|has| (-570) (-893 (-570)))) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) NIL (|has| (-570) (-893 (-384))))) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL)) (-4402 (((-570) $) 45)) (-4369 (((-3 $ "failed") $) NIL (|has| (-570) (-1161)))) (-2788 (((-112) $) NIL (|has| (-570) (-826)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| (-570) (-856)))) (-1357 (($ (-1 (-570) (-570)) $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL)) (-2439 (($) NIL (|has| (-570) (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3889 (($ $) NIL (|has| (-570) (-311))) (((-413 (-570)) $) 50)) (-1757 (((-1166 (-570)) $) 78)) (-4245 (($ (-650 (-570)) (-650 (-570))) 82)) (-1920 (((-570) $) 64 (|has| (-570) (-551)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| (-570) (-916)))) (-3804 (((-424 $) $) NIL)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-1771 (($ $ (-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))))) (-2006 (((-777) $) NIL)) (-1942 (($ $ (-570)) NIL (|has| (-570) (-290 (-570) (-570))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $) 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)) (-1526 (($ $) NIL)) (-4416 (((-570) $) 47)) (-2273 (((-650 (-570)) $) 80)) (-1426 (((-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)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-570) (-916))))) (-3802 (((-868) $) 107) (($ (-570)) 51) (($ $) NIL) (($ (-413 (-570))) 27) (($ (-570)) 51) (($ (-1186)) NIL (|has| (-570) (-1047 (-1186)))) (((-413 (-570)) $) 25)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| (-570) (-916))) (|has| (-570) (-146))))) (-2851 (((-777)) 13 T CONST)) (-1918 (((-570) $) 62 (|has| (-570) (-551)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3231 (($ $) NIL (|has| (-570) (-826)))) (-1862 (($) 14 T CONST)) (-1876 (($) 17 T CONST)) (-2945 (($ $) 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)) (-3075 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3025 (((-112) $ $) 21)) (-3065 (((-112) $ $) NIL (|has| (-570) (-856)))) (-3045 (((-112) $ $) 40 (|has| (-570) (-856)))) (-3125 (($ $ $) 36) (($ (-570) (-570)) 38)) (-3114 (($ $) 23) (($ $ $) 30)) (-3104 (($ $ $) 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 -3889 ((-413 (-570)) $)) (-15 -3238 ((-650 (-570)) $)) (-15 -1757 ((-1166 (-570)) $)) (-15 -4082 ((-650 (-570)) $)) (-15 -2273 ((-650 (-570)) $)) (-15 -4258 ($ (-650 (-570)))) (-15 -4245 ($ (-650 (-570)) (-650 (-570)))))) (-570)) (T -1013))
+((-3889 (*1 *2 *1) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-3238 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-1757 (*1 *2 *1) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-4082 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-2273 (*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-4258 (*1 *1 *2) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))) (-4245 (*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 -3889 ((-413 (-570)) $)) (-15 -3238 ((-650 (-570)) $)) (-15 -1757 ((-1166 (-570)) $)) (-15 -4082 ((-650 (-570)) $)) (-15 -2273 ((-650 (-570)) $)) (-15 -4258 ($ (-650 (-570)))) (-15 -4245 ($ (-650 (-570)) (-650 (-570))))))
+((-1400 (((-52) (-413 (-570)) (-570)) 9)))
+(((-1014) (-10 -7 (-15 -1400 ((-52) (-413 (-570)) (-570))))) (T -1014))
+((-1400 (*1 *2 *3 *4) (-12 (-5 *3 (-413 (-570))) (-5 *4 (-570)) (-5 *2 (-52)) (-5 *1 (-1014)))))
+(-10 -7 (-15 -1400 ((-52) (-413 (-570)) (-570))))
+((-3513 (((-570)) 23)) (-4010 (((-570)) 28)) (-1934 (((-1282) (-570)) 26)) (-4170 (((-570) (-570)) 29) (((-570)) 22)))
+(((-1015) (-10 -7 (-15 -4170 ((-570))) (-15 -3513 ((-570))) (-15 -4170 ((-570) (-570))) (-15 -1934 ((-1282) (-570))) (-15 -4010 ((-570))))) (T -1015))
+((-4010 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-1934 (*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1015)))) (-4170 (*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-3513 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))) (-4170 (*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
+(-10 -7 (-15 -4170 ((-570))) (-15 -3513 ((-570))) (-15 -4170 ((-570) (-570))) (-15 -1934 ((-1282) (-570))) (-15 -4010 ((-570))))
+((-4014 (((-424 |#1|) |#1|) 43)) (-3804 (((-424 |#1|) |#1|) 41)))
+(((-1016 |#1|) (-10 -7 (-15 -3804 ((-424 |#1|) |#1|)) (-15 -4014 ((-424 |#1|) |#1|))) (-1253 (-413 (-570)))) (T -1016))
+((-4014 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3)) (-4 *3 (-1253 (-413 (-570)))))) (-3804 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1016 *3)) (-4 *3 (-1253 (-413 (-570)))))))
+(-10 -7 (-15 -3804 ((-424 |#1|) |#1|)) (-15 -4014 ((-424 |#1|) |#1|)))
+((-2502 (((-3 (-413 (-570)) "failed") |#1|) 15)) (-2313 (((-112) |#1|) 14)) (-3645 (((-413 (-570)) |#1|) 10)))
+(((-1017 |#1|) (-10 -7 (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|))) (-1047 (-413 (-570)))) (T -1017))
+((-2502 (*1 *2 *3) (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))) (-2313 (*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1017 *3)) (-4 *3 (-1047 (-413 (-570)))))) (-3645 (*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3)) (-4 *3 (-1047 *2)))))
+(-10 -7 (-15 -3645 ((-413 (-570)) |#1|)) (-15 -2313 ((-112) |#1|)) (-15 -2502 ((-3 (-413 (-570)) "failed") |#1|)))
+((-3935 ((|#2| $ "value" |#2|) 12)) (-1942 ((|#2| $ "value") 10)) (-3290 (((-112) $ $) 18)))
+(((-1018 |#1| |#2|) (-10 -8 (-15 -3935 (|#2| |#1| "value" |#2|)) (-15 -3290 ((-112) |#1| |#1|)) (-15 -1942 (|#2| |#1| "value"))) (-1019 |#2|) (-1227)) (T -1018))
+NIL
+(-10 -8 (-15 -3935 (|#2| |#1| "value" |#2|)) (-15 -3290 ((-112) |#1| |#1|)) (-15 -1942 (|#2| |#1| "value")))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-1932 (((-112) $ (-777)) 8)) (-1647 ((|#1| $ |#1|) 40 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 42 (|has| $ (-6 -4453)))) (-3195 (($) 7 T CONST)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 51)) (-2045 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-2404 (((-650 |#1|) $) 46)) (-4244 (((-112) $) 50)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ "value") 48)) (-3108 (((-570) $ $) 45)) (-2759 (((-112) $) 47)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 52)) (-3290 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1019 |#1|) (-141) (-1227)) (T -1019))
-((-3397 (*1 *2 *1) (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))) (-3880 (*1 *2 *1) (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))) (-2606 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2308 (*1 *2 *1) (-12 (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-3817 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2403 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-2738 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))) (-3746 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-2439 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-2162 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *1)) (|has| *1 (-6 -4450)) (-4 *1 (-1019 *3)) (-4 *3 (-1227)))) (-3932 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4450)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-2988 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))))
-(-13 (-495 |t#1|) (-10 -8 (-15 -3397 ((-650 $) $)) (-15 -3880 ((-650 $) $)) (-15 -2606 ((-112) $)) (-15 -2308 (|t#1| $)) (-15 -1941 (|t#1| $ "value")) (-15 -3817 ((-112) $)) (-15 -2403 ((-650 |t#1|) $)) (-15 -2738 ((-570) $ $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3746 ((-112) $ $)) (-15 -2439 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4450)) (PROGN (-15 -2162 ($ $ (-650 $))) (-15 -3932 (|t#1| $ "value" |t#1|)) (-15 -2988 (|t#1| $ |t#1|))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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 (($ $) 9) (($ $ (-928)) 49) (($ (-413 (-570))) 13) (($ (-570)) 15)) (-1979 (((-3 $ "failed") (-1182 $) (-928) (-868)) 24) (((-3 $ "failed") (-1182 $) (-928)) 32)) (-2923 (($ $ (-570)) 58)) (-3499 (((-777)) 18)) (-3043 (((-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 -3814 (|#1| (-570))) (-15 -3814 (|#1| (-413 (-570)))) (-15 -3814 (|#1| |#1| (-928))) (-15 -3043 ((-650 |#1|) (-959 (-570)))) (-15 -3043 ((-650 |#1|) (-959 (-413 (-570))))) (-15 -3043 ((-650 |#1|) (-959 |#1|))) (-15 -3043 ((-650 |#1|) (-1182 (-570)))) (-15 -3043 ((-650 |#1|) (-1182 (-413 (-570))))) (-15 -3043 ((-650 |#1|) (-1182 |#1|))) (-15 -1979 ((-3 |#1| "failed") (-1182 |#1|) (-928))) (-15 -1979 ((-3 |#1| "failed") (-1182 |#1|) (-928) (-868))) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2923 (|#1| |#1| (-570))) (-15 -3814 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3499 ((-777))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928)))) (-1021)) (T -1020))
-((-3499 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1020 *3)) (-4 *3 (-1021)))))
-(-10 -8 (-15 -3814 (|#1| (-570))) (-15 -3814 (|#1| (-413 (-570)))) (-15 -3814 (|#1| |#1| (-928))) (-15 -3043 ((-650 |#1|) (-959 (-570)))) (-15 -3043 ((-650 |#1|) (-959 (-413 (-570))))) (-15 -3043 ((-650 |#1|) (-959 |#1|))) (-15 -3043 ((-650 |#1|) (-1182 (-570)))) (-15 -3043 ((-650 |#1|) (-1182 (-413 (-570))))) (-15 -3043 ((-650 |#1|) (-1182 |#1|))) (-15 -1979 ((-3 |#1| "failed") (-1182 |#1|) (-928))) (-15 -1979 ((-3 |#1| "failed") (-1182 |#1|) (-928) (-868))) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2923 (|#1| |#1| (-570))) (-15 -3814 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -3499 ((-777))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 102)) (-3074 (($ $) 103)) (-3475 (((-112) $) 105)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 122)) (-1652 (((-424 $) $) 123)) (-3814 (($ $) 86) (($ $ (-928)) 72) (($ (-413 (-570))) 71) (($ (-570)) 70)) (-3473 (((-112) $ $) 113)) (-4395 (((-570) $) 139)) (-1705 (($) 18 T CONST)) (-1979 (((-3 $ "failed") (-1182 $) (-928) (-868)) 80) (((-3 $ "failed") (-1182 $) (-928)) 79)) (-4380 (((-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)) (-3216 (((-570) $) 98 (|has| (-413 (-570)) (-1047 (-570)))) (((-413 (-570)) $) 96 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-413 (-570)) $) 95)) (-1933 (($ $ (-868)) 69)) (-3925 (($ $ (-868)) 68)) (-2506 (($ $ $) 117)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 116)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 111)) (-3618 (((-112) $) 124)) (-3903 (((-112) $) 137)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 85)) (-1479 (((-112) $) 138)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 120)) (-3466 (($ $ $) 136)) (-2800 (($ $ $) 135)) (-2281 (((-3 (-1182 $) "failed") $) 81)) (-3604 (((-3 (-868) "failed") $) 83)) (-1774 (((-3 (-1182 $) "failed") $) 82)) (-1899 (($ (-650 $)) 109) (($ $ $) 108)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 125)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 110)) (-1942 (($ (-650 $)) 107) (($ $ $) 106)) (-3801 (((-424 $) $) 121)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 118)) (-2547 (((-3 $ "failed") $ $) 101)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 112)) (-2142 (((-777) $) 114)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 115)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 129) (($ $) 100) (($ (-413 (-570))) 93) (($ (-570)) 92) (($ (-413 (-570))) 89)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 104)) (-3167 (((-413 (-570)) $ $) 67)) (-3043 (((-650 $) (-1182 $)) 78) (((-650 $) (-1182 (-413 (-570)))) 77) (((-650 $) (-1182 (-570))) 76) (((-650 $) (-959 $)) 75) (((-650 $) (-959 (-413 (-570)))) 74) (((-650 $) (-959 (-570))) 73)) (-2622 (($ $) 140)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3072 (((-112) $ $) 133)) (-3052 (((-112) $ $) 132)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 134)) (-3042 (((-112) $ $) 131)) (-3122 (($ $ $) 130)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))
+((-4259 (*1 *2 *1) (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))) (-2119 (*1 *2 *1) (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))) (-4244 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2308 (*1 *2 *1) (-12 (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 "value") (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-2759 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-2404 (*1 *2 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))) (-3108 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))) (-3290 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-2045 (*1 *2 *1 *1) (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-2204 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *1)) (|has| *1 (-6 -4453)) (-4 *1 (-1019 *3)) (-4 *3 (-1227)))) (-3935 (*1 *2 *1 *3 *2) (-12 (-5 *3 "value") (|has| *1 (-6 -4453)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))) (-1647 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))))
+(-13 (-495 |t#1|) (-10 -8 (-15 -4259 ((-650 $) $)) (-15 -2119 ((-650 $) $)) (-15 -4244 ((-112) $)) (-15 -2308 (|t#1| $)) (-15 -1942 (|t#1| $ "value")) (-15 -2759 ((-112) $)) (-15 -2404 ((-650 |t#1|) $)) (-15 -3108 ((-570) $ $)) (IF (|has| |t#1| (-1109)) (PROGN (-15 -3290 ((-112) $ $)) (-15 -2045 ((-112) $ $))) |%noBranch|) (IF (|has| $ (-6 -4453)) (PROGN (-15 -2204 ($ $ (-650 $))) (-15 -3935 (|t#1| $ "value" |t#1|)) (-15 -1647 (|t#1| $ |t#1|))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3817 (($ $) 9) (($ $ (-928)) 49) (($ (-413 (-570))) 13) (($ (-570)) 15)) (-3896 (((-3 $ "failed") (-1182 $) (-928) (-868)) 24) (((-3 $ "failed") (-1182 $) (-928)) 32)) (-2252 (($ $ (-570)) 58)) (-2851 (((-777)) 18)) (-4017 (((-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 -3817 (|#1| (-570))) (-15 -3817 (|#1| (-413 (-570)))) (-15 -3817 (|#1| |#1| (-928))) (-15 -4017 ((-650 |#1|) (-959 (-570)))) (-15 -4017 ((-650 |#1|) (-959 (-413 (-570))))) (-15 -4017 ((-650 |#1|) (-959 |#1|))) (-15 -4017 ((-650 |#1|) (-1182 (-570)))) (-15 -4017 ((-650 |#1|) (-1182 (-413 (-570))))) (-15 -4017 ((-650 |#1|) (-1182 |#1|))) (-15 -3896 ((-3 |#1| "failed") (-1182 |#1|) (-928))) (-15 -3896 ((-3 |#1| "failed") (-1182 |#1|) (-928) (-868))) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2252 (|#1| |#1| (-570))) (-15 -3817 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2851 ((-777))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928)))) (-1021)) (T -1020))
+((-2851 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1020 *3)) (-4 *3 (-1021)))))
+(-10 -8 (-15 -3817 (|#1| (-570))) (-15 -3817 (|#1| (-413 (-570)))) (-15 -3817 (|#1| |#1| (-928))) (-15 -4017 ((-650 |#1|) (-959 (-570)))) (-15 -4017 ((-650 |#1|) (-959 (-413 (-570))))) (-15 -4017 ((-650 |#1|) (-959 |#1|))) (-15 -4017 ((-650 |#1|) (-1182 (-570)))) (-15 -4017 ((-650 |#1|) (-1182 (-413 (-570))))) (-15 -4017 ((-650 |#1|) (-1182 |#1|))) (-15 -3896 ((-3 |#1| "failed") (-1182 |#1|) (-928))) (-15 -3896 ((-3 |#1| "failed") (-1182 |#1|) (-928) (-868))) (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2252 (|#1| |#1| (-570))) (-15 -3817 (|#1| |#1|)) (-15 ** (|#1| |#1| (-570))) (-15 -2851 ((-777))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 102)) (-4306 (($ $) 103)) (-2617 (((-112) $) 105)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 122)) (-3871 (((-424 $) $) 123)) (-3817 (($ $) 86) (($ $ (-928)) 72) (($ (-413 (-570))) 71) (($ (-570)) 70)) (-3765 (((-112) $ $) 113)) (-3408 (((-570) $) 139)) (-3195 (($) 18 T CONST)) (-3896 (((-3 $ "failed") (-1182 $) (-928) (-868)) 80) (((-3 $ "failed") (-1182 $) (-928)) 79)) (-4383 (((-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)) (-3220 (((-570) $) 98 (|has| (-413 (-570)) (-1047 (-570)))) (((-413 (-570)) $) 96 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-413 (-570)) $) 95)) (-1588 (($ $ (-868)) 69)) (-2545 (($ $ (-868)) 68)) (-2504 (($ $ $) 117)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 116)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 111)) (-1336 (((-112) $) 124)) (-2346 (((-112) $) 137)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 85)) (-2788 (((-112) $) 138)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 120)) (-3469 (($ $ $) 136)) (-2472 (($ $ $) 135)) (-4013 (((-3 (-1182 $) "failed") $) 81)) (-2539 (((-3 (-868) "failed") $) 83)) (-2626 (((-3 (-1182 $) "failed") $) 82)) (-1901 (($ (-650 $)) 109) (($ $ $) 108)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 125)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 110)) (-1939 (($ (-650 $)) 107) (($ $ $) 106)) (-3804 (((-424 $) $) 121)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 119) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 118)) (-2548 (((-3 $ "failed") $ $) 101)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 112)) (-2006 (((-777) $) 114)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 115)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 129) (($ $) 100) (($ (-413 (-570))) 93) (($ (-570)) 92) (($ (-413 (-570))) 89)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 104)) (-3170 (((-413 (-570)) $ $) 67)) (-4017 (((-650 $) (-1182 $)) 78) (((-650 $) (-1182 (-413 (-570)))) 77) (((-650 $) (-1182 (-570))) 76) (((-650 $) (-959 $)) 75) (((-650 $) (-959 (-413 (-570)))) 74) (((-650 $) (-959 (-570))) 73)) (-3231 (($ $) 140)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3075 (((-112) $ $) 133)) (-3055 (((-112) $ $) 132)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 134)) (-3045 (((-112) $ $) 131)) (-3125 (($ $ $) 130)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3814 (*1 *1 *1) (-4 *1 (-1021))) (-3604 (*1 *2 *1) (|partial| -12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-1774 (*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))) (-2281 (*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))) (-1979 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-5 *4 (-868)) (-4 *1 (-1021)))) (-1979 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-4 *1 (-1021)))) (-3043 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1)))) (-3043 (*1 *2 *3) (-12 (-5 *3 (-1182 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-3043 (*1 *2 *3) (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-3043 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1)))) (-3043 (*1 *2 *3) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-3043 (*1 *2 *3) (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-3814 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-928)))) (-3814 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1021)))) (-3814 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1021)))) (-1933 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-3925 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-3167 (*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 -3604 ((-3 (-868) "failed") $)) (-15 -1774 ((-3 (-1182 $) "failed") $)) (-15 -2281 ((-3 (-1182 $) "failed") $)) (-15 -1979 ((-3 $ "failed") (-1182 $) (-928) (-868))) (-15 -1979 ((-3 $ "failed") (-1182 $) (-928))) (-15 -3043 ((-650 $) (-1182 $))) (-15 -3043 ((-650 $) (-1182 (-413 (-570))))) (-15 -3043 ((-650 $) (-1182 (-570)))) (-15 -3043 ((-650 $) (-959 $))) (-15 -3043 ((-650 $) (-959 (-413 (-570))))) (-15 -3043 ((-650 $) (-959 (-570)))) (-15 -3814 ($ $ (-928))) (-15 -3814 ($ $)) (-15 -3814 ($ (-413 (-570)))) (-15 -3814 ($ (-570))) (-15 -1933 ($ $ (-868))) (-15 -3925 ($ $ (-868))) (-15 -3167 ((-413 (-570)) $ $))))
+((-3817 (*1 *1 *1) (-4 *1 (-1021))) (-2539 (*1 *2 *1) (|partial| -12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-2626 (*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))) (-4013 (*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))) (-3896 (*1 *1 *2 *3 *4) (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-5 *4 (-868)) (-4 *1 (-1021)))) (-3896 (*1 *1 *2 *3) (|partial| -12 (-5 *2 (-1182 *1)) (-5 *3 (-928)) (-4 *1 (-1021)))) (-4017 (*1 *2 *3) (-12 (-5 *3 (-1182 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1)))) (-4017 (*1 *2 *3) (-12 (-5 *3 (-1182 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-4017 (*1 *2 *3) (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-4017 (*1 *2 *3) (-12 (-5 *3 (-959 *1)) (-4 *1 (-1021)) (-5 *2 (-650 *1)))) (-4017 (*1 *2 *3) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-4017 (*1 *2 *3) (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021)))) (-3817 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-928)))) (-3817 (*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1021)))) (-3817 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1021)))) (-1588 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-2545 (*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))) (-3170 (*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 -2539 ((-3 (-868) "failed") $)) (-15 -2626 ((-3 (-1182 $) "failed") $)) (-15 -4013 ((-3 (-1182 $) "failed") $)) (-15 -3896 ((-3 $ "failed") (-1182 $) (-928) (-868))) (-15 -3896 ((-3 $ "failed") (-1182 $) (-928))) (-15 -4017 ((-650 $) (-1182 $))) (-15 -4017 ((-650 $) (-1182 (-413 (-570))))) (-15 -4017 ((-650 $) (-1182 (-570)))) (-15 -4017 ((-650 $) (-959 $))) (-15 -4017 ((-650 $) (-959 (-413 (-570))))) (-15 -4017 ((-650 $) (-959 (-570)))) (-15 -3817 ($ $ (-928))) (-15 -3817 ($ $)) (-15 -3817 ($ (-413 (-570)))) (-15 -3817 ($ (-570))) (-15 -1588 ($ $ (-868))) (-15 -2545 ($ $ (-868))) (-15 -3170 ((-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))
-((-3135 (((-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 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 67)))
-(((-1022 |#1| |#2|) (-10 -7 (-15 -3135 ((-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 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-27) (-436 |#1|))) (T -1022))
-((-3135 (*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 (|:| -2616 *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) (|:| -4410 *4) (|:| |sol?| (-112)))) (-5 *1 (-1022 *8 *4)))))
-(-10 -7 (-15 -3135 ((-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 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-3942 (((-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 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 55)))
-(((-1023 |#1| |#2|) (-10 -7 (-15 -3942 ((-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 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-27) (-436 |#1|))) (T -1023))
-((-3942 (*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 (|:| -2616 *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 -3942 ((-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 (|:| -2616 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
-((-2553 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4305 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|)) 38)) (-1540 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3698 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|)) 69)) (-4242 (((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|)) 74)))
-(((-1024 |#1| |#2|) (-10 -7 (-15 -1540 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3698 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -4242 ((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|))) (-15 -2553 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4305 (-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))
-((-2553 (*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)))) (|:| -4305 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1024 *6 *3)))) (-4242 (*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)))) (-1540 (*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)) (|:| -3698 *6))) (-5 *1 (-1024 *5 *6)) (-5 *3 (-413 *6)))))
-(-10 -7 (-15 -1540 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3698 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -4242 ((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|))) (-15 -2553 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4305 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|))))
-((-2519 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3698 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|)) 22)) (-2649 (((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)) 34)))
-(((-1025 |#1| |#2|) (-10 -7 (-15 -2519 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3698 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2649 ((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)))) (-13 (-368) (-148) (-1047 (-570))) (-1253 |#1|)) (T -1025))
-((-2649 (*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)))) (-2519 (*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)) (|:| -3698 *6))) (-5 *1 (-1025 *5 *6)) (-5 *3 (-413 *6)))))
-(-10 -7 (-15 -2519 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3698 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2649 ((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))))
-((-1845 (((-1 |#1|) (-650 (-2 (|:| -2308 |#1|) (|:| -3223 (-570))))) 34)) (-3152 (((-1 |#1|) (-1111 |#1|)) 42)) (-1828 (((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570)) 31)))
-(((-1026 |#1|) (-10 -7 (-15 -3152 ((-1 |#1|) (-1111 |#1|))) (-15 -1845 ((-1 |#1|) (-650 (-2 (|:| -2308 |#1|) (|:| -3223 (-570)))))) (-15 -1828 ((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570)))) (-1109)) (T -1026))
-((-1828 (*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)))) (-1845 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -2308 *4) (|:| -3223 (-570))))) (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))) (-3152 (*1 *2 *3) (-12 (-5 *3 (-1111 *4)) (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))))
-(-10 -7 (-15 -3152 ((-1 |#1|) (-1111 |#1|))) (-15 -1845 ((-1 |#1|) (-650 (-2 (|:| -2308 |#1|) (|:| -3223 (-570)))))) (-15 -1828 ((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570))))
-((-4323 (((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
-(((-1027 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -4323 ((-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))
-((-4323 (*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 -4323 ((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
-((-2558 (((-112) $ $) NIL)) (-3756 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-1144) $) 11)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1028) (-13 (-1092) (-10 -8 (-15 -3756 ((-1144) $)) (-15 -3613 ((-1144) $))))) (T -1028))
-((-3756 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))))
-(-13 (-1092) (-10 -8 (-15 -3756 ((-1144) $)) (-15 -3613 ((-1144) $))))
-((-1401 (((-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)) (-3270 (((-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)) (-1601 (((-650 (-413 (-570))) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) 20)) (-1811 (((-413 (-570)) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) 17)))
-(((-1029 |#1|) (-10 -7 (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|)) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -1401 ((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -1401 ((-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 -1811 ((-413 (-570)) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -1601 ((-650 (-413 (-570))) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))))) (-1253 (-570))) (T -1029))
-((-1601 (*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 (-1253 (-570))))) (-1811 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) (-5 *2 (-413 (-570))) (-5 *1 (-1029 *4)) (-4 *4 (-1253 (-570))))) (-1401 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))))) (-1401 (*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 (-1253 (-570))))) (-3270 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4397 *5) (|:| -4410 *5)))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-2 (|:| -4397 *5) (|:| -4410 *5))))) (-3270 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-413 (-570))))) (-3270 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-3270 (*1 *2 *3) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))))))
-(-10 -7 (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|)) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -1401 ((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -1401 ((-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 -1811 ((-413 (-570)) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -1601 ((-650 (-413 (-570))) (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))))
-((-1401 (((-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)) (-3270 (((-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 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|)) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -1401 ((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -1401 ((-3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) "failed") |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-1253 (-413 (-570)))) (T -1030))
-((-1401 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))))) (-1401 (*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 (-1253 *4)))) (-3270 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4397 *5) (|:| -4410 *5)))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *5)) (-5 *4 (-2 (|:| -4397 *5) (|:| -4410 *5))))) (-3270 (*1 *2 *3 *4) (-12 (-5 *4 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4397 *4) (|:| -4410 *4)))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *4)))) (-3270 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))) (-5 *4 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))) (-3270 (*1 *2 *3) (-12 (-5 *2 (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))))))
-(-10 -7 (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1|)) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -3270 ((-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -1401 ((-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-413 (-570)))) (-15 -1401 ((-3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) "failed") |#1| (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))) (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))))
-((-1425 (((-227) $) 6) (((-384) $) 9)))
+((-3708 (((-2 (|:| |ans| |#2|) (|:| -4413 |#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 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 67)))
+(((-1022 |#1| |#2|) (-10 -7 (-15 -3708 ((-2 (|:| |ans| |#2|) (|:| -4413 |#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 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-27) (-436 |#1|))) (T -1022))
+((-3708 (*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 (|:| -4341 *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) (|:| -4413 *4) (|:| |sol?| (-112)))) (-5 *1 (-1022 *8 *4)))))
+(-10 -7 (-15 -3708 ((-2 (|:| |ans| |#2|) (|:| -4413 |#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 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-1399 (((-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 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)) 55)))
+(((-1023 |#1| |#2|) (-10 -7 (-15 -1399 ((-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 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|)))) (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))) (-13 (-1212) (-27) (-436 |#1|))) (T -1023))
+((-1399 (*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 (|:| -4341 *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 -1399 ((-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 (|:| -4341 |#2|) (|:| |coeff| |#2|)) "failed") |#2| |#2|))))
+((-1962 (((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4308 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|)) 38)) (-2149 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3701 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|)) 69)) (-2610 (((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|)) 74)))
+(((-1024 |#1| |#2|) (-10 -7 (-15 -2149 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3701 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2610 ((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|))) (-15 -1962 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4308 (-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))
+((-1962 (*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)))) (|:| -4308 (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3) (|:| |beta| *3))))) (-5 *1 (-1024 *6 *3)))) (-2610 (*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)))) (-2149 (*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)) (|:| -3701 *6))) (-5 *1 (-1024 *5 *6)) (-5 *3 (-413 *6)))))
+(-10 -7 (-15 -2149 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |c| (-413 |#2|)) (|:| -3701 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -2610 ((-2 (|:| |ans| (-413 |#2|)) (|:| |nosol| (-112))) (-413 |#2|) (-413 |#2|))) (-15 -1962 ((-3 (|:| |ans| (-2 (|:| |ans| |#2|) (|:| |nosol| (-112)))) (|:| -4308 (-2 (|:| |b| |#2|) (|:| |c| |#2|) (|:| |m| (-570)) (|:| |alpha| |#2|) (|:| |beta| |#2|)))) |#2| |#2| |#2| (-570) (-1 |#2| |#2|))))
+((-1577 (((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3701 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|)) 22)) (-3479 (((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)) 34)))
+(((-1025 |#1| |#2|) (-10 -7 (-15 -1577 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3701 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -3479 ((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|)))) (-13 (-368) (-148) (-1047 (-570))) (-1253 |#1|)) (T -1025))
+((-3479 (*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)))) (-1577 (*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)) (|:| -3701 *6))) (-5 *1 (-1025 *5 *6)) (-5 *3 (-413 *6)))))
+(-10 -7 (-15 -1577 ((-3 (-2 (|:| |a| |#2|) (|:| |b| (-413 |#2|)) (|:| |h| |#2|) (|:| |c1| (-413 |#2|)) (|:| |c2| (-413 |#2|)) (|:| -3701 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|) (-1 |#2| |#2|))) (-15 -3479 ((-3 (-650 (-413 |#2|)) "failed") (-413 |#2|) (-413 |#2|) (-413 |#2|))))
+((-2054 (((-1 |#1|) (-650 (-2 (|:| -2308 |#1|) (|:| -2117 (-570))))) 34)) (-2672 (((-1 |#1|) (-1111 |#1|)) 42)) (-3082 (((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570)) 31)))
+(((-1026 |#1|) (-10 -7 (-15 -2672 ((-1 |#1|) (-1111 |#1|))) (-15 -2054 ((-1 |#1|) (-650 (-2 (|:| -2308 |#1|) (|:| -2117 (-570)))))) (-15 -3082 ((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570)))) (-1109)) (T -1026))
+((-3082 (*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)))) (-2054 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -2308 *4) (|:| -2117 (-570))))) (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))) (-2672 (*1 *2 *3) (-12 (-5 *3 (-1111 *4)) (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))))
+(-10 -7 (-15 -2672 ((-1 |#1|) (-1111 |#1|))) (-15 -2054 ((-1 |#1|) (-650 (-2 (|:| -2308 |#1|) (|:| -2117 (-570)))))) (-15 -3082 ((-1 |#1|) (-1277 |#1|) (-1277 (-570)) (-570))))
+((-3941 (((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|)) 23)))
+(((-1027 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3941 ((-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))
+((-3941 (*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 -3941 ((-777) (-341 |#1| |#2| |#3| |#4|) |#3| (-1 |#5| |#1|))))
+((-2560 (((-112) $ $) NIL)) (-3759 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-1144) $) 11)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1028) (-13 (-1092) (-10 -8 (-15 -3759 ((-1144) $)) (-15 -3616 ((-1144) $))))) (T -1028))
+((-3759 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1028)))))
+(-13 (-1092) (-10 -8 (-15 -3759 ((-1144) $)) (-15 -3616 ((-1144) $))))
+((-3963 (((-3 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) "failed") |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) 32) (((-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570))) 29)) (-4380 (((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570))) 34) (((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-413 (-570))) 30) (((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) 33) (((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1|) 28)) (-1492 (((-650 (-413 (-570))) (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) 20)) (-2954 (((-413 (-570)) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) 17)))
+(((-1029 |#1|) (-10 -7 (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1|)) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570)))) (-15 -3963 ((-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570)))) (-15 -3963 ((-3 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) "failed") |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-15 -2954 ((-413 (-570)) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-15 -1492 ((-650 (-413 (-570))) (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))))) (-1253 (-570))) (T -1029))
+((-1492 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-5 *2 (-650 (-413 (-570)))) (-5 *1 (-1029 *4)) (-4 *4 (-1253 (-570))))) (-2954 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) (-5 *2 (-413 (-570))) (-5 *1 (-1029 *4)) (-4 *4 (-1253 (-570))))) (-3963 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))))) (-3963 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) (-5 *4 (-413 (-570))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))))) (-4380 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4400 *5) (|:| -4413 *5)))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-2 (|:| -4400 *5) (|:| -4413 *5))))) (-4380 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-413 (-570))))) (-4380 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))) (-5 *4 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))) (-4380 (*1 *2 *3) (-12 (-5 *2 (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570))))))
+(-10 -7 (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1|)) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570)))) (-15 -3963 ((-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570)))) (-15 -3963 ((-3 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) "failed") |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-15 -2954 ((-413 (-570)) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-15 -1492 ((-650 (-413 (-570))) (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))))
+((-3963 (((-3 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) "failed") |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) 35) (((-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570))) 32)) (-4380 (((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570))) 30) (((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-413 (-570))) 26) (((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) 28) (((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1|) 24)))
+(((-1030 |#1|) (-10 -7 (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1|)) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570)))) (-15 -3963 ((-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570)))) (-15 -3963 ((-3 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) "failed") |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))) (-1253 (-413 (-570)))) (T -1030))
+((-3963 (*1 *2 *3 *2 *2) (|partial| -12 (-5 *2 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))))) (-3963 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) (-5 *4 (-413 (-570))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *4)))) (-4380 (*1 *2 *3 *4 *5) (-12 (-5 *5 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4400 *5) (|:| -4413 *5)))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *5)) (-5 *4 (-2 (|:| -4400 *5) (|:| -4413 *5))))) (-4380 (*1 *2 *3 *4) (-12 (-5 *4 (-413 (-570))) (-5 *2 (-650 (-2 (|:| -4400 *4) (|:| -4413 *4)))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *4)))) (-4380 (*1 *2 *3 *4) (-12 (-5 *2 (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))) (-5 *4 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))) (-4380 (*1 *2 *3) (-12 (-5 *2 (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570)))))))
+(-10 -7 (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1|)) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-413 (-570)))) (-15 -4380 ((-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570)))) (-15 -3963 ((-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-413 (-570)))) (-15 -3963 ((-3 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) "failed") |#1| (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))) (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))))
+((-1426 (((-227) $) 6) (((-384) $) 9)))
(((-1031) (-141)) (T -1031))
NIL
(-13 (-620 (-227)) (-620 (-384)))
(((-620 (-227)) . T) ((-620 (-384)) . T))
-((-3476 (((-650 (-384)) (-959 (-570)) (-384)) 28) (((-650 (-384)) (-959 (-413 (-570))) (-384)) 27)) (-1450 (((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384)) 37)))
-(((-1032) (-10 -7 (-15 -3476 ((-650 (-384)) (-959 (-413 (-570))) (-384))) (-15 -3476 ((-650 (-384)) (-959 (-570)) (-384))) (-15 -1450 ((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384))))) (T -1032))
-((-1450 (*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)))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 (-384))) (-5 *1 (-1032)) (-5 *4 (-384)))) (-3476 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 (-384))) (-5 *1 (-1032)) (-5 *4 (-384)))))
-(-10 -7 (-15 -3476 ((-650 (-384)) (-959 (-413 (-570))) (-384))) (-15 -3476 ((-650 (-384)) (-959 (-570)) (-384))) (-15 -1450 ((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 75)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3814 (($ $) NIL) (($ $ (-928)) NIL) (($ (-413 (-570))) NIL) (($ (-570)) NIL)) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) 70)) (-1705 (($) NIL T CONST)) (-1979 (((-3 $ "failed") (-1182 $) (-928) (-868)) NIL) (((-3 $ "failed") (-1182 $) (-928)) 55)) (-4380 (((-3 (-413 (-570)) "failed") $) NIL (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#1| "failed") $) 116) (((-3 (-570) "failed") $) NIL (-2892 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))))) (-3216 (((-413 (-570)) $) 17 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-413 (-570)) $) 17) ((|#1| $) 117) (((-570) $) NIL (-2892 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))))) (-1933 (($ $ (-868)) 47)) (-3925 (($ $ (-868)) 48)) (-2506 (($ $ $) NIL)) (-1701 (((-413 (-570)) $ $) 21)) (-2875 (((-3 $ "failed") $) 88)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-3903 (((-112) $) 66)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL)) (-1479 (((-112) $) 69)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-2281 (((-3 (-1182 $) "failed") $) 83)) (-3604 (((-3 (-868) "failed") $) 82)) (-1774 (((-3 (-1182 $) "failed") $) 80)) (-2968 (((-3 (-1070 $ (-1182 $)) "failed") $) 78)) (-1899 (($ (-650 $)) NIL) (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 89)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3799 (((-868) $) 87) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ $) 63) (($ (-413 (-570))) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 119)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-3167 (((-413 (-570)) $ $) 27)) (-3043 (((-650 $) (-1182 $)) 61) (((-650 $) (-1182 (-413 (-570)))) NIL) (((-650 $) (-1182 (-570))) NIL) (((-650 $) (-959 $)) NIL) (((-650 $) (-959 (-413 (-570)))) NIL) (((-650 $) (-959 (-570))) NIL)) (-1962 (($ (-1070 $ (-1182 $)) (-868)) 46)) (-2622 (($ $) 22)) (-1861 (($) 32 T CONST)) (-1875 (($) 39 T CONST)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 76)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 24)) (-3122 (($ $ $) 37)) (-3111 (($ $) 38) (($ $ $) 74)) (-3101 (($ $ $) 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 -1962 ($ (-1070 $ (-1182 $)) (-868))) (-15 -2968 ((-3 (-1070 $ (-1182 $)) "failed") $)) (-15 -1701 ((-413 (-570)) $ $)))) (-13 (-854) (-368) (-1031))) (T -1033))
-((-1962 (*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))))) (-2968 (*1 *2 *1) (|partial| -12 (-5 *2 (-1070 (-1033 *3) (-1182 (-1033 *3)))) (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))) (-1701 (*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 -1962 ($ (-1070 $ (-1182 $)) (-868))) (-15 -2968 ((-3 (-1070 $ (-1182 $)) "failed") $)) (-15 -1701 ((-413 (-570)) $ $))))
-((-3047 (((-2 (|:| -4305 |#2|) (|:| -3897 (-650 |#1|))) |#2| (-650 |#1|)) 32) ((|#2| |#2| |#1|) 27)))
-(((-1034 |#1| |#2|) (-10 -7 (-15 -3047 (|#2| |#2| |#1|)) (-15 -3047 ((-2 (|:| -4305 |#2|) (|:| -3897 (-650 |#1|))) |#2| (-650 |#1|)))) (-368) (-662 |#1|)) (T -1034))
-((-3047 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| -4305 *3) (|:| -3897 (-650 *5)))) (-5 *1 (-1034 *5 *3)) (-5 *4 (-650 *5)) (-4 *3 (-662 *5)))) (-3047 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-1034 *3 *2)) (-4 *2 (-662 *3)))))
-(-10 -7 (-15 -3047 (|#2| |#2| |#1|)) (-15 -3047 ((-2 (|:| -4305 |#2|) (|:| -3897 (-650 |#1|))) |#2| (-650 |#1|))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3830 ((|#1| $ |#1|) 14)) (-3932 ((|#1| $ |#1|) 12)) (-4379 (($ |#1|) 10)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1941 ((|#1| $) 11)) (-2254 ((|#1| $) 13)) (-3799 (((-868) $) 21 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3022 (((-112) $ $) 9)))
-(((-1035 |#1|) (-13 (-1227) (-10 -8 (-15 -4379 ($ |#1|)) (-15 -1941 (|#1| $)) (-15 -3932 (|#1| $ |#1|)) (-15 -2254 (|#1| $)) (-15 -3830 (|#1| $ |#1|)) (-15 -3022 ((-112) $ $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1035))
-((-4379 (*1 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-1941 (*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-3932 (*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-2254 (*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-3830 (*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-3022 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1035 *3)) (-4 *3 (-1227)))))
-(-13 (-1227) (-10 -8 (-15 -4379 ($ |#1|)) (-15 -1941 (|#1| $)) (-15 -3932 (|#1| $ |#1|)) (-15 -2254 (|#1| $)) (-15 -3830 (|#1| $ |#1|)) (-15 -3022 ((-112) $ $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1515 (((-650 $) (-650 |#4|)) 118) (((-650 $) (-650 |#4|) (-112)) 119) (((-650 $) (-650 |#4|) (-112) (-112)) 117) (((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112)) 120)) (-1755 (((-650 |#3|) $) NIL)) (-3051 (((-112) $) NIL)) (-1416 (((-112) $) NIL (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3484 ((|#4| |#4| $) NIL)) (-4364 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| $) 112)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-1431 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 66)) (-1705 (($) NIL T CONST)) (-3737 (((-112) $) 29 (|has| |#1| (-562)))) (-2467 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4047 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1876 (((-112) $) NIL (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2450 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3216 (($ (-650 |#4|)) NIL)) (-3555 (((-3 $ "failed") $) 45)) (-2128 ((|#4| |#4| $) 69)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1741 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 85 (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1544 ((|#4| |#4| $) NIL)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) NIL)) (-3948 (((-112) |#4| $) NIL)) (-3825 (((-112) |#4| $) NIL)) (-2819 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1589 (((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)) 133)) (-3627 (((-650 |#4|) $) 18 (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1724 ((|#3| $) 38)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#4|) $) 19 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1502 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 23)) (-1423 (((-650 |#3|) $) NIL)) (-3907 (((-112) |#3| $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-2925 (((-3 |#4| (-650 $)) |#4| |#4| $) NIL)) (-1759 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| |#4| $) 110)) (-1769 (((-3 |#4| "failed") $) 42)) (-3260 (((-650 $) |#4| $) 93)) (-4090 (((-3 (-112) (-650 $)) |#4| $) NIL)) (-1743 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 $))) |#4| $) 103) (((-112) |#4| $) 64)) (-2730 (((-650 $) |#4| $) 115) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 116) (((-650 $) |#4| (-650 $)) NIL)) (-3063 (((-650 $) (-650 |#4|) (-112) (-112) (-112)) 128)) (-2231 (($ |#4| $) 82) (($ (-650 |#4|) $) 83) (((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 79)) (-3534 (((-650 |#4|) $) NIL)) (-1491 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2520 ((|#4| |#4| $) NIL)) (-2971 (((-112) $ $) NIL)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4201 ((|#4| |#4| $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-3 |#4| "failed") $) 40)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1690 (((-3 $ "failed") $ |#4|) 59)) (-2431 (($ $ |#4|) NIL) (((-650 $) |#4| $) 95) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 89)) (-3642 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 17)) (-2380 (($) 14)) (-2130 (((-777) $) NIL)) (-3584 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) 13)) (-1425 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 22)) (-3710 (($ $ |#3|) 52)) (-4224 (($ $ |#3|) 54)) (-4085 (($ $) NIL)) (-1615 (($ $ |#3|) NIL)) (-3799 (((-868) $) 35) (((-650 |#4|) $) 46)) (-4392 (((-777) $) NIL (|has| |#3| (-373)))) (-2335 (((-112) $ $) NIL)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-2401 (((-650 $) |#4| $) 92) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) NIL)) (-4371 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) NIL)) (-2950 (((-112) |#4| $) NIL)) (-2561 (((-112) |#3| $) 65)) (-3022 (((-112) $ $) NIL)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1036 |#1| |#2| |#3| |#4|) (-13 (-1080 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2231 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1515 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1515 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -3063 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1589 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112))))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1036))
-((-2231 (*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)))) (-1515 (*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)))) (-1515 (*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)))) (-3063 (*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)))) (-1589 (*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 -2231 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1515 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1515 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -3063 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1589 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)))))
-((-3536 (((-650 (-695 |#1|)) (-650 (-695 |#1|))) 70) (((-695 |#1|) (-695 |#1|)) 69) (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|))) 68) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 65)) (-3145 (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928)) 63) (((-695 |#1|) (-695 |#1|) (-928)) 62)) (-2695 (((-650 (-695 (-570))) (-650 (-650 (-570)))) 81) (((-650 (-695 (-570))) (-650 (-912 (-570))) (-570)) 80) (((-695 (-570)) (-650 (-570))) 77) (((-695 (-570)) (-912 (-570)) (-570)) 75)) (-1393 (((-695 (-959 |#1|)) (-777)) 95)) (-1699 (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928)) 49 (|has| |#1| (-6 (-4451 "*")))) (((-695 |#1|) (-695 |#1|) (-928)) 47 (|has| |#1| (-6 (-4451 "*"))))))
-(((-1037 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4451 "*"))) (-15 -1699 ((-695 |#1|) (-695 |#1|) (-928))) |%noBranch|) (IF (|has| |#1| (-6 (-4451 "*"))) (-15 -1699 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) |%noBranch|) (-15 -1393 ((-695 (-959 |#1|)) (-777))) (-15 -3145 ((-695 |#1|) (-695 |#1|) (-928))) (-15 -3145 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) (-15 -3536 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3536 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3536 ((-695 |#1|) (-695 |#1|))) (-15 -3536 ((-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2695 ((-695 (-570)) (-912 (-570)) (-570))) (-15 -2695 ((-695 (-570)) (-650 (-570)))) (-15 -2695 ((-650 (-695 (-570))) (-650 (-912 (-570))) (-570))) (-15 -2695 ((-650 (-695 (-570))) (-650 (-650 (-570)))))) (-1058)) (T -1037))
-((-2695 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-570)))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-2695 (*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)))) (-2695 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-2695 (*1 *2 *3 *4) (-12 (-5 *3 (-912 (-570))) (-5 *4 (-570)) (-5 *2 (-695 *4)) (-5 *1 (-1037 *5)) (-4 *5 (-1058)))) (-3536 (*1 *2 *2) (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-3536 (*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-3536 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-3536 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-3145 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-3145 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-1393 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-695 (-959 *4))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-1699 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (|has| *4 (-6 (-4451 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-1699 (*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 -1699 ((-695 |#1|) (-695 |#1|) (-928))) |%noBranch|) (IF (|has| |#1| (-6 (-4451 "*"))) (-15 -1699 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) |%noBranch|) (-15 -1393 ((-695 (-959 |#1|)) (-777))) (-15 -3145 ((-695 |#1|) (-695 |#1|) (-928))) (-15 -3145 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) (-15 -3536 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3536 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3536 ((-695 |#1|) (-695 |#1|))) (-15 -3536 ((-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2695 ((-695 (-570)) (-912 (-570)) (-570))) (-15 -2695 ((-695 (-570)) (-650 (-570)))) (-15 -2695 ((-650 (-695 (-570))) (-650 (-912 (-570))) (-570))) (-15 -2695 ((-650 (-695 (-570))) (-650 (-650 (-570))))))
-((-2200 (((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)) 70 (|has| |#1| (-311)))) (-3774 (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))) 110 (|has| |#1| (-368))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|)) 117 (|has| |#1| (-368)))) (-2143 (((-1277 |#1|) (-650 (-1277 |#1|)) (-570)) 135 (-12 (|has| |#1| (-368)) (|has| |#1| (-373))))) (-3838 (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928)) 123 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112)) 122 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|))) 121 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570)) 120 (-12 (|has| |#1| (-368)) (|has| |#1| (-373))))) (-3461 (((-112) (-650 (-695 |#1|))) 103 (|has| |#1| (-368))) (((-112) (-650 (-695 |#1|)) (-570)) 106 (|has| |#1| (-368)))) (-1990 (((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|)) 67 (|has| |#1| (-311)))) (-2563 (((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|)) 47)) (-1551 (((-695 |#1|) (-1277 (-1277 |#1|))) 40)) (-4349 (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570)) 94 (|has| |#1| (-368))) (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|))) 93 (|has| |#1| (-368))) (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570)) 101 (|has| |#1| (-368)))))
-(((-1038 |#1|) (-10 -7 (-15 -1551 ((-695 |#1|) (-1277 (-1277 |#1|)))) (-15 -2563 ((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-311)) (PROGN (-15 -1990 ((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -2200 ((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -4349 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570))) (-15 -4349 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -4349 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570))) (-15 -3461 ((-112) (-650 (-695 |#1|)) (-570))) (-15 -3461 ((-112) (-650 (-695 |#1|)))) (-15 -3774 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -3774 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))))) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#1| (-368)) (PROGN (-15 -3838 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570))) (-15 -3838 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)))) (-15 -3838 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112))) (-15 -3838 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928))) (-15 -2143 ((-1277 |#1|) (-650 (-1277 |#1|)) (-570)))) |%noBranch|) |%noBranch|)) (-1058)) (T -1038))
-((-2143 (*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)))) (-3838 (*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))))) (-3838 (*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))))) (-3838 (*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))))) (-3838 (*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))))) (-3774 (*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))))) (-3774 (*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))))) (-3461 (*1 *2 *3) (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-1038 *4)))) (-3461 (*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)))) (-4349 (*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)))) (-4349 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4)) (-4 *4 (-368)) (-4 *4 (-1058)))) (-4349 (*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)))) (-2200 (*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)))) (-1990 (*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)))) (-2563 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1038 *4)))) (-1551 (*1 *2 *3) (-12 (-5 *3 (-1277 (-1277 *4))) (-4 *4 (-1058)) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4)))))
-(-10 -7 (-15 -1551 ((-695 |#1|) (-1277 (-1277 |#1|)))) (-15 -2563 ((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-311)) (PROGN (-15 -1990 ((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -2200 ((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -4349 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570))) (-15 -4349 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -4349 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570))) (-15 -3461 ((-112) (-650 (-695 |#1|)) (-570))) (-15 -3461 ((-112) (-650 (-695 |#1|)))) (-15 -3774 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -3774 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))))) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#1| (-368)) (PROGN (-15 -3838 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570))) (-15 -3838 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)))) (-15 -3838 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112))) (-15 -3838 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928))) (-15 -2143 ((-1277 |#1|) (-650 (-1277 |#1|)) (-570)))) |%noBranch|) |%noBranch|))
-((-2781 ((|#1| (-928) |#1|) 18)))
-(((-1039 |#1|) (-10 -7 (-15 -2781 (|#1| (-928) |#1|))) (-13 (-1109) (-10 -8 (-15 -3101 ($ $ $))))) (T -1039))
-((-2781 (*1 *2 *3 *2) (-12 (-5 *3 (-928)) (-5 *1 (-1039 *2)) (-4 *2 (-13 (-1109) (-10 -8 (-15 -3101 ($ $ $))))))))
-(-10 -7 (-15 -2781 (|#1| (-928) |#1|)))
-((-4211 (((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570))))) 67)) (-1678 (((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570))))) 52)) (-1973 (((-650 (-320 (-570))) (-695 (-413 (-959 (-570))))) 45)) (-4246 (((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570))))) 85)) (-4337 (((-695 (-320 (-570))) (-695 (-320 (-570)))) 38)) (-3354 (((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570))))) 74)) (-4273 (((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570))))) 82)))
-(((-1040) (-10 -7 (-15 -4211 ((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570)))))) (-15 -1678 ((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570)))))) (-15 -1973 ((-650 (-320 (-570))) (-695 (-413 (-959 (-570)))))) (-15 -4273 ((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570)))))) (-15 -4337 ((-695 (-320 (-570))) (-695 (-320 (-570))))) (-15 -3354 ((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570)))))) (-15 -4246 ((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570)))))))) (T -1040))
-((-4246 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))) (-3354 (*1 *2 *2) (-12 (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))) (-4337 (*1 *2 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))) (-4273 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))) (-1973 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-320 (-570)))) (-5 *1 (-1040)))) (-1678 (*1 *2 *3 *4) (-12 (-5 *4 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)) (-5 *3 (-320 (-570))))) (-4211 (*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 -4211 ((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570)))))) (-15 -1678 ((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570)))))) (-15 -1973 ((-650 (-320 (-570))) (-695 (-413 (-959 (-570)))))) (-15 -4273 ((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570)))))) (-15 -4337 ((-695 (-320 (-570))) (-695 (-320 (-570))))) (-15 -3354 ((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570)))))) (-15 -4246 ((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570)))))))
-((-3154 ((|#1| |#1| (-928)) 18)))
-(((-1041 |#1|) (-10 -7 (-15 -3154 (|#1| |#1| (-928)))) (-13 (-1109) (-10 -8 (-15 * ($ $ $))))) (T -1041))
-((-3154 (*1 *2 *2 *3) (-12 (-5 *3 (-928)) (-5 *1 (-1041 *2)) (-4 *2 (-13 (-1109) (-10 -8 (-15 * ($ $ $))))))))
-(-10 -7 (-15 -3154 (|#1| |#1| (-928))))
-((-3799 ((|#1| (-316)) 11) (((-1282) |#1|) 9)))
-(((-1042 |#1|) (-10 -7 (-15 -3799 ((-1282) |#1|)) (-15 -3799 (|#1| (-316)))) (-1227)) (T -1042))
-((-3799 (*1 *2 *3) (-12 (-5 *3 (-316)) (-5 *1 (-1042 *2)) (-4 *2 (-1227)))) (-3799 (*1 *2 *3) (-12 (-5 *2 (-1282)) (-5 *1 (-1042 *3)) (-4 *3 (-1227)))))
-(-10 -7 (-15 -3799 ((-1282) |#1|)) (-15 -3799 (|#1| (-316))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-3624 (($ |#4|) 25)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-3612 ((|#4| $) 27)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 46) (($ (-570)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-3499 (((-777)) 43 T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 21 T CONST)) (-1875 (($) 23 T CONST)) (-3022 (((-112) $ $) 40)) (-3111 (($ $) 31) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3624 ($ |#4|)) (-15 -3799 ($ |#4|)) (-15 -3612 (|#4| $)))) (-368) (-799) (-856) (-956 |#1| |#2| |#3|) (-650 |#4|)) (T -1043))
-((-3624 (*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)))) (-3799 (*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)))) (-3612 (*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 -3624 ($ |#4|)) (-15 -3799 ($ |#4|)) (-15 -3612 (|#4| $))))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL)) (-3851 (((-1282) $ (-1186) (-1186)) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-2314 (((-112) (-112)) 43)) (-3282 (((-112) (-112)) 42)) (-3932 (((-52) $ (-1186) (-52)) NIL)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 (-52) "failed") (-1186) $) NIL)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-3249 (($ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-3 (-52) "failed") (-1186) $) NIL)) (-1741 (($ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-1517 (((-52) $ (-1186) (-52)) NIL (|has| $ (-6 -4450)))) (-3820 (((-52) $ (-1186)) NIL)) (-3627 (((-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-1186) $) NIL (|has| (-1186) (-856)))) (-2752 (((-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-1460 (((-1186) $) NIL (|has| (-1186) (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2911 (((-650 (-1186)) $) 37)) (-3245 (((-112) (-1186) $) NIL)) (-1490 (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL)) (-1385 (($ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL)) (-1805 (((-650 (-1186)) $) NIL)) (-3939 (((-112) (-1186) $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-3543 (((-52) $) NIL (|has| (-1186) (-856)))) (-1790 (((-3 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) "failed") (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL)) (-2147 (($ $ (-52)) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))))) NIL (-12 (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) NIL (-12 (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-3700 (((-650 (-52)) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 (((-52) $ (-1186)) 39) (((-52) $ (-1186) (-52)) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL)) (-3799 (((-868) $) 41 (-2892 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1044) (-13 (-1203 (-1186) (-52)) (-10 -7 (-15 -2314 ((-112) (-112))) (-15 -3282 ((-112) (-112))) (-6 -4449)))) (T -1044))
-((-2314 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))) (-3282 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
-(-13 (-1203 (-1186) (-52)) (-10 -7 (-15 -2314 ((-112) (-112))) (-15 -3282 ((-112) (-112))) (-6 -4449)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1434 (((-1144) $) 9)) (-3799 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1045) (-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $))))) (T -1045))
-((-1434 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1045)))))
-(-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $))))
-((-3216 ((|#2| $) 10)))
-(((-1046 |#1| |#2|) (-10 -8 (-15 -3216 (|#2| |#1|))) (-1047 |#2|) (-1227)) (T -1046))
-NIL
-(-10 -8 (-15 -3216 (|#2| |#1|)))
-((-4380 (((-3 |#1| "failed") $) 9)) (-3216 ((|#1| $) 8)) (-3799 (($ |#1|) 6)))
+((-2627 (((-650 (-384)) (-959 (-570)) (-384)) 28) (((-650 (-384)) (-959 (-413 (-570))) (-384)) 27)) (-2510 (((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384)) 37)))
+(((-1032) (-10 -7 (-15 -2627 ((-650 (-384)) (-959 (-413 (-570))) (-384))) (-15 -2627 ((-650 (-384)) (-959 (-570)) (-384))) (-15 -2510 ((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384))))) (T -1032))
+((-2510 (*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)))) (-2627 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 (-384))) (-5 *1 (-1032)) (-5 *4 (-384)))) (-2627 (*1 *2 *3 *4) (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *2 (-650 (-384))) (-5 *1 (-1032)) (-5 *4 (-384)))))
+(-10 -7 (-15 -2627 ((-650 (-384)) (-959 (-413 (-570))) (-384))) (-15 -2627 ((-650 (-384)) (-959 (-570)) (-384))) (-15 -2510 ((-650 (-650 (-384))) (-650 (-959 (-570))) (-650 (-1186)) (-384))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 75)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3817 (($ $) NIL) (($ $ (-928)) NIL) (($ (-413 (-570))) NIL) (($ (-570)) NIL)) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) 70)) (-3195 (($) NIL T CONST)) (-3896 (((-3 $ "failed") (-1182 $) (-928) (-868)) NIL) (((-3 $ "failed") (-1182 $) (-928)) 55)) (-4383 (((-3 (-413 (-570)) "failed") $) NIL (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#1| "failed") $) 116) (((-3 (-570) "failed") $) NIL (-2895 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))))) (-3220 (((-413 (-570)) $) 17 (|has| (-413 (-570)) (-1047 (-413 (-570))))) (((-413 (-570)) $) 17) ((|#1| $) 117) (((-570) $) NIL (-2895 (|has| (-413 (-570)) (-1047 (-570))) (|has| |#1| (-1047 (-570)))))) (-1588 (($ $ (-868)) 47)) (-2545 (($ $ (-868)) 48)) (-2504 (($ $ $) NIL)) (-3157 (((-413 (-570)) $ $) 21)) (-1929 (((-3 $ "failed") $) 88)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2346 (((-112) $) 66)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL)) (-2788 (((-112) $) 69)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-4013 (((-3 (-1182 $) "failed") $) 83)) (-2539 (((-3 (-868) "failed") $) 82)) (-2626 (((-3 (-1182 $) "failed") $) 80)) (-1390 (((-3 (-1070 $ (-1182 $)) "failed") $) 78)) (-1901 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 89)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ (-650 $)) NIL) (($ $ $) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3802 (((-868) $) 87) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ $) 63) (($ (-413 (-570))) NIL) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ |#1|) 119)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-3170 (((-413 (-570)) $ $) 27)) (-4017 (((-650 $) (-1182 $)) 61) (((-650 $) (-1182 (-413 (-570)))) NIL) (((-650 $) (-1182 (-570))) NIL) (((-650 $) (-959 $)) NIL) (((-650 $) (-959 (-413 (-570)))) NIL) (((-650 $) (-959 (-570))) NIL)) (-1881 (($ (-1070 $ (-1182 $)) (-868)) 46)) (-3231 (($ $) 22)) (-1862 (($) 32 T CONST)) (-1876 (($) 39 T CONST)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 76)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 24)) (-3125 (($ $ $) 37)) (-3114 (($ $) 38) (($ $ $) 74)) (-3104 (($ $ $) 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 -1881 ($ (-1070 $ (-1182 $)) (-868))) (-15 -1390 ((-3 (-1070 $ (-1182 $)) "failed") $)) (-15 -3157 ((-413 (-570)) $ $)))) (-13 (-854) (-368) (-1031))) (T -1033))
+((-1881 (*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))))) (-1390 (*1 *2 *1) (|partial| -12 (-5 *2 (-1070 (-1033 *3) (-1182 (-1033 *3)))) (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))) (-3157 (*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 -1881 ($ (-1070 $ (-1182 $)) (-868))) (-15 -1390 ((-3 (-1070 $ (-1182 $)) "failed") $)) (-15 -3157 ((-413 (-570)) $ $))))
+((-4055 (((-2 (|:| -4308 |#2|) (|:| -3900 (-650 |#1|))) |#2| (-650 |#1|)) 32) ((|#2| |#2| |#1|) 27)))
+(((-1034 |#1| |#2|) (-10 -7 (-15 -4055 (|#2| |#2| |#1|)) (-15 -4055 ((-2 (|:| -4308 |#2|) (|:| -3900 (-650 |#1|))) |#2| (-650 |#1|)))) (-368) (-662 |#1|)) (T -1034))
+((-4055 (*1 *2 *3 *4) (-12 (-4 *5 (-368)) (-5 *2 (-2 (|:| -4308 *3) (|:| -3900 (-650 *5)))) (-5 *1 (-1034 *5 *3)) (-5 *4 (-650 *5)) (-4 *3 (-662 *5)))) (-4055 (*1 *2 *2 *3) (-12 (-4 *3 (-368)) (-5 *1 (-1034 *3 *2)) (-4 *2 (-662 *3)))))
+(-10 -7 (-15 -4055 (|#2| |#2| |#1|)) (-15 -4055 ((-2 (|:| -4308 |#2|) (|:| -3900 (-650 |#1|))) |#2| (-650 |#1|))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2868 ((|#1| $ |#1|) 14)) (-3935 ((|#1| $ |#1|) 12)) (-1353 (($ |#1|) 10)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1942 ((|#1| $) 11)) (-1927 ((|#1| $) 13)) (-3802 (((-868) $) 21 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3025 (((-112) $ $) 9)))
+(((-1035 |#1|) (-13 (-1227) (-10 -8 (-15 -1353 ($ |#1|)) (-15 -1942 (|#1| $)) (-15 -3935 (|#1| $ |#1|)) (-15 -1927 (|#1| $)) (-15 -2868 (|#1| $ |#1|)) (-15 -3025 ((-112) $ $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1035))
+((-1353 (*1 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-1942 (*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-3935 (*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-1927 (*1 *2 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-2868 (*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))) (-3025 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1035 *3)) (-4 *3 (-1227)))))
+(-13 (-1227) (-10 -8 (-15 -1353 ($ |#1|)) (-15 -1942 (|#1| $)) (-15 -3935 (|#1| $ |#1|)) (-15 -1927 (|#1| $)) (-15 -2868 (|#1| $ |#1|)) (-15 -3025 ((-112) $ $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1911 (((-650 $) (-650 |#4|)) 118) (((-650 $) (-650 |#4|) (-112)) 119) (((-650 $) (-650 |#4|) (-112) (-112)) 117) (((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112)) 120)) (-1755 (((-650 |#3|) $) NIL)) (-4092 (((-112) $) NIL)) (-1320 (((-112) $) NIL (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2698 ((|#4| |#4| $) NIL)) (-4310 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| $) 112)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1434 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) 66)) (-3195 (($) NIL T CONST)) (-3230 (((-112) $) 29 (|has| |#1| (-562)))) (-2339 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4337 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2327 (((-112) $) NIL (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2167 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3220 (($ (-650 |#4|)) NIL)) (-3558 (((-3 $ "failed") $) 45)) (-3059 ((|#4| |#4| $) 69)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1742 (($ |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 85 (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2191 ((|#4| |#4| $) NIL)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) NIL)) (-1483 (((-112) |#4| $) NIL)) (-2816 (((-112) |#4| $) NIL)) (-2607 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1328 (((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)) 133)) (-3630 (((-650 |#4|) $) 18 (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3357 ((|#3| $) 38)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#4|) $) 19 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1503 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 23)) (-1388 (((-650 |#3|) $) NIL)) (-2387 (((-112) |#3| $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-2274 (((-3 |#4| (-650 $)) |#4| |#4| $) NIL)) (-3693 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| |#4| $) 110)) (-1770 (((-3 |#4| "failed") $) 42)) (-2490 (((-650 $) |#4| $) 93)) (-3623 (((-3 (-112) (-650 $)) |#4| $) NIL)) (-3548 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 $))) |#4| $) 103) (((-112) |#4| $) 64)) (-3051 (((-650 $) |#4| $) 115) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 116) (((-650 $) |#4| (-650 $)) NIL)) (-4202 (((-650 $) (-650 |#4|) (-112) (-112) (-112)) 128)) (-1633 (($ |#4| $) 82) (($ (-650 |#4|) $) 83) (((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 79)) (-3151 (((-650 |#4|) $) NIL)) (-2898 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1590 ((|#4| |#4| $) NIL)) (-1433 (((-112) $ $) NIL)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2222 ((|#4| |#4| $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-3 |#4| "failed") $) 40)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-4207 (((-3 $ "failed") $ |#4|) 59)) (-3152 (($ $ |#4|) NIL) (((-650 $) |#4| $) 95) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 89)) (-1627 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 17)) (-2656 (($) 14)) (-3079 (((-777) $) NIL)) (-3587 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) 13)) (-1426 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 22)) (-4138 (($ $ |#3|) 52)) (-2435 (($ $ |#3|) 54)) (-3563 (($ $) NIL)) (-1631 (($ $ |#3|) NIL)) (-3802 (((-868) $) 35) (((-650 |#4|) $) 46)) (-3394 (((-777) $) NIL (|has| |#3| (-373)))) (-3359 (((-112) $ $) NIL)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-2872 (((-650 $) |#4| $) 92) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) NIL)) (-4379 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) NIL)) (-2506 (((-112) |#4| $) NIL)) (-3857 (((-112) |#3| $) 65)) (-3025 (((-112) $ $) NIL)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1036 |#1| |#2| |#3| |#4|) (-13 (-1080 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1633 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1911 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1911 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -4202 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1328 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112))))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1036))
+((-1633 (*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)))) (-1911 (*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)))) (-1911 (*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)))) (-4202 (*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)))) (-1328 (*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 -1633 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1911 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1911 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -4202 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1328 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)))))
+((-3159 (((-650 (-695 |#1|)) (-650 (-695 |#1|))) 70) (((-695 |#1|) (-695 |#1|)) 69) (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|))) 68) (((-695 |#1|) (-695 |#1|) (-695 |#1|)) 65)) (-2613 (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928)) 63) (((-695 |#1|) (-695 |#1|) (-928)) 62)) (-2725 (((-650 (-695 (-570))) (-650 (-650 (-570)))) 81) (((-650 (-695 (-570))) (-650 (-912 (-570))) (-570)) 80) (((-695 (-570)) (-650 (-570))) 77) (((-695 (-570)) (-912 (-570)) (-570)) 75)) (-3662 (((-695 (-959 |#1|)) (-777)) 95)) (-3140 (((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928)) 49 (|has| |#1| (-6 (-4454 "*")))) (((-695 |#1|) (-695 |#1|) (-928)) 47 (|has| |#1| (-6 (-4454 "*"))))))
+(((-1037 |#1|) (-10 -7 (IF (|has| |#1| (-6 (-4454 "*"))) (-15 -3140 ((-695 |#1|) (-695 |#1|) (-928))) |%noBranch|) (IF (|has| |#1| (-6 (-4454 "*"))) (-15 -3140 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) |%noBranch|) (-15 -3662 ((-695 (-959 |#1|)) (-777))) (-15 -2613 ((-695 |#1|) (-695 |#1|) (-928))) (-15 -2613 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) (-15 -3159 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3159 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3159 ((-695 |#1|) (-695 |#1|))) (-15 -3159 ((-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2725 ((-695 (-570)) (-912 (-570)) (-570))) (-15 -2725 ((-695 (-570)) (-650 (-570)))) (-15 -2725 ((-650 (-695 (-570))) (-650 (-912 (-570))) (-570))) (-15 -2725 ((-650 (-695 (-570))) (-650 (-650 (-570)))))) (-1058)) (T -1037))
+((-2725 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-570)))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-2725 (*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)))) (-2725 (*1 *2 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-2725 (*1 *2 *3 *4) (-12 (-5 *3 (-912 (-570))) (-5 *4 (-570)) (-5 *2 (-695 *4)) (-5 *1 (-1037 *5)) (-4 *5 (-1058)))) (-3159 (*1 *2 *2) (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-3159 (*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-3159 (*1 *2 *2 *2) (-12 (-5 *2 (-650 (-695 *3))) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-3159 (*1 *2 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *3)))) (-2613 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-2613 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-3662 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-695 (-959 *4))) (-5 *1 (-1037 *4)) (-4 *4 (-1058)))) (-3140 (*1 *2 *2 *3) (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928)) (|has| *4 (-6 (-4454 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))) (-3140 (*1 *2 *2 *3) (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (|has| *4 (-6 (-4454 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))))
+(-10 -7 (IF (|has| |#1| (-6 (-4454 "*"))) (-15 -3140 ((-695 |#1|) (-695 |#1|) (-928))) |%noBranch|) (IF (|has| |#1| (-6 (-4454 "*"))) (-15 -3140 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) |%noBranch|) (-15 -3662 ((-695 (-959 |#1|)) (-777))) (-15 -2613 ((-695 |#1|) (-695 |#1|) (-928))) (-15 -2613 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-928))) (-15 -3159 ((-695 |#1|) (-695 |#1|) (-695 |#1|))) (-15 -3159 ((-650 (-695 |#1|)) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3159 ((-695 |#1|) (-695 |#1|))) (-15 -3159 ((-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -2725 ((-695 (-570)) (-912 (-570)) (-570))) (-15 -2725 ((-695 (-570)) (-650 (-570)))) (-15 -2725 ((-650 (-695 (-570))) (-650 (-912 (-570))) (-570))) (-15 -2725 ((-650 (-695 (-570))) (-650 (-650 (-570))))))
+((-4382 (((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)) 70 (|has| |#1| (-311)))) (-3568 (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))) 110 (|has| |#1| (-368))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|)) 117 (|has| |#1| (-368)))) (-2018 (((-1277 |#1|) (-650 (-1277 |#1|)) (-570)) 135 (-12 (|has| |#1| (-368)) (|has| |#1| (-373))))) (-2931 (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928)) 123 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112)) 122 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|))) 121 (-12 (|has| |#1| (-368)) (|has| |#1| (-373)))) (((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570)) 120 (-12 (|has| |#1| (-368)) (|has| |#1| (-373))))) (-3669 (((-112) (-650 (-695 |#1|))) 103 (|has| |#1| (-368))) (((-112) (-650 (-695 |#1|)) (-570)) 106 (|has| |#1| (-368)))) (-4008 (((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|)) 67 (|has| |#1| (-311)))) (-3880 (((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|)) 47)) (-2268 (((-695 |#1|) (-1277 (-1277 |#1|))) 40)) (-4175 (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570)) 94 (|has| |#1| (-368))) (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|))) 93 (|has| |#1| (-368))) (((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570)) 101 (|has| |#1| (-368)))))
+(((-1038 |#1|) (-10 -7 (-15 -2268 ((-695 |#1|) (-1277 (-1277 |#1|)))) (-15 -3880 ((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-311)) (PROGN (-15 -4008 ((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -4382 ((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -4175 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570))) (-15 -4175 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -4175 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570))) (-15 -3669 ((-112) (-650 (-695 |#1|)) (-570))) (-15 -3669 ((-112) (-650 (-695 |#1|)))) (-15 -3568 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -3568 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))))) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#1| (-368)) (PROGN (-15 -2931 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570))) (-15 -2931 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)))) (-15 -2931 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112))) (-15 -2931 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928))) (-15 -2018 ((-1277 |#1|) (-650 (-1277 |#1|)) (-570)))) |%noBranch|) |%noBranch|)) (-1058)) (T -1038))
+((-2018 (*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)))) (-2931 (*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))))) (-2931 (*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))))) (-2931 (*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))))) (-2931 (*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))))) (-3568 (*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))))) (-3568 (*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))))) (-3669 (*1 *2 *3) (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-4 *4 (-1058)) (-5 *2 (-112)) (-5 *1 (-1038 *4)))) (-3669 (*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)))) (-4175 (*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)))) (-4175 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4)) (-4 *4 (-368)) (-4 *4 (-1058)))) (-4175 (*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)))) (-4382 (*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)))) (-4008 (*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)))) (-3880 (*1 *2 *3 *2) (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1038 *4)))) (-2268 (*1 *2 *3) (-12 (-5 *3 (-1277 (-1277 *4))) (-4 *4 (-1058)) (-5 *2 (-695 *4)) (-5 *1 (-1038 *4)))))
+(-10 -7 (-15 -2268 ((-695 |#1|) (-1277 (-1277 |#1|)))) (-15 -3880 ((-695 |#1|) (-650 (-695 |#1|)) (-695 |#1|))) (IF (|has| |#1| (-311)) (PROGN (-15 -4008 ((-1277 (-1277 |#1|)) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -4382 ((-695 |#1|) (-650 (-695 |#1|)) (-1277 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -4175 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-112) (-570))) (-15 -4175 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -4175 ((-695 |#1|) (-650 (-695 |#1|)) (-650 (-695 |#1|)) (-570))) (-15 -3669 ((-112) (-650 (-695 |#1|)) (-570))) (-15 -3669 ((-112) (-650 (-695 |#1|)))) (-15 -3568 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 |#1|))) (-15 -3568 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-1277 (-1277 |#1|))))) |%noBranch|) (IF (|has| |#1| (-373)) (IF (|has| |#1| (-368)) (PROGN (-15 -2931 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112) (-570) (-570))) (-15 -2931 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)))) (-15 -2931 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-112))) (-15 -2931 ((-650 (-650 (-695 |#1|))) (-650 (-695 |#1|)) (-928))) (-15 -2018 ((-1277 |#1|) (-650 (-1277 |#1|)) (-570)))) |%noBranch|) |%noBranch|))
+((-2784 ((|#1| (-928) |#1|) 18)))
+(((-1039 |#1|) (-10 -7 (-15 -2784 (|#1| (-928) |#1|))) (-13 (-1109) (-10 -8 (-15 -3104 ($ $ $))))) (T -1039))
+((-2784 (*1 *2 *3 *2) (-12 (-5 *3 (-928)) (-5 *1 (-1039 *2)) (-4 *2 (-13 (-1109) (-10 -8 (-15 -3104 ($ $ $))))))))
+(-10 -7 (-15 -2784 (|#1| (-928) |#1|)))
+((-2298 (((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570))))) 67)) (-4088 (((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570))))) 52)) (-3838 (((-650 (-320 (-570))) (-695 (-413 (-959 (-570))))) 45)) (-2640 (((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570))))) 85)) (-4050 (((-695 (-320 (-570))) (-695 (-320 (-570)))) 38)) (-3966 (((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570))))) 74)) (-1628 (((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570))))) 82)))
+(((-1040) (-10 -7 (-15 -2298 ((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570)))))) (-15 -4088 ((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570)))))) (-15 -3838 ((-650 (-320 (-570))) (-695 (-413 (-959 (-570)))))) (-15 -1628 ((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570)))))) (-15 -4050 ((-695 (-320 (-570))) (-695 (-320 (-570))))) (-15 -3966 ((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570)))))) (-15 -2640 ((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570)))))))) (T -1040))
+((-2640 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))) (-3966 (*1 *2 *2) (-12 (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))) (-4050 (*1 *2 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))) (-1628 (*1 *2 *3) (|partial| -12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))) (-3838 (*1 *2 *3) (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-320 (-570)))) (-5 *1 (-1040)))) (-4088 (*1 *2 *3 *4) (-12 (-5 *4 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)) (-5 *3 (-320 (-570))))) (-2298 (*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 -2298 ((-650 (-2 (|:| |radval| (-320 (-570))) (|:| |radmult| (-570)) (|:| |radvect| (-650 (-695 (-320 (-570))))))) (-695 (-413 (-959 (-570)))))) (-15 -4088 ((-650 (-695 (-320 (-570)))) (-320 (-570)) (-695 (-413 (-959 (-570)))))) (-15 -3838 ((-650 (-320 (-570))) (-695 (-413 (-959 (-570)))))) (-15 -1628 ((-3 (-695 (-320 (-570))) "failed") (-695 (-413 (-959 (-570)))))) (-15 -4050 ((-695 (-320 (-570))) (-695 (-320 (-570))))) (-15 -3966 ((-650 (-695 (-320 (-570)))) (-650 (-695 (-320 (-570)))))) (-15 -2640 ((-650 (-695 (-320 (-570)))) (-695 (-413 (-959 (-570)))))))
+((-2680 ((|#1| |#1| (-928)) 18)))
+(((-1041 |#1|) (-10 -7 (-15 -2680 (|#1| |#1| (-928)))) (-13 (-1109) (-10 -8 (-15 * ($ $ $))))) (T -1041))
+((-2680 (*1 *2 *2 *3) (-12 (-5 *3 (-928)) (-5 *1 (-1041 *2)) (-4 *2 (-13 (-1109) (-10 -8 (-15 * ($ $ $))))))))
+(-10 -7 (-15 -2680 (|#1| |#1| (-928))))
+((-3802 ((|#1| (-316)) 11) (((-1282) |#1|) 9)))
+(((-1042 |#1|) (-10 -7 (-15 -3802 ((-1282) |#1|)) (-15 -3802 (|#1| (-316)))) (-1227)) (T -1042))
+((-3802 (*1 *2 *3) (-12 (-5 *3 (-316)) (-5 *1 (-1042 *2)) (-4 *2 (-1227)))) (-3802 (*1 *2 *3) (-12 (-5 *2 (-1282)) (-5 *1 (-1042 *3)) (-4 *3 (-1227)))))
+(-10 -7 (-15 -3802 ((-1282) |#1|)) (-15 -3802 (|#1| (-316))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-3627 (($ |#4|) 25)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-3615 ((|#4| $) 27)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 46) (($ (-570)) NIL) (($ |#1|) NIL) (($ |#4|) 26)) (-2851 (((-777)) 43 T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 21 T CONST)) (-1876 (($) 23 T CONST)) (-3025 (((-112) $ $) 40)) (-3114 (($ $) 31) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3627 ($ |#4|)) (-15 -3802 ($ |#4|)) (-15 -3615 (|#4| $)))) (-368) (-799) (-856) (-956 |#1| |#2| |#3|) (-650 |#4|)) (T -1043))
+((-3627 (*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)))) (-3802 (*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)))) (-3615 (*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 -3627 ($ |#4|)) (-15 -3802 ($ |#4|)) (-15 -3615 (|#4| $))))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL)) (-3040 (((-1282) $ (-1186) (-1186)) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-4324 (((-112) (-112)) 43)) (-1398 (((-112) (-112)) 42)) (-3935 (((-52) $ (-1186) (-52)) NIL)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 (-52) "failed") (-1186) $) NIL)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2385 (($ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-3 (-52) "failed") (-1186) $) NIL)) (-1742 (($ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-1518 (((-52) $ (-1186) (-52)) NIL (|has| $ (-6 -4453)))) (-3824 (((-52) $ (-1186)) NIL)) (-3630 (((-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-650 (-52)) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-1186) $) NIL (|has| (-1186) (-856)))) (-2052 (((-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-650 (-52)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109))))) (-2602 (((-1186) $) NIL (|has| (-1186) (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4453))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2914 (((-650 (-1186)) $) 37)) (-2343 (((-112) (-1186) $) NIL)) (-2885 (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL)) (-3502 (($ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL)) (-2903 (((-650 (-1186)) $) NIL)) (-1358 (((-112) (-1186) $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-3546 (((-52) $) NIL (|has| (-1186) (-856)))) (-2770 (((-3 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) "failed") (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL)) (-2061 (($ $ (-52)) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))))) NIL (-12 (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) NIL (-12 (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109))))) (-4049 (((-650 (-52)) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 (((-52) $ (-1186)) 39) (((-52) $ (-1186) (-52)) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL)) (-3802 (((-868) $) 41 (-2895 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1044) (-13 (-1203 (-1186) (-52)) (-10 -7 (-15 -4324 ((-112) (-112))) (-15 -1398 ((-112) (-112))) (-6 -4452)))) (T -1044))
+((-4324 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))) (-1398 (*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
+(-13 (-1203 (-1186) (-52)) (-10 -7 (-15 -4324 ((-112) (-112))) (-15 -1398 ((-112) (-112))) (-6 -4452)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1435 (((-1144) $) 9)) (-3802 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1045) (-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $))))) (T -1045))
+((-1435 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1045)))))
+(-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $))))
+((-3220 ((|#2| $) 10)))
+(((-1046 |#1| |#2|) (-10 -8 (-15 -3220 (|#2| |#1|))) (-1047 |#2|) (-1227)) (T -1046))
+NIL
+(-10 -8 (-15 -3220 (|#2| |#1|)))
+((-4383 (((-3 |#1| "failed") $) 9)) (-3220 ((|#1| $) 8)) (-3802 (($ |#1|) 6)))
(((-1047 |#1|) (-141) (-1227)) (T -1047))
-((-4380 (*1 *2 *1) (|partial| -12 (-4 *1 (-1047 *2)) (-4 *2 (-1227)))) (-3216 (*1 *2 *1) (-12 (-4 *1 (-1047 *2)) (-4 *2 (-1227)))))
-(-13 (-622 |t#1|) (-10 -8 (-15 -4380 ((-3 |t#1| "failed") $)) (-15 -3216 (|t#1| $))))
+((-4383 (*1 *2 *1) (|partial| -12 (-4 *1 (-1047 *2)) (-4 *2 (-1227)))) (-3220 (*1 *2 *1) (-12 (-4 *1 (-1047 *2)) (-4 *2 (-1227)))))
+(-13 (-622 |t#1|) (-10 -8 (-15 -4383 ((-3 |t#1| "failed") $)) (-15 -3220 (|t#1| $))))
(((-622 |#1|) . T))
-((-1614 (((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186))) 38)))
-(((-1048 |#1| |#2|) (-10 -7 (-15 -1614 ((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186))))) (-562) (-13 (-562) (-1047 |#1|))) (T -1048))
-((-1614 (*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 -1614 ((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186)))))
-((-4052 (((-384)) 17)) (-3152 (((-1 (-384)) (-384) (-384)) 22)) (-3698 (((-1 (-384)) (-777)) 48)) (-1694 (((-384)) 37)) (-3399 (((-1 (-384)) (-384) (-384)) 38)) (-4329 (((-384)) 29)) (-3390 (((-1 (-384)) (-384)) 30)) (-3783 (((-384) (-777)) 43)) (-2429 (((-1 (-384)) (-777)) 44)) (-1708 (((-1 (-384)) (-777) (-777)) 47)) (-4250 (((-1 (-384)) (-777) (-777)) 45)))
-(((-1049) (-10 -7 (-15 -4052 ((-384))) (-15 -1694 ((-384))) (-15 -4329 ((-384))) (-15 -3783 ((-384) (-777))) (-15 -3152 ((-1 (-384)) (-384) (-384))) (-15 -3399 ((-1 (-384)) (-384) (-384))) (-15 -3390 ((-1 (-384)) (-384))) (-15 -2429 ((-1 (-384)) (-777))) (-15 -4250 ((-1 (-384)) (-777) (-777))) (-15 -1708 ((-1 (-384)) (-777) (-777))) (-15 -3698 ((-1 (-384)) (-777))))) (T -1049))
-((-3698 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-1708 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-4250 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-2429 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-3390 (*1 *2 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-3399 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-3152 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-3783 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-384)) (-5 *1 (-1049)))) (-4329 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))) (-1694 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))) (-4052 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
-(-10 -7 (-15 -4052 ((-384))) (-15 -1694 ((-384))) (-15 -4329 ((-384))) (-15 -3783 ((-384) (-777))) (-15 -3152 ((-1 (-384)) (-384) (-384))) (-15 -3399 ((-1 (-384)) (-384) (-384))) (-15 -3390 ((-1 (-384)) (-384))) (-15 -2429 ((-1 (-384)) (-777))) (-15 -4250 ((-1 (-384)) (-777) (-777))) (-15 -1708 ((-1 (-384)) (-777) (-777))) (-15 -3698 ((-1 (-384)) (-777))))
-((-3801 (((-424 |#1|) |#1|) 33)))
-(((-1050 |#1|) (-10 -7 (-15 -3801 ((-424 |#1|) |#1|))) (-1253 (-413 (-959 (-570))))) (T -1050))
-((-3801 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1050 *3)) (-4 *3 (-1253 (-413 (-959 (-570))))))))
-(-10 -7 (-15 -3801 ((-424 |#1|) |#1|)))
-((-4402 (((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|))) 14)))
-(((-1051 |#1|) (-10 -7 (-15 -4402 ((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|))))) (-311)) (T -1051))
-((-4402 (*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 -4402 ((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|)))))
-((-1755 (((-650 (-1186)) (-413 (-959 |#1|))) 17)) (-3775 (((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186)) 24)) (-1742 (((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186)) 26)) (-3362 (((-3 (-1186) "failed") (-413 (-959 |#1|))) 20)) (-1770 (((-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)) (-3799 (((-413 (-959 |#1|)) |#1|) 11)))
-(((-1052 |#1|) (-10 -7 (-15 -1755 ((-650 (-1186)) (-413 (-959 |#1|)))) (-15 -3362 ((-3 (-1186) "failed") (-413 (-959 |#1|)))) (-15 -3775 ((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1742 ((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186))) (-15 -1770 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))) (-15 -1770 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|))))) (-15 -1770 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -1770 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3799 ((-413 (-959 |#1|)) |#1|))) (-562)) (T -1052))
-((-3799 (*1 *2 *3) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-1052 *3)) (-4 *3 (-562)))) (-1770 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-298 (-413 (-959 *4))))) (-5 *2 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1770 (*1 *2 *2 *3) (-12 (-5 *3 (-298 (-413 (-959 *4)))) (-5 *2 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1770 (*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)))) (-1770 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1742 (*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)))) (-3775 (*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))))) (-3362 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-1186)) (-5 *1 (-1052 *4)))) (-1755 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-1186))) (-5 *1 (-1052 *4)))))
-(-10 -7 (-15 -1755 ((-650 (-1186)) (-413 (-959 |#1|)))) (-15 -3362 ((-3 (-1186) "failed") (-413 (-959 |#1|)))) (-15 -3775 ((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1742 ((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186))) (-15 -1770 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))) (-15 -1770 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|))))) (-15 -1770 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -1770 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3799 ((-413 (-959 |#1|)) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1705 (($) 18 T CONST)) (-2785 ((|#1| $) 23)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3661 ((|#1| $) 22)) (-2121 ((|#1|) 20 T CONST)) (-3799 (((-868) $) 12)) (-4110 ((|#1| $) 21)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
+((-1618 (((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186))) 38)))
+(((-1048 |#1| |#2|) (-10 -7 (-15 -1618 ((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186))))) (-562) (-13 (-562) (-1047 |#1|))) (T -1048))
+((-1618 (*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 -1618 ((-650 (-650 (-298 (-413 (-959 |#2|))))) (-650 (-959 |#2|)) (-650 (-1186)))))
+((-4384 (((-384)) 17)) (-2672 (((-1 (-384)) (-384) (-384)) 22)) (-3701 (((-1 (-384)) (-777)) 48)) (-4247 (((-384)) 37)) (-3402 (((-1 (-384)) (-384) (-384)) 38)) (-3982 (((-384)) 29)) (-4220 (((-1 (-384)) (-384)) 30)) (-3647 (((-384) (-777)) 43)) (-3133 (((-1 (-384)) (-777)) 44)) (-1709 (((-1 (-384)) (-777) (-777)) 47)) (-2669 (((-1 (-384)) (-777) (-777)) 45)))
+(((-1049) (-10 -7 (-15 -4384 ((-384))) (-15 -4247 ((-384))) (-15 -3982 ((-384))) (-15 -3647 ((-384) (-777))) (-15 -2672 ((-1 (-384)) (-384) (-384))) (-15 -3402 ((-1 (-384)) (-384) (-384))) (-15 -4220 ((-1 (-384)) (-384))) (-15 -3133 ((-1 (-384)) (-777))) (-15 -2669 ((-1 (-384)) (-777) (-777))) (-15 -1709 ((-1 (-384)) (-777) (-777))) (-15 -3701 ((-1 (-384)) (-777))))) (T -1049))
+((-3701 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-1709 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-2669 (*1 *2 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-3133 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))) (-4220 (*1 *2 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-3402 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-2672 (*1 *2 *3 *3) (-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))) (-3647 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-384)) (-5 *1 (-1049)))) (-3982 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))) (-4247 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))) (-4384 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
+(-10 -7 (-15 -4384 ((-384))) (-15 -4247 ((-384))) (-15 -3982 ((-384))) (-15 -3647 ((-384) (-777))) (-15 -2672 ((-1 (-384)) (-384) (-384))) (-15 -3402 ((-1 (-384)) (-384) (-384))) (-15 -4220 ((-1 (-384)) (-384))) (-15 -3133 ((-1 (-384)) (-777))) (-15 -2669 ((-1 (-384)) (-777) (-777))) (-15 -1709 ((-1 (-384)) (-777) (-777))) (-15 -3701 ((-1 (-384)) (-777))))
+((-3804 (((-424 |#1|) |#1|) 33)))
+(((-1050 |#1|) (-10 -7 (-15 -3804 ((-424 |#1|) |#1|))) (-1253 (-413 (-959 (-570))))) (T -1050))
+((-3804 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1050 *3)) (-4 *3 (-1253 (-413 (-959 (-570))))))))
+(-10 -7 (-15 -3804 ((-424 |#1|) |#1|)))
+((-3470 (((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|))) 14)))
+(((-1051 |#1|) (-10 -7 (-15 -3470 ((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|))))) (-311)) (T -1051))
+((-3470 (*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 -3470 ((-413 (-424 (-959 |#1|))) (-413 (-959 |#1|)))))
+((-1755 (((-650 (-1186)) (-413 (-959 |#1|))) 17)) (-3778 (((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186)) 24)) (-1744 (((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186)) 26)) (-4023 (((-3 (-1186) "failed") (-413 (-959 |#1|))) 20)) (-1771 (((-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)) (-3802 (((-413 (-959 |#1|)) |#1|) 11)))
+(((-1052 |#1|) (-10 -7 (-15 -1755 ((-650 (-1186)) (-413 (-959 |#1|)))) (-15 -4023 ((-3 (-1186) "failed") (-413 (-959 |#1|)))) (-15 -3778 ((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1744 ((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186))) (-15 -1771 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))) (-15 -1771 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|))))) (-15 -1771 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -1771 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3802 ((-413 (-959 |#1|)) |#1|))) (-562)) (T -1052))
+((-3802 (*1 *2 *3) (-12 (-5 *2 (-413 (-959 *3))) (-5 *1 (-1052 *3)) (-4 *3 (-562)))) (-1771 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-298 (-413 (-959 *4))))) (-5 *2 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1771 (*1 *2 *2 *3) (-12 (-5 *3 (-298 (-413 (-959 *4)))) (-5 *2 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1771 (*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)))) (-1771 (*1 *2 *2 *3 *2) (-12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186)) (-4 *4 (-562)) (-5 *1 (-1052 *4)))) (-1744 (*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)))) (-3778 (*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))))) (-4023 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-1186)) (-5 *1 (-1052 *4)))) (-1755 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-1186))) (-5 *1 (-1052 *4)))))
+(-10 -7 (-15 -1755 ((-650 (-1186)) (-413 (-959 |#1|)))) (-15 -4023 ((-3 (-1186) "failed") (-413 (-959 |#1|)))) (-15 -3778 ((-413 (-1182 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -1744 ((-413 (-959 |#1|)) (-413 (-1182 (-413 (-959 |#1|)))) (-1186))) (-15 -1771 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)))) (-15 -1771 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-1186)) (-650 (-413 (-959 |#1|))))) (-15 -1771 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-298 (-413 (-959 |#1|))))) (-15 -1771 ((-413 (-959 |#1|)) (-413 (-959 |#1|)) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3802 ((-413 (-959 |#1|)) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3195 (($) 18 T CONST)) (-2356 ((|#1| $) 23)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-1869 ((|#1| $) 22)) (-2997 ((|#1|) 20 T CONST)) (-3802 (((-868) $) 12)) (-3786 ((|#1| $) 21)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
(((-1053 |#1|) (-141) (-23)) (T -1053))
-((-2785 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-3661 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-4110 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-2121 (*1 *2) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
-(-13 (-23) (-10 -8 (-15 -2785 (|t#1| $)) (-15 -3661 (|t#1| $)) (-15 -4110 (|t#1| $)) (-15 -2121 (|t#1|) -3725)))
+((-2356 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-1869 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-3786 (*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))) (-2997 (*1 *2) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+(-13 (-23) (-10 -8 (-15 -2356 (|t#1| $)) (-15 -1869 (|t#1| $)) (-15 -3786 (|t#1| $)) (-15 -2997 (|t#1|) -3728)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1879 (($) 25 T CONST)) (-1705 (($) 18 T CONST)) (-2785 ((|#1| $) 23)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3661 ((|#1| $) 22)) (-2121 ((|#1|) 20 T CONST)) (-3799 (((-868) $) 12)) (-4110 ((|#1| $) 21)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-2347 (($) 25 T CONST)) (-3195 (($) 18 T CONST)) (-2356 ((|#1| $) 23)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-1869 ((|#1| $) 22)) (-2997 ((|#1|) 20 T CONST)) (-3802 (((-868) $) 12)) (-3786 ((|#1| $) 21)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16)))
(((-1054 |#1|) (-141) (-23)) (T -1054))
-((-1879 (*1 *1) (-12 (-4 *1 (-1054 *2)) (-4 *2 (-23)))))
-(-13 (-1053 |t#1|) (-10 -8 (-15 -1879 ($) -3725)))
+((-2347 (*1 *1) (-12 (-4 *1 (-1054 *2)) (-4 *2 (-23)))))
+(-13 (-1053 |t#1|) (-10 -8 (-15 -2347 ($) -3728)))
(((-23) . T) ((-25) . T) ((-102) . T) ((-619 (-868)) . T) ((-1053 |#1|) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 (-786 |#1| (-870 |#2|)))))) (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-1515 (((-650 $) (-650 (-786 |#1| (-870 |#2|)))) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112)) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112)) NIL)) (-1755 (((-650 (-870 |#2|)) $) NIL)) (-3051 (((-112) $) NIL)) (-1416 (((-112) $) NIL (|has| |#1| (-562)))) (-2986 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-3484 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-4364 (((-650 (-2 (|:| |val| (-786 |#1| (-870 |#2|))) (|:| -3684 $))) (-786 |#1| (-870 |#2|)) $) NIL)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ (-870 |#2|)) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-1431 (($ (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 (-786 |#1| (-870 |#2|)) "failed") $ (-870 |#2|)) NIL)) (-1705 (($) NIL T CONST)) (-3737 (((-112) $) NIL (|has| |#1| (-562)))) (-2467 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4047 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1876 (((-112) $) NIL (|has| |#1| (-562)))) (-3868 (((-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)) (-2450 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| |#1| (-562)))) (-4059 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3216 (($ (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3555 (((-3 $ "failed") $) NIL)) (-2128 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-1741 (($ (-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)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-786 |#1| (-870 |#2|))) (|:| |den| |#1|)) (-786 |#1| (-870 |#2|)) $) NIL (|has| |#1| (-562)))) (-2862 (((-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)) (-3624 (((-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)) (-4334 (((-2 (|:| -4122 (-650 (-786 |#1| (-870 |#2|)))) (|:| -1762 (-650 (-786 |#1| (-870 |#2|))))) $) NIL)) (-3948 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-3825 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2819 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-3627 (((-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3586 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-1724 (((-870 |#2|) $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-1502 (($ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL)) (-1423 (((-650 (-870 |#2|)) $) NIL)) (-3907 (((-112) (-870 |#2|) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-2925 (((-3 (-786 |#1| (-870 |#2|)) (-650 $)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-1759 (((-650 (-2 (|:| |val| (-786 |#1| (-870 |#2|))) (|:| -3684 $))) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-1769 (((-3 (-786 |#1| (-870 |#2|)) "failed") $) NIL)) (-3260 (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL)) (-4090 (((-3 (-112) (-650 $)) (-786 |#1| (-870 |#2|)) $) NIL)) (-1743 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 $))) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2730 (((-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)) (-2231 (($ (-786 |#1| (-870 |#2|)) $) NIL) (($ (-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-3534 (((-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-1491 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-2520 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-2971 (((-112) $ $) NIL)) (-4375 (((-2 (|:| |num| (-786 |#1| (-870 |#2|))) (|:| |den| |#1|)) (-786 |#1| (-870 |#2|)) $) NIL (|has| |#1| (-562)))) (-2035 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-4201 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-3 (-786 |#1| (-870 |#2|)) "failed") $) NIL)) (-1790 (((-3 (-786 |#1| (-870 |#2|)) "failed") (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL)) (-1690 (((-3 $ "failed") $ (-786 |#1| (-870 |#2|))) NIL)) (-2431 (($ $ (-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)) (-3642 (((-112) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-2130 (((-777) $) NIL)) (-3584 (((-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)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-786 |#1| (-870 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3710 (($ $ (-870 |#2|)) NIL)) (-4224 (($ $ (-870 |#2|)) NIL)) (-4085 (($ $) NIL)) (-1615 (($ $ (-870 |#2|)) NIL)) (-3799 (((-868) $) NIL) (((-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-4392 (((-777) $) NIL (|has| (-870 |#2|) (-373)))) (-2335 (((-112) $ $) NIL)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-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| $) (|:| -3353 (-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)) (-4148 (((-112) $ (-1 (-112) (-786 |#1| (-870 |#2|)) (-650 (-786 |#1| (-870 |#2|))))) NIL)) (-2401 (((-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)) (-4371 (((-112) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3716 (((-650 (-870 |#2|)) $) NIL)) (-2950 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2561 (((-112) (-870 |#2|) $) NIL)) (-3022 (((-112) $ $) NIL)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1055 |#1| |#2|) (-13 (-1080 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|))) (-10 -8 (-15 -1515 ((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112))))) (-458) (-650 (-1186))) (T -1055))
-((-1515 (*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 -1515 ((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112)))))
-((-3152 (((-1 (-570)) (-1103 (-570))) 32)) (-1633 (((-570) (-570) (-570) (-570) (-570)) 29)) (-1488 (((-1 (-570)) |RationalNumber|) NIL)) (-2764 (((-1 (-570)) |RationalNumber|) NIL)) (-2858 (((-1 (-570)) (-570) |RationalNumber|) NIL)))
-(((-1056) (-10 -7 (-15 -3152 ((-1 (-570)) (-1103 (-570)))) (-15 -2858 ((-1 (-570)) (-570) |RationalNumber|)) (-15 -1488 ((-1 (-570)) |RationalNumber|)) (-15 -2764 ((-1 (-570)) |RationalNumber|)) (-15 -1633 ((-570) (-570) (-570) (-570) (-570))))) (T -1056))
-((-1633 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1056)))) (-2764 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))) (-1488 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))) (-2858 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)) (-5 *3 (-570)))) (-3152 (*1 *2 *3) (-12 (-5 *3 (-1103 (-570))) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
-(-10 -7 (-15 -3152 ((-1 (-570)) (-1103 (-570)))) (-15 -2858 ((-1 (-570)) (-570) |RationalNumber|)) (-15 -1488 ((-1 (-570)) |RationalNumber|)) (-15 -2764 ((-1 (-570)) |RationalNumber|)) (-15 -1633 ((-570) (-570) (-570) (-570) (-570))))
-((-3799 (((-868) $) NIL) (($ (-570)) 10)))
-(((-1057 |#1|) (-10 -8 (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-1058)) (T -1057))
-NIL
-(-10 -8 (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2560 (((-112) $ $) NIL)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 (-786 |#1| (-870 |#2|)))))) (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-1911 (((-650 $) (-650 (-786 |#1| (-870 |#2|)))) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112)) NIL) (((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112)) NIL)) (-1755 (((-650 (-870 |#2|)) $) NIL)) (-4092 (((-112) $) NIL)) (-1320 (((-112) $) NIL (|has| |#1| (-562)))) (-1625 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-2698 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-4310 (((-650 (-2 (|:| |val| (-786 |#1| (-870 |#2|))) (|:| -3687 $))) (-786 |#1| (-870 |#2|)) $) NIL)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ (-870 |#2|)) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1434 (($ (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-3 (-786 |#1| (-870 |#2|)) "failed") $ (-870 |#2|)) NIL)) (-3195 (($) NIL T CONST)) (-3230 (((-112) $) NIL (|has| |#1| (-562)))) (-2339 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4337 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2327 (((-112) $) NIL (|has| |#1| (-562)))) (-3175 (((-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)) (-2167 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| |#1| (-562)))) (-3276 (((-650 (-786 |#1| (-870 |#2|))) (-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3220 (($ (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-3558 (((-3 $ "failed") $) NIL)) (-3059 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-1742 (($ (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (($ (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| (-786 |#1| (-870 |#2|))) (|:| |den| |#1|)) (-786 |#1| (-870 |#2|)) $) NIL (|has| |#1| (-562)))) (-1772 (((-112) (-786 |#1| (-870 |#2|)) $ (-1 (-112) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)))) NIL)) (-2191 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3627 (((-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 -4452)) (|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 -4452))) (((-786 |#1| (-870 |#2|)) (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-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)) (-4031 (((-2 (|:| -4125 (-650 (-786 |#1| (-870 |#2|)))) (|:| -1765 (-650 (-786 |#1| (-870 |#2|))))) $) NIL)) (-1483 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2816 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-2607 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-3630 (((-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2391 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-3357 (((-870 |#2|) $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-786 |#1| (-870 |#2|)) (-1109))))) (-1503 (($ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|))) $) NIL)) (-1388 (((-650 (-870 |#2|)) $) NIL)) (-2387 (((-112) (-870 |#2|) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-2274 (((-3 (-786 |#1| (-870 |#2|)) (-650 $)) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3693 (((-650 (-2 (|:| |val| (-786 |#1| (-870 |#2|))) (|:| -3687 $))) (-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-1770 (((-3 (-786 |#1| (-870 |#2|)) "failed") $) NIL)) (-2490 (((-650 $) (-786 |#1| (-870 |#2|)) $) NIL)) (-3623 (((-3 (-112) (-650 $)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3548 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 $))) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-3051 (((-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)) (-1633 (($ (-786 |#1| (-870 |#2|)) $) NIL) (($ (-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-3151 (((-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-2898 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-1590 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-1433 (((-112) $ $) NIL)) (-4427 (((-2 (|:| |num| (-786 |#1| (-870 |#2|))) (|:| |den| |#1|)) (-786 |#1| (-870 |#2|)) $) NIL (|has| |#1| (-562)))) (-3279 (((-112) (-786 |#1| (-870 |#2|)) $) NIL) (((-112) $) NIL)) (-2222 (((-786 |#1| (-870 |#2|)) (-786 |#1| (-870 |#2|)) $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-3 (-786 |#1| (-870 |#2|)) "failed") $) NIL)) (-2770 (((-3 (-786 |#1| (-870 |#2|)) "failed") (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL)) (-4207 (((-3 $ "failed") $ (-786 |#1| (-870 |#2|))) NIL)) (-3152 (($ $ (-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)) (-1627 (((-112) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-3079 (((-777) $) NIL)) (-3587 (((-777) (-786 |#1| (-870 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-786 |#1| (-870 |#2|)) (-1109)))) (((-777) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-786 |#1| (-870 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-786 |#1| (-870 |#2|)))) NIL)) (-4138 (($ $ (-870 |#2|)) NIL)) (-2435 (($ $ (-870 |#2|)) NIL)) (-3563 (($ $) NIL)) (-1631 (($ $ (-870 |#2|)) NIL)) (-3802 (((-868) $) NIL) (((-650 (-786 |#1| (-870 |#2|))) $) NIL)) (-3394 (((-777) $) NIL (|has| (-870 |#2|) (-373)))) (-3359 (((-112) $ $) NIL)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-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| $) (|:| -3356 (-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)) (-2938 (((-112) $ (-1 (-112) (-786 |#1| (-870 |#2|)) (-650 (-786 |#1| (-870 |#2|))))) NIL)) (-2872 (((-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)) (-4379 (((-112) (-1 (-112) (-786 |#1| (-870 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-4204 (((-650 (-870 |#2|)) $) NIL)) (-2506 (((-112) (-786 |#1| (-870 |#2|)) $) NIL)) (-3857 (((-112) (-870 |#2|) $) NIL)) (-3025 (((-112) $ $) NIL)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1055 |#1| |#2|) (-13 (-1080 |#1| (-537 (-870 |#2|)) (-870 |#2|) (-786 |#1| (-870 |#2|))) (-10 -8 (-15 -1911 ((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112))))) (-458) (-650 (-1186))) (T -1055))
+((-1911 (*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 -1911 ((-650 $) (-650 (-786 |#1| (-870 |#2|))) (-112) (-112)))))
+((-2672 (((-1 (-570)) (-1103 (-570))) 32)) (-1836 (((-570) (-570) (-570) (-570) (-570)) 29)) (-2875 (((-1 (-570)) |RationalNumber|) NIL)) (-2174 (((-1 (-570)) |RationalNumber|) NIL)) (-1730 (((-1 (-570)) (-570) |RationalNumber|) NIL)))
+(((-1056) (-10 -7 (-15 -2672 ((-1 (-570)) (-1103 (-570)))) (-15 -1730 ((-1 (-570)) (-570) |RationalNumber|)) (-15 -2875 ((-1 (-570)) |RationalNumber|)) (-15 -2174 ((-1 (-570)) |RationalNumber|)) (-15 -1836 ((-570) (-570) (-570) (-570) (-570))))) (T -1056))
+((-1836 (*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1056)))) (-2174 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))) (-2875 (*1 *2 *3) (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))) (-1730 (*1 *2 *3 *4) (-12 (-5 *4 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)) (-5 *3 (-570)))) (-2672 (*1 *2 *3) (-12 (-5 *3 (-1103 (-570))) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
+(-10 -7 (-15 -2672 ((-1 (-570)) (-1103 (-570)))) (-15 -1730 ((-1 (-570)) (-570) |RationalNumber|)) (-15 -2875 ((-1 (-570)) |RationalNumber|)) (-15 -2174 ((-1 (-570)) |RationalNumber|)) (-15 -1836 ((-570) (-570) (-570) (-570) (-570))))
+((-3802 (((-868) $) NIL) (($ (-570)) 10)))
+(((-1057 |#1|) (-10 -8 (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-1058)) (T -1057))
+NIL
+(-10 -8 (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-1058) (-141)) (T -1058))
-((-3499 (*1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-777)))))
-(-13 (-1067) (-732) (-654 $) (-622 (-570)) (-10 -7 (-15 -3499 ((-777)) -3725) (-6 -4446)))
+((-2851 (*1 *2) (-12 (-4 *1 (-1058)) (-5 *2 (-777)))))
+(-13 (-1067) (-732) (-654 $) (-622 (-570)) (-10 -7 (-15 -2851 ((-777)) -3728) (-6 -4449)))
(((-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))
-((-2626 (((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777)) 54)))
-(((-1059 |#1| |#2|) (-10 -7 (-15 -2626 ((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777)))) (-1186) (-368)) (T -1059))
-((-2626 (*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 -2626 ((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 15)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 16 T CONST)) (-3022 (((-112) $ $) 6)) (* (($ $ |#1|) 14)))
+((-3263 (((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777)) 54)))
+(((-1059 |#1| |#2|) (-10 -7 (-15 -3263 ((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777)))) (-1186) (-368)) (T -1059))
+((-3263 (*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 -3263 ((-413 (-959 |#2|)) (-650 |#2|) (-650 |#2|) (-777) (-777))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 15)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 16 T CONST)) (-3025 (((-112) $ $) 6)) (* (($ $ |#1|) 14)))
(((-1060 |#1|) (-141) (-1067)) (T -1060))
-((-1861 (*1 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1067)))) (-3467 (*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 (-1861) ($) -3725) (-15 -3467 ((-112) $)) (-15 * ($ $ |t#1|))))
+((-1862 (*1 *1) (-12 (-4 *1 (-1060 *2)) (-4 *2 (-1067)))) (-3721 (*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 (-1862) ($) -3728) (-15 -3721 ((-112) $)) (-15 * ($ $ |t#1|))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-1735 (((-112) $) 38)) (-4253 (((-112) $) 17)) (-3316 (((-777) $) 13)) (-3328 (((-777) $) 14)) (-3285 (((-112) $) 30)) (-2841 (((-112) $) 40)))
-(((-1061 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -3328 ((-777) |#1|)) (-15 -3316 ((-777) |#1|)) (-15 -2841 ((-112) |#1|)) (-15 -1735 ((-112) |#1|)) (-15 -3285 ((-112) |#1|)) (-15 -4253 ((-112) |#1|))) (-1062 |#2| |#3| |#4| |#5| |#6|) (-777) (-777) (-1058) (-240 |#3| |#4|) (-240 |#2| |#4|)) (T -1061))
+((-3493 (((-112) $) 38)) (-1407 (((-112) $) 17)) (-3318 (((-777) $) 13)) (-3330 (((-777) $) 14)) (-1424 (((-112) $) 30)) (-1548 (((-112) $) 40)))
+(((-1061 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -8 (-15 -3330 ((-777) |#1|)) (-15 -3318 ((-777) |#1|)) (-15 -1548 ((-112) |#1|)) (-15 -3493 ((-112) |#1|)) (-15 -1424 ((-112) |#1|)) (-15 -1407 ((-112) |#1|))) (-1062 |#2| |#3| |#4| |#5| |#6|) (-777) (-777) (-1058) (-240 |#3| |#4|) (-240 |#2| |#4|)) (T -1061))
NIL
-(-10 -8 (-15 -3328 ((-777) |#1|)) (-15 -3316 ((-777) |#1|)) (-15 -2841 ((-112) |#1|)) (-15 -1735 ((-112) |#1|)) (-15 -3285 ((-112) |#1|)) (-15 -4253 ((-112) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1735 (((-112) $) 56)) (-3990 (((-3 $ "failed") $ $) 20)) (-4253 (((-112) $) 58)) (-4302 (((-112) $ (-777)) 66)) (-1705 (($) 18 T CONST)) (-4089 (($ $) 39 (|has| |#3| (-311)))) (-2219 ((|#4| $ (-570)) 44)) (-4006 (((-777) $) 38 (|has| |#3| (-562)))) (-3820 ((|#3| $ (-570) (-570)) 46)) (-3627 (((-650 |#3|) $) 73 (|has| $ (-6 -4449)))) (-2206 (((-777) $) 37 (|has| |#3| (-562)))) (-2123 (((-650 |#5|) $) 36 (|has| |#3| (-562)))) (-3316 (((-777) $) 50)) (-3328 (((-777) $) 49)) (-2929 (((-112) $ (-777)) 65)) (-4133 (((-570) $) 54)) (-2877 (((-570) $) 52)) (-2752 (((-650 |#3|) $) 74 (|has| $ (-6 -4449)))) (-4108 (((-112) |#3| $) 76 (-12 (|has| |#3| (-1109)) (|has| $ (-6 -4449))))) (-1552 (((-570) $) 53)) (-1732 (((-570) $) 51)) (-2571 (($ (-650 (-650 |#3|))) 59)) (-1502 (($ (-1 |#3| |#3|) $) 69 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#3| |#3|) $) 68) (($ (-1 |#3| |#3| |#3|) $ $) 42)) (-3575 (((-650 (-650 |#3|)) $) 48)) (-3231 (((-112) $ (-777)) 64)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ |#3|) 41 (|has| |#3| (-562)))) (-3642 (((-112) (-1 (-112) |#3|) $) 71 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 60)) (-2017 (((-112) $) 63)) (-2380 (($) 62)) (-1941 ((|#3| $ (-570) (-570)) 47) ((|#3| $ (-570) (-570) |#3|) 45)) (-3285 (((-112) $) 57)) (-3584 (((-777) |#3| $) 75 (-12 (|has| |#3| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#3|) $) 72 (|has| $ (-6 -4449)))) (-3951 (($ $) 61)) (-1508 ((|#5| $ (-570)) 43)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-4371 (((-112) (-1 (-112) |#3|) $) 70 (|has| $ (-6 -4449)))) (-2841 (((-112) $) 55)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#3|) 40 (|has| |#3| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#3| $) 27) (($ $ |#3|) 31)) (-2569 (((-777) $) 67 (|has| $ (-6 -4449)))))
+(-10 -8 (-15 -3330 ((-777) |#1|)) (-15 -3318 ((-777) |#1|)) (-15 -1548 ((-112) |#1|)) (-15 -3493 ((-112) |#1|)) (-15 -1424 ((-112) |#1|)) (-15 -1407 ((-112) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3493 (((-112) $) 56)) (-1966 (((-3 $ "failed") $ $) 20)) (-1407 (((-112) $) 58)) (-1932 (((-112) $ (-777)) 66)) (-3195 (($) 18 T CONST)) (-3610 (($ $) 39 (|has| |#3| (-311)))) (-1494 ((|#4| $ (-570)) 44)) (-4009 (((-777) $) 38 (|has| |#3| (-562)))) (-3824 ((|#3| $ (-570) (-570)) 46)) (-3630 (((-650 |#3|) $) 73 (|has| $ (-6 -4452)))) (-1330 (((-777) $) 37 (|has| |#3| (-562)))) (-3017 (((-650 |#5|) $) 36 (|has| |#3| (-562)))) (-3318 (((-777) $) 50)) (-3330 (((-777) $) 49)) (-2317 (((-112) $ (-777)) 65)) (-2822 (((-570) $) 54)) (-1943 (((-570) $) 52)) (-2052 (((-650 |#3|) $) 74 (|has| $ (-6 -4452)))) (-3767 (((-112) |#3| $) 76 (-12 (|has| |#3| (-1109)) (|has| $ (-6 -4452))))) (-2278 (((-570) $) 53)) (-3461 (((-570) $) 51)) (-2572 (($ (-650 (-650 |#3|))) 59)) (-1503 (($ (-1 |#3| |#3|) $) 69 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#3| |#3|) $) 68) (($ (-1 |#3| |#3| |#3|) $ $) 42)) (-2309 (((-650 (-650 |#3|)) $) 48)) (-2193 (((-112) $ (-777)) 64)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ |#3|) 41 (|has| |#3| (-562)))) (-1627 (((-112) (-1 (-112) |#3|) $) 71 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 60)) (-4283 (((-112) $) 63)) (-2656 (($) 62)) (-1942 ((|#3| $ (-570) (-570)) 47) ((|#3| $ (-570) (-570) |#3|) 45)) (-1424 (((-112) $) 57)) (-3587 (((-777) |#3| $) 75 (-12 (|has| |#3| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#3|) $) 72 (|has| $ (-6 -4452)))) (-3954 (($ $) 61)) (-3057 ((|#5| $ (-570)) 43)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-4379 (((-112) (-1 (-112) |#3|) $) 70 (|has| $ (-6 -4452)))) (-1548 (((-112) $) 55)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#3|) 40 (|has| |#3| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#3| $) 27) (($ $ |#3|) 31)) (-2570 (((-777) $) 67 (|has| $ (-6 -4452)))))
(((-1062 |#1| |#2| |#3| |#4| |#5|) (-141) (-777) (-777) (-1058) (-240 |t#2| |t#3|) (-240 |t#1| |t#3|)) (T -1062))
-((-1356 (*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)))) (-2571 (*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)))) (-4253 (*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)))) (-3285 (*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)))) (-1735 (*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)))) (-2841 (*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)))) (-4133 (*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)))) (-1552 (*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)))) (-2877 (*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)))) (-1732 (*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)))) (-3316 (*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)))) (-3328 (*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)))) (-3575 (*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))))) (-1941 (*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)))) (-3820 (*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)))) (-1941 (*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)))) (-2219 (*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)))) (-1508 (*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)))) (-1356 (*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)))) (-2547 (*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)))) (-3122 (*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)))) (-4089 (*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)))) (-4006 (*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)))) (-2206 (*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)))) (-2123 (*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 -2571 ($ (-650 (-650 |t#3|)))) (-15 -4253 ((-112) $)) (-15 -3285 ((-112) $)) (-15 -1735 ((-112) $)) (-15 -2841 ((-112) $)) (-15 -4133 ((-570) $)) (-15 -1552 ((-570) $)) (-15 -2877 ((-570) $)) (-15 -1732 ((-570) $)) (-15 -3316 ((-777) $)) (-15 -3328 ((-777) $)) (-15 -3575 ((-650 (-650 |t#3|)) $)) (-15 -1941 (|t#3| $ (-570) (-570))) (-15 -3820 (|t#3| $ (-570) (-570))) (-15 -1941 (|t#3| $ (-570) (-570) |t#3|)) (-15 -2219 (|t#4| $ (-570))) (-15 -1508 (|t#5| $ (-570))) (-15 -1356 ($ (-1 |t#3| |t#3|) $)) (-15 -1356 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-562)) (-15 -2547 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-368)) (-15 -3122 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-311)) (-15 -4089 ($ $)) |%noBranch|) (IF (|has| |t#3| (-562)) (PROGN (-15 -4006 ((-777) $)) (-15 -2206 ((-777) $)) (-15 -2123 ((-650 |t#5|) $))) |%noBranch|)))
+((-1357 (*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)))) (-2572 (*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)))) (-1407 (*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)))) (-1424 (*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)))) (-3493 (*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)))) (-1548 (*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)))) (-2822 (*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)))) (-2278 (*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)))) (-1943 (*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)))) (-3461 (*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)))) (-3318 (*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)))) (-3330 (*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)))) (-2309 (*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))))) (-1942 (*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)))) (-3824 (*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)))) (-1942 (*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)))) (-1494 (*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)))) (-3057 (*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)))) (-1357 (*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)))) (-2548 (*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)))) (-3125 (*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)))) (-3610 (*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)))) (-4009 (*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)))) (-1330 (*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)))) (-3017 (*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 -4452) (IF (|has| |t#3| (-174)) (-6 (-723 |t#3|)) |%noBranch|) (-15 -2572 ($ (-650 (-650 |t#3|)))) (-15 -1407 ((-112) $)) (-15 -1424 ((-112) $)) (-15 -3493 ((-112) $)) (-15 -1548 ((-112) $)) (-15 -2822 ((-570) $)) (-15 -2278 ((-570) $)) (-15 -1943 ((-570) $)) (-15 -3461 ((-570) $)) (-15 -3318 ((-777) $)) (-15 -3330 ((-777) $)) (-15 -2309 ((-650 (-650 |t#3|)) $)) (-15 -1942 (|t#3| $ (-570) (-570))) (-15 -3824 (|t#3| $ (-570) (-570))) (-15 -1942 (|t#3| $ (-570) (-570) |t#3|)) (-15 -1494 (|t#4| $ (-570))) (-15 -3057 (|t#5| $ (-570))) (-15 -1357 ($ (-1 |t#3| |t#3|) $)) (-15 -1357 ($ (-1 |t#3| |t#3| |t#3|) $ $)) (IF (|has| |t#3| (-562)) (-15 -2548 ((-3 $ "failed") $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-368)) (-15 -3125 ($ $ |t#3|)) |%noBranch|) (IF (|has| |t#3| (-311)) (-15 -3610 ($ $)) |%noBranch|) (IF (|has| |t#3| (-562)) (PROGN (-15 -4009 ((-777) $)) (-15 -1330 ((-777) $)) (-15 -3017 ((-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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1735 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-4253 (((-112) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-1705 (($) NIL T CONST)) (-4089 (($ $) 47 (|has| |#3| (-311)))) (-2219 (((-242 |#2| |#3|) $ (-570)) 36)) (-1335 (($ (-695 |#3|)) 45)) (-4006 (((-777) $) 49 (|has| |#3| (-562)))) (-3820 ((|#3| $ (-570) (-570)) NIL)) (-3627 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-2206 (((-777) $) 51 (|has| |#3| (-562)))) (-2123 (((-650 (-242 |#1| |#3|)) $) 55 (|has| |#3| (-562)))) (-3316 (((-777) $) NIL)) (-3328 (((-777) $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-4133 (((-570) $) NIL)) (-2877 (((-570) $) NIL)) (-2752 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-1552 (((-570) $) NIL)) (-1732 (((-570) $) NIL)) (-2571 (($ (-650 (-650 |#3|))) 31)) (-1502 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-3575 (((-650 (-650 |#3|)) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2547 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-562)))) (-3642 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#3| $ (-570) (-570)) NIL) ((|#3| $ (-570) (-570) |#3|) NIL)) (-2951 (((-135)) 59 (|has| |#3| (-368)))) (-3285 (((-112) $) NIL)) (-3584 (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109)))) (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) 65 (|has| |#3| (-620 (-542))))) (-1508 (((-242 |#1| |#3|) $ (-570)) 40)) (-3799 (((-868) $) 19) (((-695 |#3|) $) 42)) (-2335 (((-112) $ $) NIL)) (-4371 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-2841 (((-112) $) NIL)) (-1861 (($) 16 T CONST)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-2569 (((-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 -1335 ($ (-695 |#3|))))) (-777) (-777) (-1058)) (T -1063))
-((-1335 (*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 -1335 ($ (-695 |#3|)))))
-((-3624 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 36)) (-1356 ((|#10| (-1 |#7| |#3|) |#6|) 34)))
-(((-1064 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -1356 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3624 (|#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))
-((-3624 (*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)))) (-1356 (*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 -1356 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3624 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ |#1|) 27)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3493 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-1407 (((-112) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3195 (($) NIL T CONST)) (-3610 (($ $) 47 (|has| |#3| (-311)))) (-1494 (((-242 |#2| |#3|) $ (-570)) 36)) (-1898 (($ (-695 |#3|)) 45)) (-4009 (((-777) $) 49 (|has| |#3| (-562)))) (-3824 ((|#3| $ (-570) (-570)) NIL)) (-3630 (((-650 |#3|) $) NIL (|has| $ (-6 -4452)))) (-1330 (((-777) $) 51 (|has| |#3| (-562)))) (-3017 (((-650 (-242 |#1| |#3|)) $) 55 (|has| |#3| (-562)))) (-3318 (((-777) $) NIL)) (-3330 (((-777) $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2822 (((-570) $) NIL)) (-1943 (((-570) $) NIL)) (-2052 (((-650 |#3|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#3| (-1109))))) (-2278 (((-570) $) NIL)) (-3461 (((-570) $) NIL)) (-2572 (($ (-650 (-650 |#3|))) 31)) (-1503 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) NIL)) (-2309 (((-650 (-650 |#3|)) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2548 (((-3 $ "failed") $ |#3|) NIL (|has| |#3| (-562)))) (-1627 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#3| $ (-570) (-570)) NIL) ((|#3| $ (-570) (-570) |#3|) NIL)) (-2517 (((-135)) 59 (|has| |#3| (-368)))) (-1424 (((-112) $) NIL)) (-3587 (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#3| (-1109)))) (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) 65 (|has| |#3| (-620 (-542))))) (-3057 (((-242 |#1| |#3|) $ (-570)) 40)) (-3802 (((-868) $) 19) (((-695 |#3|) $) 42)) (-3359 (((-112) $ $) NIL)) (-4379 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452)))) (-1548 (((-112) $) NIL)) (-1862 (($) 16 T CONST)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#3| $) NIL) (($ $ |#3|) NIL)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-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 -1898 ($ (-695 |#3|))))) (-777) (-777) (-1058)) (T -1063))
+((-1898 (*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 -1898 ($ (-695 |#3|)))))
+((-3627 ((|#7| (-1 |#7| |#3| |#7|) |#6| |#7|) 36)) (-1357 ((|#10| (-1 |#7| |#3|) |#6|) 34)))
+(((-1064 |#1| |#2| |#3| |#4| |#5| |#6| |#7| |#8| |#9| |#10|) (-10 -7 (-15 -1357 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3627 (|#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))
+((-3627 (*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)))) (-1357 (*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 -1357 (|#10| (-1 |#7| |#3|) |#6|)) (-15 -3627 (|#7| (-1 |#7| |#3| |#7|) |#6| |#7|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2798 (((-1186) $) 11)) (-2934 ((|#1| $) 12)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3530 (($ (-1186) |#1|) 10)) (-3799 (((-868) $) 22 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3022 (((-112) $ $) 17 (|has| |#1| (-1109)))))
-(((-1066 |#1| |#2|) (-13 (-1227) (-10 -8 (-15 -3530 ($ (-1186) |#1|)) (-15 -2798 ((-1186) $)) (-15 -2934 (|#1| $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1102 |#2|) (-1227)) (T -1066))
-((-3530 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-4 *4 (-1227)) (-5 *1 (-1066 *3 *4)) (-4 *3 (-1102 *4)))) (-2798 (*1 *2 *1) (-12 (-4 *4 (-1227)) (-5 *2 (-1186)) (-5 *1 (-1066 *3 *4)) (-4 *3 (-1102 *4)))) (-2934 (*1 *2 *1) (-12 (-4 *2 (-1102 *3)) (-5 *1 (-1066 *2 *3)) (-4 *3 (-1227)))))
-(-13 (-1227) (-10 -8 (-15 -3530 ($ (-1186) |#1|)) (-15 -2798 ((-1186) $)) (-15 -2934 (|#1| $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2800 (((-1186) $) 11)) (-2936 ((|#1| $) 12)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3533 (($ (-1186) |#1|) 10)) (-3802 (((-868) $) 22 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3025 (((-112) $ $) 17 (|has| |#1| (-1109)))))
+(((-1066 |#1| |#2|) (-13 (-1227) (-10 -8 (-15 -3533 ($ (-1186) |#1|)) (-15 -2800 ((-1186) $)) (-15 -2936 (|#1| $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1102 |#2|) (-1227)) (T -1066))
+((-3533 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-4 *4 (-1227)) (-5 *1 (-1066 *3 *4)) (-4 *3 (-1102 *4)))) (-2800 (*1 *2 *1) (-12 (-4 *4 (-1227)) (-5 *2 (-1186)) (-5 *1 (-1066 *3 *4)) (-4 *3 (-1102 *4)))) (-2936 (*1 *2 *1) (-12 (-4 *2 (-1102 *3)) (-5 *1 (-1066 *2 *3)) (-4 *3 (-1227)))))
+(-13 (-1227) (-10 -8 (-15 -3533 ($ (-1186) |#1|)) (-15 -2800 ((-1186) $)) (-15 -2936 (|#1| $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1447 (($ $) 17)) (-1529 (($ $) 25)) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 55)) (-2959 (($ $) 27)) (-2564 (($ $) 12)) (-3665 (($ $) 43)) (-1425 (((-384) $) NIL) (((-227) $) NIL) (((-899 (-384)) $) 36)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 31) (($ (-570)) NIL) (($ (-413 (-570))) 31)) (-3499 (((-777)) 9)) (-1313 (($ $) 45)))
-(((-1068 |#1|) (-10 -8 (-15 -1529 (|#1| |#1|)) (-15 -1447 (|#1| |#1|)) (-15 -2564 (|#1| |#1|)) (-15 -3665 (|#1| |#1|)) (-15 -1313 (|#1| |#1|)) (-15 -2959 (|#1| |#1|)) (-15 -2842 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| (-570))) (-15 -1425 ((-227) |#1|)) (-15 -1425 ((-384) |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| |#1|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-1069)) (T -1068))
-((-3499 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1068 *3)) (-4 *3 (-1069)))))
-(-10 -8 (-15 -1529 (|#1| |#1|)) (-15 -1447 (|#1| |#1|)) (-15 -2564 (|#1| |#1|)) (-15 -3665 (|#1| |#1|)) (-15 -1313 (|#1| |#1|)) (-15 -2959 (|#1| |#1|)) (-15 -2842 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| (-570))) (-15 -1425 ((-227) |#1|)) (-15 -1425 ((-384) |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| |#1|)) (-15 -3499 ((-777))) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1733 (((-570) $) 97)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-1447 (($ $) 95)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3814 (($ $) 105)) (-3473 (((-112) $ $) 65)) (-4395 (((-570) $) 122)) (-1705 (($) 18 T CONST)) (-1529 (($ $) 94)) (-4380 (((-3 (-570) "failed") $) 110) (((-3 (-413 (-570)) "failed") $) 107)) (-3216 (((-570) $) 111) (((-413 (-570)) $) 108)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-3618 (((-112) $) 79)) (-3903 (((-112) $) 120)) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 101)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 104)) (-2959 (($ $) 100)) (-1479 (((-112) $) 121)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3466 (($ $ $) 119)) (-2800 (($ $ $) 118)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-2564 (($ $) 96)) (-3665 (($ $) 98)) (-3801 (((-424 $) $) 82)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-1425 (((-384) $) 113) (((-227) $) 112) (((-899 (-384)) $) 102)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-570)) 109) (($ (-413 (-570))) 106)) (-3499 (((-777)) 32 T CONST)) (-1313 (($ $) 99)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-2622 (($ $) 123)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3072 (((-112) $ $) 116)) (-3052 (((-112) $ $) 115)) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 117)) (-3042 (((-112) $ $) 114)) (-3122 (($ $ $) 73)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77) (($ $ (-413 (-570))) 103)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75)))
+((-1622 (($ $) 17)) (-2048 (($ $) 25)) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 55)) (-4399 (($ $) 27)) (-3889 (($ $) 12)) (-1920 (($ $) 43)) (-1426 (((-384) $) NIL) (((-227) $) NIL) (((-899 (-384)) $) 36)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL) (($ (-413 (-570))) 31) (($ (-570)) NIL) (($ (-413 (-570))) 31)) (-2851 (((-777)) 9)) (-1918 (($ $) 45)))
+(((-1068 |#1|) (-10 -8 (-15 -2048 (|#1| |#1|)) (-15 -1622 (|#1| |#1|)) (-15 -3889 (|#1| |#1|)) (-15 -1920 (|#1| |#1|)) (-15 -1918 (|#1| |#1|)) (-15 -4399 (|#1| |#1|)) (-15 -1557 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| (-570))) (-15 -1426 ((-227) |#1|)) (-15 -1426 ((-384) |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| |#1|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-1069)) (T -1068))
+((-2851 (*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1068 *3)) (-4 *3 (-1069)))))
+(-10 -8 (-15 -2048 (|#1| |#1|)) (-15 -1622 (|#1| |#1|)) (-15 -3889 (|#1| |#1|)) (-15 -1920 (|#1| |#1|)) (-15 -1918 (|#1| |#1|)) (-15 -4399 (|#1| |#1|)) (-15 -1557 ((-896 (-384) |#1|) |#1| (-899 (-384)) (-896 (-384) |#1|))) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| (-570))) (-15 -1426 ((-227) |#1|)) (-15 -1426 ((-384) |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| |#1|)) (-15 -2851 ((-777))) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3472 (((-570) $) 97)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1622 (($ $) 95)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3817 (($ $) 105)) (-3765 (((-112) $ $) 65)) (-3408 (((-570) $) 122)) (-3195 (($) 18 T CONST)) (-2048 (($ $) 94)) (-4383 (((-3 (-570) "failed") $) 110) (((-3 (-413 (-570)) "failed") $) 107)) (-3220 (((-570) $) 111) (((-413 (-570)) $) 108)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-1336 (((-112) $) 79)) (-2346 (((-112) $) 120)) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 101)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 104)) (-4399 (($ $) 100)) (-2788 (((-112) $) 121)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-3469 (($ $ $) 119)) (-2472 (($ $ $) 118)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3889 (($ $) 96)) (-1920 (($ $) 98)) (-3804 (((-424 $) $) 82)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-1426 (((-384) $) 113) (((-227) $) 112) (((-899 (-384)) $) 102)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ (-570)) 109) (($ (-413 (-570))) 106)) (-2851 (((-777)) 32 T CONST)) (-1918 (($ $) 99)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-3231 (($ $) 123)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3075 (((-112) $ $) 116)) (-3055 (((-112) $ $) 115)) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 117)) (-3045 (((-112) $ $) 114)) (-3125 (($ $ $) 73)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2622 (*1 *1 *1) (-4 *1 (-1069))) (-2959 (*1 *1 *1) (-4 *1 (-1069))) (-1313 (*1 *1 *1) (-4 *1 (-1069))) (-3665 (*1 *1 *1) (-4 *1 (-1069))) (-1733 (*1 *2 *1) (-12 (-4 *1 (-1069)) (-5 *2 (-570)))) (-2564 (*1 *1 *1) (-4 *1 (-1069))) (-1447 (*1 *1 *1) (-4 *1 (-1069))) (-1529 (*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 -2959 ($ $)) (-15 -1313 ($ $)) (-15 -3665 ($ $)) (-15 -1733 ((-570) $)) (-15 -2564 ($ $)) (-15 -1447 ($ $)) (-15 -1529 ($ $)) (-15 -2622 ($ $))))
+((-3231 (*1 *1 *1) (-4 *1 (-1069))) (-4399 (*1 *1 *1) (-4 *1 (-1069))) (-1918 (*1 *1 *1) (-4 *1 (-1069))) (-1920 (*1 *1 *1) (-4 *1 (-1069))) (-3472 (*1 *2 *1) (-12 (-4 *1 (-1069)) (-5 *2 (-570)))) (-3889 (*1 *1 *1) (-4 *1 (-1069))) (-1622 (*1 *1 *1) (-4 *1 (-1069))) (-2048 (*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 -4399 ($ $)) (-15 -1918 ($ $)) (-15 -1920 ($ $)) (-15 -3472 ((-570) $)) (-15 -3889 ($ $)) (-15 -1622 ($ $)) (-15 -2048 ($ $)) (-15 -3231 ($ $))))
(((-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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) |#2| $) 26)) (-3510 ((|#1| $) 10)) (-4395 (((-570) |#2| $) 116)) (-1979 (((-3 $ "failed") |#2| (-928)) 75)) (-4410 ((|#1| $) 31)) (-1701 ((|#1| |#2| $ |#1|) 40)) (-1401 (($ $) 28)) (-2875 (((-3 |#2| "failed") |#2| $) 111)) (-3903 (((-112) |#2| $) NIL)) (-1479 (((-112) |#2| $) NIL)) (-4167 (((-112) |#2| $) 27)) (-1765 ((|#1| $) 117)) (-4397 ((|#1| $) 30)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2755 ((|#2| $) 102)) (-3799 (((-868) $) 92)) (-2335 (((-112) $ $) NIL)) (-3167 ((|#1| |#2| $ |#1|) 41)) (-3043 (((-650 $) |#2|) 77)) (-3022 (((-112) $ $) 97)))
-(((-1070 |#1| |#2|) (-13 (-1077 |#1| |#2|) (-10 -8 (-15 -4397 (|#1| $)) (-15 -4410 (|#1| $)) (-15 -3510 (|#1| $)) (-15 -1765 (|#1| $)) (-15 -1401 ($ $)) (-15 -4167 ((-112) |#2| $)) (-15 -1701 (|#1| |#2| $ |#1|)))) (-13 (-854) (-368)) (-1253 |#1|)) (T -1070))
-((-1701 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-4397 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-4410 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-3510 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-1765 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-1401 (*1 *1 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-4167 (*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 -4397 (|#1| $)) (-15 -4410 (|#1| $)) (-15 -3510 (|#1| $)) (-15 -1765 (|#1| $)) (-15 -1401 ($ $)) (-15 -4167 ((-112) |#2| $)) (-15 -1701 (|#1| |#2| $ |#1|))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3687 (($ $ $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1520 (($ $ $ $) NIL)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-4395 (((-570) $) NIL)) (-3160 (($ $ $) NIL)) (-1705 (($) NIL T CONST)) (-2671 (($ (-1186)) 10) (($ (-570)) 7)) (-4380 (((-3 (-570) "failed") $) NIL)) (-3216 (((-570) $) NIL)) (-2506 (($ $ $) NIL)) (-4196 (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2805 (((-3 (-413 (-570)) "failed") $) NIL)) (-3242 (((-112) $) NIL)) (-2068 (((-413 (-570)) $) NIL)) (-3446 (($) NIL) (($ $) NIL)) (-2518 (($ $ $) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4228 (($ $ $ $) NIL)) (-2702 (($ $ $) NIL)) (-3903 (((-112) $) NIL)) (-4071 (($ $ $) NIL)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4346 (((-112) $) NIL)) (-2110 (((-112) $) NIL)) (-2619 (((-3 $ "failed") $) NIL)) (-1479 (((-112) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2120 (($ $ $ $) NIL)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-2735 (($ $) NIL)) (-1355 (($ $) NIL)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-2784 (($ $ $) NIL)) (-2438 (($) NIL T CONST)) (-3615 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4365 (($ $) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3273 (((-112) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-3547 (($ $ (-777)) NIL) (($ $) NIL)) (-2574 (($ $) NIL)) (-3951 (($ $) NIL)) (-1425 (((-570) $) 16) (((-542) $) NIL) (((-899 (-570)) $) NIL) (((-384) $) NIL) (((-227) $) NIL) (($ (-1186)) 9)) (-3799 (((-868) $) 23) (($ (-570)) 6) (($ $) NIL) (($ (-570)) 6)) (-3499 (((-777)) NIL T CONST)) (-2282 (((-112) $ $) NIL)) (-2858 (($ $ $) NIL)) (-2335 (((-112) $ $) NIL)) (-4406 (($) NIL)) (-2029 (((-112) $ $) NIL)) (-1613 (($ $ $ $) NIL)) (-2622 (($ $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)) (-3111 (($ $) 22) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2671 ($ (-1186))) (-15 -2671 ($ (-570)))))) (T -1071))
-((-2671 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1071)))) (-2671 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1071)))))
-(-13 (-551) (-624 (-1186)) (-10 -8 (-6 -4436) (-6 -4441) (-6 -4437) (-15 -2671 ($ (-1186))) (-15 -2671 ($ (-570)))))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL)) (-3851 (((-1282) $ (-1186) (-1186)) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-4303 (($) 9)) (-3932 (((-52) $ (-1186) (-52)) NIL)) (-3121 (($ $) 32)) (-4386 (($ $) 30)) (-1728 (($ $) 29)) (-3289 (($ $) 31)) (-4076 (($ $) 35)) (-4312 (($ $) 36)) (-1816 (($ $) 28)) (-3955 (($ $) 33)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) 27 (|has| $ (-6 -4449)))) (-2496 (((-3 (-52) "failed") (-1186) $) 43)) (-1705 (($) NIL T CONST)) (-3067 (($) 7)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-3249 (($ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) 53 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-3 (-52) "failed") (-1186) $) NIL)) (-1741 (($ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449)))) (-2052 (((-3 (-1168) "failed") $ (-1168) (-570)) 72)) (-1517 (((-52) $ (-1186) (-52)) NIL (|has| $ (-6 -4450)))) (-3820 (((-52) $ (-1186)) NIL)) (-3627 (((-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-1186) $) NIL (|has| (-1186) (-856)))) (-2752 (((-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) 38 (|has| $ (-6 -4449))) (((-650 (-52)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-1460 (((-1186) $) NIL (|has| (-1186) (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4450))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2911 (((-650 (-1186)) $) NIL)) (-3245 (((-112) (-1186) $) NIL)) (-1490 (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL)) (-1385 (($ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) 46)) (-1805 (((-650 (-1186)) $) NIL)) (-3939 (((-112) (-1186) $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2163 (((-384) $ (-1186)) 52)) (-1656 (((-650 (-1168)) $ (-1168)) 74)) (-3543 (((-52) $) NIL (|has| (-1186) (-856)))) (-1790 (((-3 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) "failed") (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL)) (-2147 (($ $ (-52)) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))))) NIL (-12 (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) NIL (-12 (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109))))) (-3700 (((-650 (-52)) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 (((-52) $ (-1186)) NIL) (((-52) $ (-1186) (-52)) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL)) (-2816 (($ $ (-1186)) 54)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) 40)) (-2584 (($ $ $) 41)) (-3799 (((-868) $) NIL (-2892 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-619 (-868)))))) (-2879 (($ $ (-1186) (-384)) 50)) (-4011 (($ $ (-1186) (-384)) 51)) (-2335 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-52) (-1109)) (|has| (-2 (|:| -2106 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1072) (-13 (-1203 (-1186) (-52)) (-10 -8 (-15 -2584 ($ $ $)) (-15 -3067 ($)) (-15 -1816 ($ $)) (-15 -1728 ($ $)) (-15 -4386 ($ $)) (-15 -3289 ($ $)) (-15 -3955 ($ $)) (-15 -3121 ($ $)) (-15 -4076 ($ $)) (-15 -4312 ($ $)) (-15 -2879 ($ $ (-1186) (-384))) (-15 -4011 ($ $ (-1186) (-384))) (-15 -2163 ((-384) $ (-1186))) (-15 -1656 ((-650 (-1168)) $ (-1168))) (-15 -2816 ($ $ (-1186))) (-15 -4303 ($)) (-15 -2052 ((-3 (-1168) "failed") $ (-1168) (-570))) (-6 -4449)))) (T -1072))
-((-2584 (*1 *1 *1 *1) (-5 *1 (-1072))) (-3067 (*1 *1) (-5 *1 (-1072))) (-1816 (*1 *1 *1) (-5 *1 (-1072))) (-1728 (*1 *1 *1) (-5 *1 (-1072))) (-4386 (*1 *1 *1) (-5 *1 (-1072))) (-3289 (*1 *1 *1) (-5 *1 (-1072))) (-3955 (*1 *1 *1) (-5 *1 (-1072))) (-3121 (*1 *1 *1) (-5 *1 (-1072))) (-4076 (*1 *1 *1) (-5 *1 (-1072))) (-4312 (*1 *1 *1) (-5 *1 (-1072))) (-2879 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))) (-4011 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))) (-2163 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-384)) (-5 *1 (-1072)))) (-1656 (*1 *2 *1 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1072)) (-5 *3 (-1168)))) (-2816 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1072)))) (-4303 (*1 *1) (-5 *1 (-1072))) (-2052 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-1072)))))
-(-13 (-1203 (-1186) (-52)) (-10 -8 (-15 -2584 ($ $ $)) (-15 -3067 ($)) (-15 -1816 ($ $)) (-15 -1728 ($ $)) (-15 -4386 ($ $)) (-15 -3289 ($ $)) (-15 -3955 ($ $)) (-15 -3121 ($ $)) (-15 -4076 ($ $)) (-15 -4312 ($ $)) (-15 -2879 ($ $ (-1186) (-384))) (-15 -4011 ($ $ (-1186) (-384))) (-15 -2163 ((-384) $ (-1186))) (-15 -1656 ((-650 (-1168)) $ (-1168))) (-15 -2816 ($ $ (-1186))) (-15 -4303 ($)) (-15 -2052 ((-3 (-1168) "failed") $ (-1168) (-570))) (-6 -4449)))
-((-1602 (($ $) 46)) (-3068 (((-112) $ $) 82)) (-4380 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-959 (-413 (-570)))) 251) (((-3 $ "failed") (-959 (-570))) 250) (((-3 $ "failed") (-959 |#2|)) 253)) (-3216 ((|#2| $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL) ((|#4| $) NIL) (($ (-959 (-413 (-570)))) 239) (($ (-959 (-570))) 235) (($ (-959 |#2|)) 255)) (-1956 (($ $) NIL) (($ $ |#4|) 44)) (-2862 (((-112) $ $) 131) (((-112) $ (-650 $)) 135)) (-2248 (((-112) $) 60)) (-3640 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 125)) (-2917 (($ $) 160)) (-2794 (($ $) 156)) (-1970 (($ $) 155)) (-3166 (($ $ $) 87) (($ $ $ |#4|) 92)) (-1453 (($ $ $) 90) (($ $ $ |#4|) 94)) (-3586 (((-112) $ $) 143) (((-112) $ (-650 $)) 144)) (-1724 ((|#4| $) 32)) (-2101 (($ $ $) 128)) (-4044 (((-112) $) 59)) (-2612 (((-777) $) 35)) (-2246 (($ $) 174)) (-1624 (($ $) 171)) (-1731 (((-650 $) $) 72)) (-2292 (($ $) 62)) (-2628 (($ $) 167)) (-1432 (((-650 $) $) 69)) (-3686 (($ $) 64)) (-1927 ((|#2| $) NIL) (($ $ |#4|) 39)) (-3803 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1521 (-777))) $ $) 130)) (-2944 (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $) 126) (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $ |#4|) 127)) (-3430 (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -3691 $)) $ $) 121) (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -3691 $)) $ $ |#4|) 123)) (-2924 (($ $ $) 97) (($ $ $ |#4|) 106)) (-1559 (($ $ $) 98) (($ $ $ |#4|) 107)) (-2703 (((-650 $) $) 54)) (-1491 (((-112) $ $) 140) (((-112) $ (-650 $)) 141)) (-2520 (($ $ $) 116)) (-2438 (($ $) 37)) (-2971 (((-112) $ $) 80)) (-2035 (((-112) $ $) 136) (((-112) $ (-650 $)) 138)) (-4201 (($ $ $) 112)) (-1311 (($ $) 41)) (-1942 ((|#2| |#2| $) 164) (($ (-650 $)) NIL) (($ $ $) NIL)) (-4383 (($ $ |#2|) NIL) (($ $ $) 153)) (-1414 (($ $ |#2|) 148) (($ $ $) 151)) (-1340 (($ $) 49)) (-2485 (($ $) 55)) (-1425 (((-899 (-384)) $) NIL) (((-899 (-570)) $) NIL) (((-542) $) NIL) (($ (-959 (-413 (-570)))) 241) (($ (-959 (-570))) 237) (($ (-959 |#2|)) 252) (((-1168) $) 279) (((-959 |#2|) $) 184)) (-3799 (((-868) $) 29) (($ (-570)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-959 |#2|) $) 185) (($ (-413 (-570))) NIL) (($ $) NIL)) (-4280 (((-3 (-112) "failed") $ $) 79)))
-(((-1073 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3799 (|#1| |#1|)) (-15 -1942 (|#1| |#1| |#1|)) (-15 -1942 (|#1| (-650 |#1|))) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 ((-959 |#2|) |#1|)) (-15 -1425 ((-959 |#2|) |#1|)) (-15 -1425 ((-1168) |#1|)) (-15 -2246 (|#1| |#1|)) (-15 -1624 (|#1| |#1|)) (-15 -2628 (|#1| |#1|)) (-15 -2917 (|#1| |#1|)) (-15 -1942 (|#2| |#2| |#1|)) (-15 -4383 (|#1| |#1| |#1|)) (-15 -1414 (|#1| |#1| |#1|)) (-15 -4383 (|#1| |#1| |#2|)) (-15 -1414 (|#1| |#1| |#2|)) (-15 -2794 (|#1| |#1|)) (-15 -1970 (|#1| |#1|)) (-15 -1425 (|#1| (-959 |#2|))) (-15 -3216 (|#1| (-959 |#2|))) (-15 -4380 ((-3 |#1| "failed") (-959 |#2|))) (-15 -1425 (|#1| (-959 (-570)))) (-15 -3216 (|#1| (-959 (-570)))) (-15 -4380 ((-3 |#1| "failed") (-959 (-570)))) (-15 -1425 (|#1| (-959 (-413 (-570))))) (-15 -3216 (|#1| (-959 (-413 (-570))))) (-15 -4380 ((-3 |#1| "failed") (-959 (-413 (-570))))) (-15 -2520 (|#1| |#1| |#1|)) (-15 -4201 (|#1| |#1| |#1|)) (-15 -3803 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1521 (-777))) |#1| |#1|)) (-15 -2101 (|#1| |#1| |#1|)) (-15 -3640 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2944 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1| |#4|)) (-15 -2944 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -3430 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -3691 |#1|)) |#1| |#1| |#4|)) (-15 -3430 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -1559 (|#1| |#1| |#1| |#4|)) (-15 -2924 (|#1| |#1| |#1| |#4|)) (-15 -1559 (|#1| |#1| |#1|)) (-15 -2924 (|#1| |#1| |#1|)) (-15 -1453 (|#1| |#1| |#1| |#4|)) (-15 -3166 (|#1| |#1| |#1| |#4|)) (-15 -1453 (|#1| |#1| |#1|)) (-15 -3166 (|#1| |#1| |#1|)) (-15 -3586 ((-112) |#1| (-650 |#1|))) (-15 -3586 ((-112) |#1| |#1|)) (-15 -1491 ((-112) |#1| (-650 |#1|))) (-15 -1491 ((-112) |#1| |#1|)) (-15 -2035 ((-112) |#1| (-650 |#1|))) (-15 -2035 ((-112) |#1| |#1|)) (-15 -2862 ((-112) |#1| (-650 |#1|))) (-15 -2862 ((-112) |#1| |#1|)) (-15 -3068 ((-112) |#1| |#1|)) (-15 -2971 ((-112) |#1| |#1|)) (-15 -4280 ((-3 (-112) "failed") |#1| |#1|)) (-15 -1731 ((-650 |#1|) |#1|)) (-15 -1432 ((-650 |#1|) |#1|)) (-15 -3686 (|#1| |#1|)) (-15 -2292 (|#1| |#1|)) (-15 -2248 ((-112) |#1|)) (-15 -4044 ((-112) |#1|)) (-15 -1956 (|#1| |#1| |#4|)) (-15 -1927 (|#1| |#1| |#4|)) (-15 -2485 (|#1| |#1|)) (-15 -2703 ((-650 |#1|) |#1|)) (-15 -1340 (|#1| |#1|)) (-15 -1602 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -2438 (|#1| |#1|)) (-15 -2612 ((-777) |#1|)) (-15 -1724 (|#4| |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -3799 (|#1| |#4|)) (-15 -4380 ((-3 |#4| "failed") |#1|)) (-15 -3216 (|#4| |#1|)) (-15 -1927 (|#2| |#1|)) (-15 -1956 (|#1| |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-1074 |#2| |#3| |#4|) (-1058) (-799) (-856)) (T -1073))
-NIL
-(-10 -8 (-15 -3799 (|#1| |#1|)) (-15 -1942 (|#1| |#1| |#1|)) (-15 -1942 (|#1| (-650 |#1|))) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 ((-959 |#2|) |#1|)) (-15 -1425 ((-959 |#2|) |#1|)) (-15 -1425 ((-1168) |#1|)) (-15 -2246 (|#1| |#1|)) (-15 -1624 (|#1| |#1|)) (-15 -2628 (|#1| |#1|)) (-15 -2917 (|#1| |#1|)) (-15 -1942 (|#2| |#2| |#1|)) (-15 -4383 (|#1| |#1| |#1|)) (-15 -1414 (|#1| |#1| |#1|)) (-15 -4383 (|#1| |#1| |#2|)) (-15 -1414 (|#1| |#1| |#2|)) (-15 -2794 (|#1| |#1|)) (-15 -1970 (|#1| |#1|)) (-15 -1425 (|#1| (-959 |#2|))) (-15 -3216 (|#1| (-959 |#2|))) (-15 -4380 ((-3 |#1| "failed") (-959 |#2|))) (-15 -1425 (|#1| (-959 (-570)))) (-15 -3216 (|#1| (-959 (-570)))) (-15 -4380 ((-3 |#1| "failed") (-959 (-570)))) (-15 -1425 (|#1| (-959 (-413 (-570))))) (-15 -3216 (|#1| (-959 (-413 (-570))))) (-15 -4380 ((-3 |#1| "failed") (-959 (-413 (-570))))) (-15 -2520 (|#1| |#1| |#1|)) (-15 -4201 (|#1| |#1| |#1|)) (-15 -3803 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1521 (-777))) |#1| |#1|)) (-15 -2101 (|#1| |#1| |#1|)) (-15 -3640 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2944 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1| |#4|)) (-15 -2944 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -3430 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -3691 |#1|)) |#1| |#1| |#4|)) (-15 -3430 ((-2 (|:| -1452 |#1|) (|:| |gap| (-777)) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -1559 (|#1| |#1| |#1| |#4|)) (-15 -2924 (|#1| |#1| |#1| |#4|)) (-15 -1559 (|#1| |#1| |#1|)) (-15 -2924 (|#1| |#1| |#1|)) (-15 -1453 (|#1| |#1| |#1| |#4|)) (-15 -3166 (|#1| |#1| |#1| |#4|)) (-15 -1453 (|#1| |#1| |#1|)) (-15 -3166 (|#1| |#1| |#1|)) (-15 -3586 ((-112) |#1| (-650 |#1|))) (-15 -3586 ((-112) |#1| |#1|)) (-15 -1491 ((-112) |#1| (-650 |#1|))) (-15 -1491 ((-112) |#1| |#1|)) (-15 -2035 ((-112) |#1| (-650 |#1|))) (-15 -2035 ((-112) |#1| |#1|)) (-15 -2862 ((-112) |#1| (-650 |#1|))) (-15 -2862 ((-112) |#1| |#1|)) (-15 -3068 ((-112) |#1| |#1|)) (-15 -2971 ((-112) |#1| |#1|)) (-15 -4280 ((-3 (-112) "failed") |#1| |#1|)) (-15 -1731 ((-650 |#1|) |#1|)) (-15 -1432 ((-650 |#1|) |#1|)) (-15 -3686 (|#1| |#1|)) (-15 -2292 (|#1| |#1|)) (-15 -2248 ((-112) |#1|)) (-15 -4044 ((-112) |#1|)) (-15 -1956 (|#1| |#1| |#4|)) (-15 -1927 (|#1| |#1| |#4|)) (-15 -2485 (|#1| |#1|)) (-15 -2703 ((-650 |#1|) |#1|)) (-15 -1340 (|#1| |#1|)) (-15 -1602 (|#1| |#1|)) (-15 -1311 (|#1| |#1|)) (-15 -2438 (|#1| |#1|)) (-15 -2612 ((-777) |#1|)) (-15 -1724 (|#4| |#1|)) (-15 -1425 ((-542) |#1|)) (-15 -1425 ((-899 (-570)) |#1|)) (-15 -1425 ((-899 (-384)) |#1|)) (-15 -3799 (|#1| |#4|)) (-15 -4380 ((-3 |#4| "failed") |#1|)) (-15 -3216 (|#4| |#1|)) (-15 -1927 (|#2| |#1|)) (-15 -1956 (|#1| |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 |#3|) $) 112)) (-3775 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-3074 (($ $) 90 (|has| |#1| (-562)))) (-3475 (((-112) $) 92 (|has| |#1| (-562)))) (-3415 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-1602 (($ $) 273)) (-3068 (((-112) $ $) 259)) (-3990 (((-3 $ "failed") $ $) 20)) (-2022 (($ $ $) 218 (|has| |#1| (-562)))) (-1469 (((-650 $) $ $) 213 (|has| |#1| (-562)))) (-3924 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-4364 (($ $) 100 (|has| |#1| (-458)))) (-1652 (((-424 $) $) 99 (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-1705 (($) 18 T CONST)) (-4380 (((-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 (-2892 (-12 (-1795 (|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 (-2892 (-12 (-1795 (|has| |#1| (-38 (-413 (-570))))) (-1795 (|has| |#1| (-38 (-570)))) (|has| |#3| (-620 (-1186)))) (-12 (-1795 (|has| |#1| (-551))) (-1795 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (-1795 (|has| |#1| (-1001 (-570)))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))))) (-3216 ((|#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 (-2892 (-12 (-1795 (|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 (-2892 (-12 (-1795 (|has| |#1| (-38 (-413 (-570))))) (-1795 (|has| |#1| (-38 (-570)))) (|has| |#3| (-620 (-1186)))) (-12 (-1795 (|has| |#1| (-551))) (-1795 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (-1795 (|has| |#1| (-1001 (-570)))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))))) (-4322 (($ $ $ |#3|) 110 (|has| |#1| (-174))) (($ $ $) 214 (|has| |#1| (-562)))) (-1956 (($ $) 156) (($ $ |#3|) 268)) (-4196 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-2862 (((-112) $ $) 258) (((-112) $ (-650 $)) 257)) (-2875 (((-3 $ "failed") $) 37)) (-2248 (((-112) $) 266)) (-3640 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 238)) (-2917 (($ $) 207 (|has| |#1| (-458)))) (-3988 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1938 (((-650 $) $) 111)) (-3618 (((-112) $) 98 (|has| |#1| (-916)))) (-2794 (($ $) 223 (|has| |#1| (-562)))) (-1970 (($ $) 224 (|has| |#1| (-562)))) (-3166 (($ $ $) 250) (($ $ $ |#3|) 248)) (-1453 (($ $ $) 249) (($ $ $ |#3|) 247)) (-3720 (($ $ |#1| |#2| $) 174)) (-2842 (((-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)))))) (-4346 (((-112) $) 35)) (-3173 (((-777) $) 171)) (-3586 (((-112) $ $) 252) (((-112) $ (-650 $)) 251)) (-3630 (($ $ $ $ $) 209 (|has| |#1| (-562)))) (-1724 ((|#3| $) 277)) (-1742 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-4008 (((-650 $) $) 128)) (-2359 (((-112) $) 154)) (-3912 (($ |#1| |#2|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-2101 (($ $ $) 237)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ |#3|) 122)) (-4044 (((-112) $) 267)) (-2575 ((|#2| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-2612 (((-777) $) 276)) (-1918 (($ (-1 |#2| |#2|) $) 173)) (-1356 (($ (-1 |#1| |#1|) $) 153)) (-3362 (((-3 |#3| "failed") $) 125)) (-2246 (($ $) 204 (|has| |#1| (-458)))) (-1624 (($ $) 205 (|has| |#1| (-458)))) (-1731 (((-650 $) $) 262)) (-2292 (($ $) 265)) (-2628 (($ $) 206 (|has| |#1| (-458)))) (-1432 (((-650 $) $) 263)) (-3686 (($ $) 264)) (-1915 (($ $) 151)) (-1927 ((|#1| $) 150) (($ $ |#3|) 269)) (-1899 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-3803 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1521 (-777))) $ $) 236)) (-2944 (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $) 240) (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $ |#3|) 239)) (-3430 (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -3691 $)) $ $) 242) (((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -3691 $)) $ $ |#3|) 241)) (-2924 (($ $ $) 246) (($ $ $ |#3|) 244)) (-1559 (($ $ $) 245) (($ $ $ |#3|) 243)) (-1988 (((-1168) $) 10)) (-1759 (($ $ $) 212 (|has| |#1| (-562)))) (-2703 (((-650 $) $) 271)) (-2209 (((-3 (-650 $) "failed") $) 116)) (-3654 (((-3 (-650 $) "failed") $) 117)) (-1895 (((-3 (-2 (|:| |var| |#3|) (|:| -3357 (-777))) "failed") $) 115)) (-1491 (((-112) $ $) 254) (((-112) $ (-650 $)) 253)) (-2520 (($ $ $) 234)) (-2438 (($ $) 275)) (-2971 (((-112) $ $) 260)) (-2035 (((-112) $ $) 256) (((-112) $ (-650 $)) 255)) (-4201 (($ $ $) 235)) (-1311 (($ $) 274)) (-3577 (((-1129) $) 11)) (-1826 (((-2 (|:| -1942 $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-562)))) (-2982 (((-2 (|:| -1942 $) (|:| |coef1| $)) $ $) 216 (|has| |#1| (-562)))) (-1886 (((-112) $) 168)) (-1898 ((|#1| $) 169)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1942 ((|#1| |#1| $) 208 (|has| |#1| (-458))) (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3801 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2145 (((-2 (|:| -1942 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 217 (|has| |#1| (-562)))) (-2547 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-4383 (($ $ |#1|) 221 (|has| |#1| (-562))) (($ $ $) 219 (|has| |#1| (-562)))) (-1414 (($ $ |#1|) 222 (|has| |#1| (-562))) (($ $ $) 220 (|has| |#1| (-562)))) (-1770 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140)) (-3570 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3547 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43)) (-2130 ((|#2| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131)) (-1340 (($ $) 272)) (-2485 (($ $) 270)) (-1425 (((-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 (-2892 (-12 (-1795 (|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))))) (-1848 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1809 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (((-959 |#1|) $) 201 (|has| |#3| (-620 (-1186)))) (($ (-413 (-570))) 80 (-2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) 170)) (-2249 ((|#1| $ |#2|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3532 (((-3 $ "failed") $) 81 (-2892 (-1809 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) 32 T CONST)) (-4247 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1861 (($) 19 T CONST)) (-4280 (((-3 (-112) "failed") $ $) 261)) (-1875 (($) 34 T CONST)) (-3014 (($ $ $ $ (-777)) 210 (|has| |#1| (-562)))) (-4357 (($ $ $ (-777)) 211 (|has| |#1| (-562)))) (-2942 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) |#2| $) 26)) (-3513 ((|#1| $) 10)) (-3408 (((-570) |#2| $) 116)) (-3896 (((-3 $ "failed") |#2| (-928)) 75)) (-4413 ((|#1| $) 31)) (-3157 ((|#1| |#2| $ |#1|) 40)) (-3963 (($ $) 28)) (-1929 (((-3 |#2| "failed") |#2| $) 111)) (-2346 (((-112) |#2| $) NIL)) (-2788 (((-112) |#2| $) NIL)) (-3076 (((-112) |#2| $) 27)) (-2567 ((|#1| $) 117)) (-4400 ((|#1| $) 30)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2075 ((|#2| $) 102)) (-3802 (((-868) $) 92)) (-3359 (((-112) $ $) NIL)) (-3170 ((|#1| |#2| $ |#1|) 41)) (-4017 (((-650 $) |#2|) 77)) (-3025 (((-112) $ $) 97)))
+(((-1070 |#1| |#2|) (-13 (-1077 |#1| |#2|) (-10 -8 (-15 -4400 (|#1| $)) (-15 -4413 (|#1| $)) (-15 -3513 (|#1| $)) (-15 -2567 (|#1| $)) (-15 -3963 ($ $)) (-15 -3076 ((-112) |#2| $)) (-15 -3157 (|#1| |#2| $ |#1|)))) (-13 (-854) (-368)) (-1253 |#1|)) (T -1070))
+((-3157 (*1 *2 *3 *1 *2) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-4400 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-4413 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-3513 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-2567 (*1 *2 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-3963 (*1 *1 *1) (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3)) (-4 *3 (-1253 *2)))) (-3076 (*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 -4400 (|#1| $)) (-15 -4413 (|#1| $)) (-15 -3513 (|#1| $)) (-15 -2567 (|#1| $)) (-15 -3963 ($ $)) (-15 -3076 ((-112) |#2| $)) (-15 -3157 (|#1| |#2| $ |#1|))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-3925 (($ $ $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-1964 (($ $ $ $) NIL)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3408 (((-570) $) NIL)) (-3163 (($ $ $) NIL)) (-3195 (($) NIL T CONST)) (-3691 (($ (-1186)) 10) (($ (-570)) 7)) (-4383 (((-3 (-570) "failed") $) NIL)) (-3220 (((-570) $) NIL)) (-2504 (($ $ $) NIL)) (-2179 (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-695 (-570)) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2502 (((-3 (-413 (-570)) "failed") $) NIL)) (-2313 (((-112) $) NIL)) (-3645 (((-413 (-570)) $) NIL)) (-3449 (($) NIL) (($ $) NIL)) (-2519 (($ $ $) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2477 (($ $ $ $) NIL)) (-2787 (($ $ $) NIL)) (-2346 (((-112) $) NIL)) (-3401 (($ $ $) NIL)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-4139 (((-112) $) NIL)) (-2888 (((-112) $) NIL)) (-4369 (((-3 $ "failed") $) NIL)) (-2788 (((-112) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2986 (($ $ $ $) NIL)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-2738 (($ $) NIL)) (-1356 (($ $) NIL)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-2345 (($ $ $) NIL)) (-2439 (($) NIL T CONST)) (-3618 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) NIL) (($ (-650 $)) NIL)) (-4322 (($ $) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4418 (((-112) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3550 (($ $ (-777)) NIL) (($ $) NIL)) (-2574 (($ $) NIL)) (-3954 (($ $) NIL)) (-1426 (((-570) $) 16) (((-542) $) NIL) (((-899 (-570)) $) NIL) (((-384) $) NIL) (((-227) $) NIL) (($ (-1186)) 9)) (-3802 (((-868) $) 23) (($ (-570)) 6) (($ $) NIL) (($ (-570)) 6)) (-2851 (((-777)) NIL T CONST)) (-4022 (((-112) $ $) NIL)) (-1730 (($ $ $) NIL)) (-3359 (((-112) $ $) NIL)) (-4409 (($) NIL)) (-3228 (((-112) $ $) NIL)) (-1605 (($ $ $ $) NIL)) (-3231 (($ $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)) (-3114 (($ $) 22) (($ $ $) NIL)) (-3104 (($ $ $) NIL)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) NIL)))
+(((-1071) (-13 (-551) (-624 (-1186)) (-10 -8 (-6 -4439) (-6 -4444) (-6 -4440) (-15 -3691 ($ (-1186))) (-15 -3691 ($ (-570)))))) (T -1071))
+((-3691 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1071)))) (-3691 (*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1071)))))
+(-13 (-551) (-624 (-1186)) (-10 -8 (-6 -4439) (-6 -4444) (-6 -4440) (-15 -3691 ($ (-1186))) (-15 -3691 ($ (-570)))))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL)) (-3040 (((-1282) $ (-1186) (-1186)) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-1950 (($) 9)) (-3935 (((-52) $ (-1186) (-52)) NIL)) (-3566 (($ $) 32)) (-3334 (($ $) 30)) (-3411 (($ $) 29)) (-1480 (($ $) 31)) (-3464 (($ $) 35)) (-2014 (($ $) 36)) (-2991 (($ $) 28)) (-1559 (($ $) 33)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) 27 (|has| $ (-6 -4452)))) (-2496 (((-3 (-52) "failed") (-1186) $) 43)) (-3195 (($) NIL T CONST)) (-4242 (($) 7)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2385 (($ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) 53 (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-3 (-52) "failed") (-1186) $) NIL)) (-1742 (($ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452)))) (-3477 (((-3 (-1168) "failed") $ (-1168) (-570)) 72)) (-1518 (((-52) $ (-1186) (-52)) NIL (|has| $ (-6 -4453)))) (-3824 (((-52) $ (-1186)) NIL)) (-3630 (((-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-650 (-52)) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-1186) $) NIL (|has| (-1186) (-856)))) (-2052 (((-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) 38 (|has| $ (-6 -4452))) (((-650 (-52)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109))))) (-2602 (((-1186) $) NIL (|has| (-1186) (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4453))) (($ (-1 (-52) (-52)) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL) (($ (-1 (-52) (-52)) $) NIL) (($ (-1 (-52) (-52) (-52)) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2914 (((-650 (-1186)) $) NIL)) (-2343 (((-112) (-1186) $) NIL)) (-2885 (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL)) (-3502 (($ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) 46)) (-2903 (((-650 (-1186)) $) NIL)) (-1358 (((-112) (-1186) $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2214 (((-384) $ (-1186)) 52)) (-3910 (((-650 (-1168)) $ (-1168)) 74)) (-3546 (((-52) $) NIL (|has| (-1186) (-856)))) (-2770 (((-3 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) "failed") (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL)) (-2061 (($ $ (-52)) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))))) NIL (-12 (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-298 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) NIL (-12 (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (($ $ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL (-12 (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-313 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109))))) (-4049 (((-650 (-52)) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 (((-52) $ (-1186)) NIL) (((-52) $ (-1186) (-52)) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL)) (-2576 (($ $ (-1186)) 54)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109)))) (((-777) (-52) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-52) (-1109)))) (((-777) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) 40)) (-2585 (($ $ $) 41)) (-3802 (((-868) $) NIL (-2895 (|has| (-52) (-619 (-868))) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-619 (-868)))))) (-1967 (($ $ (-1186) (-384)) 50)) (-3996 (($ $ (-1186) (-384)) 51)) (-3359 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 (-1186)) (|:| -2340 (-52)))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) (-52)) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-52) (-1109)) (|has| (-2 (|:| -2107 (-1186)) (|:| -2340 (-52))) (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1072) (-13 (-1203 (-1186) (-52)) (-10 -8 (-15 -2585 ($ $ $)) (-15 -4242 ($)) (-15 -2991 ($ $)) (-15 -3411 ($ $)) (-15 -3334 ($ $)) (-15 -1480 ($ $)) (-15 -1559 ($ $)) (-15 -3566 ($ $)) (-15 -3464 ($ $)) (-15 -2014 ($ $)) (-15 -1967 ($ $ (-1186) (-384))) (-15 -3996 ($ $ (-1186) (-384))) (-15 -2214 ((-384) $ (-1186))) (-15 -3910 ((-650 (-1168)) $ (-1168))) (-15 -2576 ($ $ (-1186))) (-15 -1950 ($)) (-15 -3477 ((-3 (-1168) "failed") $ (-1168) (-570))) (-6 -4452)))) (T -1072))
+((-2585 (*1 *1 *1 *1) (-5 *1 (-1072))) (-4242 (*1 *1) (-5 *1 (-1072))) (-2991 (*1 *1 *1) (-5 *1 (-1072))) (-3411 (*1 *1 *1) (-5 *1 (-1072))) (-3334 (*1 *1 *1) (-5 *1 (-1072))) (-1480 (*1 *1 *1) (-5 *1 (-1072))) (-1559 (*1 *1 *1) (-5 *1 (-1072))) (-3566 (*1 *1 *1) (-5 *1 (-1072))) (-3464 (*1 *1 *1) (-5 *1 (-1072))) (-2014 (*1 *1 *1) (-5 *1 (-1072))) (-1967 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))) (-3996 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))) (-2214 (*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-384)) (-5 *1 (-1072)))) (-3910 (*1 *2 *1 *3) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1072)) (-5 *3 (-1168)))) (-2576 (*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1072)))) (-1950 (*1 *1) (-5 *1 (-1072))) (-3477 (*1 *2 *1 *2 *3) (|partial| -12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-1072)))))
+(-13 (-1203 (-1186) (-52)) (-10 -8 (-15 -2585 ($ $ $)) (-15 -4242 ($)) (-15 -2991 ($ $)) (-15 -3411 ($ $)) (-15 -3334 ($ $)) (-15 -1480 ($ $)) (-15 -1559 ($ $)) (-15 -3566 ($ $)) (-15 -3464 ($ $)) (-15 -2014 ($ $)) (-15 -1967 ($ $ (-1186) (-384))) (-15 -3996 ($ $ (-1186) (-384))) (-15 -2214 ((-384) $ (-1186))) (-15 -3910 ((-650 (-1168)) $ (-1168))) (-15 -2576 ($ $ (-1186))) (-15 -1950 ($)) (-15 -3477 ((-3 (-1168) "failed") $ (-1168) (-570))) (-6 -4452)))
+((-1603 (($ $) 46)) (-4252 (((-112) $ $) 82)) (-4383 (((-3 |#2| "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 |#4| "failed") $) NIL) (((-3 $ "failed") (-959 (-413 (-570)))) 251) (((-3 $ "failed") (-959 (-570))) 250) (((-3 $ "failed") (-959 |#2|)) 253)) (-3220 ((|#2| $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL) ((|#4| $) NIL) (($ (-959 (-413 (-570)))) 239) (($ (-959 (-570))) 235) (($ (-959 |#2|)) 255)) (-1954 (($ $) NIL) (($ $ |#4|) 44)) (-1772 (((-112) $ $) 131) (((-112) $ (-650 $)) 135)) (-1850 (((-112) $) 60)) (-1601 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 125)) (-2197 (($ $) 160)) (-2420 (($ $) 156)) (-3806 (($ $) 155)) (-2802 (($ $ $) 87) (($ $ $ |#4|) 92)) (-2532 (($ $ $) 90) (($ $ $ |#4|) 94)) (-2391 (((-112) $ $) 143) (((-112) $ (-650 $)) 144)) (-3357 ((|#4| $) 32)) (-2801 (($ $ $) 128)) (-4304 (((-112) $) 59)) (-4297 (((-777) $) 35)) (-1825 (($ $) 174)) (-1726 (($ $) 171)) (-3451 (((-650 $) $) 72)) (-4111 (($ $) 62)) (-3272 (($ $) 167)) (-1471 (((-650 $) $) 69)) (-3919 (($ $) 64)) (-1928 ((|#2| $) NIL) (($ $ |#4|) 39)) (-2652 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1974 (-777))) $ $) 130)) (-2443 (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $) 126) (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $ |#4|) 127)) (-3358 (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3971 $)) $ $) 121) (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3971 $)) $ $ |#4|) 123)) (-2263 (($ $ $) 97) (($ $ $ |#4|) 106)) (-2352 (($ $ $) 98) (($ $ $ |#4|) 107)) (-2803 (((-650 $) $) 54)) (-2898 (((-112) $ $) 140) (((-112) $ (-650 $)) 141)) (-1590 (($ $ $) 116)) (-2439 (($ $) 37)) (-1433 (((-112) $ $) 80)) (-3279 (((-112) $ $) 136) (((-112) $ (-650 $)) 138)) (-2222 (($ $ $) 112)) (-1586 (($ $) 41)) (-1939 ((|#2| |#2| $) 164) (($ (-650 $)) NIL) (($ $ $) NIL)) (-3310 (($ $ |#2|) NIL) (($ $ $) 153)) (-4420 (($ $ |#2|) 148) (($ $ $) 151)) (-1952 (($ $) 49)) (-2530 (($ $) 55)) (-1426 (((-899 (-384)) $) NIL) (((-899 (-570)) $) NIL) (((-542) $) NIL) (($ (-959 (-413 (-570)))) 241) (($ (-959 (-570))) 237) (($ (-959 |#2|)) 252) (((-1168) $) 279) (((-959 |#2|) $) 184)) (-3802 (((-868) $) 29) (($ (-570)) NIL) (($ |#2|) NIL) (($ |#4|) NIL) (((-959 |#2|) $) 185) (($ (-413 (-570))) NIL) (($ $) NIL)) (-1700 (((-3 (-112) "failed") $ $) 79)))
+(((-1073 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -3802 (|#1| |#1|)) (-15 -1939 (|#1| |#1| |#1|)) (-15 -1939 (|#1| (-650 |#1|))) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 ((-959 |#2|) |#1|)) (-15 -1426 ((-959 |#2|) |#1|)) (-15 -1426 ((-1168) |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -1726 (|#1| |#1|)) (-15 -3272 (|#1| |#1|)) (-15 -2197 (|#1| |#1|)) (-15 -1939 (|#2| |#2| |#1|)) (-15 -3310 (|#1| |#1| |#1|)) (-15 -4420 (|#1| |#1| |#1|)) (-15 -3310 (|#1| |#1| |#2|)) (-15 -4420 (|#1| |#1| |#2|)) (-15 -2420 (|#1| |#1|)) (-15 -3806 (|#1| |#1|)) (-15 -1426 (|#1| (-959 |#2|))) (-15 -3220 (|#1| (-959 |#2|))) (-15 -4383 ((-3 |#1| "failed") (-959 |#2|))) (-15 -1426 (|#1| (-959 (-570)))) (-15 -3220 (|#1| (-959 (-570)))) (-15 -4383 ((-3 |#1| "failed") (-959 (-570)))) (-15 -1426 (|#1| (-959 (-413 (-570))))) (-15 -3220 (|#1| (-959 (-413 (-570))))) (-15 -4383 ((-3 |#1| "failed") (-959 (-413 (-570))))) (-15 -1590 (|#1| |#1| |#1|)) (-15 -2222 (|#1| |#1| |#1|)) (-15 -2652 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1974 (-777))) |#1| |#1|)) (-15 -2801 (|#1| |#1| |#1|)) (-15 -1601 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2443 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1| |#4|)) (-15 -2443 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -3358 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3971 |#1|)) |#1| |#1| |#4|)) (-15 -3358 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2352 (|#1| |#1| |#1| |#4|)) (-15 -2263 (|#1| |#1| |#1| |#4|)) (-15 -2352 (|#1| |#1| |#1|)) (-15 -2263 (|#1| |#1| |#1|)) (-15 -2532 (|#1| |#1| |#1| |#4|)) (-15 -2802 (|#1| |#1| |#1| |#4|)) (-15 -2532 (|#1| |#1| |#1|)) (-15 -2802 (|#1| |#1| |#1|)) (-15 -2391 ((-112) |#1| (-650 |#1|))) (-15 -2391 ((-112) |#1| |#1|)) (-15 -2898 ((-112) |#1| (-650 |#1|))) (-15 -2898 ((-112) |#1| |#1|)) (-15 -3279 ((-112) |#1| (-650 |#1|))) (-15 -3279 ((-112) |#1| |#1|)) (-15 -1772 ((-112) |#1| (-650 |#1|))) (-15 -1772 ((-112) |#1| |#1|)) (-15 -4252 ((-112) |#1| |#1|)) (-15 -1433 ((-112) |#1| |#1|)) (-15 -1700 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3451 ((-650 |#1|) |#1|)) (-15 -1471 ((-650 |#1|) |#1|)) (-15 -3919 (|#1| |#1|)) (-15 -4111 (|#1| |#1|)) (-15 -1850 ((-112) |#1|)) (-15 -4304 ((-112) |#1|)) (-15 -1954 (|#1| |#1| |#4|)) (-15 -1928 (|#1| |#1| |#4|)) (-15 -2530 (|#1| |#1|)) (-15 -2803 ((-650 |#1|) |#1|)) (-15 -1952 (|#1| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -1586 (|#1| |#1|)) (-15 -2439 (|#1| |#1|)) (-15 -4297 ((-777) |#1|)) (-15 -3357 (|#4| |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -3802 (|#1| |#4|)) (-15 -4383 ((-3 |#4| "failed") |#1|)) (-15 -3220 (|#4| |#1|)) (-15 -1928 (|#2| |#1|)) (-15 -1954 (|#1| |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-1074 |#2| |#3| |#4|) (-1058) (-799) (-856)) (T -1073))
+NIL
+(-10 -8 (-15 -3802 (|#1| |#1|)) (-15 -1939 (|#1| |#1| |#1|)) (-15 -1939 (|#1| (-650 |#1|))) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 ((-959 |#2|) |#1|)) (-15 -1426 ((-959 |#2|) |#1|)) (-15 -1426 ((-1168) |#1|)) (-15 -1825 (|#1| |#1|)) (-15 -1726 (|#1| |#1|)) (-15 -3272 (|#1| |#1|)) (-15 -2197 (|#1| |#1|)) (-15 -1939 (|#2| |#2| |#1|)) (-15 -3310 (|#1| |#1| |#1|)) (-15 -4420 (|#1| |#1| |#1|)) (-15 -3310 (|#1| |#1| |#2|)) (-15 -4420 (|#1| |#1| |#2|)) (-15 -2420 (|#1| |#1|)) (-15 -3806 (|#1| |#1|)) (-15 -1426 (|#1| (-959 |#2|))) (-15 -3220 (|#1| (-959 |#2|))) (-15 -4383 ((-3 |#1| "failed") (-959 |#2|))) (-15 -1426 (|#1| (-959 (-570)))) (-15 -3220 (|#1| (-959 (-570)))) (-15 -4383 ((-3 |#1| "failed") (-959 (-570)))) (-15 -1426 (|#1| (-959 (-413 (-570))))) (-15 -3220 (|#1| (-959 (-413 (-570))))) (-15 -4383 ((-3 |#1| "failed") (-959 (-413 (-570))))) (-15 -1590 (|#1| |#1| |#1|)) (-15 -2222 (|#1| |#1| |#1|)) (-15 -2652 ((-2 (|:| |polnum| |#1|) (|:| |polden| |#1|) (|:| -1974 (-777))) |#1| |#1|)) (-15 -2801 (|#1| |#1| |#1|)) (-15 -1601 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2443 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1| |#4|)) (-15 -2443 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -3358 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3971 |#1|)) |#1| |#1| |#4|)) (-15 -3358 ((-2 (|:| -1453 |#1|) (|:| |gap| (-777)) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2352 (|#1| |#1| |#1| |#4|)) (-15 -2263 (|#1| |#1| |#1| |#4|)) (-15 -2352 (|#1| |#1| |#1|)) (-15 -2263 (|#1| |#1| |#1|)) (-15 -2532 (|#1| |#1| |#1| |#4|)) (-15 -2802 (|#1| |#1| |#1| |#4|)) (-15 -2532 (|#1| |#1| |#1|)) (-15 -2802 (|#1| |#1| |#1|)) (-15 -2391 ((-112) |#1| (-650 |#1|))) (-15 -2391 ((-112) |#1| |#1|)) (-15 -2898 ((-112) |#1| (-650 |#1|))) (-15 -2898 ((-112) |#1| |#1|)) (-15 -3279 ((-112) |#1| (-650 |#1|))) (-15 -3279 ((-112) |#1| |#1|)) (-15 -1772 ((-112) |#1| (-650 |#1|))) (-15 -1772 ((-112) |#1| |#1|)) (-15 -4252 ((-112) |#1| |#1|)) (-15 -1433 ((-112) |#1| |#1|)) (-15 -1700 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3451 ((-650 |#1|) |#1|)) (-15 -1471 ((-650 |#1|) |#1|)) (-15 -3919 (|#1| |#1|)) (-15 -4111 (|#1| |#1|)) (-15 -1850 ((-112) |#1|)) (-15 -4304 ((-112) |#1|)) (-15 -1954 (|#1| |#1| |#4|)) (-15 -1928 (|#1| |#1| |#4|)) (-15 -2530 (|#1| |#1|)) (-15 -2803 ((-650 |#1|) |#1|)) (-15 -1952 (|#1| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -1586 (|#1| |#1|)) (-15 -2439 (|#1| |#1|)) (-15 -4297 ((-777) |#1|)) (-15 -3357 (|#4| |#1|)) (-15 -1426 ((-542) |#1|)) (-15 -1426 ((-899 (-570)) |#1|)) (-15 -1426 ((-899 (-384)) |#1|)) (-15 -3802 (|#1| |#4|)) (-15 -4383 ((-3 |#4| "failed") |#1|)) (-15 -3220 (|#4| |#1|)) (-15 -1928 (|#2| |#1|)) (-15 -1954 (|#1| |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 |#3|) $) 112)) (-3778 (((-1182 $) $ |#3|) 127) (((-1182 |#1|) $) 126)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-4306 (($ $) 90 (|has| |#1| (-562)))) (-2617 (((-112) $) 92 (|has| |#1| (-562)))) (-3249 (((-777) $) 114) (((-777) $ (-650 |#3|)) 113)) (-1603 (($ $) 273)) (-4252 (((-112) $ $) 259)) (-1966 (((-3 $ "failed") $ $) 20)) (-3162 (($ $ $) 218 (|has| |#1| (-562)))) (-2690 (((-650 $) $ $) 213 (|has| |#1| (-562)))) (-2536 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-4310 (($ $) 100 (|has| |#1| (-458)))) (-3871 (((-424 $) $) 99 (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-3195 (($) 18 T CONST)) (-4383 (((-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 (-2895 (-12 (-1796 (|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 (-2895 (-12 (-1796 (|has| |#1| (-38 (-413 (-570))))) (-1796 (|has| |#1| (-38 (-570)))) (|has| |#3| (-620 (-1186)))) (-12 (-1796 (|has| |#1| (-551))) (-1796 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (-1796 (|has| |#1| (-1001 (-570)))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))))) (-3220 ((|#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 (-2895 (-12 (-1796 (|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 (-2895 (-12 (-1796 (|has| |#1| (-38 (-413 (-570))))) (-1796 (|has| |#1| (-38 (-570)))) (|has| |#3| (-620 (-1186)))) (-12 (-1796 (|has| |#1| (-551))) (-1796 (|has| |#1| (-38 (-413 (-570))))) (|has| |#1| (-38 (-570))) (|has| |#3| (-620 (-1186)))) (-12 (-1796 (|has| |#1| (-1001 (-570)))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#3| (-620 (-1186))))))) (-3930 (($ $ $ |#3|) 110 (|has| |#1| (-174))) (($ $ $) 214 (|has| |#1| (-562)))) (-1954 (($ $) 156) (($ $ |#3|) 268)) (-2179 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-1772 (((-112) $ $) 258) (((-112) $ (-650 $)) 257)) (-1929 (((-3 $ "failed") $) 37)) (-1850 (((-112) $) 266)) (-1601 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 238)) (-2197 (($ $) 207 (|has| |#1| (-458)))) (-1944 (($ $) 178 (|has| |#1| (-458))) (($ $ |#3|) 107 (|has| |#1| (-458)))) (-1938 (((-650 $) $) 111)) (-1336 (((-112) $) 98 (|has| |#1| (-916)))) (-2420 (($ $) 223 (|has| |#1| (-562)))) (-3806 (($ $) 224 (|has| |#1| (-562)))) (-2802 (($ $ $) 250) (($ $ $ |#3|) 248)) (-2532 (($ $ $) 249) (($ $ $ |#3|) 247)) (-4243 (($ $ |#1| |#2| $) 174)) (-1557 (((-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)))))) (-4139 (((-112) $) 35)) (-2867 (((-777) $) 171)) (-2391 (((-112) $ $) 252) (((-112) $ (-650 $)) 251)) (-1475 (($ $ $ $ $) 209 (|has| |#1| (-562)))) (-3357 ((|#3| $) 277)) (-1744 (($ (-1182 |#1|) |#3|) 119) (($ (-1182 $) |#3|) 118)) (-3967 (((-650 $) $) 128)) (-3633 (((-112) $) 154)) (-3915 (($ |#1| |#2|) 155) (($ $ |#3| (-777)) 121) (($ $ (-650 |#3|) (-650 (-777))) 120)) (-2801 (($ $ $) 237)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ |#3|) 122)) (-4304 (((-112) $) 267)) (-3970 ((|#2| $) 172) (((-777) $ |#3|) 124) (((-650 (-777)) $ (-650 |#3|)) 123)) (-4297 (((-777) $) 276)) (-1414 (($ (-1 |#2| |#2|) $) 173)) (-1357 (($ (-1 |#1| |#1|) $) 153)) (-4023 (((-3 |#3| "failed") $) 125)) (-1825 (($ $) 204 (|has| |#1| (-458)))) (-1726 (($ $) 205 (|has| |#1| (-458)))) (-3451 (((-650 $) $) 262)) (-4111 (($ $) 265)) (-3272 (($ $) 206 (|has| |#1| (-458)))) (-1471 (((-650 $) $) 263)) (-3919 (($ $) 264)) (-1914 (($ $) 151)) (-1928 ((|#1| $) 150) (($ $ |#3|) 269)) (-1901 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-2652 (((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1974 (-777))) $ $) 236)) (-2443 (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $) 240) (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $ |#3|) 239)) (-3358 (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3971 $)) $ $) 242) (((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3971 $)) $ $ |#3|) 241)) (-2263 (($ $ $) 246) (($ $ $ |#3|) 244)) (-2352 (($ $ $) 245) (($ $ $ |#3|) 243)) (-3989 (((-1168) $) 10)) (-3693 (($ $ $) 212 (|has| |#1| (-562)))) (-2803 (((-650 $) $) 271)) (-1369 (((-3 (-650 $) "failed") $) 116)) (-1777 (((-3 (-650 $) "failed") $) 117)) (-2505 (((-3 (-2 (|:| |var| |#3|) (|:| -3994 (-777))) "failed") $) 115)) (-2898 (((-112) $ $) 254) (((-112) $ (-650 $)) 253)) (-1590 (($ $ $) 234)) (-2439 (($ $) 275)) (-1433 (((-112) $ $) 260)) (-3279 (((-112) $ $) 256) (((-112) $ (-650 $)) 255)) (-2222 (($ $ $) 235)) (-1586 (($ $) 274)) (-3580 (((-1129) $) 11)) (-3062 (((-2 (|:| -1939 $) (|:| |coef2| $)) $ $) 215 (|has| |#1| (-562)))) (-1575 (((-2 (|:| -1939 $) (|:| |coef1| $)) $ $) 216 (|has| |#1| (-562)))) (-1887 (((-112) $) 168)) (-1900 ((|#1| $) 169)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1939 ((|#1| |#1| $) 208 (|has| |#1| (-458))) (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3804 (((-424 $) $) 101 (|has| |#1| (-916)))) (-2040 (((-2 (|:| -1939 $) (|:| |coef1| $) (|:| |coef2| $)) $ $) 217 (|has| |#1| (-562)))) (-2548 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-3310 (($ $ |#1|) 221 (|has| |#1| (-562))) (($ $ $) 219 (|has| |#1| (-562)))) (-4420 (($ $ |#1|) 222 (|has| |#1| (-562))) (($ $ $) 220 (|has| |#1| (-562)))) (-1771 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ |#3| |#1|) 143) (($ $ (-650 |#3|) (-650 |#1|)) 142) (($ $ |#3| $) 141) (($ $ (-650 |#3|) (-650 $)) 140)) (-2265 (($ $ |#3|) 109 (|has| |#1| (-174)))) (-3550 (($ $ |#3|) 46) (($ $ (-650 |#3|)) 45) (($ $ |#3| (-777)) 44) (($ $ (-650 |#3|) (-650 (-777))) 43)) (-3079 ((|#2| $) 152) (((-777) $ |#3|) 132) (((-650 (-777)) $ (-650 |#3|)) 131)) (-1952 (($ $) 272)) (-2530 (($ $) 270)) (-1426 (((-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 (-2895 (-12 (-1796 (|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))))) (-2077 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ |#3|) 108 (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1810 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ |#3|) 137) (((-959 |#1|) $) 201 (|has| |#3| (-620 (-1186)))) (($ (-413 (-570))) 80 (-2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) 170)) (-1864 ((|#1| $ |#2|) 157) (($ $ |#3| (-777)) 130) (($ $ (-650 |#3|) (-650 (-777))) 129)) (-3132 (((-3 $ "failed") $) 81 (-2895 (-1810 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) 32 T CONST)) (-2648 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1862 (($) 19 T CONST)) (-1700 (((-3 (-112) "failed") $ $) 261)) (-1876 (($) 34 T CONST)) (-3780 (($ $ $ $ (-777)) 210 (|has| |#1| (-562)))) (-4256 (($ $ $ (-777)) 211 (|has| |#1| (-562)))) (-2945 (($ $ |#3|) 42) (($ $ (-650 |#3|)) 41) (($ $ |#3| (-777)) 40) (($ $ (-650 |#3|) (-650 (-777))) 39)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1724 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2612 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-777)))) (-2438 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1311 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1602 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1340 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2703 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-2485 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1927 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-1956 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-4044 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2248 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2292 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-3686 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1432 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-1731 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-4280 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2971 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3068 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2862 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2862 (*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)))) (-2035 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2035 (*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)))) (-1491 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1491 (*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)))) (-3586 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3586 (*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)))) (-3166 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1453 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-3166 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-1453 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2924 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1559 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2924 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-1559 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-3430 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1452 *1) (|:| |gap| (-777)) (|:| -3691 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-3430 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -1452 *1) (|:| |gap| (-777)) (|:| -3691 *1))) (-4 *1 (-1074 *4 *5 *3)))) (-2944 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1452 *1) (|:| |gap| (-777)) (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-2944 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -1452 *1) (|:| |gap| (-777)) (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-1074 *4 *5 *3)))) (-3640 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-2101 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-3803 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1521 (-777)))) (-4 *1 (-1074 *3 *4 *5)))) (-4201 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2520 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-4380 (*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)))) (-3216 (*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)))) (-1425 (*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)))) (-4380 (*1 *1 *2) (|partial| -2892 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1795 (-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))))) (-3216 (*1 *1 *2) (-2892 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1795 (-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))))) (-1425 (*1 *1 *2) (-2892 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1795 (-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))))) (-4380 (*1 *1 *2) (|partial| -2892 (-12 (-5 *2 (-959 *3)) (-12 (-1795 (-4 *3 (-38 (-413 (-570))))) (-1795 (-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 (-1795 (-4 *3 (-551))) (-1795 (-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 (-1795 (-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))))) (-3216 (*1 *1 *2) (-2892 (-12 (-5 *2 (-959 *3)) (-12 (-1795 (-4 *3 (-38 (-413 (-570))))) (-1795 (-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 (-1795 (-4 *3 (-551))) (-1795 (-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 (-1795 (-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))))) (-1425 (*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)))) (-1970 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-2794 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-1414 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4383 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-1414 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4383 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-2022 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-2145 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1942 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-2982 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1942 *1) (|:| |coef1| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-1826 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1942 *1) (|:| |coef2| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-4322 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-1469 (*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)))) (-1759 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4357 (*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)))) (-3014 (*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)))) (-3630 (*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)))) (-1942 (*1 *2 *2 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2917 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2628 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1624 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2246 (*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 -1724 (|t#3| $)) (-15 -2612 ((-777) $)) (-15 -2438 ($ $)) (-15 -1311 ($ $)) (-15 -1602 ($ $)) (-15 -1340 ($ $)) (-15 -2703 ((-650 $) $)) (-15 -2485 ($ $)) (-15 -1927 ($ $ |t#3|)) (-15 -1956 ($ $ |t#3|)) (-15 -4044 ((-112) $)) (-15 -2248 ((-112) $)) (-15 -2292 ($ $)) (-15 -3686 ($ $)) (-15 -1432 ((-650 $) $)) (-15 -1731 ((-650 $) $)) (-15 -4280 ((-3 (-112) "failed") $ $)) (-15 -2971 ((-112) $ $)) (-15 -3068 ((-112) $ $)) (-15 -2862 ((-112) $ $)) (-15 -2862 ((-112) $ (-650 $))) (-15 -2035 ((-112) $ $)) (-15 -2035 ((-112) $ (-650 $))) (-15 -1491 ((-112) $ $)) (-15 -1491 ((-112) $ (-650 $))) (-15 -3586 ((-112) $ $)) (-15 -3586 ((-112) $ (-650 $))) (-15 -3166 ($ $ $)) (-15 -1453 ($ $ $)) (-15 -3166 ($ $ $ |t#3|)) (-15 -1453 ($ $ $ |t#3|)) (-15 -2924 ($ $ $)) (-15 -1559 ($ $ $)) (-15 -2924 ($ $ $ |t#3|)) (-15 -1559 ($ $ $ |t#3|)) (-15 -3430 ((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -3691 $)) $ $)) (-15 -3430 ((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -3691 $)) $ $ |t#3|)) (-15 -2944 ((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -2944 ((-2 (|:| -1452 $) (|:| |gap| (-777)) (|:| -2573 $) (|:| -3691 $)) $ $ |t#3|)) (-15 -3640 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -2101 ($ $ $)) (-15 -3803 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1521 (-777))) $ $)) (-15 -4201 ($ $ $)) (-15 -2520 ($ $ $)) (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 -4380 ((-3 $ "failed") (-959 (-413 (-570))))) (-15 -3216 ($ (-959 (-413 (-570))))) (-15 -1425 ($ (-959 (-413 (-570))))) (-15 -4380 ((-3 $ "failed") (-959 (-570)))) (-15 -3216 ($ (-959 (-570)))) (-15 -1425 ($ (-959 (-570)))) (IF (|has| |t#1| (-1001 (-570))) |%noBranch| (PROGN (-15 -4380 ((-3 $ "failed") (-959 |t#1|))) (-15 -3216 ($ (-959 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-570))) (IF (|has| |t#1| (-38 (-413 (-570)))) |%noBranch| (PROGN (-15 -4380 ((-3 $ "failed") (-959 (-570)))) (-15 -3216 ($ (-959 (-570)))) (-15 -1425 ($ (-959 (-570)))) (IF (|has| |t#1| (-551)) |%noBranch| (PROGN (-15 -4380 ((-3 $ "failed") (-959 |t#1|))) (-15 -3216 ($ (-959 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-570))) |%noBranch| (IF (|has| |t#1| (-38 (-413 (-570)))) |%noBranch| (PROGN (-15 -4380 ((-3 $ "failed") (-959 |t#1|))) (-15 -3216 ($ (-959 |t#1|)))))) (-15 -1425 ($ (-959 |t#1|))) (IF (|has| |t#1| (-1047 (-570))) (-6 (-620 (-1168))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -1970 ($ $)) (-15 -2794 ($ $)) (-15 -1414 ($ $ |t#1|)) (-15 -4383 ($ $ |t#1|)) (-15 -1414 ($ $ $)) (-15 -4383 ($ $ $)) (-15 -2022 ($ $ $)) (-15 -2145 ((-2 (|:| -1942 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -2982 ((-2 (|:| -1942 $) (|:| |coef1| $)) $ $)) (-15 -1826 ((-2 (|:| -1942 $) (|:| |coef2| $)) $ $)) (-15 -4322 ($ $ $)) (-15 -1469 ((-650 $) $ $)) (-15 -1759 ($ $ $)) (-15 -4357 ($ $ $ (-777))) (-15 -3014 ($ $ $ $ (-777))) (-15 -3630 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -1942 (|t#1| |t#1| $)) (-15 -2917 ($ $)) (-15 -2628 ($ $)) (-15 -1624 ($ $)) (-15 -2246 ($ $))) |%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 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#3|) . T) ((-622 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-619 (-959 |#1|)) |has| |#3| (-620 (-1186))) ((-174) -2892 (|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) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2892 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2892 (|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 $) -2892 (|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 $) -2892 (|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 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-2811 (((-650 (-1144)) $) 18)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 27) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-1144) $) 20)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1075) (-13 (-1092) (-10 -8 (-15 -2811 ((-650 (-1144)) $)) (-15 -3613 ((-1144) $))))) (T -1075))
-((-2811 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1075)))) (-3613 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1075)))))
-(-13 (-1092) (-10 -8 (-15 -2811 ((-650 (-1144)) $)) (-15 -3613 ((-1144) $))))
-((-3467 (((-112) |#3| $) 15)) (-1979 (((-3 $ "failed") |#3| (-928)) 29)) (-2875 (((-3 |#3| "failed") |#3| $) 45)) (-3903 (((-112) |#3| $) 19)) (-1479 (((-112) |#3| $) 17)))
-(((-1076 |#1| |#2| |#3|) (-10 -8 (-15 -1979 ((-3 |#1| "failed") |#3| (-928))) (-15 -2875 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3903 ((-112) |#3| |#1|)) (-15 -1479 ((-112) |#3| |#1|)) (-15 -3467 ((-112) |#3| |#1|))) (-1077 |#2| |#3|) (-13 (-854) (-368)) (-1253 |#2|)) (T -1076))
-NIL
-(-10 -8 (-15 -1979 ((-3 |#1| "failed") |#3| (-928))) (-15 -2875 ((-3 |#3| "failed") |#3| |#1|)) (-15 -3903 ((-112) |#3| |#1|)) (-15 -1479 ((-112) |#3| |#1|)) (-15 -3467 ((-112) |#3| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) |#2| $) 22)) (-4395 (((-570) |#2| $) 23)) (-1979 (((-3 $ "failed") |#2| (-928)) 16)) (-1701 ((|#1| |#2| $ |#1|) 14)) (-2875 (((-3 |#2| "failed") |#2| $) 19)) (-3903 (((-112) |#2| $) 20)) (-1479 (((-112) |#2| $) 21)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2755 ((|#2| $) 18)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3167 ((|#1| |#2| $ |#1|) 15)) (-3043 (((-650 $) |#2|) 17)) (-3022 (((-112) $ $) 6)))
+((-3357 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-4297 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-777)))) (-2439 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1586 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1603 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1952 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2803 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-2530 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1928 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-1954 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-4304 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1850 (*1 *2 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-4111 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-3919 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1471 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-3451 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1)) (-4 *1 (-1074 *3 *4 *5)))) (-1700 (*1 *2 *1 *1) (|partial| -12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1433 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-4252 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1772 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-1772 (*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)))) (-3279 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-3279 (*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)))) (-2898 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2898 (*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)))) (-2391 (*1 *2 *1 *1) (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))) (-2391 (*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)))) (-2802 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2532 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2802 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2532 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2263 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2352 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2263 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-2352 (*1 *1 *1 *1 *2) (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *2 (-856)))) (-3358 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1453 *1) (|:| |gap| (-777)) (|:| -3971 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-3358 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -1453 *1) (|:| |gap| (-777)) (|:| -3971 *1))) (-4 *1 (-1074 *4 *5 *3)))) (-2443 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1453 *1) (|:| |gap| (-777)) (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-2443 (*1 *2 *1 *1 *3) (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856)) (-5 *2 (-2 (|:| -1453 *1) (|:| |gap| (-777)) (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-1074 *4 *5 *3)))) (-1601 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-1074 *3 *4 *5)))) (-2801 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-2652 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| |polnum| *1) (|:| |polden| *1) (|:| -1974 (-777)))) (-4 *1 (-1074 *3 *4 *5)))) (-2222 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-1590 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)))) (-4383 (*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)))) (-3220 (*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)))) (-1426 (*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)))) (-4383 (*1 *1 *2) (|partial| -2895 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1796 (-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))))) (-3220 (*1 *1 *2) (-2895 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1796 (-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))))) (-1426 (*1 *1 *2) (-2895 (-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5)) (-12 (-1796 (-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))))) (-4383 (*1 *1 *2) (|partial| -2895 (-12 (-5 *2 (-959 *3)) (-12 (-1796 (-4 *3 (-38 (-413 (-570))))) (-1796 (-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 (-1796 (-4 *3 (-551))) (-1796 (-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 (-1796 (-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))))) (-3220 (*1 *1 *2) (-2895 (-12 (-5 *2 (-959 *3)) (-12 (-1796 (-4 *3 (-38 (-413 (-570))))) (-1796 (-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 (-1796 (-4 *3 (-551))) (-1796 (-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 (-1796 (-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))))) (-1426 (*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)))) (-3806 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-2420 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4420 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3310 (*1 *1 *1 *2) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4420 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3310 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-3162 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-2040 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1939 *1) (|:| |coef1| *1) (|:| |coef2| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-1575 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1939 *1) (|:| |coef1| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-3062 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-2 (|:| -1939 *1) (|:| |coef2| *1))) (-4 *1 (-1074 *3 *4 *5)))) (-3930 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-2690 (*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)))) (-3693 (*1 *1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-562)))) (-4256 (*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)))) (-3780 (*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)))) (-1475 (*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)))) (-1939 (*1 *2 *2 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-2197 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-3272 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1726 (*1 *1 *1) (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799)) (-4 *4 (-856)) (-4 *2 (-458)))) (-1825 (*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 -3357 (|t#3| $)) (-15 -4297 ((-777) $)) (-15 -2439 ($ $)) (-15 -1586 ($ $)) (-15 -1603 ($ $)) (-15 -1952 ($ $)) (-15 -2803 ((-650 $) $)) (-15 -2530 ($ $)) (-15 -1928 ($ $ |t#3|)) (-15 -1954 ($ $ |t#3|)) (-15 -4304 ((-112) $)) (-15 -1850 ((-112) $)) (-15 -4111 ($ $)) (-15 -3919 ($ $)) (-15 -1471 ((-650 $) $)) (-15 -3451 ((-650 $) $)) (-15 -1700 ((-3 (-112) "failed") $ $)) (-15 -1433 ((-112) $ $)) (-15 -4252 ((-112) $ $)) (-15 -1772 ((-112) $ $)) (-15 -1772 ((-112) $ (-650 $))) (-15 -3279 ((-112) $ $)) (-15 -3279 ((-112) $ (-650 $))) (-15 -2898 ((-112) $ $)) (-15 -2898 ((-112) $ (-650 $))) (-15 -2391 ((-112) $ $)) (-15 -2391 ((-112) $ (-650 $))) (-15 -2802 ($ $ $)) (-15 -2532 ($ $ $)) (-15 -2802 ($ $ $ |t#3|)) (-15 -2532 ($ $ $ |t#3|)) (-15 -2263 ($ $ $)) (-15 -2352 ($ $ $)) (-15 -2263 ($ $ $ |t#3|)) (-15 -2352 ($ $ $ |t#3|)) (-15 -3358 ((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3971 $)) $ $)) (-15 -3358 ((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3971 $)) $ $ |t#3|)) (-15 -2443 ((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -2443 ((-2 (|:| -1453 $) (|:| |gap| (-777)) (|:| -3959 $) (|:| -3971 $)) $ $ |t#3|)) (-15 -1601 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -2801 ($ $ $)) (-15 -2652 ((-2 (|:| |polnum| $) (|:| |polden| $) (|:| -1974 (-777))) $ $)) (-15 -2222 ($ $ $)) (-15 -1590 ($ $ $)) (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 -4383 ((-3 $ "failed") (-959 (-413 (-570))))) (-15 -3220 ($ (-959 (-413 (-570))))) (-15 -1426 ($ (-959 (-413 (-570))))) (-15 -4383 ((-3 $ "failed") (-959 (-570)))) (-15 -3220 ($ (-959 (-570)))) (-15 -1426 ($ (-959 (-570)))) (IF (|has| |t#1| (-1001 (-570))) |%noBranch| (PROGN (-15 -4383 ((-3 $ "failed") (-959 |t#1|))) (-15 -3220 ($ (-959 |t#1|)))))) |%noBranch|) (IF (|has| |t#1| (-38 (-570))) (IF (|has| |t#1| (-38 (-413 (-570)))) |%noBranch| (PROGN (-15 -4383 ((-3 $ "failed") (-959 (-570)))) (-15 -3220 ($ (-959 (-570)))) (-15 -1426 ($ (-959 (-570)))) (IF (|has| |t#1| (-551)) |%noBranch| (PROGN (-15 -4383 ((-3 $ "failed") (-959 |t#1|))) (-15 -3220 ($ (-959 |t#1|))))))) |%noBranch|) (IF (|has| |t#1| (-38 (-570))) |%noBranch| (IF (|has| |t#1| (-38 (-413 (-570)))) |%noBranch| (PROGN (-15 -4383 ((-3 $ "failed") (-959 |t#1|))) (-15 -3220 ($ (-959 |t#1|)))))) (-15 -1426 ($ (-959 |t#1|))) (IF (|has| |t#1| (-1047 (-570))) (-6 (-620 (-1168))) |%noBranch|)) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-15 -3806 ($ $)) (-15 -2420 ($ $)) (-15 -4420 ($ $ |t#1|)) (-15 -3310 ($ $ |t#1|)) (-15 -4420 ($ $ $)) (-15 -3310 ($ $ $)) (-15 -3162 ($ $ $)) (-15 -2040 ((-2 (|:| -1939 $) (|:| |coef1| $) (|:| |coef2| $)) $ $)) (-15 -1575 ((-2 (|:| -1939 $) (|:| |coef1| $)) $ $)) (-15 -3062 ((-2 (|:| -1939 $) (|:| |coef2| $)) $ $)) (-15 -3930 ($ $ $)) (-15 -2690 ((-650 $) $ $)) (-15 -3693 ($ $ $)) (-15 -4256 ($ $ $ (-777))) (-15 -3780 ($ $ $ $ (-777))) (-15 -1475 ($ $ $ $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (PROGN (-15 -1939 (|t#1| |t#1| $)) (-15 -2197 ($ $)) (-15 -3272 ($ $)) (-15 -1726 ($ $)) (-15 -1825 ($ $))) |%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 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-102) . T) ((-111 #0# #0#) |has| |#1| (-38 (-413 (-570)))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #0#) -2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) . T) ((-622 |#3|) . T) ((-622 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-619 (-868)) . T) ((-619 (-959 |#1|)) |has| |#3| (-620 (-1186))) ((-174) -2895 (|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) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458))) ((-313 $) . T) ((-330 |#1| |#2|) . T) ((-382 |#1|) . T) ((-417 |#1|) . T) ((-458) -2895 (|has| |#1| (-916)) (|has| |#1| (-458))) ((-520 |#3| |#1|) . T) ((-520 |#3| $) . T) ((-520 $ $) . T) ((-562) -2895 (|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 $) -2895 (|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 $) -2895 (|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 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T) ((-1231) |has| |#1| (-916)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-2814 (((-650 (-1144)) $) 18)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 27) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-1144) $) 20)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1075) (-13 (-1092) (-10 -8 (-15 -2814 ((-650 (-1144)) $)) (-15 -3616 ((-1144) $))))) (T -1075))
+((-2814 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1075)))) (-3616 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1075)))))
+(-13 (-1092) (-10 -8 (-15 -2814 ((-650 (-1144)) $)) (-15 -3616 ((-1144) $))))
+((-3721 (((-112) |#3| $) 15)) (-3896 (((-3 $ "failed") |#3| (-928)) 29)) (-1929 (((-3 |#3| "failed") |#3| $) 45)) (-2346 (((-112) |#3| $) 19)) (-2788 (((-112) |#3| $) 17)))
+(((-1076 |#1| |#2| |#3|) (-10 -8 (-15 -3896 ((-3 |#1| "failed") |#3| (-928))) (-15 -1929 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2346 ((-112) |#3| |#1|)) (-15 -2788 ((-112) |#3| |#1|)) (-15 -3721 ((-112) |#3| |#1|))) (-1077 |#2| |#3|) (-13 (-854) (-368)) (-1253 |#2|)) (T -1076))
+NIL
+(-10 -8 (-15 -3896 ((-3 |#1| "failed") |#3| (-928))) (-15 -1929 ((-3 |#3| "failed") |#3| |#1|)) (-15 -2346 ((-112) |#3| |#1|)) (-15 -2788 ((-112) |#3| |#1|)) (-15 -3721 ((-112) |#3| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) |#2| $) 22)) (-3408 (((-570) |#2| $) 23)) (-3896 (((-3 $ "failed") |#2| (-928)) 16)) (-3157 ((|#1| |#2| $ |#1|) 14)) (-1929 (((-3 |#2| "failed") |#2| $) 19)) (-2346 (((-112) |#2| $) 20)) (-2788 (((-112) |#2| $) 21)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2075 ((|#2| $) 18)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3170 ((|#1| |#2| $ |#1|) 15)) (-4017 (((-650 $) |#2|) 17)) (-3025 (((-112) $ $) 6)))
(((-1077 |#1| |#2|) (-141) (-13 (-854) (-368)) (-1253 |t#1|)) (T -1077))
-((-4395 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-570)))) (-3467 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-1479 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-3903 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-2875 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368))) (-4 *2 (-1253 *3)))) (-2755 (*1 *2 *1) (-12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368))) (-4 *2 (-1253 *3)))) (-3043 (*1 *2 *3) (-12 (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-650 *1)) (-4 *1 (-1077 *4 *3)))) (-1979 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-928)) (-4 *4 (-13 (-854) (-368))) (-4 *1 (-1077 *4 *2)) (-4 *2 (-1253 *4)))) (-3167 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368))) (-4 *3 (-1253 *2)))) (-1701 (*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 -4395 ((-570) |t#2| $)) (-15 -3467 ((-112) |t#2| $)) (-15 -1479 ((-112) |t#2| $)) (-15 -3903 ((-112) |t#2| $)) (-15 -2875 ((-3 |t#2| "failed") |t#2| $)) (-15 -2755 (|t#2| $)) (-15 -3043 ((-650 $) |t#2|)) (-15 -1979 ((-3 $ "failed") |t#2| (-928))) (-15 -3167 (|t#1| |t#2| $ |t#1|)) (-15 -1701 (|t#1| |t#2| $ |t#1|))))
+((-3408 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-570)))) (-3721 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-2788 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-2346 (*1 *2 *3 *1) (-12 (-4 *1 (-1077 *4 *3)) (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-112)))) (-1929 (*1 *2 *2 *1) (|partial| -12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368))) (-4 *2 (-1253 *3)))) (-2075 (*1 *2 *1) (-12 (-4 *1 (-1077 *3 *2)) (-4 *3 (-13 (-854) (-368))) (-4 *2 (-1253 *3)))) (-4017 (*1 *2 *3) (-12 (-4 *4 (-13 (-854) (-368))) (-4 *3 (-1253 *4)) (-5 *2 (-650 *1)) (-4 *1 (-1077 *4 *3)))) (-3896 (*1 *1 *2 *3) (|partial| -12 (-5 *3 (-928)) (-4 *4 (-13 (-854) (-368))) (-4 *1 (-1077 *4 *2)) (-4 *2 (-1253 *4)))) (-3170 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1077 *2 *3)) (-4 *2 (-13 (-854) (-368))) (-4 *3 (-1253 *2)))) (-3157 (*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 -3408 ((-570) |t#2| $)) (-15 -3721 ((-112) |t#2| $)) (-15 -2788 ((-112) |t#2| $)) (-15 -2346 ((-112) |t#2| $)) (-15 -1929 ((-3 |t#2| "failed") |t#2| $)) (-15 -2075 (|t#2| $)) (-15 -4017 ((-650 $) |t#2|)) (-15 -3896 ((-3 $ "failed") |t#2| (-928))) (-15 -3170 (|t#1| |t#2| $ |t#1|)) (-15 -3157 (|t#1| |t#2| $ |t#1|))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3059 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-777)) 114)) (-4177 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777)) 63)) (-2599 (((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-777)) 99)) (-2039 (((-777) (-650 |#4|) (-650 |#5|)) 30)) (-1331 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|) 66) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777)) 65) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777) (-112)) 67)) (-4226 (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112)) 86) (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112)) 87)) (-1425 (((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) 92)) (-1814 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-112)) 62)) (-2745 (((-777) (-650 |#4|) (-650 |#5|)) 21)))
-(((-1078 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2745 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2039 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -1814 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-112))) (-15 -4177 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777))) (-15 -4177 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777))) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -4226 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -4226 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3059 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-777))) (-15 -1425 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) (-15 -2599 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-777)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1078))
-((-2599 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3684 *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)))) (-1425 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3684 *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)))) (-3059 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-650 *11)) (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3684 *11)))))) (-5 *6 (-777)) (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3684 *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)))) (-4226 (*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)))) (-4226 (*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)))) (-1331 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1331 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-1331 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1078 *7 *8 *9 *3 *4)) (-4 *4 (-1080 *7 *8 *9 *3)))) (-4177 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-4177 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-1814 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-2039 (*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)))) (-2745 (*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 -2745 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2039 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -1814 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-112))) (-15 -4177 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777))) (-15 -4177 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777))) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -4226 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -4226 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3059 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-777))) (-15 -1425 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) (-15 -2599 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-777))))
-((-3948 (((-112) |#5| $) 26)) (-3825 (((-112) |#5| $) 29)) (-2819 (((-112) |#5| $) 18) (((-112) $) 52)) (-2730 (((-650 $) |#5| $) NIL) (((-650 $) (-650 |#5|) $) 94) (((-650 $) (-650 |#5|) (-650 $)) 92) (((-650 $) |#5| (-650 $)) 95)) (-2431 (($ $ |#5|) NIL) (((-650 $) |#5| $) NIL) (((-650 $) |#5| (-650 $)) 73) (((-650 $) (-650 |#5|) $) 75) (((-650 $) (-650 |#5|) (-650 $)) 77)) (-2401 (((-650 $) |#5| $) NIL) (((-650 $) |#5| (-650 $)) 64) (((-650 $) (-650 |#5|) $) 69) (((-650 $) (-650 |#5|) (-650 $)) 71)) (-2950 (((-112) |#5| $) 32)))
-(((-1079 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -2431 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2431 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2431 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2431 ((-650 |#1|) |#5| |#1|)) (-15 -2401 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2401 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2401 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2401 ((-650 |#1|) |#5| |#1|)) (-15 -2730 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2730 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2730 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2730 ((-650 |#1|) |#5| |#1|)) (-15 -3825 ((-112) |#5| |#1|)) (-15 -2819 ((-112) |#1|)) (-15 -2950 ((-112) |#5| |#1|)) (-15 -3948 ((-112) |#5| |#1|)) (-15 -2819 ((-112) |#5| |#1|)) (-15 -2431 (|#1| |#1| |#5|))) (-1080 |#2| |#3| |#4| |#5|) (-458) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -1079))
-NIL
-(-10 -8 (-15 -2431 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2431 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2431 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2431 ((-650 |#1|) |#5| |#1|)) (-15 -2401 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2401 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2401 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2401 ((-650 |#1|) |#5| |#1|)) (-15 -2730 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2730 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2730 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2730 ((-650 |#1|) |#5| |#1|)) (-15 -3825 ((-112) |#5| |#1|)) (-15 -2819 ((-112) |#1|)) (-15 -2950 ((-112) |#5| |#1|)) (-15 -3948 ((-112) |#5| |#1|)) (-15 -2819 ((-112) |#5| |#1|)) (-15 -2431 (|#1| |#1| |#5|)))
-((-2558 (((-112) $ $) 7)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) 86)) (-1515 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1755 (((-650 |#3|) $) 34)) (-3051 (((-112) $) 27)) (-1416 (((-112) $) 18 (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) 102) (((-112) $) 98)) (-3484 ((|#4| |#4| $) 93)) (-4364 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| $) 127)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) 28)) (-4302 (((-112) $ (-777)) 45)) (-1431 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-1705 (($) 46 T CONST)) (-3737 (((-112) $) 23 (|has| |#1| (-562)))) (-2467 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4047 (((-112) $ $) 24 (|has| |#1| (-562)))) (-1876 (((-112) $) 26 (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2450 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) 37)) (-3216 (($ (-650 |#4|)) 36)) (-3555 (((-3 $ "failed") $) 83)) (-2128 ((|#4| |#4| $) 90)) (-3579 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) 106)) (-3948 (((-112) |#4| $) 137)) (-3825 (((-112) |#4| $) 134)) (-2819 (((-112) |#4| $) 138) (((-112) $) 135)) (-3627 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) 105) (((-112) $) 104)) (-1724 ((|#3| $) 35)) (-2929 (((-112) $ (-777)) 44)) (-2752 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 48)) (-1423 (((-650 |#3|) $) 33)) (-3907 (((-112) |#3| $) 32)) (-3231 (((-112) $ (-777)) 43)) (-1988 (((-1168) $) 10)) (-2925 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-1759 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| |#4| $) 128)) (-1769 (((-3 |#4| "failed") $) 84)) (-3260 (((-650 $) |#4| $) 130)) (-4090 (((-3 (-112) (-650 $)) |#4| $) 133)) (-1743 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2730 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-2231 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3534 (((-650 |#4|) $) 108)) (-1491 (((-112) |#4| $) 100) (((-112) $) 96)) (-2520 ((|#4| |#4| $) 91)) (-2971 (((-112) $ $) 111)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) 101) (((-112) $) 97)) (-4201 ((|#4| |#4| $) 92)) (-3577 (((-1129) $) 11)) (-3543 (((-3 |#4| "failed") $) 85)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1690 (((-3 $ "failed") $ |#4|) 79)) (-2431 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-3642 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 39)) (-2017 (((-112) $) 42)) (-2380 (($) 41)) (-2130 (((-777) $) 107)) (-3584 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3951 (($ $) 40)) (-1425 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 61)) (-3710 (($ $ |#3|) 29)) (-4224 (($ $ |#3|) 31)) (-4085 (($ $) 89)) (-1615 (($ $ |#3|) 30)) (-3799 (((-868) $) 12) (((-650 |#4|) $) 38)) (-4392 (((-777) $) 77 (|has| |#3| (-373)))) (-2335 (((-112) $ $) 9)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2401 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4371 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) 82)) (-2950 (((-112) |#4| $) 136)) (-2561 (((-112) |#3| $) 81)) (-3022 (((-112) $ $) 6)) (-2569 (((-777) $) 47 (|has| $ (-6 -4449)))))
+((-4172 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-777)) 114)) (-3160 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777)) 63)) (-2600 (((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-777)) 99)) (-3319 (((-777) (-650 |#4|) (-650 |#5|)) 30)) (-1848 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|) 66) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777)) 65) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777) (-112)) 67)) (-2456 (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112)) 86) (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112)) 87)) (-1426 (((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) 92)) (-2972 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-112)) 62)) (-3164 (((-777) (-650 |#4|) (-650 |#5|)) 21)))
+(((-1078 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3164 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -3319 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2972 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-112))) (-15 -3160 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777))) (-15 -3160 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777))) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -2456 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -2456 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4172 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-777))) (-15 -1426 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) (-15 -2600 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-777)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1078))
+((-2600 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3687 *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)))) (-1426 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3687 *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)))) (-4172 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-650 *11)) (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3687 *11)))))) (-5 *6 (-777)) (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3687 *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)))) (-2456 (*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)))) (-2456 (*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)))) (-1848 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1848 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-1848 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1078 *7 *8 *9 *3 *4)) (-4 *4 (-1080 *7 *8 *9 *3)))) (-3160 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1078 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3160 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-2972 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-3319 (*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)))) (-3164 (*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 -3164 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -3319 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2972 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-112))) (-15 -3160 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777))) (-15 -3160 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777))) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -2456 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -2456 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4172 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-777))) (-15 -1426 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) (-15 -2600 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-777))))
+((-1483 (((-112) |#5| $) 26)) (-2816 (((-112) |#5| $) 29)) (-2607 (((-112) |#5| $) 18) (((-112) $) 52)) (-3051 (((-650 $) |#5| $) NIL) (((-650 $) (-650 |#5|) $) 94) (((-650 $) (-650 |#5|) (-650 $)) 92) (((-650 $) |#5| (-650 $)) 95)) (-3152 (($ $ |#5|) NIL) (((-650 $) |#5| $) NIL) (((-650 $) |#5| (-650 $)) 73) (((-650 $) (-650 |#5|) $) 75) (((-650 $) (-650 |#5|) (-650 $)) 77)) (-2872 (((-650 $) |#5| $) NIL) (((-650 $) |#5| (-650 $)) 64) (((-650 $) (-650 |#5|) $) 69) (((-650 $) (-650 |#5|) (-650 $)) 71)) (-2506 (((-112) |#5| $) 32)))
+(((-1079 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3152 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -3152 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -3152 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -3152 ((-650 |#1|) |#5| |#1|)) (-15 -2872 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2872 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2872 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2872 ((-650 |#1|) |#5| |#1|)) (-15 -3051 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -3051 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -3051 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -3051 ((-650 |#1|) |#5| |#1|)) (-15 -2816 ((-112) |#5| |#1|)) (-15 -2607 ((-112) |#1|)) (-15 -2506 ((-112) |#5| |#1|)) (-15 -1483 ((-112) |#5| |#1|)) (-15 -2607 ((-112) |#5| |#1|)) (-15 -3152 (|#1| |#1| |#5|))) (-1080 |#2| |#3| |#4| |#5|) (-458) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -1079))
+NIL
+(-10 -8 (-15 -3152 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -3152 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -3152 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -3152 ((-650 |#1|) |#5| |#1|)) (-15 -2872 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -2872 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -2872 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -2872 ((-650 |#1|) |#5| |#1|)) (-15 -3051 ((-650 |#1|) |#5| (-650 |#1|))) (-15 -3051 ((-650 |#1|) (-650 |#5|) (-650 |#1|))) (-15 -3051 ((-650 |#1|) (-650 |#5|) |#1|)) (-15 -3051 ((-650 |#1|) |#5| |#1|)) (-15 -2816 ((-112) |#5| |#1|)) (-15 -2607 ((-112) |#1|)) (-15 -2506 ((-112) |#5| |#1|)) (-15 -1483 ((-112) |#5| |#1|)) (-15 -2607 ((-112) |#5| |#1|)) (-15 -3152 (|#1| |#1| |#5|)))
+((-2560 (((-112) $ $) 7)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) 86)) (-1911 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1755 (((-650 |#3|) $) 34)) (-4092 (((-112) $) 27)) (-1320 (((-112) $) 18 (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) 102) (((-112) $) 98)) (-2698 ((|#4| |#4| $) 93)) (-4310 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| $) 127)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) 28)) (-1932 (((-112) $ (-777)) 45)) (-1434 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) 80)) (-3195 (($) 46 T CONST)) (-3230 (((-112) $) 23 (|has| |#1| (-562)))) (-2339 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4337 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2327 (((-112) $) 26 (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2167 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) 37)) (-3220 (($ (-650 |#4|)) 36)) (-3558 (((-3 $ "failed") $) 83)) (-3059 ((|#4| |#4| $) 90)) (-3582 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-2191 ((|#4| |#4| $) 88)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) 106)) (-1483 (((-112) |#4| $) 137)) (-2816 (((-112) |#4| $) 134)) (-2607 (((-112) |#4| $) 138) (((-112) $) 135)) (-3630 (((-650 |#4|) $) 53 (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) 105) (((-112) $) 104)) (-3357 ((|#3| $) 35)) (-2317 (((-112) $ (-777)) 44)) (-2052 (((-650 |#4|) $) 54 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 48)) (-1388 (((-650 |#3|) $) 33)) (-2387 (((-112) |#3| $) 32)) (-2193 (((-112) $ (-777)) 43)) (-3989 (((-1168) $) 10)) (-2274 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-3693 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| |#4| $) 128)) (-1770 (((-3 |#4| "failed") $) 84)) (-2490 (((-650 $) |#4| $) 130)) (-3623 (((-3 (-112) (-650 $)) |#4| $) 133)) (-3548 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-3051 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-1633 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3151 (((-650 |#4|) $) 108)) (-2898 (((-112) |#4| $) 100) (((-112) $) 96)) (-1590 ((|#4| |#4| $) 91)) (-1433 (((-112) $ $) 111)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) 101) (((-112) $) 97)) (-2222 ((|#4| |#4| $) 92)) (-3580 (((-1129) $) 11)) (-3546 (((-3 |#4| "failed") $) 85)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-4207 (((-3 $ "failed") $ |#4|) 79)) (-3152 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-1627 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 39)) (-4283 (((-112) $) 42)) (-2656 (($) 41)) (-3079 (((-777) $) 107)) (-3587 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4452)))) (-3954 (($ $) 40)) (-1426 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 61)) (-4138 (($ $ |#3|) 29)) (-2435 (($ $ |#3|) 31)) (-3563 (($ $) 89)) (-1631 (($ $ |#3|) 30)) (-3802 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3394 (((-777) $) 77 (|has| |#3| (-373)))) (-3359 (((-112) $ $) 9)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2872 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4379 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) 82)) (-2506 (((-112) |#4| $) 136)) (-3857 (((-112) |#3| $) 81)) (-3025 (((-112) $ $) 6)) (-2570 (((-777) $) 47 (|has| $ (-6 -4452)))))
(((-1080 |#1| |#2| |#3| |#4|) (-141) (-458) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -1080))
-((-2819 (*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)))) (-3948 (*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)))) (-2950 (*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)))) (-2819 (*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)))) (-3825 (*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)))) (-4090 (*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)))) (-1743 (*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)) (|:| -3684 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-1743 (*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)))) (-3260 (*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)))) (-2925 (*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)))) (-1759 (*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) (|:| -3684 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-4364 (*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) (|:| -3684 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-2730 (*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)))) (-2730 (*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)))) (-2730 (*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)))) (-2730 (*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)))) (-2401 (*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)))) (-2401 (*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)))) (-2401 (*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)))) (-2401 (*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)))) (-2231 (*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)))) (-2231 (*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)))) (-2431 (*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)))) (-2431 (*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)))) (-2431 (*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)))) (-2431 (*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)))) (-1515 (*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 -2819 ((-112) |t#4| $)) (-15 -3948 ((-112) |t#4| $)) (-15 -2950 ((-112) |t#4| $)) (-15 -2819 ((-112) $)) (-15 -3825 ((-112) |t#4| $)) (-15 -4090 ((-3 (-112) (-650 $)) |t#4| $)) (-15 -1743 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 $))) |t#4| $)) (-15 -1743 ((-112) |t#4| $)) (-15 -3260 ((-650 $) |t#4| $)) (-15 -2925 ((-3 |t#4| (-650 $)) |t#4| |t#4| $)) (-15 -1759 ((-650 (-2 (|:| |val| |t#4|) (|:| -3684 $))) |t#4| |t#4| $)) (-15 -4364 ((-650 (-2 (|:| |val| |t#4|) (|:| -3684 $))) |t#4| $)) (-15 -2730 ((-650 $) |t#4| $)) (-15 -2730 ((-650 $) (-650 |t#4|) $)) (-15 -2730 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -2730 ((-650 $) |t#4| (-650 $))) (-15 -2401 ((-650 $) |t#4| $)) (-15 -2401 ((-650 $) |t#4| (-650 $))) (-15 -2401 ((-650 $) (-650 |t#4|) $)) (-15 -2401 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -2231 ($ |t#4| $)) (-15 -2231 ($ (-650 |t#4|) $)) (-15 -2431 ((-650 $) |t#4| $)) (-15 -2431 ((-650 $) |t#4| (-650 $))) (-15 -2431 ((-650 $) (-650 |t#4|) $)) (-15 -2431 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -1515 ((-650 $) (-650 |t#4|) (-112)))))
+((-2607 (*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)))) (-1483 (*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)))) (-2506 (*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)))) (-2607 (*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)))) (-2816 (*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)))) (-3623 (*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)))) (-3548 (*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)) (|:| -3687 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-3548 (*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)))) (-2490 (*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)))) (-2274 (*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)))) (-3693 (*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) (|:| -3687 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-4310 (*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) (|:| -3687 *1)))) (-4 *1 (-1080 *4 *5 *6 *3)))) (-3051 (*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)))) (-3051 (*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)))) (-3051 (*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)))) (-3051 (*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)))) (-2872 (*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)))) (-2872 (*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)))) (-2872 (*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)))) (-2872 (*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)))) (-1633 (*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)))) (-1633 (*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)))) (-3152 (*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)))) (-3152 (*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)))) (-3152 (*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)))) (-3152 (*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)))) (-1911 (*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 -2607 ((-112) |t#4| $)) (-15 -1483 ((-112) |t#4| $)) (-15 -2506 ((-112) |t#4| $)) (-15 -2607 ((-112) $)) (-15 -2816 ((-112) |t#4| $)) (-15 -3623 ((-3 (-112) (-650 $)) |t#4| $)) (-15 -3548 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 $))) |t#4| $)) (-15 -3548 ((-112) |t#4| $)) (-15 -2490 ((-650 $) |t#4| $)) (-15 -2274 ((-3 |t#4| (-650 $)) |t#4| |t#4| $)) (-15 -3693 ((-650 (-2 (|:| |val| |t#4|) (|:| -3687 $))) |t#4| |t#4| $)) (-15 -4310 ((-650 (-2 (|:| |val| |t#4|) (|:| -3687 $))) |t#4| $)) (-15 -3051 ((-650 $) |t#4| $)) (-15 -3051 ((-650 $) (-650 |t#4|) $)) (-15 -3051 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -3051 ((-650 $) |t#4| (-650 $))) (-15 -2872 ((-650 $) |t#4| $)) (-15 -2872 ((-650 $) |t#4| (-650 $))) (-15 -2872 ((-650 $) (-650 |t#4|) $)) (-15 -2872 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -1633 ($ |t#4| $)) (-15 -1633 ($ (-650 |t#4|) $)) (-15 -3152 ((-650 $) |t#4| $)) (-15 -3152 ((-650 $) |t#4| (-650 $))) (-15 -3152 ((-650 $) (-650 |t#4|) $)) (-15 -3152 ((-650 $) (-650 |t#4|) (-650 $))) (-15 -1911 ((-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))
-((-2566 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|) 86)) (-3927 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|) 127)) (-3287 (((-650 |#5|) |#4| |#5|) 74)) (-2743 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|) 47) (((-112) |#4| |#5|) 55)) (-1939 (((-1282)) 36)) (-2639 (((-1282)) 25)) (-4320 (((-1282) (-1168) (-1168) (-1168)) 32)) (-2058 (((-1282) (-1168) (-1168) (-1168)) 21)) (-1634 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#4| |#4| |#5|) 107)) (-1975 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#3| (-112)) 118) (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5| (-112) (-112)) 52)) (-1321 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|) 113)))
-(((-1081 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2058 ((-1282) (-1168) (-1168) (-1168))) (-15 -2639 ((-1282))) (-15 -4320 ((-1282) (-1168) (-1168) (-1168))) (-15 -1939 ((-1282))) (-15 -1634 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -1975 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1975 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#3| (-112))) (-15 -1321 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -3927 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -2743 ((-112) |#4| |#5|)) (-15 -2743 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -3287 ((-650 |#5|) |#4| |#5|)) (-15 -2566 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1081))
-((-2566 (*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) (|:| -3684 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3287 (*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)))) (-2743 (*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)) (|:| -3684 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2743 (*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)))) (-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| *3) (|:| -3684 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1321 (*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) (|:| -3684 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1975 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3684 *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) (|:| -3684 *9)))) (-5 *1 (-1081 *6 *7 *4 *8 *9)))) (-1975 (*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) (|:| -3684 *4)))) (-5 *1 (-1081 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-1634 (*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)) (|:| -3684 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1939 (*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)))) (-4320 (*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)))) (-2639 (*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)))) (-2058 (*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 -2058 ((-1282) (-1168) (-1168) (-1168))) (-15 -2639 ((-1282))) (-15 -4320 ((-1282) (-1168) (-1168) (-1168))) (-15 -1939 ((-1282))) (-15 -1634 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -1975 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1975 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#3| (-112))) (-15 -1321 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -3927 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -2743 ((-112) |#4| |#5|)) (-15 -2743 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -3287 ((-650 |#5|) |#4| |#5|)) (-15 -2566 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|)))
-((-2558 (((-112) $ $) NIL)) (-3863 (((-1226) $) 13)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1434 (((-1144) $) 10)) (-3799 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1082) (-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $)) (-15 -3863 ((-1226) $))))) (T -1082))
-((-1434 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1082)))) (-3863 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-1082)))))
-(-13 (-1092) (-10 -8 (-15 -1434 ((-1144) $)) (-15 -3863 ((-1226) $))))
-((-4305 (((-112) $ $) 7)))
-(((-1083) (-13 (-1227) (-10 -8 (-15 -4305 ((-112) $ $))))) (T -1083))
-((-4305 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1083)))))
-(-13 (-1227) (-10 -8 (-15 -4305 ((-112) $ $))))
-((-2558 (((-112) $ $) NIL)) (-3600 (((-1186) $) 8)) (-1988 (((-1168) $) 17)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 11)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 14)))
-(((-1084 |#1|) (-13 (-1109) (-10 -8 (-15 -3600 ((-1186) $)))) (-1186)) (T -1084))
-((-3600 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1084 *3)) (-14 *3 *2))))
-(-13 (-1109) (-10 -8 (-15 -3600 ((-1186) $))))
-((-2558 (((-112) $ $) NIL)) (-4268 (($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|))) 34)) (-2255 (($ |#3| |#3|) 23) (($ |#3| |#3| (-650 (-1186))) 21)) (-2225 ((|#3| $) 13)) (-4380 (((-3 (-298 |#3|) "failed") $) 60)) (-3216 (((-298 |#3|) $) NIL)) (-2076 (((-650 (-1186)) $) 16)) (-1793 (((-899 |#1|) $) 11)) (-2213 ((|#3| $) 12)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1941 ((|#3| $ |#3|) 28) ((|#3| $ |#3| (-928)) 41)) (-3799 (((-868) $) 89) (($ (-298 |#3|)) 22)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 38)))
-(((-1085 |#1| |#2| |#3|) (-13 (-1109) (-290 |#3| |#3|) (-1047 (-298 |#3|)) (-10 -8 (-15 -2255 ($ |#3| |#3|)) (-15 -2255 ($ |#3| |#3| (-650 (-1186)))) (-15 -4268 ($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|)))) (-15 -1793 ((-899 |#1|) $)) (-15 -2213 (|#3| $)) (-15 -2225 (|#3| $)) (-15 -1941 (|#3| $ |#3| (-928))) (-15 -2076 ((-650 (-1186)) $)))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -1085))
-((-2255 (*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)))))) (-2255 (*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)))))) (-4268 (*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)))) (-1793 (*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))))) (-2213 (*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)))))) (-2225 (*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)))))) (-1941 (*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)))))) (-2076 (*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 -2255 ($ |#3| |#3|)) (-15 -2255 ($ |#3| |#3| (-650 (-1186)))) (-15 -4268 ($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|)))) (-15 -1793 ((-899 |#1|) $)) (-15 -2213 (|#3| $)) (-15 -2225 (|#3| $)) (-15 -1941 (|#3| $ |#3| (-928))) (-15 -2076 ((-650 (-1186)) $))))
-((-2558 (((-112) $ $) NIL)) (-4235 (($ (-650 (-1085 |#1| |#2| |#3|))) 14)) (-1610 (((-650 (-1085 |#1| |#2| |#3|)) $) 21)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1941 ((|#3| $ |#3|) 24) ((|#3| $ |#3| (-928)) 27)) (-3799 (((-868) $) 17)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 20)))
-(((-1086 |#1| |#2| |#3|) (-13 (-1109) (-290 |#3| |#3|) (-10 -8 (-15 -4235 ($ (-650 (-1085 |#1| |#2| |#3|)))) (-15 -1610 ((-650 (-1085 |#1| |#2| |#3|)) $)) (-15 -1941 (|#3| $ |#3| (-928))))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -1086))
-((-4235 (*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)))) (-1610 (*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)))))) (-1941 (*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 -4235 ($ (-650 (-1085 |#1| |#2| |#3|)))) (-15 -1610 ((-650 (-1085 |#1| |#2| |#3|)) $)) (-15 -1941 (|#3| $ |#3| (-928)))))
-((-4111 (((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)) 88) (((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|))) 92) (((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112)) 90)))
-(((-1087 |#1| |#2|) (-10 -7 (-15 -4111 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -4111 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -4111 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)))) (-13 (-311) (-148)) (-650 (-1186))) (T -1087))
-((-4111 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3205 (-1182 *5)) (|:| -3424 (-650 (-959 *5)))))) (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))))) (-4111 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3205 (-1182 *4)) (|:| -3424 (-650 (-959 *4)))))) (-5 *1 (-1087 *4 *5)) (-5 *3 (-650 (-959 *4))) (-14 *5 (-650 (-1186))))) (-4111 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3205 (-1182 *5)) (|:| -3424 (-650 (-959 *5)))))) (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))))))
-(-10 -7 (-15 -4111 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -4111 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -4111 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))))
-((-3801 (((-424 |#3|) |#3|) 18)))
-(((-1088 |#1| |#2| |#3|) (-10 -7 (-15 -3801 ((-424 |#3|) |#3|))) (-1253 (-413 (-570))) (-13 (-368) (-148) (-730 (-413 (-570)) |#1|)) (-1253 |#2|)) (T -1088))
-((-3801 (*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 -3801 ((-424 |#3|) |#3|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 136)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-368)))) (-3074 (($ $) NIL (|has| |#1| (-368)))) (-3475 (((-112) $) NIL (|has| |#1| (-368)))) (-1806 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) 120)) (-3207 ((|#1| $) 125)) (-2640 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-354)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3510 (((-777)) 43 (|has| |#1| (-373)))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-3243 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) 46)) (-2366 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-354)))) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-2818 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 112) (((-695 |#1|) (-695 $)) 107)) (-3624 (($ |#2|) 65) (((-3 $ "failed") (-413 |#2|)) NIL (|has| |#1| (-368)))) (-2875 (((-3 $ "failed") $) NIL)) (-4006 (((-928)) 83)) (-3446 (($) 47 (|has| |#1| (-373)))) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-2652 (($) NIL (|has| |#1| (-354)))) (-2542 (((-112) $) NIL (|has| |#1| (-354)))) (-2063 (($ $ (-777)) NIL (|has| |#1| (-354))) (($ $) NIL (|has| |#1| (-354)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-4323 (((-928) $) NIL (|has| |#1| (-354))) (((-839 (-928)) $) NIL (|has| |#1| (-354)))) (-4346 (((-112) $) NIL)) (-2959 ((|#1| $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-354)))) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3521 ((|#2| $) 90 (|has| |#1| (-368)))) (-1884 (((-928) $) 145 (|has| |#1| (-373)))) (-3612 ((|#2| $) 62)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2438 (($) NIL (|has| |#1| (-354)) CONST)) (-2268 (($ (-928)) 135 (|has| |#1| (-373)))) (-3577 (((-1129) $) NIL)) (-2466 (($) 127)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2432 (((-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))) NIL (|has| |#1| (-354)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3570 ((|#1| (-1277 $)) NIL) ((|#1|) 116)) (-2289 (((-777) $) NIL (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) NIL (|has| |#1| (-354)))) (-3547 (($ $) NIL (-2892 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) NIL (-2892 (-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)))) (-1998 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2755 ((|#2|) 80)) (-4003 (($) NIL (|has| |#1| (-354)))) (-3424 (((-1277 |#1|) $ (-1277 $)) 95) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) 75) (((-695 |#1|) (-1277 $)) 91)) (-1425 (((-1277 |#1|) $) NIL) (($ (-1277 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-354)))) (-3799 (((-868) $) 61) (($ (-570)) 56) (($ |#1|) 58) (($ $) NIL (|has| |#1| (-368))) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3532 (($ $) NIL (|has| |#1| (-354))) (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3553 ((|#2| $) 88)) (-3499 (((-777)) 82 T CONST)) (-2335 (((-112) $ $) NIL)) (-1972 (((-1277 $)) 87)) (-2029 (((-112) $ $) NIL (|has| |#1| (-368)))) (-1861 (($) 32 T CONST)) (-1875 (($) 19 T CONST)) (-2942 (($ $) NIL (-2892 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) NIL (-2892 (-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)))) (-3022 (((-112) $ $) 67)) (-3122 (($ $ $) NIL (|has| |#1| (-368)))) (-3111 (($ $) 71) (($ $ $) NIL)) (-3101 (($ $ $) 69)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 54) (($ $ $) 73) (($ $ |#1|) NIL) (($ |#1| $) 51) (($ (-413 (-570)) $) NIL (|has| |#1| (-368))) (($ $ (-413 (-570))) NIL (|has| |#1| (-368)))))
+((-3908 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|) 86)) (-2566 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|) 127)) (-1456 (((-650 |#5|) |#4| |#5|) 74)) (-3148 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|) 47) (((-112) |#4| |#5|) 55)) (-1648 (((-1282)) 36)) (-3366 (((-1282)) 25)) (-3909 (((-1282) (-1168) (-1168) (-1168)) 32)) (-3542 (((-1282) (-1168) (-1168) (-1168)) 21)) (-1849 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#4| |#4| |#5|) 107)) (-3855 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#3| (-112)) 118) (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5| (-112) (-112)) 52)) (-1725 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|) 113)))
+(((-1081 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3542 ((-1282) (-1168) (-1168) (-1168))) (-15 -3366 ((-1282))) (-15 -3909 ((-1282) (-1168) (-1168) (-1168))) (-15 -1648 ((-1282))) (-15 -1849 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -3855 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3855 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#3| (-112))) (-15 -1725 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -2566 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -3148 ((-112) |#4| |#5|)) (-15 -3148 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -1456 ((-650 |#5|) |#4| |#5|)) (-15 -3908 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1081))
+((-3908 (*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) (|:| -3687 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1456 (*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)))) (-3148 (*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)) (|:| -3687 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3148 (*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)))) (-2566 (*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) (|:| -3687 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1725 (*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) (|:| -3687 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3855 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3687 *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) (|:| -3687 *9)))) (-5 *1 (-1081 *6 *7 *4 *8 *9)))) (-3855 (*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) (|:| -3687 *4)))) (-5 *1 (-1081 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-1849 (*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)) (|:| -3687 *4)))) (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1648 (*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)))) (-3909 (*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)))) (-3366 (*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)))) (-3542 (*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 -3542 ((-1282) (-1168) (-1168) (-1168))) (-15 -3366 ((-1282))) (-15 -3909 ((-1282) (-1168) (-1168) (-1168))) (-15 -1648 ((-1282))) (-15 -1849 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -3855 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -3855 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#3| (-112))) (-15 -1725 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -2566 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -3148 ((-112) |#4| |#5|)) (-15 -3148 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -1456 ((-650 |#5|) |#4| |#5|)) (-15 -3908 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|)))
+((-2560 (((-112) $ $) NIL)) (-3866 (((-1226) $) 13)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1435 (((-1144) $) 10)) (-3802 (((-868) $) 20) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1082) (-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $)) (-15 -3866 ((-1226) $))))) (T -1082))
+((-1435 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1082)))) (-3866 (*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-1082)))))
+(-13 (-1092) (-10 -8 (-15 -1435 ((-1144) $)) (-15 -3866 ((-1226) $))))
+((-4308 (((-112) $ $) 7)))
+(((-1083) (-13 (-1227) (-10 -8 (-15 -4308 ((-112) $ $))))) (T -1083))
+((-4308 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1083)))))
+(-13 (-1227) (-10 -8 (-15 -4308 ((-112) $ $))))
+((-2560 (((-112) $ $) NIL)) (-3602 (((-1186) $) 8)) (-3989 (((-1168) $) 17)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 11)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 14)))
+(((-1084 |#1|) (-13 (-1109) (-10 -8 (-15 -3602 ((-1186) $)))) (-1186)) (T -1084))
+((-3602 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1084 *3)) (-14 *3 *2))))
+(-13 (-1109) (-10 -8 (-15 -3602 ((-1186) $))))
+((-2560 (((-112) $ $) NIL)) (-4271 (($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|))) 34)) (-2256 (($ |#3| |#3|) 23) (($ |#3| |#3| (-650 (-1186))) 21)) (-2226 ((|#3| $) 13)) (-4383 (((-3 (-298 |#3|) "failed") $) 60)) (-3220 (((-298 |#3|) $) NIL)) (-3724 (((-650 (-1186)) $) 16)) (-1795 (((-899 |#1|) $) 11)) (-2215 ((|#3| $) 12)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1942 ((|#3| $ |#3|) 28) ((|#3| $ |#3| (-928)) 41)) (-3802 (((-868) $) 89) (($ (-298 |#3|)) 22)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 38)))
+(((-1085 |#1| |#2| |#3|) (-13 (-1109) (-290 |#3| |#3|) (-1047 (-298 |#3|)) (-10 -8 (-15 -2256 ($ |#3| |#3|)) (-15 -2256 ($ |#3| |#3| (-650 (-1186)))) (-15 -4271 ($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|)))) (-15 -1795 ((-899 |#1|) $)) (-15 -2215 (|#3| $)) (-15 -2226 (|#3| $)) (-15 -1942 (|#3| $ |#3| (-928))) (-15 -3724 ((-650 (-1186)) $)))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -1085))
+((-2256 (*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)))))) (-2256 (*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)))))) (-4271 (*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)))) (-1795 (*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))))) (-2215 (*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)))))) (-2226 (*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)))))) (-1942 (*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)))))) (-3724 (*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 -2256 ($ |#3| |#3|)) (-15 -2256 ($ |#3| |#3| (-650 (-1186)))) (-15 -4271 ($ $ (-650 (-1186)) (-1 (-112) (-650 |#3|)))) (-15 -1795 ((-899 |#1|) $)) (-15 -2215 (|#3| $)) (-15 -2226 (|#3| $)) (-15 -1942 (|#3| $ |#3| (-928))) (-15 -3724 ((-650 (-1186)) $))))
+((-2560 (((-112) $ $) NIL)) (-4238 (($ (-650 (-1085 |#1| |#2| |#3|))) 14)) (-1611 (((-650 (-1085 |#1| |#2| |#3|)) $) 21)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1942 ((|#3| $ |#3|) 24) ((|#3| $ |#3| (-928)) 27)) (-3802 (((-868) $) 17)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 20)))
+(((-1086 |#1| |#2| |#3|) (-13 (-1109) (-290 |#3| |#3|) (-10 -8 (-15 -4238 ($ (-650 (-1085 |#1| |#2| |#3|)))) (-15 -1611 ((-650 (-1085 |#1| |#2| |#3|)) $)) (-15 -1942 (|#3| $ |#3| (-928))))) (-1109) (-13 (-1058) (-893 |#1|) (-620 (-899 |#1|))) (-13 (-436 |#2|) (-893 |#1|) (-620 (-899 |#1|)))) (T -1086))
+((-4238 (*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)))) (-1611 (*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)))))) (-1942 (*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 -4238 ($ (-650 (-1085 |#1| |#2| |#3|)))) (-15 -1611 ((-650 (-1085 |#1| |#2| |#3|)) $)) (-15 -1942 (|#3| $ |#3| (-928)))))
+((-3794 (((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)) 88) (((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|))) 92) (((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112)) 90)))
+(((-1087 |#1| |#2|) (-10 -7 (-15 -3794 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -3794 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -3794 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)))) (-13 (-311) (-148)) (-650 (-1186))) (T -1087))
+((-3794 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5)))))) (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))))) (-3794 (*1 *2 *3) (-12 (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3145 (-1182 *4)) (|:| -3314 (-650 (-959 *4)))))) (-5 *1 (-1087 *4 *5)) (-5 *3 (-650 (-959 *4))) (-14 *5 (-650 (-1186))))) (-3794 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-2 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5)))))) (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))))))
+(-10 -7 (-15 -3794 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -3794 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -3794 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))))
+((-3804 (((-424 |#3|) |#3|) 18)))
+(((-1088 |#1| |#2| |#3|) (-10 -7 (-15 -3804 ((-424 |#3|) |#3|))) (-1253 (-413 (-570))) (-13 (-368) (-148) (-730 (-413 (-570)) |#1|)) (-1253 |#2|)) (T -1088))
+((-3804 (*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 -3804 ((-424 |#3|) |#3|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 136)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-368)))) (-4306 (($ $) NIL (|has| |#1| (-368)))) (-2617 (((-112) $) NIL (|has| |#1| (-368)))) (-2913 (((-695 |#1|) (-1277 $)) NIL) (((-695 |#1|)) 120)) (-3211 ((|#1| $) 125)) (-3379 (((-1199 (-928) (-777)) (-570)) NIL (|has| |#1| (-354)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-3513 (((-777)) 43 (|has| |#1| (-373)))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-2322 (($ (-1277 |#1|) (-1277 $)) NIL) (($ (-1277 |#1|)) 46)) (-3704 (((-3 "prime" "polynomial" "normal" "cyclic")) NIL (|has| |#1| (-354)))) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-2595 (((-695 |#1|) $ (-1277 $)) NIL) (((-695 |#1|) $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 112) (((-695 |#1|) (-695 $)) 107)) (-3627 (($ |#2|) 65) (((-3 $ "failed") (-413 |#2|)) NIL (|has| |#1| (-368)))) (-1929 (((-3 $ "failed") $) NIL)) (-4009 (((-928)) 83)) (-3449 (($) 47 (|has| |#1| (-373)))) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3511 (($) NIL (|has| |#1| (-354)))) (-1843 (((-112) $) NIL (|has| |#1| (-354)))) (-3599 (($ $ (-777)) NIL (|has| |#1| (-354))) (($ $) NIL (|has| |#1| (-354)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-3941 (((-928) $) NIL (|has| |#1| (-354))) (((-839 (-928)) $) NIL (|has| |#1| (-354)))) (-4139 (((-112) $) NIL)) (-4399 ((|#1| $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-354)))) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3043 ((|#2| $) 90 (|has| |#1| (-368)))) (-2400 (((-928) $) 145 (|has| |#1| (-373)))) (-3615 ((|#2| $) 62)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2439 (($) NIL (|has| |#1| (-354)) CONST)) (-2267 (($ (-928)) 135 (|has| |#1| (-373)))) (-3580 (((-1129) $) NIL)) (-2467 (($) 127)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3158 (((-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))) NIL (|has| |#1| (-354)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-2265 ((|#1| (-1277 $)) NIL) ((|#1|) 116)) (-4080 (((-777) $) NIL (|has| |#1| (-354))) (((-3 (-777) "failed") $ $) NIL (|has| |#1| (-354)))) (-3550 (($ $) NIL (-2895 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) NIL (-2895 (-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)))) (-4083 (((-695 |#1|) (-1277 $) (-1 |#1| |#1|)) NIL (|has| |#1| (-368)))) (-2075 ((|#2|) 80)) (-3924 (($) NIL (|has| |#1| (-354)))) (-3314 (((-1277 |#1|) $ (-1277 $)) 95) (((-695 |#1|) (-1277 $) (-1277 $)) NIL) (((-1277 |#1|) $) 75) (((-695 |#1|) (-1277 $)) 91)) (-1426 (((-1277 |#1|) $) NIL) (($ (-1277 |#1|)) NIL) ((|#2| $) NIL) (($ |#2|) NIL)) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (|has| |#1| (-354)))) (-3802 (((-868) $) 61) (($ (-570)) 56) (($ |#1|) 58) (($ $) NIL (|has| |#1| (-368))) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-368)) (|has| |#1| (-1047 (-413 (-570))))))) (-3132 (($ $) NIL (|has| |#1| (-354))) (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2124 ((|#2| $) 88)) (-2851 (((-777)) 82 T CONST)) (-3359 (((-112) $ $) NIL)) (-3827 (((-1277 $)) 87)) (-3228 (((-112) $ $) NIL (|has| |#1| (-368)))) (-1862 (($) 32 T CONST)) (-1876 (($) 19 T CONST)) (-2945 (($ $) NIL (-2895 (-12 (|has| |#1| (-235)) (|has| |#1| (-368))) (|has| |#1| (-354)))) (($ $ (-777)) NIL (-2895 (-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)))) (-3025 (((-112) $ $) 67)) (-3125 (($ $ $) NIL (|has| |#1| (-368)))) (-3114 (($ $) 71) (($ $ $) NIL)) (-3104 (($ $ $) 69)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ (-570)) NIL (|has| |#1| (-368)))) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 54) (($ $ $) 73) (($ $ |#1|) NIL) (($ |#1| $) 51) (($ (-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|)
-((-3801 (((-424 |#3|) |#3|) 19)))
-(((-1090 |#1| |#2| |#3|) (-10 -7 (-15 -3801 ((-424 |#3|) |#3|))) (-1253 (-413 (-959 (-570)))) (-13 (-368) (-148) (-730 (-413 (-959 (-570))) |#1|)) (-1253 |#2|)) (T -1090))
-((-3801 (*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 -3801 ((-424 |#3|) |#3|)))
-((-2558 (((-112) $ $) NIL)) (-3466 (($ $ $) 16)) (-2800 (($ $ $) 17)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3850 (($) 6)) (-1425 (((-1186) $) 20)) (-3799 (((-868) $) 13)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 15)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 9)))
-(((-1091) (-13 (-856) (-620 (-1186)) (-10 -8 (-15 -3850 ($))))) (T -1091))
-((-3850 (*1 *1) (-5 *1 (-1091))))
-(-13 (-856) (-620 (-1186)) (-10 -8 (-15 -3850 ($))))
-((-2558 (((-112) $ $) 7)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-3804 (((-424 |#3|) |#3|) 19)))
+(((-1090 |#1| |#2| |#3|) (-10 -7 (-15 -3804 ((-424 |#3|) |#3|))) (-1253 (-413 (-959 (-570)))) (-13 (-368) (-148) (-730 (-413 (-959 (-570))) |#1|)) (-1253 |#2|)) (T -1090))
+((-3804 (*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 -3804 ((-424 |#3|) |#3|)))
+((-2560 (((-112) $ $) NIL)) (-3469 (($ $ $) 16)) (-2472 (($ $ $) 17)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3030 (($) 6)) (-1426 (((-1186) $) 20)) (-3802 (((-868) $) 13)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 15)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 9)))
+(((-1091) (-13 (-856) (-620 (-1186)) (-10 -8 (-15 -3030 ($))))) (T -1091))
+((-3030 (*1 *1) (-5 *1 (-1091))))
+(-13 (-856) (-620 (-1186)) (-10 -8 (-15 -3030 ($))))
+((-2560 (((-112) $ $) 7)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-3359 (((-112) $ $) 9)) (-3025 (((-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))
-((-3539 ((|#1| |#1| (-1 (-570) |#1| |#1|)) 42) ((|#1| |#1| (-1 (-112) |#1|)) 33)) (-2605 (((-1282)) 21)) (-4311 (((-650 |#1|)) 13)))
-(((-1093 |#1|) (-10 -7 (-15 -2605 ((-1282))) (-15 -4311 ((-650 |#1|))) (-15 -3539 (|#1| |#1| (-1 (-112) |#1|))) (-15 -3539 (|#1| |#1| (-1 (-570) |#1| |#1|)))) (-133)) (T -1093))
-((-3539 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-570) *2 *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))) (-3539 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))) (-4311 (*1 *2) (-12 (-5 *2 (-650 *3)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))) (-2605 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
-(-10 -7 (-15 -2605 ((-1282))) (-15 -4311 ((-650 |#1|))) (-15 -3539 (|#1| |#1| (-1 (-112) |#1|))) (-15 -3539 (|#1| |#1| (-1 (-570) |#1| |#1|))))
-((-4409 (($ (-109) $) 20)) (-3625 (((-697 (-109)) (-512) $) 19)) (-2380 (($) 7)) (-1756 (($) 21)) (-2919 (($) 22)) (-4028 (((-650 (-177)) $) 10)) (-3799 (((-868) $) 25)))
-(((-1094) (-13 (-619 (-868)) (-10 -8 (-15 -2380 ($)) (-15 -4028 ((-650 (-177)) $)) (-15 -3625 ((-697 (-109)) (-512) $)) (-15 -4409 ($ (-109) $)) (-15 -1756 ($)) (-15 -2919 ($))))) (T -1094))
-((-2380 (*1 *1) (-5 *1 (-1094))) (-4028 (*1 *2 *1) (-12 (-5 *2 (-650 (-177))) (-5 *1 (-1094)))) (-3625 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-1094)))) (-4409 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1094)))) (-1756 (*1 *1) (-5 *1 (-1094))) (-2919 (*1 *1) (-5 *1 (-1094))))
-(-13 (-619 (-868)) (-10 -8 (-15 -2380 ($)) (-15 -4028 ((-650 (-177)) $)) (-15 -3625 ((-697 (-109)) (-512) $)) (-15 -4409 ($ (-109) $)) (-15 -1756 ($)) (-15 -2919 ($))))
-((-4299 (((-1277 (-695 |#1|)) (-650 (-695 |#1|))) 45) (((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|))) 75) (((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|)))) 92)) (-3424 (((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|))) 39)))
-(((-1095 |#1|) (-10 -7 (-15 -4299 ((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|))))) (-15 -4299 ((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|)))) (-15 -4299 ((-1277 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3424 ((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|))))) (-368)) (T -1095))
-((-3424 (*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)))) (-4299 (*1 *2 *3) (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-1095 *4)))) (-4299 (*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))))) (-4299 (*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 -4299 ((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|))))) (-15 -4299 ((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|)))) (-15 -4299 ((-1277 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3424 ((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3571 (((-650 (-777)) $) NIL) (((-650 (-777)) $ (-1186)) NIL)) (-3223 (((-777) $) NIL) (((-777) $ (-1186)) NIL)) (-1755 (((-650 (-1097 (-1186))) $) NIL)) (-3775 (((-1182 $) $ (-1097 (-1186))) NIL) (((-1182 |#1|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-1097 (-1186)))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3904 (($ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#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)) (-4322 (($ $ $ (-1097 (-1186))) NIL (|has| |#1| (-174)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1097 (-1186))) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-3720 (($ $ |#1| (-537 (-1097 (-1186))) $) NIL)) (-2842 (((-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)))))) (-4323 (((-777) $ (-1186)) NIL) (((-777) $) NIL)) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-1742 (($ (-1182 |#1|) (-1097 (-1186))) NIL) (($ (-1182 $) (-1097 (-1186))) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-537 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-1097 (-1186))) NIL)) (-2575 (((-537 (-1097 (-1186))) $) NIL) (((-777) $ (-1097 (-1186))) NIL) (((-650 (-777)) $ (-650 (-1097 (-1186)))) NIL)) (-1918 (($ (-1 (-537 (-1097 (-1186))) (-537 (-1097 (-1186)))) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3064 (((-1 $ (-777)) (-1186)) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-3362 (((-3 (-1097 (-1186)) "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-3218 (((-1097 (-1186)) $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1988 (((-1168) $) NIL)) (-3436 (((-112) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-1097 (-1186))) (|:| -3357 (-777))) "failed") $) NIL)) (-1537 (($ $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1770 (($ $ (-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)))) (-3570 (($ $ (-1097 (-1186))) NIL (|has| |#1| (-174)))) (-3547 (($ $ (-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)) (-4212 (((-650 (-1186)) $) NIL)) (-2130 (((-537 (-1097 (-1186))) $) NIL) (((-777) $ (-1097 (-1186))) NIL) (((-650 (-777)) $ (-650 (-1097 (-1186)))) NIL) (((-777) $ (-1186)) NIL)) (-1425 (((-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)))))) (-1848 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1097 (-1186))) NIL (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1097 (-1186))) NIL) (($ (-1186)) NIL) (($ (-1134 |#1| (-1186))) NIL) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-537 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-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)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)))
+((-3180 ((|#1| |#1| (-1 (-570) |#1| |#1|)) 42) ((|#1| |#1| (-1 (-112) |#1|)) 33)) (-2606 (((-1282)) 21)) (-4314 (((-650 |#1|)) 13)))
+(((-1093 |#1|) (-10 -7 (-15 -2606 ((-1282))) (-15 -4314 ((-650 |#1|))) (-15 -3180 (|#1| |#1| (-1 (-112) |#1|))) (-15 -3180 (|#1| |#1| (-1 (-570) |#1| |#1|)))) (-133)) (T -1093))
+((-3180 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-570) *2 *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))) (-3180 (*1 *2 *2 *3) (-12 (-5 *3 (-1 (-112) *2)) (-4 *2 (-133)) (-5 *1 (-1093 *2)))) (-4314 (*1 *2) (-12 (-5 *2 (-650 *3)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))) (-2606 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
+(-10 -7 (-15 -2606 ((-1282))) (-15 -4314 ((-650 |#1|))) (-15 -3180 (|#1| |#1| (-1 (-112) |#1|))) (-15 -3180 (|#1| |#1| (-1 (-570) |#1| |#1|))))
+((-3523 (($ (-109) $) 20)) (-1417 (((-697 (-109)) (-512) $) 19)) (-2656 (($) 7)) (-3668 (($) 21)) (-2207 (($) 22)) (-4145 (((-650 (-177)) $) 10)) (-3802 (((-868) $) 25)))
+(((-1094) (-13 (-619 (-868)) (-10 -8 (-15 -2656 ($)) (-15 -4145 ((-650 (-177)) $)) (-15 -1417 ((-697 (-109)) (-512) $)) (-15 -3523 ($ (-109) $)) (-15 -3668 ($)) (-15 -2207 ($))))) (T -1094))
+((-2656 (*1 *1) (-5 *1 (-1094))) (-4145 (*1 *2 *1) (-12 (-5 *2 (-650 (-177))) (-5 *1 (-1094)))) (-1417 (*1 *2 *3 *1) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-109))) (-5 *1 (-1094)))) (-3523 (*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1094)))) (-3668 (*1 *1) (-5 *1 (-1094))) (-2207 (*1 *1) (-5 *1 (-1094))))
+(-13 (-619 (-868)) (-10 -8 (-15 -2656 ($)) (-15 -4145 ((-650 (-177)) $)) (-15 -1417 ((-697 (-109)) (-512) $)) (-15 -3523 ($ (-109) $)) (-15 -3668 ($)) (-15 -2207 ($))))
+((-1896 (((-1277 (-695 |#1|)) (-650 (-695 |#1|))) 45) (((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|))) 75) (((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|)))) 92)) (-3314 (((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|))) 39)))
+(((-1095 |#1|) (-10 -7 (-15 -1896 ((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|))))) (-15 -1896 ((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|)))) (-15 -1896 ((-1277 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3314 ((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|))))) (-368)) (T -1095))
+((-3314 (*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)))) (-1896 (*1 *2 *3) (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-1095 *4)))) (-1896 (*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))))) (-1896 (*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 -1896 ((-1277 (-695 (-413 (-959 |#1|)))) (-650 (-1186)) (-695 (-413 (-959 |#1|))))) (-15 -1896 ((-1277 (-695 (-959 |#1|))) (-650 (-1186)) (-695 (-959 |#1|)))) (-15 -1896 ((-1277 (-695 |#1|)) (-650 (-695 |#1|)))) (-15 -3314 ((-1277 |#1|) (-695 |#1|) (-650 (-695 |#1|)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-2275 (((-650 (-777)) $) NIL) (((-650 (-777)) $ (-1186)) NIL)) (-2117 (((-777) $) NIL) (((-777) $ (-1186)) NIL)) (-1755 (((-650 (-1097 (-1186))) $) NIL)) (-3778 (((-1182 $) $ (-1097 (-1186))) NIL) (((-1182 |#1|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-1097 (-1186)))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2355 (($ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#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)) (-3930 (($ $ $ (-1097 (-1186))) NIL (|has| |#1| (-174)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458))) (($ $ (-1097 (-1186))) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-4243 (($ $ |#1| (-537 (-1097 (-1186))) $) NIL)) (-1557 (((-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)))))) (-3941 (((-777) $ (-1186)) NIL) (((-777) $) NIL)) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-1744 (($ (-1182 |#1|) (-1097 (-1186))) NIL) (($ (-1182 $) (-1097 (-1186))) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-537 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-1097 (-1186))) NIL)) (-3970 (((-537 (-1097 (-1186))) $) NIL) (((-777) $ (-1097 (-1186))) NIL) (((-650 (-777)) $ (-650 (-1097 (-1186)))) NIL)) (-1414 (($ (-1 (-537 (-1097 (-1186))) (-537 (-1097 (-1186)))) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-4212 (((-1 $ (-777)) (-1186)) NIL) (((-1 $ (-777)) $) NIL (|has| |#1| (-235)))) (-4023 (((-3 (-1097 (-1186)) "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3221 (((-1097 (-1186)) $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3989 (((-1168) $) NIL)) (-3426 (((-112) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-1097 (-1186))) (|:| -3994 (-777))) "failed") $) NIL)) (-1538 (($ $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-1771 (($ $ (-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)))) (-2265 (($ $ (-1097 (-1186))) NIL (|has| |#1| (-174)))) (-3550 (($ $ (-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)) (-2310 (((-650 (-1186)) $) NIL)) (-3079 (((-537 (-1097 (-1186))) $) NIL) (((-777) $ (-1097 (-1186))) NIL) (((-650 (-777)) $ (-650 (-1097 (-1186)))) NIL) (((-777) $ (-1186)) NIL)) (-1426 (((-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)))))) (-2077 ((|#1| $) NIL (|has| |#1| (-458))) (($ $ (-1097 (-1186))) NIL (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-1097 (-1186))) NIL) (($ (-1186)) NIL) (($ (-1134 |#1| (-1186))) NIL) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-537 (-1097 (-1186)))) NIL) (($ $ (-1097 (-1186)) (-777)) NIL) (($ $ (-650 (-1097 (-1186))) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-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)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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))))
-((-2558 (((-112) $ $) NIL)) (-3223 (((-777) $) NIL)) (-2798 ((|#1| $) 10)) (-4380 (((-3 |#1| "failed") $) NIL)) (-3216 ((|#1| $) NIL)) (-4323 (((-777) $) 11)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-3064 (($ |#1| (-777)) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3547 (($ $) NIL) (($ $ (-777)) NIL)) (-3799 (((-868) $) NIL) (($ |#1|) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) 16)))
+((-2560 (((-112) $ $) NIL)) (-2117 (((-777) $) NIL)) (-2800 ((|#1| $) 10)) (-4383 (((-3 |#1| "failed") $) NIL)) (-3220 ((|#1| $) NIL)) (-3941 (((-777) $) 11)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-4212 (($ |#1| (-777)) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3550 (($ $) NIL) (($ $ (-777)) NIL)) (-3802 (((-868) $) NIL) (($ |#1|) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) 16)))
(((-1097 |#1|) (-269 |#1|) (-856)) (T -1097))
NIL
(-269 |#1|)
-((-1356 (((-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 -1356 ((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) (IF (|has| |#1| (-854)) (-15 -1356 ((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) |%noBranch|)) (-1227) (-1227)) (T -1098))
-((-1356 (*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)))) (-1356 (*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 -1356 ((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) (IF (|has| |#1| (-854)) (-15 -1356 ((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3659 (((-650 (-1144)) $) 10)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1099) (-13 (-1092) (-10 -8 (-15 -3659 ((-650 (-1144)) $))))) (T -1099))
-((-3659 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1099)))))
-(-13 (-1092) (-10 -8 (-15 -3659 ((-650 (-1144)) $))))
-((-1356 (((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|)) 19)))
-(((-1100 |#1| |#2|) (-10 -7 (-15 -1356 ((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|)))) (-1227) (-1227)) (T -1100))
-((-1356 (*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 -1356 ((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|))))
-((-2558 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))) (-2798 (((-1186) $) NIL)) (-2934 (((-1103 |#1|) $) NIL)) (-1988 (((-1168) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3577 (((-1129) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3530 (($ (-1186) (-1103 |#1|)) NIL)) (-3799 (((-868) $) NIL (|has| (-1103 |#1|) (-1109)))) (-2335 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))) (-3022 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))))
-(((-1101 |#1|) (-13 (-1227) (-10 -8 (-15 -3530 ($ (-1186) (-1103 |#1|))) (-15 -2798 ((-1186) $)) (-15 -2934 ((-1103 |#1|) $)) (IF (|has| (-1103 |#1|) (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1101))
-((-3530 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1103 *4)) (-4 *4 (-1227)) (-5 *1 (-1101 *4)))) (-2798 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1101 *3)) (-4 *3 (-1227)))) (-2934 (*1 *2 *1) (-12 (-5 *2 (-1103 *3)) (-5 *1 (-1101 *3)) (-4 *3 (-1227)))))
-(-13 (-1227) (-10 -8 (-15 -3530 ($ (-1186) (-1103 |#1|))) (-15 -2798 ((-1186) $)) (-15 -2934 ((-1103 |#1|) $)) (IF (|has| (-1103 |#1|) (-1109)) (-6 (-1109)) |%noBranch|)))
-((-2934 (($ |#1| |#1|) 8)) (-2762 ((|#1| $) 11)) (-1514 ((|#1| $) 13)) (-1528 (((-570) $) 9)) (-1458 ((|#1| $) 10)) (-1870 ((|#1| $) 12)) (-1425 (($ |#1|) 6)) (-3668 (($ |#1| |#1|) 15)) (-2812 (($ $ (-570)) 14)))
+((-1357 (((-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 -1357 ((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) (IF (|has| |#1| (-854)) (-15 -1357 ((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) |%noBranch|)) (-1227) (-1227)) (T -1098))
+((-1357 (*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)))) (-1357 (*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 -1357 ((-1103 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) (IF (|has| |#1| (-854)) (-15 -1357 ((-650 |#2|) (-1 |#2| |#1|) (-1103 |#1|))) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 16) (($ (-1191)) NIL) (((-1191) $) NIL)) (-1844 (((-650 (-1144)) $) 10)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1099) (-13 (-1092) (-10 -8 (-15 -1844 ((-650 (-1144)) $))))) (T -1099))
+((-1844 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1099)))))
+(-13 (-1092) (-10 -8 (-15 -1844 ((-650 (-1144)) $))))
+((-1357 (((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|)) 19)))
+(((-1100 |#1| |#2|) (-10 -7 (-15 -1357 ((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|)))) (-1227) (-1227)) (T -1100))
+((-1357 (*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 -1357 ((-1101 |#2|) (-1 |#2| |#1|) (-1101 |#1|))))
+((-2560 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))) (-2800 (((-1186) $) NIL)) (-2936 (((-1103 |#1|) $) NIL)) (-3989 (((-1168) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3580 (((-1129) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3533 (($ (-1186) (-1103 |#1|)) NIL)) (-3802 (((-868) $) NIL (|has| (-1103 |#1|) (-1109)))) (-3359 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))) (-3025 (((-112) $ $) NIL (|has| (-1103 |#1|) (-1109)))))
+(((-1101 |#1|) (-13 (-1227) (-10 -8 (-15 -3533 ($ (-1186) (-1103 |#1|))) (-15 -2800 ((-1186) $)) (-15 -2936 ((-1103 |#1|) $)) (IF (|has| (-1103 |#1|) (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1101))
+((-3533 (*1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *3 (-1103 *4)) (-4 *4 (-1227)) (-5 *1 (-1101 *4)))) (-2800 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1101 *3)) (-4 *3 (-1227)))) (-2936 (*1 *2 *1) (-12 (-5 *2 (-1103 *3)) (-5 *1 (-1101 *3)) (-4 *3 (-1227)))))
+(-13 (-1227) (-10 -8 (-15 -3533 ($ (-1186) (-1103 |#1|))) (-15 -2800 ((-1186) $)) (-15 -2936 ((-1103 |#1|) $)) (IF (|has| (-1103 |#1|) (-1109)) (-6 (-1109)) |%noBranch|)))
+((-2936 (($ |#1| |#1|) 8)) (-2153 ((|#1| $) 11)) (-1515 ((|#1| $) 13)) (-1529 (((-570) $) 9)) (-2583 ((|#1| $) 10)) (-1870 ((|#1| $) 12)) (-1426 (($ |#1|) 6)) (-3670 (($ |#1| |#1|) 15)) (-2815 (($ $ (-570)) 14)))
(((-1102 |#1|) (-141) (-1227)) (T -1102))
-((-3668 (*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-2812 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1102 *3)) (-4 *3 (-1227)))) (-1514 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-1870 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-2762 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-1458 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-1528 (*1 *2 *1) (-12 (-4 *1 (-1102 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))) (-2934 (*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
-(-13 (-624 |t#1|) (-10 -8 (-15 -3668 ($ |t#1| |t#1|)) (-15 -2812 ($ $ (-570))) (-15 -1514 (|t#1| $)) (-15 -1870 (|t#1| $)) (-15 -2762 (|t#1| $)) (-15 -1458 (|t#1| $)) (-15 -1528 ((-570) $)) (-15 -2934 ($ |t#1| |t#1|))))
+((-3670 (*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-2815 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1102 *3)) (-4 *3 (-1227)))) (-1515 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-1870 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-2153 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-2583 (*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))) (-1529 (*1 *2 *1) (-12 (-4 *1 (-1102 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))) (-2936 (*1 *1 *2 *2) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
+(-13 (-624 |t#1|) (-10 -8 (-15 -3670 ($ |t#1| |t#1|)) (-15 -2815 ($ $ (-570))) (-15 -1515 (|t#1| $)) (-15 -1870 (|t#1| $)) (-15 -2153 (|t#1| $)) (-15 -2583 (|t#1| $)) (-15 -1529 ((-570) $)) (-15 -2936 ($ |t#1| |t#1|))))
(((-624 |#1|) . T))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2934 (($ |#1| |#1|) 16)) (-1356 (((-650 |#1|) (-1 |#1| |#1|) $) 46 (|has| |#1| (-854)))) (-2762 ((|#1| $) 12)) (-1514 ((|#1| $) 11)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1528 (((-570) $) 15)) (-1458 ((|#1| $) 14)) (-1870 ((|#1| $) 13)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1392 (((-650 |#1|) $) 44 (|has| |#1| (-854))) (((-650 |#1|) (-650 $)) 43 (|has| |#1| (-854)))) (-1425 (($ |#1|) 29)) (-3799 (((-868) $) 28 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3668 (($ |#1| |#1|) 10)) (-2812 (($ $ (-570)) 17)) (-3022 (((-112) $ $) 22 (|has| |#1| (-1109)))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2936 (($ |#1| |#1|) 16)) (-1357 (((-650 |#1|) (-1 |#1| |#1|) $) 46 (|has| |#1| (-854)))) (-2153 ((|#1| $) 12)) (-1515 ((|#1| $) 11)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1529 (((-570) $) 15)) (-2583 ((|#1| $) 14)) (-1870 ((|#1| $) 13)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1393 (((-650 |#1|) $) 44 (|has| |#1| (-854))) (((-650 |#1|) (-650 $)) 43 (|has| |#1| (-854)))) (-1426 (($ |#1|) 29)) (-3802 (((-868) $) 28 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3670 (($ |#1| |#1|) 10)) (-2815 (($ $ (-570)) 17)) (-3025 (((-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|)))
-((-2934 (($ |#1| |#1|) 8)) (-1356 ((|#2| (-1 |#1| |#1|) $) 16)) (-2762 ((|#1| $) 11)) (-1514 ((|#1| $) 13)) (-1528 (((-570) $) 9)) (-1458 ((|#1| $) 10)) (-1870 ((|#1| $) 12)) (-1392 ((|#2| (-650 $)) 18) ((|#2| $) 17)) (-1425 (($ |#1|) 6)) (-3668 (($ |#1| |#1|) 15)) (-2812 (($ $ (-570)) 14)))
+((-2936 (($ |#1| |#1|) 8)) (-1357 ((|#2| (-1 |#1| |#1|) $) 16)) (-2153 ((|#1| $) 11)) (-1515 ((|#1| $) 13)) (-1529 (((-570) $) 9)) (-2583 ((|#1| $) 10)) (-1870 ((|#1| $) 12)) (-1393 ((|#2| (-650 $)) 18) ((|#2| $) 17)) (-1426 (($ |#1|) 6)) (-3670 (($ |#1| |#1|) 15)) (-2815 (($ $ (-570)) 14)))
(((-1104 |#1| |#2|) (-141) (-854) (-1158 |t#1|)) (T -1104))
-((-1392 (*1 *2 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1104 *4 *2)) (-4 *4 (-854)) (-4 *2 (-1158 *4)))) (-1392 (*1 *2 *1) (-12 (-4 *1 (-1104 *3 *2)) (-4 *3 (-854)) (-4 *2 (-1158 *3)))) (-1356 (*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 -1392 (|t#2| (-650 $))) (-15 -1392 (|t#2| $)) (-15 -1356 (|t#2| (-1 |t#1| |t#1|) $))))
+((-1393 (*1 *2 *3) (-12 (-5 *3 (-650 *1)) (-4 *1 (-1104 *4 *2)) (-4 *4 (-854)) (-4 *2 (-1158 *4)))) (-1393 (*1 *2 *1) (-12 (-4 *1 (-1104 *3 *2)) (-4 *3 (-854)) (-4 *2 (-1158 *3)))) (-1357 (*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 -1393 (|t#2| (-650 $))) (-15 -1393 (|t#2| $)) (-15 -1357 (|t#2| (-1 |t#1| |t#1|) $))))
(((-624 |#1|) . T) ((-1102 |#1|) . T))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-1769 (((-1144) $) 12)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 18) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3613 (((-650 (-1144)) $) 10)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1105) (-13 (-1092) (-10 -8 (-15 -3613 ((-650 (-1144)) $)) (-15 -1769 ((-1144) $))))) (T -1105))
-((-3613 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1105)))) (-1769 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1105)))))
-(-13 (-1092) (-10 -8 (-15 -3613 ((-650 (-1144)) $)) (-15 -1769 ((-1144) $))))
-((-3959 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-3886 (($ $ $) 10)) (-4031 (($ $ $) NIL) (($ $ |#2|) 15)))
-(((-1106 |#1| |#2|) (-10 -8 (-15 -3959 (|#1| |#2| |#1|)) (-15 -3959 (|#1| |#1| |#2|)) (-15 -3959 (|#1| |#1| |#1|)) (-15 -3886 (|#1| |#1| |#1|)) (-15 -4031 (|#1| |#1| |#2|)) (-15 -4031 (|#1| |#1| |#1|))) (-1107 |#2|) (-1109)) (T -1106))
-NIL
-(-10 -8 (-15 -3959 (|#1| |#2| |#1|)) (-15 -3959 (|#1| |#1| |#2|)) (-15 -3959 (|#1| |#1| |#1|)) (-15 -3886 (|#1| |#1| |#1|)) (-15 -4031 (|#1| |#1| |#2|)) (-15 -4031 (|#1| |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3959 (($ $ $) 19) (($ $ |#1|) 18) (($ |#1| $) 17)) (-3886 (($ $ $) 21)) (-4165 (((-112) $ $) 20)) (-4302 (((-112) $ (-777)) 36)) (-4249 (($) 26) (($ (-650 |#1|)) 25)) (-1431 (($ (-1 (-112) |#1|) $) 57 (|has| $ (-6 -4449)))) (-1705 (($) 37 T CONST)) (-3579 (($ $) 60 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#1| $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3627 (((-650 |#1|) $) 44 (|has| $ (-6 -4449)))) (-2192 (((-112) $ $) 29)) (-2929 (((-112) $ (-777)) 35)) (-2752 (((-650 |#1|) $) 45 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 47 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 40 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 39)) (-3231 (((-112) $ (-777)) 34)) (-1988 (((-1168) $) 10)) (-2730 (($ $ $) 24)) (-3577 (((-1129) $) 11)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 53)) (-3642 (((-112) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 30)) (-2017 (((-112) $) 33)) (-2380 (($) 32)) (-4031 (($ $ $) 23) (($ $ |#1|) 22)) (-3584 (((-777) |#1| $) 46 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#1|) $) 43 (|has| $ (-6 -4449)))) (-3951 (($ $) 31)) (-1425 (((-542) $) 61 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 52)) (-3799 (((-868) $) 12)) (-3861 (($) 28) (($ (-650 |#1|)) 27)) (-2335 (((-112) $ $) 9)) (-4371 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 6)) (-2569 (((-777) $) 38 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-1770 (((-1144) $) 12)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 18) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3616 (((-650 (-1144)) $) 10)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1105) (-13 (-1092) (-10 -8 (-15 -3616 ((-650 (-1144)) $)) (-15 -1770 ((-1144) $))))) (T -1105))
+((-3616 (*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1105)))) (-1770 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1105)))))
+(-13 (-1092) (-10 -8 (-15 -3616 ((-650 (-1144)) $)) (-15 -1770 ((-1144) $))))
+((-3962 (($ $ $) NIL) (($ $ |#2|) 13) (($ |#2| $) 14)) (-2184 (($ $ $) 10)) (-4180 (($ $ $) NIL) (($ $ |#2|) 15)))
+(((-1106 |#1| |#2|) (-10 -8 (-15 -3962 (|#1| |#2| |#1|)) (-15 -3962 (|#1| |#1| |#2|)) (-15 -3962 (|#1| |#1| |#1|)) (-15 -2184 (|#1| |#1| |#1|)) (-15 -4180 (|#1| |#1| |#2|)) (-15 -4180 (|#1| |#1| |#1|))) (-1107 |#2|) (-1109)) (T -1106))
+NIL
+(-10 -8 (-15 -3962 (|#1| |#2| |#1|)) (-15 -3962 (|#1| |#1| |#2|)) (-15 -3962 (|#1| |#1| |#1|)) (-15 -2184 (|#1| |#1| |#1|)) (-15 -4180 (|#1| |#1| |#2|)) (-15 -4180 (|#1| |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3962 (($ $ $) 19) (($ $ |#1|) 18) (($ |#1| $) 17)) (-2184 (($ $ $) 21)) (-3056 (((-112) $ $) 20)) (-1932 (((-112) $ (-777)) 36)) (-4253 (($) 26) (($ (-650 |#1|)) 25)) (-1434 (($ (-1 (-112) |#1|) $) 57 (|has| $ (-6 -4452)))) (-3195 (($) 37 T CONST)) (-3582 (($ $) 60 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#1| $) 59 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 56 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 58 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 55 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 54 (|has| $ (-6 -4452)))) (-3630 (((-650 |#1|) $) 44 (|has| $ (-6 -4452)))) (-2511 (((-112) $ $) 29)) (-2317 (((-112) $ (-777)) 35)) (-2052 (((-650 |#1|) $) 45 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 47 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 40 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 39)) (-2193 (((-112) $ (-777)) 34)) (-3989 (((-1168) $) 10)) (-3051 (($ $ $) 24)) (-3580 (((-1129) $) 11)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 53)) (-1627 (((-112) (-1 (-112) |#1|) $) 42 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 30)) (-4283 (((-112) $) 33)) (-2656 (($) 32)) (-4180 (($ $ $) 23) (($ $ |#1|) 22)) (-3587 (((-777) |#1| $) 46 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#1|) $) 43 (|has| $ (-6 -4452)))) (-3954 (($ $) 31)) (-1426 (((-542) $) 61 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 52)) (-3802 (((-868) $) 12)) (-3864 (($) 28) (($ (-650 |#1|)) 27)) (-3359 (((-112) $ $) 9)) (-4379 (((-112) (-1 (-112) |#1|) $) 41 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 6)) (-2570 (((-777) $) 38 (|has| $ (-6 -4452)))))
(((-1107 |#1|) (-141) (-1109)) (T -1107))
-((-2192 (*1 *2 *1 *1) (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-3861 (*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3861 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3)))) (-4249 (*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4249 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3)))) (-2730 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4031 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4031 (*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3886 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4165 (*1 *2 *1 *1) (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-3959 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3959 (*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3959 (*1 *1 *2 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
-(-13 (-1109) (-152 |t#1|) (-10 -8 (-6 -4439) (-15 -2192 ((-112) $ $)) (-15 -3861 ($)) (-15 -3861 ($ (-650 |t#1|))) (-15 -4249 ($)) (-15 -4249 ($ (-650 |t#1|))) (-15 -2730 ($ $ $)) (-15 -4031 ($ $ $)) (-15 -4031 ($ $ |t#1|)) (-15 -3886 ($ $ $)) (-15 -4165 ((-112) $ $)) (-15 -3959 ($ $ $)) (-15 -3959 ($ $ |t#1|)) (-15 -3959 ($ |t#1| $))))
+((-2511 (*1 *2 *1 *1) (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-3864 (*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3864 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3)))) (-4253 (*1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4253 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-1107 *3)))) (-3051 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4180 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-4180 (*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-2184 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3056 (*1 *2 *1 *1) (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))) (-3962 (*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3962 (*1 *1 *1 *2) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))) (-3962 (*1 *1 *2 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
+(-13 (-1109) (-152 |t#1|) (-10 -8 (-6 -4442) (-15 -2511 ((-112) $ $)) (-15 -3864 ($)) (-15 -3864 ($ (-650 |t#1|))) (-15 -4253 ($)) (-15 -4253 ($ (-650 |t#1|))) (-15 -3051 ($ $ $)) (-15 -4180 ($ $ $)) (-15 -4180 ($ $ |t#1|)) (-15 -2184 ($ $ $)) (-15 -3056 ((-112) $ $)) (-15 -3962 ($ $ $)) (-15 -3962 ($ $ |t#1|)) (-15 -3962 ($ |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))
-((-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 8)) (-2335 (((-112) $ $) 12)))
-(((-1108 |#1|) (-10 -8 (-15 -2335 ((-112) |#1| |#1|)) (-15 -1988 ((-1168) |#1|)) (-15 -3577 ((-1129) |#1|))) (-1109)) (T -1108))
+((-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 8)) (-3359 (((-112) $ $) 12)))
+(((-1108 |#1|) (-10 -8 (-15 -3359 ((-112) |#1| |#1|)) (-15 -3989 ((-1168) |#1|)) (-15 -3580 ((-1129) |#1|))) (-1109)) (T -1108))
NIL
-(-10 -8 (-15 -2335 ((-112) |#1| |#1|)) (-15 -1988 ((-1168) |#1|)) (-15 -3577 ((-1129) |#1|)))
-((-2558 (((-112) $ $) 7)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+(-10 -8 (-15 -3359 ((-112) |#1| |#1|)) (-15 -3989 ((-1168) |#1|)) (-15 -3580 ((-1129) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-1109) (-141)) (T -1109))
-((-3577 (*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1129)))) (-1988 (*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1168)))) (-2335 (*1 *2 *1 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-112)))))
-(-13 (-102) (-619 (-868)) (-10 -8 (-15 -3577 ((-1129) $)) (-15 -1988 ((-1168) $)) (-15 -2335 ((-112) $ $))))
+((-3580 (*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1129)))) (-3989 (*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1168)))) (-3359 (*1 *2 *1 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-112)))))
+(-13 (-102) (-619 (-868)) (-10 -8 (-15 -3580 ((-1129) $)) (-15 -3989 ((-1168) $)) (-15 -3359 ((-112) $ $))))
(((-102) . T) ((-619 (-868)) . T))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) 36)) (-4075 (($ (-650 (-928))) 70)) (-2931 (((-3 $ "failed") $ (-928) (-928)) 81)) (-3446 (($) 40)) (-4108 (((-112) (-928) $) 42)) (-1884 (((-928) $) 64)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) 39)) (-3234 (((-3 $ "failed") $ (-928)) 77)) (-3577 (((-1129) $) NIL)) (-1703 (((-1277 $)) 47)) (-2976 (((-650 (-928)) $) 27)) (-3225 (((-777) $ (-928) (-928)) 78)) (-3799 (((-868) $) 32)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 24)))
-(((-1110 |#1| |#2|) (-13 (-373) (-10 -8 (-15 -3234 ((-3 $ "failed") $ (-928))) (-15 -2931 ((-3 $ "failed") $ (-928) (-928))) (-15 -2976 ((-650 (-928)) $)) (-15 -4075 ($ (-650 (-928)))) (-15 -1703 ((-1277 $))) (-15 -4108 ((-112) (-928) $)) (-15 -3225 ((-777) $ (-928) (-928))))) (-928) (-928)) (T -1110))
-((-3234 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2931 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2976 (*1 *2 *1) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-4075 (*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-1703 (*1 *2) (-12 (-5 *2 (-1277 (-1110 *3 *4))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-4108 (*1 *2 *3 *1) (-12 (-5 *3 (-928)) (-5 *2 (-112)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-3225 (*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 -3234 ((-3 $ "failed") $ (-928))) (-15 -2931 ((-3 $ "failed") $ (-928) (-928))) (-15 -2976 ((-650 (-928)) $)) (-15 -4075 ($ (-650 (-928)))) (-15 -1703 ((-1277 $))) (-15 -4108 ((-112) (-928) $)) (-15 -3225 ((-777) $ (-928) (-928)))))
-((-2558 (((-112) $ $) NIL)) (-4427 (($) NIL (|has| |#1| (-373)))) (-3959 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 83)) (-3886 (($ $ $) 81)) (-4165 (((-112) $ $) 82)) (-4302 (((-112) $ (-777)) NIL)) (-3510 (((-777)) NIL (|has| |#1| (-373)))) (-4249 (($ (-650 |#1|)) NIL) (($) 13)) (-3753 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3249 (($ |#1| $) 74 (|has| $ (-6 -4449))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-3446 (($) NIL (|has| |#1| (-373)))) (-3627 (((-650 |#1|) $) 19 (|has| $ (-6 -4449)))) (-2192 (((-112) $ $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-3466 ((|#1| $) 55 (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 73 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2800 ((|#1| $) 53 (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 34)) (-1884 (((-928) $) NIL (|has| |#1| (-373)))) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-2730 (($ $ $) 79)) (-1490 ((|#1| $) 25)) (-1385 (($ |#1| $) 69)) (-2268 (($ (-928)) NIL (|has| |#1| (-373)))) (-3577 (((-1129) $) NIL)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-3647 ((|#1| $) 27)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 21)) (-2380 (($) 11)) (-4031 (($ $ |#1|) NIL) (($ $ $) 80)) (-2178 (($) NIL) (($ (-650 |#1|)) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) 16)) (-1425 (((-542) $) 50 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 62)) (-1486 (($ $) NIL (|has| |#1| (-373)))) (-3799 (((-868) $) NIL)) (-3143 (((-777) $) NIL)) (-3861 (($ (-650 |#1|)) NIL) (($) 12)) (-2335 (((-112) $ $) NIL)) (-2082 (($ (-650 |#1|)) NIL)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 52)) (-2569 (((-777) $) 10 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) 36)) (-3454 (($ (-650 (-928))) 70)) (-2336 (((-3 $ "failed") $ (-928) (-928)) 81)) (-3449 (($) 40)) (-3767 (((-112) (-928) $) 42)) (-2400 (((-928) $) 64)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) 39)) (-2225 (((-3 $ "failed") $ (-928)) 77)) (-3580 (((-1129) $) NIL)) (-3177 (((-1277 $)) 47)) (-1499 (((-650 (-928)) $) 27)) (-3229 (((-777) $ (-928) (-928)) 78)) (-3802 (((-868) $) 32)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 24)))
+(((-1110 |#1| |#2|) (-13 (-373) (-10 -8 (-15 -2225 ((-3 $ "failed") $ (-928))) (-15 -2336 ((-3 $ "failed") $ (-928) (-928))) (-15 -1499 ((-650 (-928)) $)) (-15 -3454 ($ (-650 (-928)))) (-15 -3177 ((-1277 $))) (-15 -3767 ((-112) (-928) $)) (-15 -3229 ((-777) $ (-928) (-928))))) (-928) (-928)) (T -1110))
+((-2225 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-2336 (*1 *1 *1 *2 *2) (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2) (-14 *4 *2))) (-1499 (*1 *2 *1) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-3454 (*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-3177 (*1 *2) (-12 (-5 *2 (-1277 (-1110 *3 *4))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928)))) (-3767 (*1 *2 *3 *1) (-12 (-5 *3 (-928)) (-5 *2 (-112)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3) (-14 *5 *3))) (-3229 (*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 -2225 ((-3 $ "failed") $ (-928))) (-15 -2336 ((-3 $ "failed") $ (-928) (-928))) (-15 -1499 ((-650 (-928)) $)) (-15 -3454 ($ (-650 (-928)))) (-15 -3177 ((-1277 $))) (-15 -3767 ((-112) (-928) $)) (-15 -3229 ((-777) $ (-928) (-928)))))
+((-2560 (((-112) $ $) NIL)) (-3681 (($) NIL (|has| |#1| (-373)))) (-3962 (($ |#1| $) NIL) (($ $ |#1|) NIL) (($ $ $) 83)) (-2184 (($ $ $) 81)) (-3056 (((-112) $ $) 82)) (-1932 (((-112) $ (-777)) NIL)) (-3513 (((-777)) NIL (|has| |#1| (-373)))) (-4253 (($ (-650 |#1|)) NIL) (($) 13)) (-3353 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2385 (($ |#1| $) 74 (|has| $ (-6 -4452))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 43 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 41 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 39 (|has| $ (-6 -4452)))) (-3449 (($) NIL (|has| |#1| (-373)))) (-3630 (((-650 |#1|) $) 19 (|has| $ (-6 -4452)))) (-2511 (((-112) $ $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-3469 ((|#1| $) 55 (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 73 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2472 ((|#1| $) 53 (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 33 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 34)) (-2400 (((-928) $) NIL (|has| |#1| (-373)))) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-3051 (($ $ $) 79)) (-2885 ((|#1| $) 25)) (-3502 (($ |#1| $) 69)) (-2267 (($ (-928)) NIL (|has| |#1| (-373)))) (-3580 (((-1129) $) NIL)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 31)) (-1684 ((|#1| $) 27)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 21)) (-2656 (($) 11)) (-4180 (($ $ |#1|) NIL) (($ $ $) 80)) (-2374 (($) NIL) (($ (-650 |#1|)) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) 16)) (-1426 (((-542) $) 50 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 62)) (-2854 (($ $) NIL (|has| |#1| (-373)))) (-3802 (((-868) $) NIL)) (-2593 (((-777) $) NIL)) (-3864 (($ (-650 |#1|)) NIL) (($) 12)) (-3359 (((-112) $ $) NIL)) (-2603 (($ (-650 |#1|)) NIL)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 52)) (-2570 (((-777) $) 10 (|has| $ (-6 -4452)))))
(((-1111 |#1|) (-431 |#1|) (-1109)) (T -1111))
NIL
(-431 |#1|)
-((-2558 (((-112) $ $) 7)) (-1928 (((-112) $) 33)) (-1418 ((|#2| $) 28)) (-2385 (((-112) $) 34)) (-3428 ((|#1| $) 29)) (-1645 (((-112) $) 36)) (-2544 (((-112) $) 38)) (-2994 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-2009 (((-112) $) 32)) (-1449 ((|#3| $) 27)) (-3577 (((-1129) $) 11)) (-3812 (((-112) $) 31)) (-2693 ((|#4| $) 26)) (-2753 ((|#5| $) 25)) (-4305 (((-112) $ $) 39)) (-1941 (($ $ (-570)) 21) (($ $ (-650 (-570))) 20)) (-3873 (((-650 $) $) 30)) (-1425 (($ |#1|) 45) (($ |#2|) 44) (($ |#3|) 43) (($ |#4|) 42) (($ |#5|) 41) (($ (-650 $)) 40)) (-3799 (((-868) $) 12)) (-3447 (($ $) 23)) (-3435 (($ $) 24)) (-2335 (((-112) $ $) 9)) (-3325 (((-112) $) 37)) (-3022 (((-112) $ $) 6)) (-2569 (((-570) $) 22)))
+((-2560 (((-112) $ $) 7)) (-1527 (((-112) $) 33)) (-1419 ((|#2| $) 28)) (-2709 (((-112) $) 34)) (-3431 ((|#1| $) 29)) (-3800 (((-112) $) 36)) (-1871 (((-112) $) 38)) (-1710 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-4201 (((-112) $) 32)) (-1450 ((|#3| $) 27)) (-3580 (((-1129) $) 11)) (-2726 (((-112) $) 31)) (-2695 ((|#4| $) 26)) (-2756 ((|#5| $) 25)) (-4308 (((-112) $ $) 39)) (-1942 (($ $ (-570)) 21) (($ $ (-650 (-570))) 20)) (-3875 (((-650 $) $) 30)) (-1426 (($ |#1|) 45) (($ |#2|) 44) (($ |#3|) 43) (($ |#4|) 42) (($ |#5|) 41) (($ (-650 $)) 40)) (-3802 (((-868) $) 12)) (-3450 (($ $) 23)) (-3437 (($ $) 24)) (-3359 (((-112) $ $) 9)) (-1877 (((-112) $) 37)) (-3025 (((-112) $ $) 6)) (-2570 (((-570) $) 22)))
(((-1112 |#1| |#2| |#3| |#4| |#5|) (-141) (-1109) (-1109) (-1109) (-1109) (-1109)) (T -1112))
-((-4305 (*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)))) (-2544 (*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)))) (-3325 (*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)))) (-1645 (*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)))) (-2994 (*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)))) (-2385 (*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)))) (-1928 (*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)))) (-2009 (*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)))) (-3812 (*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)))) (-3873 (*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)))) (-3428 (*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)))) (-1418 (*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)))) (-1449 (*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)))) (-2693 (*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)))) (-2753 (*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)))) (-3435 (*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)))) (-3447 (*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)))) (-2569 (*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)))) (-1941 (*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)))) (-1941 (*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 -4305 ((-112) $ $)) (-15 -2544 ((-112) $)) (-15 -3325 ((-112) $)) (-15 -1645 ((-112) $)) (-15 -2994 ((-112) $)) (-15 -2385 ((-112) $)) (-15 -1928 ((-112) $)) (-15 -2009 ((-112) $)) (-15 -3812 ((-112) $)) (-15 -3873 ((-650 $) $)) (-15 -3428 (|t#1| $)) (-15 -1418 (|t#2| $)) (-15 -1449 (|t#3| $)) (-15 -2693 (|t#4| $)) (-15 -2753 (|t#5| $)) (-15 -3435 ($ $)) (-15 -3447 ($ $)) (-15 -2569 ((-570) $)) (-15 -1941 ($ $ (-570))) (-15 -1941 ($ $ (-650 (-570))))))
+((-4308 (*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)))) (-1871 (*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)))) (-1877 (*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)))) (-3800 (*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)))) (-1710 (*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)))) (-2709 (*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)))) (-1527 (*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)))) (-4201 (*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)))) (-2726 (*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)))) (-3875 (*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)))) (-3431 (*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)))) (-1419 (*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)))) (-1450 (*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)))) (-2695 (*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)))) (-2756 (*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)))) (-3437 (*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)))) (-3450 (*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)))) (-2570 (*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)))) (-1942 (*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)))) (-1942 (*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 -4308 ((-112) $ $)) (-15 -1871 ((-112) $)) (-15 -1877 ((-112) $)) (-15 -3800 ((-112) $)) (-15 -1710 ((-112) $)) (-15 -2709 ((-112) $)) (-15 -1527 ((-112) $)) (-15 -4201 ((-112) $)) (-15 -2726 ((-112) $)) (-15 -3875 ((-650 $) $)) (-15 -3431 (|t#1| $)) (-15 -1419 (|t#2| $)) (-15 -1450 (|t#3| $)) (-15 -2695 (|t#4| $)) (-15 -2756 (|t#5| $)) (-15 -3437 ($ $)) (-15 -3450 ($ $)) (-15 -2570 ((-570) $)) (-15 -1942 ($ $ (-570))) (-15 -1942 ($ $ (-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))
-((-2558 (((-112) $ $) NIL)) (-1928 (((-112) $) NIL)) (-1418 (((-1186) $) NIL)) (-2385 (((-112) $) NIL)) (-3428 (((-1168) $) NIL)) (-1645 (((-112) $) NIL)) (-2544 (((-112) $) NIL)) (-2994 (((-112) $) NIL)) (-1988 (((-1168) $) NIL)) (-2009 (((-112) $) NIL)) (-1449 (((-570) $) NIL)) (-3577 (((-1129) $) NIL)) (-3812 (((-112) $) NIL)) (-2693 (((-227) $) NIL)) (-2753 (((-868) $) NIL)) (-4305 (((-112) $ $) NIL)) (-1941 (($ $ (-570)) NIL) (($ $ (-650 (-570))) NIL)) (-3873 (((-650 $) $) NIL)) (-1425 (($ (-1168)) NIL) (($ (-1186)) NIL) (($ (-570)) NIL) (($ (-227)) NIL) (($ (-868)) NIL) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL)) (-3447 (($ $) NIL)) (-3435 (($ $) NIL)) (-2335 (((-112) $ $) NIL)) (-3325 (((-112) $) NIL)) (-3022 (((-112) $ $) NIL)) (-2569 (((-570) $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-1527 (((-112) $) NIL)) (-1419 (((-1186) $) NIL)) (-2709 (((-112) $) NIL)) (-3431 (((-1168) $) NIL)) (-3800 (((-112) $) NIL)) (-1871 (((-112) $) NIL)) (-1710 (((-112) $) NIL)) (-3989 (((-1168) $) NIL)) (-4201 (((-112) $) NIL)) (-1450 (((-570) $) NIL)) (-3580 (((-1129) $) NIL)) (-2726 (((-112) $) NIL)) (-2695 (((-227) $) NIL)) (-2756 (((-868) $) NIL)) (-4308 (((-112) $ $) NIL)) (-1942 (($ $ (-570)) NIL) (($ $ (-650 (-570))) NIL)) (-3875 (((-650 $) $) NIL)) (-1426 (($ (-1168)) NIL) (($ (-1186)) NIL) (($ (-570)) NIL) (($ (-227)) NIL) (($ (-868)) NIL) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL)) (-3450 (($ $) NIL)) (-3437 (($ $) NIL)) (-3359 (((-112) $ $) NIL)) (-1877 (((-112) $) NIL)) (-3025 (((-112) $ $) NIL)) (-2570 (((-570) $) NIL)))
(((-1113) (-1112 (-1168) (-1186) (-570) (-227) (-868))) (T -1113))
NIL
(-1112 (-1168) (-1186) (-570) (-227) (-868))
-((-2558 (((-112) $ $) NIL)) (-1928 (((-112) $) 45)) (-1418 ((|#2| $) 48)) (-2385 (((-112) $) 20)) (-3428 ((|#1| $) 21)) (-1645 (((-112) $) 42)) (-2544 (((-112) $) 14)) (-2994 (((-112) $) 44)) (-1988 (((-1168) $) NIL)) (-2009 (((-112) $) 46)) (-1449 ((|#3| $) 50)) (-3577 (((-1129) $) NIL)) (-3812 (((-112) $) 47)) (-2693 ((|#4| $) 49)) (-2753 ((|#5| $) 51)) (-4305 (((-112) $ $) 41)) (-1941 (($ $ (-570)) 62) (($ $ (-650 (-570))) 64)) (-3873 (((-650 $) $) 27)) (-1425 (($ |#1|) 53) (($ |#2|) 54) (($ |#3|) 55) (($ |#4|) 56) (($ |#5|) 57) (($ (-650 $)) 52)) (-3799 (((-868) $) 28)) (-3447 (($ $) 26)) (-3435 (($ $) 58)) (-2335 (((-112) $ $) NIL)) (-3325 (((-112) $) 23)) (-3022 (((-112) $ $) 40)) (-2569 (((-570) $) 60)))
+((-2560 (((-112) $ $) NIL)) (-1527 (((-112) $) 45)) (-1419 ((|#2| $) 48)) (-2709 (((-112) $) 20)) (-3431 ((|#1| $) 21)) (-3800 (((-112) $) 42)) (-1871 (((-112) $) 14)) (-1710 (((-112) $) 44)) (-3989 (((-1168) $) NIL)) (-4201 (((-112) $) 46)) (-1450 ((|#3| $) 50)) (-3580 (((-1129) $) NIL)) (-2726 (((-112) $) 47)) (-2695 ((|#4| $) 49)) (-2756 ((|#5| $) 51)) (-4308 (((-112) $ $) 41)) (-1942 (($ $ (-570)) 62) (($ $ (-650 (-570))) 64)) (-3875 (((-650 $) $) 27)) (-1426 (($ |#1|) 53) (($ |#2|) 54) (($ |#3|) 55) (($ |#4|) 56) (($ |#5|) 57) (($ (-650 $)) 52)) (-3802 (((-868) $) 28)) (-3450 (($ $) 26)) (-3437 (($ $) 58)) (-3359 (((-112) $ $) NIL)) (-1877 (((-112) $) 23)) (-3025 (((-112) $ $) 40)) (-2570 (((-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|)
-((-3396 (((-1282) $) 22)) (-1751 (($ (-1186) (-440) |#2|) 11)) (-3799 (((-868) $) 16)))
-(((-1115 |#1| |#2|) (-13 (-401) (-10 -8 (-15 -1751 ($ (-1186) (-440) |#2|)))) (-1109) (-436 |#1|)) (T -1115))
-((-1751 (*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 -1751 ($ (-1186) (-440) |#2|))))
-((-3451 (((-112) |#5| |#5|) 44)) (-2759 (((-112) |#5| |#5|) 59)) (-3614 (((-112) |#5| (-650 |#5|)) 82) (((-112) |#5| |#5|) 68)) (-1850 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-2668 (((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) 70)) (-2409 (((-1282)) 32)) (-1608 (((-1282) (-1168) (-1168) (-1168)) 28)) (-3311 (((-650 |#5|) (-650 |#5|)) 101)) (-2960 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) 93)) (-3079 (((-650 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112)) 123)) (-3492 (((-112) |#5| |#5|) 53)) (-1836 (((-3 (-112) "failed") |#5| |#5|) 78)) (-1961 (((-112) (-650 |#4|) (-650 |#4|)) 64)) (-3888 (((-112) (-650 |#4|) (-650 |#4|)) 66)) (-2971 (((-112) (-650 |#4|) (-650 |#4|)) 67)) (-4293 (((-3 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)) 118)) (-3520 (((-650 |#5|) (-650 |#5|)) 49)))
-(((-1116 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1608 ((-1282) (-1168) (-1168) (-1168))) (-15 -2409 ((-1282))) (-15 -3451 ((-112) |#5| |#5|)) (-15 -3520 ((-650 |#5|) (-650 |#5|))) (-15 -3492 ((-112) |#5| |#5|)) (-15 -2759 ((-112) |#5| |#5|)) (-15 -1850 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1961 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -3888 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2971 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1836 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3614 ((-112) |#5| |#5|)) (-15 -3614 ((-112) |#5| (-650 |#5|))) (-15 -3311 ((-650 |#5|) (-650 |#5|))) (-15 -2668 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) (-15 -2960 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-15 -3079 ((-650 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -4293 ((-3 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#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))
-((-4293 (*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 (|:| -4305 (-650 *9)) (|:| -3684 *4) (|:| |ineq| (-650 *9)))) (-5 *1 (-1116 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9)) (-4 *4 (-1080 *6 *7 *8 *9)))) (-3079 (*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 (|:| -4305 (-650 *9)) (|:| -3684 *10) (|:| |ineq| (-650 *9))))) (-5 *1 (-1116 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))) (-2960 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3684 *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)))) (-2668 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3684 *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)))) (-3311 (*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)))) (-3614 (*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)))) (-3614 (*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)))) (-1836 (*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)))) (-2971 (*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)))) (-3888 (*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)))) (-1961 (*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)))) (-1850 (*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)))) (-2759 (*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)))) (-3492 (*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)))) (-3520 (*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)))) (-3451 (*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)))) (-2409 (*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)))) (-1608 (*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 -1608 ((-1282) (-1168) (-1168) (-1168))) (-15 -2409 ((-1282))) (-15 -3451 ((-112) |#5| |#5|)) (-15 -3520 ((-650 |#5|) (-650 |#5|))) (-15 -3492 ((-112) |#5| |#5|)) (-15 -2759 ((-112) |#5| |#5|)) (-15 -1850 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1961 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -3888 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2971 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1836 ((-3 (-112) "failed") |#5| |#5|)) (-15 -3614 ((-112) |#5| |#5|)) (-15 -3614 ((-112) |#5| (-650 |#5|))) (-15 -3311 ((-650 |#5|) (-650 |#5|))) (-15 -2668 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) (-15 -2960 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-15 -3079 ((-650 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -4293 ((-3 (-2 (|:| -4305 (-650 |#4|)) (|:| -3684 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112))))
-((-3192 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|) 108)) (-2375 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#4| |#4| |#5|) 80)) (-3171 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|) 102)) (-2440 (((-650 |#5|) |#4| |#5|) 124)) (-3889 (((-650 |#5|) |#4| |#5|) 131)) (-2273 (((-650 |#5|) |#4| |#5|) 132)) (-3806 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|) 109)) (-3368 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|) 130)) (-3881 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|) 47) (((-112) |#4| |#5|) 55)) (-4255 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#3| (-112)) 92) (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5| (-112) (-112)) 52)) (-3766 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|) 87)) (-1939 (((-1282)) 36)) (-2639 (((-1282)) 25)) (-4320 (((-1282) (-1168) (-1168) (-1168)) 32)) (-2058 (((-1282) (-1168) (-1168) (-1168)) 21)))
-(((-1117 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2058 ((-1282) (-1168) (-1168) (-1168))) (-15 -2639 ((-1282))) (-15 -4320 ((-1282) (-1168) (-1168) (-1168))) (-15 -1939 ((-1282))) (-15 -2375 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -4255 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -4255 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#3| (-112))) (-15 -3766 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -3171 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -3881 ((-112) |#4| |#5|)) (-15 -3806 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -2440 ((-650 |#5|) |#4| |#5|)) (-15 -3368 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -3889 ((-650 |#5|) |#4| |#5|)) (-15 -3881 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -2273 ((-650 |#5|) |#4| |#5|)) (-15 -3192 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1117))
-((-3192 (*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) (|:| -3684 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2273 (*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)))) (-3881 (*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)) (|:| -3684 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3889 (*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)))) (-3368 (*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)) (|:| -3684 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2440 (*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)))) (-3806 (*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)) (|:| -3684 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3881 (*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)))) (-3171 (*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) (|:| -3684 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3766 (*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) (|:| -3684 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-4255 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3684 *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) (|:| -3684 *9)))) (-5 *1 (-1117 *6 *7 *4 *8 *9)))) (-4255 (*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) (|:| -3684 *4)))) (-5 *1 (-1117 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-2375 (*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)) (|:| -3684 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1939 (*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)))) (-4320 (*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)))) (-2639 (*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)))) (-2058 (*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 -2058 ((-1282) (-1168) (-1168) (-1168))) (-15 -2639 ((-1282))) (-15 -4320 ((-1282) (-1168) (-1168) (-1168))) (-15 -1939 ((-1282))) (-15 -2375 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -4255 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -4255 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) |#3| (-112))) (-15 -3766 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -3171 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#4| |#5|)) (-15 -3881 ((-112) |#4| |#5|)) (-15 -3806 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -2440 ((-650 |#5|) |#4| |#5|)) (-15 -3368 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -3889 ((-650 |#5|) |#4| |#5|)) (-15 -3881 ((-650 (-2 (|:| |val| (-112)) (|:| -3684 |#5|))) |#4| |#5|)) (-15 -2273 ((-650 |#5|) |#4| |#5|)) (-15 -3192 ((-650 (-2 (|:| |val| |#4|) (|:| -3684 |#5|))) |#4| |#5|)))
-((-2558 (((-112) $ $) 7)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) 86)) (-1515 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1755 (((-650 |#3|) $) 34)) (-3051 (((-112) $) 27)) (-1416 (((-112) $) 18 (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) 102) (((-112) $) 98)) (-3484 ((|#4| |#4| $) 93)) (-4364 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| $) 127)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) 28)) (-4302 (((-112) $ (-777)) 45)) (-1431 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-1705 (($) 46 T CONST)) (-3737 (((-112) $) 23 (|has| |#1| (-562)))) (-2467 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4047 (((-112) $ $) 24 (|has| |#1| (-562)))) (-1876 (((-112) $) 26 (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2450 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) 37)) (-3216 (($ (-650 |#4|)) 36)) (-3555 (((-3 $ "failed") $) 83)) (-2128 ((|#4| |#4| $) 90)) (-3579 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) 106)) (-3948 (((-112) |#4| $) 137)) (-3825 (((-112) |#4| $) 134)) (-2819 (((-112) |#4| $) 138) (((-112) $) 135)) (-3627 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) 105) (((-112) $) 104)) (-1724 ((|#3| $) 35)) (-2929 (((-112) $ (-777)) 44)) (-2752 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 48)) (-1423 (((-650 |#3|) $) 33)) (-3907 (((-112) |#3| $) 32)) (-3231 (((-112) $ (-777)) 43)) (-1988 (((-1168) $) 10)) (-2925 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-1759 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| |#4| $) 128)) (-1769 (((-3 |#4| "failed") $) 84)) (-3260 (((-650 $) |#4| $) 130)) (-4090 (((-3 (-112) (-650 $)) |#4| $) 133)) (-1743 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2730 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-2231 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3534 (((-650 |#4|) $) 108)) (-1491 (((-112) |#4| $) 100) (((-112) $) 96)) (-2520 ((|#4| |#4| $) 91)) (-2971 (((-112) $ $) 111)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) 101) (((-112) $) 97)) (-4201 ((|#4| |#4| $) 92)) (-3577 (((-1129) $) 11)) (-3543 (((-3 |#4| "failed") $) 85)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1690 (((-3 $ "failed") $ |#4|) 79)) (-2431 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-3642 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 39)) (-2017 (((-112) $) 42)) (-2380 (($) 41)) (-2130 (((-777) $) 107)) (-3584 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3951 (($ $) 40)) (-1425 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 61)) (-3710 (($ $ |#3|) 29)) (-4224 (($ $ |#3|) 31)) (-4085 (($ $) 89)) (-1615 (($ $ |#3|) 30)) (-3799 (((-868) $) 12) (((-650 |#4|) $) 38)) (-4392 (((-777) $) 77 (|has| |#3| (-373)))) (-2335 (((-112) $ $) 9)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2401 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4371 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) 82)) (-2950 (((-112) |#4| $) 136)) (-2561 (((-112) |#3| $) 81)) (-3022 (((-112) $ $) 6)) (-2569 (((-777) $) 47 (|has| $ (-6 -4449)))))
+((-3400 (((-1282) $) 22)) (-1752 (($ (-1186) (-440) |#2|) 11)) (-3802 (((-868) $) 16)))
+(((-1115 |#1| |#2|) (-13 (-401) (-10 -8 (-15 -1752 ($ (-1186) (-440) |#2|)))) (-1109) (-436 |#1|)) (T -1115))
+((-1752 (*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 -1752 ($ (-1186) (-440) |#2|))))
+((-3573 (((-112) |#5| |#5|) 44)) (-2120 (((-112) |#5| |#5|) 59)) (-4426 (((-112) |#5| (-650 |#5|)) 82) (((-112) |#5| |#5|) 68)) (-2099 (((-112) (-650 |#4|) (-650 |#4|)) 65)) (-3656 (((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) 70)) (-2933 (((-1282)) 32)) (-1568 (((-1282) (-1168) (-1168) (-1168)) 28)) (-1728 (((-650 |#5|) (-650 |#5|)) 101)) (-4411 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) 93)) (-3190 (((-650 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112)) 123)) (-2772 (((-112) |#5| |#5|) 53)) (-1980 (((-3 (-112) "failed") |#5| |#5|) 78)) (-1868 (((-112) (-650 |#4|) (-650 |#4|)) 64)) (-2195 (((-112) (-650 |#4|) (-650 |#4|)) 66)) (-1433 (((-112) (-650 |#4|) (-650 |#4|)) 67)) (-1832 (((-3 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112)) 118)) (-3033 (((-650 |#5|) (-650 |#5|)) 49)))
+(((-1116 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -1568 ((-1282) (-1168) (-1168) (-1168))) (-15 -2933 ((-1282))) (-15 -3573 ((-112) |#5| |#5|)) (-15 -3033 ((-650 |#5|) (-650 |#5|))) (-15 -2772 ((-112) |#5| |#5|)) (-15 -2120 ((-112) |#5| |#5|)) (-15 -2099 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1868 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2195 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1433 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1980 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4426 ((-112) |#5| |#5|)) (-15 -4426 ((-112) |#5| (-650 |#5|))) (-15 -1728 ((-650 |#5|) (-650 |#5|))) (-15 -3656 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) (-15 -4411 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-15 -3190 ((-650 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1832 ((-3 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#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))
+((-1832 (*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 (|:| -4308 (-650 *9)) (|:| -3687 *4) (|:| |ineq| (-650 *9)))) (-5 *1 (-1116 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9)) (-4 *4 (-1080 *6 *7 *8 *9)))) (-3190 (*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 (|:| -4308 (-650 *9)) (|:| -3687 *10) (|:| |ineq| (-650 *9))))) (-5 *1 (-1116 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))) (-4411 (*1 *2 *2) (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3687 *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)))) (-3656 (*1 *2 *3 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3687 *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)))) (-1728 (*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)))) (-4426 (*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)))) (-4426 (*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)))) (-1980 (*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)))) (-1433 (*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)))) (-2195 (*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)))) (-1868 (*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)))) (-2099 (*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)))) (-2120 (*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)))) (-2772 (*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)))) (-3033 (*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)))) (-3573 (*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)))) (-2933 (*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)))) (-1568 (*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 -1568 ((-1282) (-1168) (-1168) (-1168))) (-15 -2933 ((-1282))) (-15 -3573 ((-112) |#5| |#5|)) (-15 -3033 ((-650 |#5|) (-650 |#5|))) (-15 -2772 ((-112) |#5| |#5|)) (-15 -2120 ((-112) |#5| |#5|)) (-15 -2099 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1868 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -2195 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1433 ((-112) (-650 |#4|) (-650 |#4|))) (-15 -1980 ((-3 (-112) "failed") |#5| |#5|)) (-15 -4426 ((-112) |#5| |#5|)) (-15 -4426 ((-112) |#5| (-650 |#5|))) (-15 -1728 ((-650 |#5|) (-650 |#5|))) (-15 -3656 ((-112) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) (-15 -4411 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-15 -3190 ((-650 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|)))) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -1832 ((-3 (-2 (|:| -4308 (-650 |#4|)) (|:| -3687 |#5|) (|:| |ineq| (-650 |#4|))) "failed") (-650 |#4|) |#5| (-650 |#4|) (-112) (-112) (-112) (-112) (-112))))
+((-3027 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|) 108)) (-2618 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#4| |#4| |#5|) 80)) (-2845 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|) 102)) (-2056 (((-650 |#5|) |#4| |#5|) 124)) (-2206 (((-650 |#5|) |#4| |#5|) 131)) (-3934 (((-650 |#5|) |#4| |#5|) 132)) (-2682 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|) 109)) (-4072 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|) 130)) (-2130 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|) 47) (((-112) |#4| |#5|) 55)) (-1436 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#3| (-112)) 92) (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5| (-112) (-112)) 52)) (-3488 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|) 87)) (-1648 (((-1282)) 36)) (-3366 (((-1282)) 25)) (-3909 (((-1282) (-1168) (-1168) (-1168)) 32)) (-3542 (((-1282) (-1168) (-1168) (-1168)) 21)))
+(((-1117 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3542 ((-1282) (-1168) (-1168) (-1168))) (-15 -3366 ((-1282))) (-15 -3909 ((-1282) (-1168) (-1168) (-1168))) (-15 -1648 ((-1282))) (-15 -2618 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -1436 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1436 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#3| (-112))) (-15 -3488 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -2845 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -2130 ((-112) |#4| |#5|)) (-15 -2682 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -2056 ((-650 |#5|) |#4| |#5|)) (-15 -4072 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -2206 ((-650 |#5|) |#4| |#5|)) (-15 -2130 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -3934 ((-650 |#5|) |#4| |#5|)) (-15 -3027 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1080 |#1| |#2| |#3| |#4|)) (T -1117))
+((-3027 (*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) (|:| -3687 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3934 (*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)))) (-2130 (*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)) (|:| -3687 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2206 (*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)))) (-4072 (*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)) (|:| -3687 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2056 (*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)))) (-2682 (*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)) (|:| -3687 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-2130 (*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)))) (-2845 (*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) (|:| -3687 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-3488 (*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) (|:| -3687 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1436 (*1 *2 *3 *4 *5) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3687 *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) (|:| -3687 *9)))) (-5 *1 (-1117 *6 *7 *4 *8 *9)))) (-1436 (*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) (|:| -3687 *4)))) (-5 *1 (-1117 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3)))) (-2618 (*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)) (|:| -3687 *4)))) (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))) (-1648 (*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)))) (-3909 (*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)))) (-3366 (*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)))) (-3542 (*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 -3542 ((-1282) (-1168) (-1168) (-1168))) (-15 -3366 ((-1282))) (-15 -3909 ((-1282) (-1168) (-1168) (-1168))) (-15 -1648 ((-1282))) (-15 -2618 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -1436 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5| (-112) (-112))) (-15 -1436 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) |#3| (-112))) (-15 -3488 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -2845 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#4| |#5|)) (-15 -2130 ((-112) |#4| |#5|)) (-15 -2682 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -2056 ((-650 |#5|) |#4| |#5|)) (-15 -4072 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -2206 ((-650 |#5|) |#4| |#5|)) (-15 -2130 ((-650 (-2 (|:| |val| (-112)) (|:| -3687 |#5|))) |#4| |#5|)) (-15 -3934 ((-650 |#5|) |#4| |#5|)) (-15 -3027 ((-650 (-2 (|:| |val| |#4|) (|:| -3687 |#5|))) |#4| |#5|)))
+((-2560 (((-112) $ $) 7)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) 86)) (-1911 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1755 (((-650 |#3|) $) 34)) (-4092 (((-112) $) 27)) (-1320 (((-112) $) 18 (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) 102) (((-112) $) 98)) (-2698 ((|#4| |#4| $) 93)) (-4310 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| $) 127)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) 28)) (-1932 (((-112) $ (-777)) 45)) (-1434 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) 80)) (-3195 (($) 46 T CONST)) (-3230 (((-112) $) 23 (|has| |#1| (-562)))) (-2339 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4337 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2327 (((-112) $) 26 (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2167 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) 37)) (-3220 (($ (-650 |#4|)) 36)) (-3558 (((-3 $ "failed") $) 83)) (-3059 ((|#4| |#4| $) 90)) (-3582 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-2191 ((|#4| |#4| $) 88)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) 106)) (-1483 (((-112) |#4| $) 137)) (-2816 (((-112) |#4| $) 134)) (-2607 (((-112) |#4| $) 138) (((-112) $) 135)) (-3630 (((-650 |#4|) $) 53 (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) 105) (((-112) $) 104)) (-3357 ((|#3| $) 35)) (-2317 (((-112) $ (-777)) 44)) (-2052 (((-650 |#4|) $) 54 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 48)) (-1388 (((-650 |#3|) $) 33)) (-2387 (((-112) |#3| $) 32)) (-2193 (((-112) $ (-777)) 43)) (-3989 (((-1168) $) 10)) (-2274 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-3693 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| |#4| $) 128)) (-1770 (((-3 |#4| "failed") $) 84)) (-2490 (((-650 $) |#4| $) 130)) (-3623 (((-3 (-112) (-650 $)) |#4| $) 133)) (-3548 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-3051 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-1633 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3151 (((-650 |#4|) $) 108)) (-2898 (((-112) |#4| $) 100) (((-112) $) 96)) (-1590 ((|#4| |#4| $) 91)) (-1433 (((-112) $ $) 111)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) 101) (((-112) $) 97)) (-2222 ((|#4| |#4| $) 92)) (-3580 (((-1129) $) 11)) (-3546 (((-3 |#4| "failed") $) 85)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-4207 (((-3 $ "failed") $ |#4|) 79)) (-3152 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-1627 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 39)) (-4283 (((-112) $) 42)) (-2656 (($) 41)) (-3079 (((-777) $) 107)) (-3587 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4452)))) (-3954 (($ $) 40)) (-1426 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 61)) (-4138 (($ $ |#3|) 29)) (-2435 (($ $ |#3|) 31)) (-3563 (($ $) 89)) (-1631 (($ $ |#3|) 30)) (-3802 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3394 (((-777) $) 77 (|has| |#3| (-373)))) (-3359 (((-112) $ $) 9)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2872 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4379 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) 82)) (-2506 (((-112) |#4| $) 136)) (-3857 (((-112) |#3| $) 81)) (-3025 (((-112) $ $) 6)) (-2570 (((-777) $) 47 (|has| $ (-6 -4452)))))
(((-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) ((-1220 |#1| |#2| |#3| |#4|) . T) ((-1227) . T))
-((-1948 (((-650 (-570)) (-570) (-570) (-570)) 38)) (-2529 (((-650 (-570)) (-570) (-570) (-570)) 28)) (-3157 (((-650 (-570)) (-570) (-570) (-570)) 33)) (-3159 (((-570) (-570) (-570)) 21)) (-3916 (((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570)) 75) (((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570)) 70)) (-2927 (((-650 (-570)) (-650 (-928)) (-650 (-570)) (-112)) 53)) (-2220 (((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570))) 74)) (-1606 (((-695 (-570)) (-650 (-928)) (-650 (-570))) 58)) (-3281 (((-650 (-695 (-570))) (-650 (-928))) 63)) (-1843 (((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570))) 78)) (-3506 (((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570))) 88)))
-(((-1119) (-10 -7 (-15 -3506 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -1843 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -3281 ((-650 (-695 (-570))) (-650 (-928)))) (-15 -1606 ((-695 (-570)) (-650 (-928)) (-650 (-570)))) (-15 -2220 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2927 ((-650 (-570)) (-650 (-928)) (-650 (-570)) (-112))) (-15 -3916 ((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570))) (-15 -3916 ((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570))) (-15 -3159 ((-570) (-570) (-570))) (-15 -3157 ((-650 (-570)) (-570) (-570) (-570))) (-15 -2529 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1948 ((-650 (-570)) (-570) (-570) (-570))))) (T -1119))
-((-1948 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-2529 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-3157 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-3159 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1119)))) (-3916 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1277 (-570))) (-5 *3 (-650 (-570))) (-5 *4 (-570)) (-5 *1 (-1119)))) (-3916 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1277 (-570))) (-5 *3 (-570)) (-5 *1 (-1119)))) (-2927 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-650 (-570))) (-5 *3 (-650 (-928))) (-5 *4 (-112)) (-5 *1 (-1119)))) (-2220 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-695 (-570))) (-5 *3 (-650 (-570))) (-5 *1 (-1119)))) (-1606 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-928))) (-5 *4 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))) (-3281 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-1119)))) (-1843 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *3 (-695 (-570))) (-5 *1 (-1119)))) (-3506 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
-(-10 -7 (-15 -3506 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -1843 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -3281 ((-650 (-695 (-570))) (-650 (-928)))) (-15 -1606 ((-695 (-570)) (-650 (-928)) (-650 (-570)))) (-15 -2220 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2927 ((-650 (-570)) (-650 (-928)) (-650 (-570)) (-112))) (-15 -3916 ((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570))) (-15 -3916 ((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570))) (-15 -3159 ((-570) (-570) (-570))) (-15 -3157 ((-650 (-570)) (-570) (-570) (-570))) (-15 -2529 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1948 ((-650 (-570)) (-570) (-570) (-570))))
+((-1721 (((-650 (-570)) (-570) (-570) (-570)) 38)) (-1687 (((-650 (-570)) (-570) (-570) (-570)) 28)) (-2713 (((-650 (-570)) (-570) (-570) (-570)) 33)) (-2734 (((-570) (-570) (-570)) 21)) (-2461 (((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570)) 75) (((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570)) 70)) (-2295 (((-650 (-570)) (-650 (-928)) (-650 (-570)) (-112)) 53)) (-1506 (((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570))) 74)) (-1545 (((-695 (-570)) (-650 (-928)) (-650 (-570))) 58)) (-1386 (((-650 (-695 (-570))) (-650 (-928))) 63)) (-2034 (((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570))) 78)) (-2916 (((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570))) 88)))
+(((-1119) (-10 -7 (-15 -2916 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -2034 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -1386 ((-650 (-695 (-570))) (-650 (-928)))) (-15 -1545 ((-695 (-570)) (-650 (-928)) (-650 (-570)))) (-15 -1506 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2295 ((-650 (-570)) (-650 (-928)) (-650 (-570)) (-112))) (-15 -2461 ((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570))) (-15 -2461 ((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570))) (-15 -2734 ((-570) (-570) (-570))) (-15 -2713 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1687 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1721 ((-650 (-570)) (-570) (-570) (-570))))) (T -1119))
+((-1721 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-1687 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-2713 (*1 *2 *3 *3 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))) (-2734 (*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1119)))) (-2461 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-1277 (-570))) (-5 *3 (-650 (-570))) (-5 *4 (-570)) (-5 *1 (-1119)))) (-2461 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-1277 (-570))) (-5 *3 (-570)) (-5 *1 (-1119)))) (-2295 (*1 *2 *3 *2 *4) (-12 (-5 *2 (-650 (-570))) (-5 *3 (-650 (-928))) (-5 *4 (-112)) (-5 *1 (-1119)))) (-1506 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-695 (-570))) (-5 *3 (-650 (-570))) (-5 *1 (-1119)))) (-1545 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-928))) (-5 *4 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))) (-1386 (*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-1119)))) (-2034 (*1 *2 *2 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *3 (-695 (-570))) (-5 *1 (-1119)))) (-2916 (*1 *2 *3 *3 *3) (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
+(-10 -7 (-15 -2916 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-650 (-570)))) (-15 -2034 ((-650 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -1386 ((-650 (-695 (-570))) (-650 (-928)))) (-15 -1545 ((-695 (-570)) (-650 (-928)) (-650 (-570)))) (-15 -1506 ((-695 (-570)) (-650 (-570)) (-650 (-570)) (-695 (-570)))) (-15 -2295 ((-650 (-570)) (-650 (-928)) (-650 (-570)) (-112))) (-15 -2461 ((-1277 (-570)) (-1277 (-570)) (-1277 (-570)) (-570))) (-15 -2461 ((-1277 (-570)) (-650 (-570)) (-1277 (-570)) (-570))) (-15 -2734 ((-570) (-570) (-570))) (-15 -2713 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1687 ((-650 (-570)) (-570) (-570) (-570))) (-15 -1721 ((-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))))
-((-2558 (((-112) $ $) 7)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)) (** (($ $ (-928)) 14)) (* (($ $ $) 15)))
+((-2560 (((-112) $ $) 7)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-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))
-((-2558 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-3467 (((-112) $) NIL (|has| |#3| (-132)))) (-2797 (($ (-928)) NIL (|has| |#3| (-1058)))) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-3744 (($ $ $) NIL (|has| |#3| (-799)))) (-3990 (((-3 $ "failed") $ $) NIL (|has| |#3| (-132)))) (-4302 (((-112) $ (-777)) NIL)) (-3510 (((-777)) NIL (|has| |#3| (-373)))) (-4395 (((-570) $) NIL (|has| |#3| (-854)))) (-3932 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)))) (-3216 (((-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)))) (-4196 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-2 (|:| -2415 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) NIL (|has| |#3| (-1058))) (((-695 |#3|) (-695 $)) NIL (|has| |#3| (-1058)))) (-2875 (((-3 $ "failed") $) NIL (|has| |#3| (-732)))) (-3446 (($) NIL (|has| |#3| (-373)))) (-1517 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#3| $ (-570)) 12)) (-3903 (((-112) $) NIL (|has| |#3| (-854)))) (-3627 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-4346 (((-112) $) NIL (|has| |#3| (-732)))) (-1479 (((-112) $) NIL (|has| |#3| (-854)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2752 (((-650 |#3|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-1502 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#3| |#3|) $) NIL)) (-1884 (((-928) $) NIL (|has| |#3| (-373)))) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#3| (-1109)))) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-2268 (($ (-928)) NIL (|has| |#3| (-373)))) (-3577 (((-1129) $) NIL (|has| |#3| (-1109)))) (-3543 ((|#3| $) NIL (|has| (-570) (-856)))) (-2147 (($ $ |#3|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-3700 (((-650 |#3|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#3| $ (-570) |#3|) NIL) ((|#3| $ (-570)) NIL)) (-2609 ((|#3| $ $) NIL (|has| |#3| (-1058)))) (-3843 (($ (-1277 |#3|)) NIL)) (-2951 (((-135)) NIL (|has| |#3| (-368)))) (-3547 (($ $) 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)))) (-3584 (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449))) (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#3| (-1109))))) (-3951 (($ $) NIL)) (-3799 (((-1277 |#3|) $) NIL) (($ (-570)) NIL (-2892 (-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))))) (-3499 (((-777)) NIL (|has| |#3| (-1058)) CONST)) (-2335 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-4371 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4449)))) (-2622 (($ $) NIL (|has| |#3| (-854)))) (-1861 (($) NIL (|has| |#3| (-132)) CONST)) (-1875 (($) NIL (|has| |#3| (-732)) CONST)) (-2942 (($ $) 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)))) (-3072 (((-112) $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3052 (((-112) $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3022 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-3062 (((-112) $ $) NIL (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3042 (((-112) $ $) 24 (-2892 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3122 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-3111 (($ $ $) NIL (|has| |#3| (-1058))) (($ $) NIL (|has| |#3| (-1058)))) (-3101 (($ $ $) 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)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-3721 (((-112) $) NIL (|has| |#3| (-132)))) (-2451 (($ (-928)) NIL (|has| |#3| (-1058)))) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-3271 (($ $ $) NIL (|has| |#3| (-799)))) (-1966 (((-3 $ "failed") $ $) NIL (|has| |#3| (-132)))) (-1932 (((-112) $ (-777)) NIL)) (-3513 (((-777)) NIL (|has| |#3| (-373)))) (-3408 (((-570) $) NIL (|has| |#3| (-854)))) (-3935 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)))) (-3220 (((-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)))) (-2179 (((-695 (-570)) (-695 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (-12 (|has| |#3| (-645 (-570))) (|has| |#3| (-1058)))) (((-2 (|:| -2990 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) NIL (|has| |#3| (-1058))) (((-695 |#3|) (-695 $)) NIL (|has| |#3| (-1058)))) (-1929 (((-3 $ "failed") $) NIL (|has| |#3| (-732)))) (-3449 (($) NIL (|has| |#3| (-373)))) (-1518 ((|#3| $ (-570) |#3|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#3| $ (-570)) 12)) (-2346 (((-112) $) NIL (|has| |#3| (-854)))) (-3630 (((-650 |#3|) $) NIL (|has| $ (-6 -4452)))) (-4139 (((-112) $) NIL (|has| |#3| (-732)))) (-2788 (((-112) $) NIL (|has| |#3| (-854)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-2052 (((-650 |#3|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#3| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-1503 (($ (-1 |#3| |#3|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#3| |#3|) $) NIL)) (-2400 (((-928) $) NIL (|has| |#3| (-373)))) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#3| (-1109)))) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-2267 (($ (-928)) NIL (|has| |#3| (-373)))) (-3580 (((-1129) $) NIL (|has| |#3| (-1109)))) (-3546 ((|#3| $) NIL (|has| (-570) (-856)))) (-2061 (($ $ |#3|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#3| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#3| (-1109))))) (-4049 (((-650 |#3|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#3| $ (-570) |#3|) NIL) ((|#3| $ (-570)) NIL)) (-4266 ((|#3| $ $) NIL (|has| |#3| (-1058)))) (-3846 (($ (-1277 |#3|)) NIL)) (-2517 (((-135)) NIL (|has| |#3| (-368)))) (-3550 (($ $) 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)))) (-3587 (((-777) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452))) (((-777) |#3| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#3| (-1109))))) (-3954 (($ $) NIL)) (-3802 (((-1277 |#3|) $) NIL) (($ (-570)) NIL (-2895 (-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))))) (-2851 (((-777)) NIL (|has| |#3| (-1058)) CONST)) (-3359 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-4379 (((-112) (-1 (-112) |#3|) $) NIL (|has| $ (-6 -4452)))) (-3231 (($ $) NIL (|has| |#3| (-854)))) (-1862 (($) NIL (|has| |#3| (-132)) CONST)) (-1876 (($) NIL (|has| |#3| (-732)) CONST)) (-2945 (($ $) 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)))) (-3075 (((-112) $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3055 (((-112) $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3025 (((-112) $ $) NIL (|has| |#3| (-1109)))) (-3065 (((-112) $ $) NIL (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3045 (((-112) $ $) 24 (-2895 (|has| |#3| (-799)) (|has| |#3| (-854))))) (-3125 (($ $ |#3|) NIL (|has| |#3| (-368)))) (-3114 (($ $ $) NIL (|has| |#3| (-1058))) (($ $) NIL (|has| |#3| (-1058)))) (-3104 (($ $ $) 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)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-1122 |#1| |#2| |#3|) (-240 |#1| |#3|) (-777) (-777) (-799)) (T -1122))
NIL
(-240 |#1| |#3|)
-((-3791 (((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 50)) (-3588 (((-570) (-1250 |#2| |#1|)) 94 (|has| |#1| (-458)))) (-1358 (((-570) (-1250 |#2| |#1|)) 76)) (-2166 (((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 58)) (-1880 (((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 93 (|has| |#1| (-458)))) (-2051 (((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 61)) (-1415 (((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 75)))
-(((-1123 |#1| |#2|) (-10 -7 (-15 -3791 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2166 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2051 ((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -1415 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -1358 ((-570) (-1250 |#2| |#1|))) (IF (|has| |#1| (-458)) (PROGN (-15 -1880 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -3588 ((-570) (-1250 |#2| |#1|)))) |%noBranch|)) (-826) (-1186)) (T -1123))
-((-3588 (*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)))) (-1880 (*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)))) (-1358 (*1 *2 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-1415 (*1 *2 *3 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-2051 (*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)))) (-2166 (*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)))) (-3791 (*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 -3791 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2166 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2051 ((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -1415 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -1358 ((-570) (-1250 |#2| |#1|))) (IF (|has| |#1| (-458)) (PROGN (-15 -1880 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -3588 ((-570) (-1250 |#2| |#1|)))) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-2980 (($ (-512) (-1127)) 13)) (-4328 (((-1127) $) 19)) (-3600 (((-512) $) 16)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 26) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1124) (-13 (-1092) (-10 -8 (-15 -2980 ($ (-512) (-1127))) (-15 -3600 ((-512) $)) (-15 -4328 ((-1127) $))))) (T -1124))
-((-2980 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-1124)))) (-3600 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1124)))) (-4328 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1124)))))
-(-13 (-1092) (-10 -8 (-15 -2980 ($ (-512) (-1127))) (-15 -3600 ((-512) $)) (-15 -4328 ((-1127) $))))
-((-4395 (((-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 -4395 ((-3 (-570) "failed") |#2|)) (-15 -4395 ((-3 (-570) "failed") |#2| (-1186) (-849 |#2|))) (-15 -4395 ((-3 (-570) "failed") |#2| (-1186) |#2| (-1168)))) (-13 (-562) (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1212) (-436 |#1|))) (T -1125))
-((-4395 (*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))))) (-4395 (*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)))) (-4395 (*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 -4395 ((-3 (-570) "failed") |#2|)) (-15 -4395 ((-3 (-570) "failed") |#2| (-1186) (-849 |#2|))) (-15 -4395 ((-3 (-570) "failed") |#2| (-1186) |#2| (-1168))))
-((-4395 (((-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 -4395 ((-3 (-570) "failed") (-413 (-959 |#1|)))) (-15 -4395 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|))))) (-15 -4395 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168)))) (-458)) (T -1126))
-((-4395 (*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)))) (-4395 (*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)))) (-4395 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *4)))))
-(-10 -7 (-15 -4395 ((-3 (-570) "failed") (-413 (-959 |#1|)))) (-15 -4395 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|))))) (-15 -4395 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168))))
-((-2558 (((-112) $ $) NIL)) (-3863 (((-1191) $) 12)) (-3816 (((-650 (-1191)) $) 14)) (-4328 (($ (-650 (-1191)) (-1191)) 10)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 29)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 17)))
-(((-1127) (-13 (-1109) (-10 -8 (-15 -4328 ($ (-650 (-1191)) (-1191))) (-15 -3863 ((-1191) $)) (-15 -3816 ((-650 (-1191)) $))))) (T -1127))
-((-4328 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1191))) (-5 *3 (-1191)) (-5 *1 (-1127)))) (-3863 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-1127)))) (-3816 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1127)))))
-(-13 (-1109) (-10 -8 (-15 -4328 ($ (-650 (-1191)) (-1191))) (-15 -3863 ((-1191) $)) (-15 -3816 ((-650 (-1191)) $))))
-((-4092 (((-320 (-570)) (-48)) 12)))
-(((-1128) (-10 -7 (-15 -4092 ((-320 (-570)) (-48))))) (T -1128))
-((-4092 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-320 (-570))) (-5 *1 (-1128)))))
-(-10 -7 (-15 -4092 ((-320 (-570)) (-48))))
-((-2558 (((-112) $ $) NIL)) (-2579 (($ $) 44)) (-3467 (((-112) $) 71)) (-1837 (($ $ $) 53)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 99)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3687 (($ $ $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1520 (($ $ $ $) 82)) (-4364 (($ $) NIL)) (-1652 (((-424 $) $) NIL)) (-3473 (((-112) $ $) NIL)) (-3510 (((-777)) 84)) (-4395 (((-570) $) NIL)) (-3160 (($ $ $) 79)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL)) (-3216 (((-570) $) NIL)) (-2506 (($ $ $) 65)) (-4196 (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 93) (((-695 (-570)) (-695 $)) 32)) (-2875 (((-3 $ "failed") $) NIL)) (-2805 (((-3 (-413 (-570)) "failed") $) NIL)) (-3242 (((-112) $) NIL)) (-2068 (((-413 (-570)) $) NIL)) (-3446 (($) 96) (($ $) 97)) (-2518 (($ $ $) 64)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL)) (-3618 (((-112) $) NIL)) (-4228 (($ $ $ $) NIL)) (-2702 (($ $ $) 94)) (-3903 (((-112) $) NIL)) (-4071 (($ $ $) NIL)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-1823 (($ $ $) 52)) (-4346 (((-112) $) 73)) (-2110 (((-112) $) 70)) (-1795 (($ $) 45)) (-2619 (((-3 $ "failed") $) NIL)) (-1479 (((-112) $) 83)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2120 (($ $ $ $) 80)) (-3466 (($ $ $) 75) (($) 42 T CONST)) (-2800 (($ $ $) 74) (($) 41 T CONST)) (-2735 (($ $) NIL)) (-1884 (((-928) $) 89)) (-1355 (($ $) 78)) (-1899 (($ $ $) NIL) (($ (-650 $)) NIL)) (-1988 (((-1168) $) NIL)) (-2784 (($ $ $) NIL)) (-2438 (($) NIL T CONST)) (-2268 (($ (-928)) 88)) (-3615 (($ $) 58)) (-3577 (((-1129) $) 77)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1942 (($ $ $) 68) (($ (-650 $)) NIL)) (-4365 (($ $) NIL)) (-3801 (((-424 $) $) NIL)) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL)) (-2547 (((-3 $ "failed") $ $) NIL)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-3273 (((-112) $) NIL)) (-2142 (((-777) $) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 67)) (-3547 (($ $ (-777)) NIL) (($ $) NIL)) (-2574 (($ $) 59)) (-3951 (($ $) NIL)) (-1425 (((-570) $) 17) (((-542) $) NIL) (((-899 (-570)) $) NIL) (((-384) $) NIL) (((-227) $) NIL)) (-3799 (((-868) $) 35) (($ (-570)) 95) (($ $) NIL) (($ (-570)) 95)) (-3499 (((-777)) NIL T CONST)) (-2282 (((-112) $ $) NIL)) (-2858 (($ $ $) NIL)) (-2335 (((-112) $ $) NIL)) (-4406 (($) 40)) (-2029 (((-112) $ $) NIL)) (-1809 (($ $ $) 50)) (-1613 (($ $ $ $) 81)) (-2622 (($ $) 69)) (-4420 (($ $ $) 47)) (-1861 (($) 7 T CONST)) (-3537 (($ $ $) 51)) (-1875 (($) 39 T CONST)) (-2831 (((-1168) $) 26) (((-1168) $ (-112)) 27) (((-1282) (-828) $) 28) (((-1282) (-828) $ (-112)) 29)) (-3549 (($ $) 48)) (-2942 (($ $ (-777)) NIL) (($ $) NIL)) (-3525 (($ $ $) 49)) (-3072 (((-112) $ $) 57)) (-3052 (((-112) $ $) 54)) (-3022 (((-112) $ $) 43)) (-3062 (((-112) $ $) 56)) (-3042 (((-112) $ $) 10)) (-4407 (($ $ $) 46)) (-3111 (($ $) 16) (($ $ $) 61)) (-3101 (($ $ $) 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 -1837 ($ $ $)) (-15 -3549 ($ $)) (-15 -3525 ($ $ $)) (-15 -3537 ($ $ $))))) (T -1129))
-((-1837 (*1 *1 *1 *1) (-5 *1 (-1129))) (-3549 (*1 *1 *1) (-5 *1 (-1129))) (-3525 (*1 *1 *1 *1) (-5 *1 (-1129))) (-3537 (*1 *1 *1 *1) (-5 *1 (-1129))))
-(-13 (-551) (-850) (-113) (-667) (-834) (-10 -8 (-6 -4436) (-6 -4441) (-6 -4437) (-15 -1837 ($ $ $)) (-15 -3549 ($ $)) (-15 -3525 ($ $ $)) (-15 -3537 ($ $ $))))
+((-3726 (((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 50)) (-2414 (((-570) (-1250 |#2| |#1|)) 94 (|has| |#1| (-458)))) (-2105 (((-570) (-1250 |#2| |#1|)) 76)) (-2247 (((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 58)) (-2357 (((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 93 (|has| |#1| (-458)))) (-3467 (((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 61)) (-4431 (((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|)) 75)))
+(((-1123 |#1| |#2|) (-10 -7 (-15 -3726 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2247 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -3467 ((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -4431 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2105 ((-570) (-1250 |#2| |#1|))) (IF (|has| |#1| (-458)) (PROGN (-15 -2357 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2414 ((-570) (-1250 |#2| |#1|)))) |%noBranch|)) (-826) (-1186)) (T -1123))
+((-2414 (*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)))) (-2357 (*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)))) (-2105 (*1 *2 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-4431 (*1 *2 *3 *3) (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))) (-3467 (*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)))) (-2247 (*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)))) (-3726 (*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 -3726 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2247 ((-650 (-1250 |#2| |#1|)) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -3467 ((-650 |#1|) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -4431 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2105 ((-570) (-1250 |#2| |#1|))) (IF (|has| |#1| (-458)) (PROGN (-15 -2357 ((-570) (-1250 |#2| |#1|) (-1250 |#2| |#1|))) (-15 -2414 ((-570) (-1250 |#2| |#1|)))) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-1551 (($ (-512) (-1127)) 13)) (-4331 (((-1127) $) 19)) (-3602 (((-512) $) 16)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 26) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1124) (-13 (-1092) (-10 -8 (-15 -1551 ($ (-512) (-1127))) (-15 -3602 ((-512) $)) (-15 -4331 ((-1127) $))))) (T -1124))
+((-1551 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-1124)))) (-3602 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1124)))) (-4331 (*1 *2 *1) (-12 (-5 *2 (-1127)) (-5 *1 (-1124)))))
+(-13 (-1092) (-10 -8 (-15 -1551 ($ (-512) (-1127))) (-15 -3602 ((-512) $)) (-15 -4331 ((-1127) $))))
+((-3408 (((-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 -3408 ((-3 (-570) "failed") |#2|)) (-15 -3408 ((-3 (-570) "failed") |#2| (-1186) (-849 |#2|))) (-15 -3408 ((-3 (-570) "failed") |#2| (-1186) |#2| (-1168)))) (-13 (-562) (-1047 (-570)) (-645 (-570)) (-458)) (-13 (-27) (-1212) (-436 |#1|))) (T -1125))
+((-3408 (*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))))) (-3408 (*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)))) (-3408 (*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 -3408 ((-3 (-570) "failed") |#2|)) (-15 -3408 ((-3 (-570) "failed") |#2| (-1186) (-849 |#2|))) (-15 -3408 ((-3 (-570) "failed") |#2| (-1186) |#2| (-1168))))
+((-3408 (((-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 -3408 ((-3 (-570) "failed") (-413 (-959 |#1|)))) (-15 -3408 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|))))) (-15 -3408 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168)))) (-458)) (T -1126))
+((-3408 (*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)))) (-3408 (*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)))) (-3408 (*1 *2 *3) (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-570)) (-5 *1 (-1126 *4)))))
+(-10 -7 (-15 -3408 ((-3 (-570) "failed") (-413 (-959 |#1|)))) (-15 -3408 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-849 (-413 (-959 |#1|))))) (-15 -3408 ((-3 (-570) "failed") (-413 (-959 |#1|)) (-1186) (-413 (-959 |#1|)) (-1168))))
+((-2560 (((-112) $ $) NIL)) (-3866 (((-1191) $) 12)) (-3818 (((-650 (-1191)) $) 14)) (-4331 (($ (-650 (-1191)) (-1191)) 10)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 29)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 17)))
+(((-1127) (-13 (-1109) (-10 -8 (-15 -4331 ($ (-650 (-1191)) (-1191))) (-15 -3866 ((-1191) $)) (-15 -3818 ((-650 (-1191)) $))))) (T -1127))
+((-4331 (*1 *1 *2 *3) (-12 (-5 *2 (-650 (-1191))) (-5 *3 (-1191)) (-5 *1 (-1127)))) (-3866 (*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-1127)))) (-3818 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1127)))))
+(-13 (-1109) (-10 -8 (-15 -4331 ($ (-650 (-1191)) (-1191))) (-15 -3866 ((-1191) $)) (-15 -3818 ((-650 (-1191)) $))))
+((-3643 (((-320 (-570)) (-48)) 12)))
+(((-1128) (-10 -7 (-15 -3643 ((-320 (-570)) (-48))))) (T -1128))
+((-3643 (*1 *2 *3) (-12 (-5 *3 (-48)) (-5 *2 (-320 (-570))) (-5 *1 (-1128)))))
+(-10 -7 (-15 -3643 ((-320 (-570)) (-48))))
+((-2560 (((-112) $ $) NIL)) (-2580 (($ $) 44)) (-3721 (((-112) $) 71)) (-1837 (($ $ $) 53)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 99)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-3925 (($ $ $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-1964 (($ $ $ $) 82)) (-4310 (($ $) NIL)) (-3871 (((-424 $) $) NIL)) (-3765 (((-112) $ $) NIL)) (-3513 (((-777)) 84)) (-3408 (((-570) $) NIL)) (-3163 (($ $ $) 79)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL)) (-3220 (((-570) $) NIL)) (-2504 (($ $ $) 65)) (-2179 (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 93) (((-695 (-570)) (-695 $)) 32)) (-1929 (((-3 $ "failed") $) NIL)) (-2502 (((-3 (-413 (-570)) "failed") $) NIL)) (-2313 (((-112) $) NIL)) (-3645 (((-413 (-570)) $) NIL)) (-3449 (($) 96) (($ $) 97)) (-2519 (($ $ $) 64)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL)) (-1336 (((-112) $) NIL)) (-2477 (($ $ $ $) NIL)) (-2787 (($ $ $) 94)) (-2346 (((-112) $) NIL)) (-3401 (($ $ $) NIL)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) NIL)) (-1824 (($ $ $) 52)) (-4139 (((-112) $) 73)) (-2888 (((-112) $) 70)) (-1796 (($ $) 45)) (-4369 (((-3 $ "failed") $) NIL)) (-2788 (((-112) $) 83)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-2986 (($ $ $ $) 80)) (-3469 (($ $ $) 75) (($) 42 T CONST)) (-2472 (($ $ $) 74) (($) 41 T CONST)) (-2738 (($ $) NIL)) (-2400 (((-928) $) 89)) (-1356 (($ $) 78)) (-1901 (($ $ $) NIL) (($ (-650 $)) NIL)) (-3989 (((-1168) $) NIL)) (-2345 (($ $ $) NIL)) (-2439 (($) NIL T CONST)) (-2267 (($ (-928)) 88)) (-3618 (($ $) 58)) (-3580 (((-1129) $) 77)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL)) (-1939 (($ $ $) 68) (($ (-650 $)) NIL)) (-4322 (($ $) NIL)) (-3804 (((-424 $) $) NIL)) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL)) (-2548 (((-3 $ "failed") $ $) NIL)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL)) (-4418 (((-112) $) NIL)) (-2006 (((-777) $) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 67)) (-3550 (($ $ (-777)) NIL) (($ $) NIL)) (-2574 (($ $) 59)) (-3954 (($ $) NIL)) (-1426 (((-570) $) 17) (((-542) $) NIL) (((-899 (-570)) $) NIL) (((-384) $) NIL) (((-227) $) NIL)) (-3802 (((-868) $) 35) (($ (-570)) 95) (($ $) NIL) (($ (-570)) 95)) (-2851 (((-777)) NIL T CONST)) (-4022 (((-112) $ $) NIL)) (-1730 (($ $ $) NIL)) (-3359 (((-112) $ $) NIL)) (-4409 (($) 40)) (-3228 (((-112) $ $) NIL)) (-1810 (($ $ $) 50)) (-1605 (($ $ $ $) 81)) (-3231 (($ $) 69)) (-4423 (($ $ $) 47)) (-1862 (($) 7 T CONST)) (-3540 (($ $ $) 51)) (-1876 (($) 39 T CONST)) (-1423 (((-1168) $) 26) (((-1168) $ (-112)) 27) (((-1282) (-828) $) 28) (((-1282) (-828) $ (-112)) 29)) (-3552 (($ $) 48)) (-2945 (($ $ (-777)) NIL) (($ $) NIL)) (-3528 (($ $ $) 49)) (-3075 (((-112) $ $) 57)) (-3055 (((-112) $ $) 54)) (-3025 (((-112) $ $) 43)) (-3065 (((-112) $ $) 56)) (-3045 (((-112) $ $) 10)) (-4410 (($ $ $) 46)) (-3114 (($ $) 16) (($ $ $) 61)) (-3104 (($ $ $) 60)) (** (($ $ (-928)) NIL) (($ $ (-777)) 63)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 38) (($ $ $) 37)))
+(((-1129) (-13 (-551) (-850) (-113) (-667) (-834) (-10 -8 (-6 -4439) (-6 -4444) (-6 -4440) (-15 -1837 ($ $ $)) (-15 -3552 ($ $)) (-15 -3528 ($ $ $)) (-15 -3540 ($ $ $))))) (T -1129))
+((-1837 (*1 *1 *1 *1) (-5 *1 (-1129))) (-3552 (*1 *1 *1) (-5 *1 (-1129))) (-3528 (*1 *1 *1 *1) (-5 *1 (-1129))) (-3540 (*1 *1 *1 *1) (-5 *1 (-1129))))
+(-13 (-551) (-850) (-113) (-667) (-834) (-10 -8 (-6 -4439) (-6 -4444) (-6 -4440) (-15 -1837 ($ $ $)) (-15 -3552 ($ $)) (-15 -3528 ($ $ $)) (-15 -3540 ($ $ $))))
((|Integer|) (SMINTP |#1|))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3353 ((|#1| $) 45)) (-4302 (((-112) $ (-777)) 8)) (-1705 (($) 7 T CONST)) (-1740 ((|#1| |#1| $) 47)) (-3636 ((|#1| $) 46)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1490 ((|#1| $) 40)) (-1385 (($ |#1| $) 41)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3647 ((|#1| $) 42)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-2918 (((-777) $) 44)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) 43)) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3356 ((|#1| $) 45)) (-1932 (((-112) $ (-777)) 8)) (-3195 (($) 7 T CONST)) (-3536 ((|#1| |#1| $) 47)) (-1552 ((|#1| $) 46)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-2885 ((|#1| $) 40)) (-3502 (($ |#1| $) 41)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-1684 ((|#1| $) 42)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-2921 (((-777) $) 44)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) 43)) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1130 |#1|) (-141) (-1227)) (T -1130))
-((-1740 (*1 *2 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-3636 (*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-3353 (*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-2918 (*1 *2 *1) (-12 (-4 *1 (-1130 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
-(-13 (-107 |t#1|) (-10 -8 (-6 -4449) (-15 -1740 (|t#1| |t#1| $)) (-15 -3636 (|t#1| $)) (-15 -3353 (|t#1| $)) (-15 -2918 ((-777) $))))
-(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-3207 ((|#3| $) 87)) (-4380 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#3| "failed") $) 50)) (-3216 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#3| $) 47)) (-4196 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2415 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) 84) (((-695 |#3|) (-695 $)) 76)) (-3547 (($ $ (-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)) (-1789 ((|#3| $) 89)) (-2748 ((|#4| $) 43)) (-3799 (((-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 -1789 (|#3| |#1|)) (-15 -3207 (|#3| |#1|)) (-15 -2748 (|#4| |#1|)) (-15 -4196 ((-695 |#3|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -3799 (|#1| |#3|)) (-15 -4380 ((-3 |#3| "failed") |#1|)) (-15 -3216 (|#3| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3799 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3799 ((-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 -1789 (|#3| |#1|)) (-15 -3207 (|#3| |#1|)) (-15 -2748 (|#4| |#1|)) (-15 -4196 ((-695 |#3|) (-695 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -4196 ((-695 (-570)) (-695 |#1|))) (-15 -3799 (|#1| |#3|)) (-15 -4380 ((-3 |#3| "failed") |#1|)) (-15 -3216 (|#3| |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -3547 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3799 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3207 ((|#2| $) 77)) (-1735 (((-112) $) 117)) (-3990 (((-3 $ "failed") $ $) 20)) (-4253 (((-112) $) 115)) (-4302 (((-112) $ (-777)) 107)) (-2741 (($ |#2|) 80)) (-1705 (($) 18 T CONST)) (-4089 (($ $) 134 (|has| |#2| (-311)))) (-2219 ((|#3| $ (-570)) 129)) (-4380 (((-3 (-570) "failed") $) 92 (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 89 (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) 86)) (-3216 (((-570) $) 91 (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) 88 (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) 87)) (-4196 (((-695 (-570)) (-695 $)) 84 (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 83 (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 82) (((-695 |#2|) (-695 $)) 81)) (-2875 (((-3 $ "failed") $) 37)) (-4006 (((-777) $) 135 (|has| |#2| (-562)))) (-3820 ((|#2| $ (-570) (-570)) 127)) (-3627 (((-650 |#2|) $) 100 (|has| $ (-6 -4449)))) (-4346 (((-112) $) 35)) (-2206 (((-777) $) 136 (|has| |#2| (-562)))) (-2123 (((-650 |#4|) $) 137 (|has| |#2| (-562)))) (-3316 (((-777) $) 123)) (-3328 (((-777) $) 124)) (-2929 (((-112) $ (-777)) 108)) (-3689 ((|#2| $) 72 (|has| |#2| (-6 (-4451 "*"))))) (-4133 (((-570) $) 119)) (-2877 (((-570) $) 121)) (-2752 (((-650 |#2|) $) 99 (|has| $ (-6 -4449)))) (-4108 (((-112) |#2| $) 97 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-1552 (((-570) $) 120)) (-1732 (((-570) $) 122)) (-2571 (($ (-650 (-650 |#2|))) 114)) (-1502 (($ (-1 |#2| |#2|) $) 104 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#2| |#2| |#2|) $ $) 131) (($ (-1 |#2| |#2|) $) 105)) (-3575 (((-650 (-650 |#2|)) $) 125)) (-3231 (((-112) $ (-777)) 109)) (-1988 (((-1168) $) 10)) (-3490 (((-3 $ "failed") $) 71 (|has| |#2| (-368)))) (-3577 (((-1129) $) 11)) (-2547 (((-3 $ "failed") $ |#2|) 132 (|has| |#2| (-562)))) (-3642 (((-112) (-1 (-112) |#2|) $) 102 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 113)) (-2017 (((-112) $) 110)) (-2380 (($) 111)) (-1941 ((|#2| $ (-570) (-570) |#2|) 128) ((|#2| $ (-570) (-570)) 126)) (-3547 (($ $ (-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)))) (-1789 ((|#2| $) 76)) (-2173 (($ (-650 |#2|)) 79)) (-3285 (((-112) $) 116)) (-2748 ((|#3| $) 78)) (-2137 ((|#2| $) 73 (|has| |#2| (-6 (-4451 "*"))))) (-3584 (((-777) (-1 (-112) |#2|) $) 101 (|has| $ (-6 -4449))) (((-777) |#2| $) 98 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 112)) (-1508 ((|#4| $ (-570)) 130)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 90 (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) 85)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-4371 (((-112) (-1 (-112) |#2|) $) 103 (|has| $ (-6 -4449)))) (-2841 (((-112) $) 118)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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)))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#2|) 133 (|has| |#2| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)) (-2569 (((-777) $) 106 (|has| $ (-6 -4449)))))
+((-3536 (*1 *2 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-1552 (*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-3356 (*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))) (-2921 (*1 *2 *1) (-12 (-4 *1 (-1130 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
+(-13 (-107 |t#1|) (-10 -8 (-6 -4452) (-15 -3536 (|t#1| |t#1| $)) (-15 -1552 (|t#1| $)) (-15 -3356 (|t#1| $)) (-15 -2921 ((-777) $))))
+(((-34) . T) ((-107 |#1|) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-3211 ((|#3| $) 87)) (-4383 (((-3 (-570) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 |#3| "failed") $) 50)) (-3220 (((-570) $) NIL) (((-413 (-570)) $) NIL) ((|#3| $) 47)) (-2179 (((-695 (-570)) (-695 $)) NIL) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL) (((-2 (|:| -2990 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 $) (-1277 $)) 84) (((-695 |#3|) (-695 $)) 76)) (-3550 (($ $ (-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)) (-2760 ((|#3| $) 89)) (-3193 ((|#4| $) 43)) (-3802 (((-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 -2760 (|#3| |#1|)) (-15 -3211 (|#3| |#1|)) (-15 -3193 (|#4| |#1|)) (-15 -2179 ((-695 |#3|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -3802 (|#1| |#3|)) (-15 -4383 ((-3 |#3| "failed") |#1|)) (-15 -3220 (|#3| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3802 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3802 ((-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 -2760 (|#3| |#1|)) (-15 -3211 (|#3| |#1|)) (-15 -3193 (|#4| |#1|)) (-15 -2179 ((-695 |#3|) (-695 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 |#3|)) (|:| |vec| (-1277 |#3|))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 |#1|) (-1277 |#1|))) (-15 -2179 ((-695 (-570)) (-695 |#1|))) (-15 -3802 (|#1| |#3|)) (-15 -4383 ((-3 |#3| "failed") |#1|)) (-15 -3220 (|#3| |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|) (-777))) (-15 -3550 (|#1| |#1| (-1 |#3| |#3|))) (-15 -3802 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3211 ((|#2| $) 77)) (-3493 (((-112) $) 117)) (-1966 (((-3 $ "failed") $ $) 20)) (-1407 (((-112) $) 115)) (-1932 (((-112) $ (-777)) 107)) (-3130 (($ |#2|) 80)) (-3195 (($) 18 T CONST)) (-3610 (($ $) 134 (|has| |#2| (-311)))) (-1494 ((|#3| $ (-570)) 129)) (-4383 (((-3 (-570) "failed") $) 92 (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) 89 (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) 86)) (-3220 (((-570) $) 91 (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) 88 (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) 87)) (-2179 (((-695 (-570)) (-695 $)) 84 (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 83 (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 82) (((-695 |#2|) (-695 $)) 81)) (-1929 (((-3 $ "failed") $) 37)) (-4009 (((-777) $) 135 (|has| |#2| (-562)))) (-3824 ((|#2| $ (-570) (-570)) 127)) (-3630 (((-650 |#2|) $) 100 (|has| $ (-6 -4452)))) (-4139 (((-112) $) 35)) (-1330 (((-777) $) 136 (|has| |#2| (-562)))) (-3017 (((-650 |#4|) $) 137 (|has| |#2| (-562)))) (-3318 (((-777) $) 123)) (-3330 (((-777) $) 124)) (-2317 (((-112) $ (-777)) 108)) (-3949 ((|#2| $) 72 (|has| |#2| (-6 (-4454 "*"))))) (-2822 (((-570) $) 119)) (-1943 (((-570) $) 121)) (-2052 (((-650 |#2|) $) 99 (|has| $ (-6 -4452)))) (-3767 (((-112) |#2| $) 97 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452))))) (-2278 (((-570) $) 120)) (-3461 (((-570) $) 122)) (-2572 (($ (-650 (-650 |#2|))) 114)) (-1503 (($ (-1 |#2| |#2|) $) 104 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#2| |#2| |#2|) $ $) 131) (($ (-1 |#2| |#2|) $) 105)) (-2309 (((-650 (-650 |#2|)) $) 125)) (-2193 (((-112) $ (-777)) 109)) (-3989 (((-1168) $) 10)) (-2751 (((-3 $ "failed") $) 71 (|has| |#2| (-368)))) (-3580 (((-1129) $) 11)) (-2548 (((-3 $ "failed") $ |#2|) 132 (|has| |#2| (-562)))) (-1627 (((-112) (-1 (-112) |#2|) $) 102 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 113)) (-4283 (((-112) $) 110)) (-2656 (($) 111)) (-1942 ((|#2| $ (-570) (-570) |#2|) 128) ((|#2| $ (-570) (-570)) 126)) (-3550 (($ $ (-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)))) (-2760 ((|#2| $) 76)) (-2323 (($ (-650 |#2|)) 79)) (-1424 (((-112) $) 116)) (-3193 ((|#3| $) 78)) (-3136 ((|#2| $) 73 (|has| |#2| (-6 (-4454 "*"))))) (-3587 (((-777) (-1 (-112) |#2|) $) 101 (|has| $ (-6 -4452))) (((-777) |#2| $) 98 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 112)) (-3057 ((|#4| $ (-570)) 130)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 90 (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) 85)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-4379 (((-112) (-1 (-112) |#2|) $) 103 (|has| $ (-6 -4452)))) (-1548 (((-112) $) 118)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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)))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#2|) 133 (|has| |#2| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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)) (-2570 (((-777) $) 106 (|has| $ (-6 -4452)))))
(((-1132 |#1| |#2| |#3| |#4|) (-141) (-777) (-1058) (-240 |t#1| |t#2|) (-240 |t#1| |t#2|)) (T -1132))
-((-2741 (*1 *1 *2) (-12 (-4 *2 (-1058)) (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)))) (-2173 (*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)))) (-2748 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *2 (-240 *3 *4)))) (-3207 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))) (-1789 (*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)))) (-2137 (*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)))) (-3689 (*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)))) (-3490 (*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 -2741 ($ |t#2|)) (-15 -2173 ($ (-650 |t#2|))) (-15 -2748 (|t#3| $)) (-15 -3207 (|t#2| $)) (-15 -1789 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4451 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -2137 (|t#2| $)) (-15 -3689 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-368)) (PROGN (-15 -3490 ((-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|) -2892 (|has| |#2| (-174)) (|has| |#2| (-6 (-4451 "*")))) ((-645 (-570)) |has| |#2| (-645 (-570))) ((-645 |#2|) . T) ((-723 |#2|) -2892 (|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))
-((-3469 ((|#4| |#4|) 80)) (-2159 ((|#4| |#4|) 75)) (-4136 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|))) |#4| |#3|) 90)) (-1940 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 79)) (-1478 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 77)))
-(((-1133 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2159 (|#4| |#4|)) (-15 -1478 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3469 (|#4| |#4|)) (-15 -1940 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -4136 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|))) |#4| |#3|))) (-311) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -1133))
-((-4136 (*1 *2 *3 *4) (-12 (-4 *5 (-311)) (-4 *6 (-378 *5)) (-4 *4 (-378 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1972 (-650 *4)))) (-5 *1 (-1133 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-1940 (*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)))) (-3469 (*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)))) (-1478 (*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)))) (-2159 (*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 -2159 (|#4| |#4|)) (-15 -1478 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3469 (|#4| |#4|)) (-15 -1940 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -4136 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -1972 (-650 |#3|))) |#4| |#3|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 18)) (-1755 (((-650 |#2|) $) 174)) (-3775 (((-1182 $) $ |#2|) 60) (((-1182 |#1|) $) 49)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 116 (|has| |#1| (-562)))) (-3074 (($ $) 118 (|has| |#1| (-562)))) (-3475 (((-112) $) 120 (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 |#2|)) 213)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) 165) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#2| $) NIL)) (-4322 (($ $ $ |#2|) NIL (|has| |#1| (-174)))) (-1956 (($ $) 217)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) 90)) (-3988 (($ $) NIL (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-3720 (($ $ |#1| (-537 |#2|) $) NIL)) (-2842 (((-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)))))) (-4346 (((-112) $) 20)) (-3173 (((-777) $) 30)) (-1742 (($ (-1182 |#1|) |#2|) 54) (($ (-1182 $) |#2|) 71)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) 38)) (-3912 (($ |#1| (-537 |#2|)) 78) (($ $ |#2| (-777)) 58) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ |#2|) NIL)) (-2575 (((-537 |#2|) $) 205) (((-777) $ |#2|) 206) (((-650 (-777)) $ (-650 |#2|)) 207)) (-1918 (($ (-1 (-537 |#2|) (-537 |#2|)) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) 128)) (-3362 (((-3 |#2| "failed") $) 177)) (-1915 (($ $) 216)) (-1927 ((|#1| $) 43)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1988 (((-1168) $) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| |#2|) (|:| -3357 (-777))) "failed") $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) 39)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 148 (|has| |#1| (-458)))) (-1942 (($ (-650 $)) 153 (|has| |#1| (-458))) (($ $ $) 138 (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2547 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 126 (|has| |#1| (-562)))) (-1770 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#2| |#1|) 180) (($ $ (-650 |#2|) (-650 |#1|)) 195) (($ $ |#2| $) 179) (($ $ (-650 |#2|) (-650 $)) 194)) (-3570 (($ $ |#2|) NIL (|has| |#1| (-174)))) (-3547 (($ $ |#2|) 215) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2130 (((-537 |#2|) $) 201) (((-777) $ |#2|) 196) (((-650 (-777)) $ (-650 |#2|)) 199)) (-1425 (((-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)))))) (-1848 ((|#1| $) 134 (|has| |#1| (-458))) (($ $ |#2|) 137 (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3799 (((-868) $) 159) (($ (-570)) 84) (($ |#1|) 85) (($ |#2|) 33) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2186 (((-650 |#1|) $) 162)) (-2249 ((|#1| $ (-537 |#2|)) 80) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) 87 T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) 123 (|has| |#1| (-562)))) (-1861 (($) 12 T CONST)) (-1875 (($) 14 T CONST)) (-2942 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3022 (((-112) $ $) 106)) (-3122 (($ $ |#1|) 132 (|has| |#1| (-368)))) (-3111 (($ $) 93) (($ $ $) 104)) (-3101 (($ $ $) 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)))
+((-3130 (*1 *1 *2) (-12 (-4 *2 (-1058)) (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)))) (-2323 (*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)))) (-3193 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4)) (-4 *2 (-240 *3 *4)))) (-3211 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (-4 *2 (-1058)))) (-2760 (*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)))) (-3136 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4454 "*"))) (-4 *2 (-1058)))) (-3949 (*1 *2 *1) (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2)) (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4454 "*"))) (-4 *2 (-1058)))) (-2751 (*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 -3130 ($ |t#2|)) (-15 -2323 ($ (-650 |t#2|))) (-15 -3193 (|t#3| $)) (-15 -3211 (|t#2| $)) (-15 -2760 (|t#2| $)) (-15 * (|t#4| $ |t#4|)) (-15 * (|t#3| |t#3| $)) (IF (|has| |t#2| (-6 (-4454 "*"))) (PROGN (-6 (-38 |t#2|)) (-15 -3136 (|t#2| $)) (-15 -3949 (|t#2| $))) |%noBranch|) (IF (|has| |t#2| (-368)) (PROGN (-15 -2751 ((-3 $ "failed") $)) (-15 ** ($ $ (-570)))) |%noBranch|)))
+(((-21) . T) ((-23) . T) ((-25) . T) ((-34) . T) ((-38 |#2|) |has| |#2| (-6 (-4454 "*"))) ((-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|) -2895 (|has| |#2| (-174)) (|has| |#2| (-6 (-4454 "*")))) ((-645 (-570)) |has| |#2| (-645 (-570))) ((-645 |#2|) . T) ((-723 |#2|) -2895 (|has| |#2| (-174)) (|has| |#2| (-6 (-4454 "*")))) ((-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))
+((-3730 ((|#4| |#4|) 80)) (-2172 ((|#4| |#4|) 75)) (-2852 (((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|))) |#4| |#3|) 90)) (-1660 (((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|) 79)) (-2775 (((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|) 77)))
+(((-1133 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2172 (|#4| |#4|)) (-15 -2775 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3730 (|#4| |#4|)) (-15 -1660 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2852 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|))) |#4| |#3|))) (-311) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -1133))
+((-2852 (*1 *2 *3 *4) (-12 (-4 *5 (-311)) (-4 *6 (-378 *5)) (-4 *4 (-378 *5)) (-5 *2 (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3827 (-650 *4)))) (-5 *1 (-1133 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))) (-1660 (*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)))) (-3730 (*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)))) (-2775 (*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)))) (-2172 (*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 -2172 (|#4| |#4|)) (-15 -2775 ((-2 (|:| |Hermite| |#4|) (|:| |eqMat| |#4|)) |#4|)) (-15 -3730 (|#4| |#4|)) (-15 -1660 ((-2 (|:| |Smith| |#4|) (|:| |leftEqMat| |#4|) (|:| |rightEqMat| |#4|)) |#4|)) (-15 -2852 ((-2 (|:| |particular| (-3 |#3| "failed")) (|:| -3827 (-650 |#3|))) |#4| |#3|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 18)) (-1755 (((-650 |#2|) $) 174)) (-3778 (((-1182 $) $ |#2|) 60) (((-1182 |#1|) $) 49)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 116 (|has| |#1| (-562)))) (-4306 (($ $) 118 (|has| |#1| (-562)))) (-2617 (((-112) $) 120 (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 |#2|)) 213)) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) 165) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) ((|#2| $) NIL)) (-3930 (($ $ $ |#2|) NIL (|has| |#1| (-174)))) (-1954 (($ $) 217)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) 90)) (-1944 (($ $) NIL (|has| |#1| (-458))) (($ $ |#2|) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-4243 (($ $ |#1| (-537 |#2|) $) NIL)) (-1557 (((-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)))))) (-4139 (((-112) $) 20)) (-2867 (((-777) $) 30)) (-1744 (($ (-1182 |#1|) |#2|) 54) (($ (-1182 $) |#2|) 71)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) 38)) (-3915 (($ |#1| (-537 |#2|)) 78) (($ $ |#2| (-777)) 58) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ |#2|) NIL)) (-3970 (((-537 |#2|) $) 205) (((-777) $ |#2|) 206) (((-650 (-777)) $ (-650 |#2|)) 207)) (-1414 (($ (-1 (-537 |#2|) (-537 |#2|)) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) 128)) (-4023 (((-3 |#2| "failed") $) 177)) (-1914 (($ $) 216)) (-1928 ((|#1| $) 43)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3989 (((-1168) $) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| |#2|) (|:| -3994 (-777))) "failed") $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) 39)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 148 (|has| |#1| (-458)))) (-1939 (($ (-650 $)) 153 (|has| |#1| (-458))) (($ $ $) 138 (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#1| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-916)))) (-2548 (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ $) 126 (|has| |#1| (-562)))) (-1771 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ |#2| |#1|) 180) (($ $ (-650 |#2|) (-650 |#1|)) 195) (($ $ |#2| $) 179) (($ $ (-650 |#2|) (-650 $)) 194)) (-2265 (($ $ |#2|) NIL (|has| |#1| (-174)))) (-3550 (($ $ |#2|) 215) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3079 (((-537 |#2|) $) 201) (((-777) $ |#2|) 196) (((-650 (-777)) $ (-650 |#2|)) 199)) (-1426 (((-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)))))) (-2077 ((|#1| $) 134 (|has| |#1| (-458))) (($ $ |#2|) 137 (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-3802 (((-868) $) 159) (($ (-570)) 84) (($ |#1|) 85) (($ |#2|) 33) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2459 (((-650 |#1|) $) 162)) (-1864 ((|#1| $ (-537 |#2|)) 80) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) 87 T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) 123 (|has| |#1| (-562)))) (-1862 (($) 12 T CONST)) (-1876 (($) 14 T CONST)) (-2945 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3025 (((-112) $ $) 106)) (-3125 (($ $ |#1|) 132 (|has| |#1| (-368)))) (-3114 (($ $) 93) (($ $ $) 104)) (-3104 (($ $ $) 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|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 |#2|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-2887 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2866 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 124 (|has| |#1| (-38 (-413 (-570)))))) (-4107 (($ $) 156 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3372 (((-959 |#1|) $ (-777)) NIL) (((-959 |#1|) $ (-777) (-777)) NIL)) (-2379 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-777) $ |#2|) NIL) (((-777) $ |#2| (-777)) NIL)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2359 (((-112) $) NIL)) (-3912 (($ $ (-650 |#2|) (-650 (-537 |#2|))) NIL) (($ $ |#2| (-537 |#2|)) NIL) (($ |#1| (-537 |#2|)) NIL) (($ $ |#2| (-777)) 63) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-2789 (($ $) 122 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-2898 (($ $ |#2|) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ |#2| |#1|) 175 (|has| |#1| (-38 (-413 (-570)))))) (-3577 (((-1129) $) NIL)) (-1955 (($ (-1 $) |#2| |#1|) 174 (|has| |#1| (-38 (-413 (-570)))))) (-2431 (($ $ (-777)) 16)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4387 (($ $) 120 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (($ $ |#2| $) 106) (($ $ (-650 |#2|) (-650 $)) 99) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL)) (-3547 (($ $ |#2|) 109) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-2130 (((-537 |#2|) $) NIL)) (-2243 (((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|))) 87)) (-4117 (($ $) 158 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 126 (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 18)) (-3799 (((-868) $) 197) (($ (-570)) NIL) (($ |#1|) 45 (|has| |#1| (-174))) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#2|) 70) (($ |#3|) 68)) (-2249 ((|#1| $ (-537 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL) ((|#3| $ (-777)) 43)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) 164 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 168 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-1578 (($ $) 170 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 166 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 52 T CONST)) (-1875 (($) 62 T CONST)) (-2942 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) 199 (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2249 (|#3| $ (-777))) (-15 -3799 ($ |#2|)) (-15 -3799 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2243 ((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $ |#2| |#1|)) (-15 -1955 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1058) (-856) (-956 |#1| (-537 |#2|) |#2|)) (T -1135))
-((-2249 (*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)))) (-3799 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *2 (-856)) (-5 *1 (-1135 *3 *2 *4)) (-4 *4 (-956 *3 (-537 *2) *2)))) (-3799 (*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)))) (-2243 (*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)))) (-2898 (*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)))) (-1955 (*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 -2249 (|#3| $ (-777))) (-15 -3799 ($ |#2|)) (-15 -3799 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -2243 ((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $ |#2| |#1|)) (-15 -1955 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
-((-2558 (((-112) $ $) 7)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) 86)) (-1515 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1755 (((-650 |#3|) $) 34)) (-3051 (((-112) $) 27)) (-1416 (((-112) $) 18 (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) 102) (((-112) $) 98)) (-3484 ((|#4| |#4| $) 93)) (-4364 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| $) 127)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) 28)) (-4302 (((-112) $ (-777)) 45)) (-1431 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-1705 (($) 46 T CONST)) (-3737 (((-112) $) 23 (|has| |#1| (-562)))) (-2467 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4047 (((-112) $ $) 24 (|has| |#1| (-562)))) (-1876 (((-112) $) 26 (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2450 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) 37)) (-3216 (($ (-650 |#4|)) 36)) (-3555 (((-3 $ "failed") $) 83)) (-2128 ((|#4| |#4| $) 90)) (-3579 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) 106)) (-3948 (((-112) |#4| $) 137)) (-3825 (((-112) |#4| $) 134)) (-2819 (((-112) |#4| $) 138) (((-112) $) 135)) (-3627 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) 105) (((-112) $) 104)) (-1724 ((|#3| $) 35)) (-2929 (((-112) $ (-777)) 44)) (-2752 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 48)) (-1423 (((-650 |#3|) $) 33)) (-3907 (((-112) |#3| $) 32)) (-3231 (((-112) $ (-777)) 43)) (-1988 (((-1168) $) 10)) (-2925 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-1759 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| |#4| $) 128)) (-1769 (((-3 |#4| "failed") $) 84)) (-3260 (((-650 $) |#4| $) 130)) (-4090 (((-3 (-112) (-650 $)) |#4| $) 133)) (-1743 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-2730 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-2231 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3534 (((-650 |#4|) $) 108)) (-1491 (((-112) |#4| $) 100) (((-112) $) 96)) (-2520 ((|#4| |#4| $) 91)) (-2971 (((-112) $ $) 111)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) 101) (((-112) $) 97)) (-4201 ((|#4| |#4| $) 92)) (-3577 (((-1129) $) 11)) (-3543 (((-3 |#4| "failed") $) 85)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1690 (((-3 $ "failed") $ |#4|) 79)) (-2431 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-3642 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 39)) (-2017 (((-112) $) 42)) (-2380 (($) 41)) (-2130 (((-777) $) 107)) (-3584 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3951 (($ $) 40)) (-1425 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 61)) (-3710 (($ $ |#3|) 29)) (-4224 (($ $ |#3|) 31)) (-4085 (($ $) 89)) (-1615 (($ $ |#3|) 30)) (-3799 (((-868) $) 12) (((-650 |#4|) $) 38)) (-4392 (((-777) $) 77 (|has| |#3| (-373)))) (-2335 (((-112) $ $) 9)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2401 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4371 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) 82)) (-2950 (((-112) |#4| $) 136)) (-2561 (((-112) |#3| $) 81)) (-3022 (((-112) $ $) 6)) (-2569 (((-777) $) 47 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 |#2|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-2890 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 128 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2869 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 124 (|has| |#1| (-38 (-413 (-570)))))) (-4109 (($ $) 156 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3375 (((-959 |#1|) $ (-777)) NIL) (((-959 |#1|) $ (-777) (-777)) NIL)) (-2646 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-777) $ |#2|) NIL) (((-777) $ |#2| (-777)) NIL)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3633 (((-112) $) NIL)) (-3915 (($ $ (-650 |#2|) (-650 (-537 |#2|))) NIL) (($ $ |#2| (-537 |#2|)) NIL) (($ |#1| (-537 |#2|)) NIL) (($ $ |#2| (-777)) 63) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2792 (($ $) 122 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-2023 (($ $ |#2|) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ |#2| |#1|) 175 (|has| |#1| (-38 (-413 (-570)))))) (-3580 (((-1129) $) NIL)) (-1802 (($ (-1 $) |#2| |#1|) 174 (|has| |#1| (-38 (-413 (-570)))))) (-3152 (($ $ (-777)) 16)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4389 (($ $) 120 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (($ $ |#2| $) 106) (($ $ (-650 |#2|) (-650 $)) 99) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL)) (-3550 (($ $ |#2|) 109) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3079 (((-537 |#2|) $) NIL)) (-1784 (((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|))) 87)) (-4120 (($ $) 158 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 126 (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 18)) (-3802 (((-868) $) 197) (($ (-570)) NIL) (($ |#1|) 45 (|has| |#1| (-174))) (($ $) NIL (|has| |#1| (-562))) (($ (-413 (-570))) NIL (|has| |#1| (-38 (-413 (-570))))) (($ |#2|) 70) (($ |#3|) 68)) (-1864 ((|#1| $ (-537 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL) ((|#3| $ (-777)) 43)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) 164 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 168 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-1579 (($ $) 170 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 166 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 52 T CONST)) (-1876 (($) 62 T CONST)) (-2945 (($ $ |#2|) NIL) (($ $ (-650 |#2|)) NIL) (($ $ |#2| (-777)) NIL) (($ $ (-650 |#2|) (-650 (-777))) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) 199 (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1864 (|#3| $ (-777))) (-15 -3802 ($ |#2|)) (-15 -3802 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1784 ((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $ |#2| |#1|)) (-15 -1802 ($ (-1 $) |#2| |#1|))) |%noBranch|))) (-1058) (-856) (-956 |#1| (-537 |#2|) |#2|)) (T -1135))
+((-1864 (*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)))) (-3802 (*1 *1 *2) (-12 (-4 *3 (-1058)) (-4 *2 (-856)) (-5 *1 (-1135 *3 *2 *4)) (-4 *4 (-956 *3 (-537 *2) *2)))) (-3802 (*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)))) (-1784 (*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)))) (-2023 (*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)))) (-1802 (*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 -1864 (|#3| $ (-777))) (-15 -3802 ($ |#2|)) (-15 -3802 ($ |#3|)) (-15 * ($ |#3| $)) (-15 -1784 ((-1 (-1166 |#3|) |#3|) (-650 |#2|) (-650 (-1166 |#3|)))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $ |#2| |#1|)) (-15 -1802 ($ (-1 $) |#2| |#1|))) |%noBranch|)))
+((-2560 (((-112) $ $) 7)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) 86)) (-1911 (((-650 $) (-650 |#4|)) 87) (((-650 $) (-650 |#4|) (-112)) 112)) (-1755 (((-650 |#3|) $) 34)) (-4092 (((-112) $) 27)) (-1320 (((-112) $) 18 (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) 102) (((-112) $) 98)) (-2698 ((|#4| |#4| $) 93)) (-4310 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| $) 127)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) 28)) (-1932 (((-112) $ (-777)) 45)) (-1434 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) 80)) (-3195 (($) 46 T CONST)) (-3230 (((-112) $) 23 (|has| |#1| (-562)))) (-2339 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4337 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2327 (((-112) $) 26 (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2167 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) 37)) (-3220 (($ (-650 |#4|)) 36)) (-3558 (((-3 $ "failed") $) 83)) (-3059 ((|#4| |#4| $) 90)) (-3582 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-2191 ((|#4| |#4| $) 88)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) 106)) (-1483 (((-112) |#4| $) 137)) (-2816 (((-112) |#4| $) 134)) (-2607 (((-112) |#4| $) 138) (((-112) $) 135)) (-3630 (((-650 |#4|) $) 53 (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) 105) (((-112) $) 104)) (-3357 ((|#3| $) 35)) (-2317 (((-112) $ (-777)) 44)) (-2052 (((-650 |#4|) $) 54 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 48)) (-1388 (((-650 |#3|) $) 33)) (-2387 (((-112) |#3| $) 32)) (-2193 (((-112) $ (-777)) 43)) (-3989 (((-1168) $) 10)) (-2274 (((-3 |#4| (-650 $)) |#4| |#4| $) 129)) (-3693 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| |#4| $) 128)) (-1770 (((-3 |#4| "failed") $) 84)) (-2490 (((-650 $) |#4| $) 130)) (-3623 (((-3 (-112) (-650 $)) |#4| $) 133)) (-3548 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 $))) |#4| $) 132) (((-112) |#4| $) 131)) (-3051 (((-650 $) |#4| $) 126) (((-650 $) (-650 |#4|) $) 125) (((-650 $) (-650 |#4|) (-650 $)) 124) (((-650 $) |#4| (-650 $)) 123)) (-1633 (($ |#4| $) 118) (($ (-650 |#4|) $) 117)) (-3151 (((-650 |#4|) $) 108)) (-2898 (((-112) |#4| $) 100) (((-112) $) 96)) (-1590 ((|#4| |#4| $) 91)) (-1433 (((-112) $ $) 111)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) 101) (((-112) $) 97)) (-2222 ((|#4| |#4| $) 92)) (-3580 (((-1129) $) 11)) (-3546 (((-3 |#4| "failed") $) 85)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-4207 (((-3 $ "failed") $ |#4|) 79)) (-3152 (($ $ |#4|) 78) (((-650 $) |#4| $) 116) (((-650 $) |#4| (-650 $)) 115) (((-650 $) (-650 |#4|) $) 114) (((-650 $) (-650 |#4|) (-650 $)) 113)) (-1627 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 39)) (-4283 (((-112) $) 42)) (-2656 (($) 41)) (-3079 (((-777) $) 107)) (-3587 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4452)))) (-3954 (($ $) 40)) (-1426 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 61)) (-4138 (($ $ |#3|) 29)) (-2435 (($ $ |#3|) 31)) (-3563 (($ $) 89)) (-1631 (($ $ |#3|) 30)) (-3802 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3394 (((-777) $) 77 (|has| |#3| (-373)))) (-3359 (((-112) $ $) 9)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-2872 (((-650 $) |#4| $) 122) (((-650 $) |#4| (-650 $)) 121) (((-650 $) (-650 |#4|) $) 120) (((-650 $) (-650 |#4|) (-650 $)) 119)) (-4379 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) 82)) (-2506 (((-112) |#4| $) 136)) (-3857 (((-112) |#3| $) 81)) (-3025 (((-112) $ $) 6)) (-2570 (((-777) $) 47 (|has| $ (-6 -4452)))))
(((-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) ((-1220 |#1| |#2| |#3| |#4|) . T) ((-1227) . T))
-((-3476 (((-650 |#2|) |#1|) 15)) (-2977 (((-650 |#2|) |#2| |#2| |#2| |#2| |#2|) 47) (((-650 |#2|) |#1|) 61)) (-2769 (((-650 |#2|) |#2| |#2| |#2|) 45) (((-650 |#2|) |#1|) 59)) (-4400 ((|#2| |#1|) 54)) (-4164 (((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 20)) (-3347 (((-650 |#2|) |#2| |#2|) 42) (((-650 |#2|) |#1|) 58)) (-1639 (((-650 |#2|) |#2| |#2| |#2| |#2|) 46) (((-650 |#2|) |#1|) 60)) (-2685 ((|#2| |#2| |#2| |#2| |#2| |#2|) 53)) (-4053 ((|#2| |#2| |#2| |#2|) 51)) (-2607 ((|#2| |#2| |#2|) 50)) (-1986 ((|#2| |#2| |#2| |#2| |#2|) 52)))
-(((-1137 |#1| |#2|) (-10 -7 (-15 -3476 ((-650 |#2|) |#1|)) (-15 -4400 (|#2| |#1|)) (-15 -4164 ((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3347 ((-650 |#2|) |#1|)) (-15 -2769 ((-650 |#2|) |#1|)) (-15 -1639 ((-650 |#2|) |#1|)) (-15 -2977 ((-650 |#2|) |#1|)) (-15 -3347 ((-650 |#2|) |#2| |#2|)) (-15 -2769 ((-650 |#2|) |#2| |#2| |#2|)) (-15 -1639 ((-650 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2977 ((-650 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2607 (|#2| |#2| |#2|)) (-15 -4053 (|#2| |#2| |#2| |#2|)) (-15 -1986 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2685 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1253 |#2|) (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (T -1137))
-((-2685 (*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)))) (-1986 (*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)))) (-4053 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-2607 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-2977 (*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)))) (-1639 (*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)))) (-2769 (*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)))) (-3347 (*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)))) (-2977 (*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)))) (-1639 (*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)))) (-2769 (*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)))) (-3347 (*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)))) (-4164 (*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)))) (-4400 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-3476 (*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 -3476 ((-650 |#2|) |#1|)) (-15 -4400 (|#2| |#1|)) (-15 -4164 ((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3347 ((-650 |#2|) |#1|)) (-15 -2769 ((-650 |#2|) |#1|)) (-15 -1639 ((-650 |#2|) |#1|)) (-15 -2977 ((-650 |#2|) |#1|)) (-15 -3347 ((-650 |#2|) |#2| |#2|)) (-15 -2769 ((-650 |#2|) |#2| |#2| |#2|)) (-15 -1639 ((-650 |#2|) |#2| |#2| |#2| |#2|)) (-15 -2977 ((-650 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -2607 (|#2| |#2| |#2|)) (-15 -4053 (|#2| |#2| |#2| |#2|)) (-15 -1986 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2685 (|#2| |#2| |#2| |#2| |#2| |#2|)))
-((-2149 (((-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)) (-4113 (((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 111) (((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186)) 54)) (-2933 (((-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 -2149 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2149 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)))) (-15 -2149 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2149 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))))) (-15 -2149 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2149 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))))) (-15 -2149 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2149 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -4113 ((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -4113 ((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2933 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2933 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186)))) (-13 (-311) (-148))) (T -1138))
-((-2933 (*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)))) (-2933 (*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)))) (-4113 (*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)))) (-4113 (*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)))) (-2149 (*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)))) (-2149 (*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)))) (-2149 (*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)))) (-2149 (*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)))) (-2149 (*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)))) (-2149 (*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)))) (-2149 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4)))) (-2149 (*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 -2149 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2149 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)))) (-15 -2149 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2149 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))))) (-15 -2149 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2149 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))))) (-15 -2149 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2149 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -4113 ((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -4113 ((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2933 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2933 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186))))
-((-3441 (((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570)) 36)) (-1384 (((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|)))) 48)))
-(((-1139 |#1|) (-10 -7 (-15 -1384 ((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))))) (-15 -3441 ((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570)))) (-562)) (T -1139))
-((-3441 (*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)))) (-1384 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-413 (-1182 (-320 *3)))) (-4 *3 (-562)) (-5 *1 (-1139 *3)))))
-(-10 -7 (-15 -1384 ((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))))) (-15 -3441 ((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570))))
-((-3476 (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186))) 244) (((-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 -3476 ((-650 (-298 (-320 |#1|))) (-320 |#1|))) (-15 -3476 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)))) (-15 -3476 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186))) (-15 -3476 ((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186))) (-15 -3476 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186))))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (T -1140))
-((-3476 (*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)))))) (-3476 (*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)))) (-3476 (*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))))) (-3476 (*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))))) (-3476 (*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 -3476 ((-650 (-298 (-320 |#1|))) (-320 |#1|))) (-15 -3476 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)))) (-15 -3476 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186))) (-15 -3476 ((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186))) (-15 -3476 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186)))))
-((-3263 ((|#2| |#2|) 28 (|has| |#1| (-856))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 25)) (-2464 ((|#2| |#2|) 27 (|has| |#1| (-856))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 22)))
-(((-1141 |#1| |#2|) (-10 -7 (-15 -2464 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -3263 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-856)) (PROGN (-15 -2464 (|#2| |#2|)) (-15 -3263 (|#2| |#2|))) |%noBranch|)) (-1227) (-13 (-610 (-570) |#1|) (-10 -7 (-6 -4449) (-6 -4450)))) (T -1141))
-((-3263 (*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)))))) (-2464 (*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)))))) (-3263 (*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)))))) (-2464 (*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 -2464 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -3263 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-856)) (PROGN (-15 -2464 (|#2| |#2|)) (-15 -3263 (|#2| |#2|))) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-4195 (((-1174 3 |#1|) $) 141)) (-1776 (((-112) $) 101)) (-3982 (($ $ (-650 (-950 |#1|))) 44) (($ $ (-650 (-650 |#1|))) 104) (($ (-650 (-950 |#1|))) 103) (((-650 (-950 |#1|)) $) 102)) (-1455 (((-112) $) 72)) (-3377 (($ $ (-950 |#1|)) 76) (($ $ (-650 |#1|)) 81) (($ $ (-777)) 83) (($ (-950 |#1|)) 77) (((-950 |#1|) $) 75)) (-4393 (((-2 (|:| -1981 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $) 139)) (-2757 (((-777) $) 53)) (-2279 (((-777) $) 52)) (-3978 (($ $ (-777) (-950 |#1|)) 67)) (-1470 (((-112) $) 111)) (-2508 (($ $ (-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)) (-2024 (($ (-650 $)) 56) (($ $ $) 57)) (-2016 (((-650 (-173)) $) 133)) (-3358 (((-650 (-950 |#1|)) $) 130)) (-3312 (((-650 (-650 (-173))) $) 132)) (-1642 (((-650 (-650 (-650 (-950 |#1|)))) $) NIL)) (-3115 (((-650 (-650 (-650 (-777)))) $) 131)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2821 (((-777) $ (-650 (-950 |#1|))) 65)) (-1451 (((-112) $) 84)) (-3301 (($ $ (-650 (-950 |#1|))) 86) (($ $ (-650 (-650 |#1|))) 92) (($ (-650 (-950 |#1|))) 87) (((-650 (-950 |#1|)) $) 85)) (-3141 (($) 48) (($ (-1174 3 |#1|)) 49)) (-3951 (($ $) 63)) (-3993 (((-650 $) $) 62)) (-2105 (($ (-650 $)) 59)) (-3554 (((-650 $) $) 61)) (-3799 (((-868) $) 146)) (-3410 (((-112) $) 94)) (-1908 (($ $ (-650 (-950 |#1|))) 96) (($ $ (-650 (-650 |#1|))) 99) (($ (-650 (-950 |#1|))) 97) (((-650 (-950 |#1|)) $) 95)) (-2644 (($ $) 140)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2627 (((-650 |#2|) |#1|) 15)) (-1513 (((-650 |#2|) |#2| |#2| |#2| |#2| |#2|) 47) (((-650 |#2|) |#1|) 61)) (-2216 (((-650 |#2|) |#2| |#2| |#2|) 45) (((-650 |#2|) |#1|) 59)) (-3448 ((|#2| |#1|) 54)) (-3046 (((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|)) 20)) (-3350 (((-650 |#2|) |#2| |#2|) 42) (((-650 |#2|) |#1|) 58)) (-3747 (((-650 |#2|) |#2| |#2| |#2| |#2|) 46) (((-650 |#2|) |#1|) 60)) (-2653 ((|#2| |#2| |#2| |#2| |#2| |#2|) 53)) (-4395 ((|#2| |#2| |#2| |#2|) 51)) (-4255 ((|#2| |#2| |#2|) 50)) (-3969 ((|#2| |#2| |#2| |#2| |#2|) 52)))
+(((-1137 |#1| |#2|) (-10 -7 (-15 -2627 ((-650 |#2|) |#1|)) (-15 -3448 (|#2| |#1|)) (-15 -3046 ((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3350 ((-650 |#2|) |#1|)) (-15 -2216 ((-650 |#2|) |#1|)) (-15 -3747 ((-650 |#2|) |#1|)) (-15 -1513 ((-650 |#2|) |#1|)) (-15 -3350 ((-650 |#2|) |#2| |#2|)) (-15 -2216 ((-650 |#2|) |#2| |#2| |#2|)) (-15 -3747 ((-650 |#2|) |#2| |#2| |#2| |#2|)) (-15 -1513 ((-650 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -4255 (|#2| |#2| |#2|)) (-15 -4395 (|#2| |#2| |#2| |#2|)) (-15 -3969 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2653 (|#2| |#2| |#2| |#2| |#2| |#2|))) (-1253 |#2|) (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (T -1137))
+((-2653 (*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)))) (-3969 (*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)))) (-4395 (*1 *2 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-4255 (*1 *2 *2 *2) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-1513 (*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)))) (-3747 (*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)))) (-2216 (*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)))) (-3350 (*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)))) (-1513 (*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)))) (-3747 (*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)))) (-2216 (*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)))) (-3350 (*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)))) (-3046 (*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)))) (-3448 (*1 *2 *3) (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570))))))) (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))) (-2627 (*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 -2627 ((-650 |#2|) |#1|)) (-15 -3448 (|#2| |#1|)) (-15 -3046 ((-2 (|:| |solns| (-650 |#2|)) (|:| |maps| (-650 (-2 (|:| |arg| |#2|) (|:| |res| |#2|))))) |#1| (-1 |#2| |#2|))) (-15 -3350 ((-650 |#2|) |#1|)) (-15 -2216 ((-650 |#2|) |#1|)) (-15 -3747 ((-650 |#2|) |#1|)) (-15 -1513 ((-650 |#2|) |#1|)) (-15 -3350 ((-650 |#2|) |#2| |#2|)) (-15 -2216 ((-650 |#2|) |#2| |#2| |#2|)) (-15 -3747 ((-650 |#2|) |#2| |#2| |#2| |#2|)) (-15 -1513 ((-650 |#2|) |#2| |#2| |#2| |#2| |#2|)) (-15 -4255 (|#2| |#2| |#2|)) (-15 -4395 (|#2| |#2| |#2| |#2|)) (-15 -3969 (|#2| |#2| |#2| |#2| |#2|)) (-15 -2653 (|#2| |#2| |#2| |#2| |#2| |#2|)))
+((-2084 (((-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)) (-3815 (((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 111) (((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186)) 54)) (-2348 (((-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 -2084 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2084 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)))) (-15 -2084 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2084 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))))) (-15 -2084 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2084 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))))) (-15 -2084 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2084 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3815 ((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -3815 ((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2348 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2348 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186)))) (-13 (-311) (-148))) (T -1138))
+((-2348 (*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)))) (-2348 (*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)))) (-3815 (*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)))) (-3815 (*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)))) (-2084 (*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)))) (-2084 (*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)))) (-2084 (*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)))) (-2084 (*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)))) (-2084 (*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)))) (-2084 (*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)))) (-2084 (*1 *2 *3) (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *4)))) (-5 *1 (-1138 *4)))) (-2084 (*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 -2084 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)) (-1186))) (-15 -2084 ((-650 (-298 (-320 |#1|))) (-413 (-959 |#1|)))) (-15 -2084 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2084 ((-650 (-298 (-320 |#1|))) (-298 (-413 (-959 |#1|))))) (-15 -2084 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2084 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-413 (-959 |#1|))))) (-15 -2084 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2084 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3815 ((-650 (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -3815 ((-650 (-650 (-320 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2348 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2348 ((-1175 (-650 (-320 |#1|)) (-650 (-298 (-320 |#1|)))) (-413 (-959 |#1|)) (-1186))))
+((-3484 (((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570)) 36)) (-3491 (((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|)))) 48)))
+(((-1139 |#1|) (-10 -7 (-15 -3491 ((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))))) (-15 -3484 ((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570)))) (-562)) (T -1139))
+((-3484 (*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)))) (-3491 (*1 *2 *2 *2 *2) (-12 (-5 *2 (-413 (-1182 (-320 *3)))) (-4 *3 (-562)) (-5 *1 (-1139 *3)))))
+(-10 -7 (-15 -3491 ((-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))) (-413 (-1182 (-320 |#1|))))) (-15 -3484 ((-413 (-1182 (-320 |#1|))) (-1277 (-320 |#1|)) (-413 (-1182 (-320 |#1|))) (-570))))
+((-2627 (((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186))) 244) (((-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 -2627 ((-650 (-298 (-320 |#1|))) (-320 |#1|))) (-15 -2627 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)))) (-15 -2627 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186))) (-15 -2627 ((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186))) (-15 -2627 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186))))) (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148))) (T -1140))
+((-2627 (*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)))))) (-2627 (*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)))) (-2627 (*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))))) (-2627 (*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))))) (-2627 (*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 -2627 ((-650 (-298 (-320 |#1|))) (-320 |#1|))) (-15 -2627 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)))) (-15 -2627 ((-650 (-298 (-320 |#1|))) (-298 (-320 |#1|)) (-1186))) (-15 -2627 ((-650 (-298 (-320 |#1|))) (-320 |#1|) (-1186))) (-15 -2627 ((-650 (-650 (-298 (-320 |#1|)))) (-650 (-298 (-320 |#1|))) (-650 (-1186)))))
+((-2512 ((|#2| |#2|) 28 (|has| |#1| (-856))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 25)) (-2319 ((|#2| |#2|) 27 (|has| |#1| (-856))) ((|#2| |#2| (-1 (-112) |#1| |#1|)) 22)))
+(((-1141 |#1| |#2|) (-10 -7 (-15 -2319 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2512 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-856)) (PROGN (-15 -2319 (|#2| |#2|)) (-15 -2512 (|#2| |#2|))) |%noBranch|)) (-1227) (-13 (-610 (-570) |#1|) (-10 -7 (-6 -4452) (-6 -4453)))) (T -1141))
+((-2512 (*1 *2 *2) (-12 (-4 *3 (-856)) (-4 *3 (-1227)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4452) (-6 -4453)))))) (-2319 (*1 *2 *2) (-12 (-4 *3 (-856)) (-4 *3 (-1227)) (-5 *1 (-1141 *3 *2)) (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4452) (-6 -4453)))))) (-2512 (*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 -4452) (-6 -4453)))))) (-2319 (*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 -4452) (-6 -4453)))))))
+(-10 -7 (-15 -2319 (|#2| |#2| (-1 (-112) |#1| |#1|))) (-15 -2512 (|#2| |#2| (-1 (-112) |#1| |#1|))) (IF (|has| |#1| (-856)) (PROGN (-15 -2319 (|#2| |#2|)) (-15 -2512 (|#2| |#2|))) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-2169 (((-1174 3 |#1|) $) 141)) (-2645 (((-112) $) 101)) (-1879 (($ $ (-650 (-950 |#1|))) 44) (($ $ (-650 (-650 |#1|))) 104) (($ (-650 (-950 |#1|))) 103) (((-650 (-950 |#1|)) $) 102)) (-2552 (((-112) $) 72)) (-3380 (($ $ (-950 |#1|)) 76) (($ $ (-650 |#1|)) 81) (($ $ (-777)) 83) (($ (-950 |#1|)) 77) (((-950 |#1|) $) 75)) (-4396 (((-2 (|:| -3917 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $) 139)) (-2097 (((-777) $) 53)) (-3995 (((-777) $) 52)) (-1827 (($ $ (-777) (-950 |#1|)) 67)) (-2702 (((-112) $) 111)) (-1449 (($ $ (-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)) (-3183 (($ (-650 $)) 56) (($ $ $) 57)) (-4274 (((-650 (-173)) $) 133)) (-3361 (((-650 (-950 |#1|)) $) 130)) (-1741 (((-650 (-650 (-173))) $) 132)) (-3774 (((-650 (-650 (-650 (-950 |#1|)))) $) NIL)) (-3508 (((-650 (-650 (-650 (-777)))) $) 131)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2623 (((-777) $ (-650 (-950 |#1|))) 65)) (-2521 (((-112) $) 84)) (-1620 (($ $ (-650 (-950 |#1|))) 86) (($ $ (-650 (-650 |#1|))) 92) (($ (-650 (-950 |#1|))) 87) (((-650 (-950 |#1|)) $) 85)) (-3744 (($) 48) (($ (-1174 3 |#1|)) 49)) (-3954 (($ $) 63)) (-2000 (((-650 $) $) 62)) (-2846 (($ (-650 $)) 59)) (-2135 (((-650 $) $) 61)) (-3802 (((-868) $) 146)) (-3206 (((-112) $) 94)) (-4424 (($ $ (-650 (-950 |#1|))) 96) (($ $ (-650 (-650 |#1|))) 99) (($ (-650 (-950 |#1|))) 97) (((-650 (-950 |#1|)) $) 95)) (-3435 (($ $) 140)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-1142 |#1|) (-1143 |#1|) (-1058)) (T -1142))
NIL
(-1143 |#1|)
-((-2558 (((-112) $ $) 7)) (-4195 (((-1174 3 |#1|) $) 14)) (-1776 (((-112) $) 30)) (-3982 (($ $ (-650 (-950 |#1|))) 34) (($ $ (-650 (-650 |#1|))) 33) (($ (-650 (-950 |#1|))) 32) (((-650 (-950 |#1|)) $) 31)) (-1455 (((-112) $) 45)) (-3377 (($ $ (-950 |#1|)) 50) (($ $ (-650 |#1|)) 49) (($ $ (-777)) 48) (($ (-950 |#1|)) 47) (((-950 |#1|) $) 46)) (-4393 (((-2 (|:| -1981 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $) 16)) (-2757 (((-777) $) 59)) (-2279 (((-777) $) 60)) (-3978 (($ $ (-777) (-950 |#1|)) 51)) (-1470 (((-112) $) 22)) (-2508 (($ $ (-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)) (-2024 (($ (-650 $)) 58) (($ $ $) 57)) (-2016 (((-650 (-173)) $) 17)) (-3358 (((-650 (-950 |#1|)) $) 21)) (-3312 (((-650 (-650 (-173))) $) 18)) (-1642 (((-650 (-650 (-650 (-950 |#1|)))) $) 19)) (-3115 (((-650 (-650 (-650 (-777)))) $) 20)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2821 (((-777) $ (-650 (-950 |#1|))) 52)) (-1451 (((-112) $) 40)) (-3301 (($ $ (-650 (-950 |#1|))) 44) (($ $ (-650 (-650 |#1|))) 43) (($ (-650 (-950 |#1|))) 42) (((-650 (-950 |#1|)) $) 41)) (-3141 (($) 62) (($ (-1174 3 |#1|)) 61)) (-3951 (($ $) 53)) (-3993 (((-650 $) $) 54)) (-2105 (($ (-650 $)) 56)) (-3554 (((-650 $) $) 55)) (-3799 (((-868) $) 12)) (-3410 (((-112) $) 35)) (-1908 (($ $ (-650 (-950 |#1|))) 39) (($ $ (-650 (-650 |#1|))) 38) (($ (-650 (-950 |#1|))) 37) (((-650 (-950 |#1|)) $) 36)) (-2644 (($ $) 15)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) 7)) (-2169 (((-1174 3 |#1|) $) 14)) (-2645 (((-112) $) 30)) (-1879 (($ $ (-650 (-950 |#1|))) 34) (($ $ (-650 (-650 |#1|))) 33) (($ (-650 (-950 |#1|))) 32) (((-650 (-950 |#1|)) $) 31)) (-2552 (((-112) $) 45)) (-3380 (($ $ (-950 |#1|)) 50) (($ $ (-650 |#1|)) 49) (($ $ (-777)) 48) (($ (-950 |#1|)) 47) (((-950 |#1|) $) 46)) (-4396 (((-2 (|:| -3917 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $) 16)) (-2097 (((-777) $) 59)) (-3995 (((-777) $) 60)) (-1827 (($ $ (-777) (-950 |#1|)) 51)) (-2702 (((-112) $) 22)) (-1449 (($ $ (-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)) (-3183 (($ (-650 $)) 58) (($ $ $) 57)) (-4274 (((-650 (-173)) $) 17)) (-3361 (((-650 (-950 |#1|)) $) 21)) (-1741 (((-650 (-650 (-173))) $) 18)) (-3774 (((-650 (-650 (-650 (-950 |#1|)))) $) 19)) (-3508 (((-650 (-650 (-650 (-777)))) $) 20)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2623 (((-777) $ (-650 (-950 |#1|))) 52)) (-2521 (((-112) $) 40)) (-1620 (($ $ (-650 (-950 |#1|))) 44) (($ $ (-650 (-650 |#1|))) 43) (($ (-650 (-950 |#1|))) 42) (((-650 (-950 |#1|)) $) 41)) (-3744 (($) 62) (($ (-1174 3 |#1|)) 61)) (-3954 (($ $) 53)) (-2000 (((-650 $) $) 54)) (-2846 (($ (-650 $)) 56)) (-2135 (((-650 $) $) 55)) (-3802 (((-868) $) 12)) (-3206 (((-112) $) 35)) (-4424 (($ $ (-650 (-950 |#1|))) 39) (($ $ (-650 (-650 |#1|))) 38) (($ (-650 (-950 |#1|))) 37) (((-650 (-950 |#1|)) $) 36)) (-3435 (($ $) 15)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-1143 |#1|) (-141) (-1058)) (T -1143))
-((-3799 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-868)))) (-3141 (*1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-3141 (*1 *1 *2) (-12 (-5 *2 (-1174 3 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-2279 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2757 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2024 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2024 (*1 *1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2105 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3554 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))) (-3993 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))) (-3951 (*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2821 (*1 *2 *1 *3) (-12 (-5 *3 (-650 (-950 *4))) (-4 *1 (-1143 *4)) (-4 *4 (-1058)) (-5 *2 (-777)))) (-3978 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-950 *4)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-3377 (*1 *1 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3377 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3377 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3377 (*1 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3377 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-950 *3)))) (-1455 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-3301 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3301 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3301 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3301 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-1451 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-1908 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-1908 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-1908 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-1908 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-3410 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-3982 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3982 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3982 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3982 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-1776 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-2508 (*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)))) (-2508 (*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)))) (-2508 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-2508 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-112)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-2508 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 *3)))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-2508 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *4 (-1058)) (-4 *1 (-1143 *4)))) (-2508 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-950 *3)))))) (-1470 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-3358 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-3115 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-650 (-777))))))) (-1642 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-650 (-950 *3))))))) (-3312 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-173)))))) (-2016 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-173))))) (-4393 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -1981 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777)))))) (-2644 (*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-4195 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-1174 3 *3)))))
-(-13 (-1109) (-10 -8 (-15 -3141 ($)) (-15 -3141 ($ (-1174 3 |t#1|))) (-15 -2279 ((-777) $)) (-15 -2757 ((-777) $)) (-15 -2024 ($ (-650 $))) (-15 -2024 ($ $ $)) (-15 -2105 ($ (-650 $))) (-15 -3554 ((-650 $) $)) (-15 -3993 ((-650 $) $)) (-15 -3951 ($ $)) (-15 -2821 ((-777) $ (-650 (-950 |t#1|)))) (-15 -3978 ($ $ (-777) (-950 |t#1|))) (-15 -3377 ($ $ (-950 |t#1|))) (-15 -3377 ($ $ (-650 |t#1|))) (-15 -3377 ($ $ (-777))) (-15 -3377 ($ (-950 |t#1|))) (-15 -3377 ((-950 |t#1|) $)) (-15 -1455 ((-112) $)) (-15 -3301 ($ $ (-650 (-950 |t#1|)))) (-15 -3301 ($ $ (-650 (-650 |t#1|)))) (-15 -3301 ($ (-650 (-950 |t#1|)))) (-15 -3301 ((-650 (-950 |t#1|)) $)) (-15 -1451 ((-112) $)) (-15 -1908 ($ $ (-650 (-950 |t#1|)))) (-15 -1908 ($ $ (-650 (-650 |t#1|)))) (-15 -1908 ($ (-650 (-950 |t#1|)))) (-15 -1908 ((-650 (-950 |t#1|)) $)) (-15 -3410 ((-112) $)) (-15 -3982 ($ $ (-650 (-950 |t#1|)))) (-15 -3982 ($ $ (-650 (-650 |t#1|)))) (-15 -3982 ($ (-650 (-950 |t#1|)))) (-15 -3982 ((-650 (-950 |t#1|)) $)) (-15 -1776 ((-112) $)) (-15 -2508 ($ $ (-650 (-650 (-950 |t#1|))) (-650 (-173)) (-173))) (-15 -2508 ($ $ (-650 (-650 (-650 |t#1|))) (-650 (-173)) (-173))) (-15 -2508 ($ $ (-650 (-650 (-950 |t#1|))) (-112) (-112))) (-15 -2508 ($ $ (-650 (-650 (-650 |t#1|))) (-112) (-112))) (-15 -2508 ($ (-650 (-650 (-950 |t#1|))))) (-15 -2508 ($ (-650 (-650 (-950 |t#1|))) (-112) (-112))) (-15 -2508 ((-650 (-650 (-950 |t#1|))) $)) (-15 -1470 ((-112) $)) (-15 -3358 ((-650 (-950 |t#1|)) $)) (-15 -3115 ((-650 (-650 (-650 (-777)))) $)) (-15 -1642 ((-650 (-650 (-650 (-950 |t#1|)))) $)) (-15 -3312 ((-650 (-650 (-173))) $)) (-15 -2016 ((-650 (-173)) $)) (-15 -4393 ((-2 (|:| -1981 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $)) (-15 -2644 ($ $)) (-15 -4195 ((-1174 3 |t#1|) $)) (-15 -3799 ((-868) $))))
+((-3802 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-868)))) (-3744 (*1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-3744 (*1 *1 *2) (-12 (-5 *2 (-1174 3 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3995 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-2097 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))) (-3183 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3183 (*1 *1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2846 (*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-2135 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))) (-2000 (*1 *2 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))) (-3954 (*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2623 (*1 *2 *1 *3) (-12 (-5 *3 (-650 (-950 *4))) (-4 *1 (-1143 *4)) (-4 *4 (-1058)) (-5 *2 (-777)))) (-1827 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-950 *4)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-3380 (*1 *1 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3380 (*1 *1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3380 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-3380 (*1 *1 *2) (-12 (-5 *2 (-950 *3)) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-3380 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-950 *3)))) (-2552 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-1620 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-1620 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-1620 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-1620 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-2521 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-4424 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-4424 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-4424 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-4424 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-3206 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-1879 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-1879 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))) (-1879 (*1 *1 *2) (-12 (-5 *2 (-650 (-950 *3))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-1879 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-2645 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-1449 (*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)))) (-1449 (*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)))) (-1449 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-1449 (*1 *1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-112)) (-4 *1 (-1143 *4)) (-4 *4 (-1058)))) (-1449 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 (-950 *3)))) (-4 *3 (-1058)) (-4 *1 (-1143 *3)))) (-1449 (*1 *1 *2 *3 *3) (-12 (-5 *2 (-650 (-650 (-950 *4)))) (-5 *3 (-112)) (-4 *4 (-1058)) (-4 *1 (-1143 *4)))) (-1449 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-950 *3)))))) (-2702 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))) (-3361 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))) (-3508 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-650 (-777))))))) (-3774 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-650 (-950 *3))))))) (-1741 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-173)))))) (-4274 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-173))))) (-4396 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3917 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777)))))) (-3435 (*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058)))) (-2169 (*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-1174 3 *3)))))
+(-13 (-1109) (-10 -8 (-15 -3744 ($)) (-15 -3744 ($ (-1174 3 |t#1|))) (-15 -3995 ((-777) $)) (-15 -2097 ((-777) $)) (-15 -3183 ($ (-650 $))) (-15 -3183 ($ $ $)) (-15 -2846 ($ (-650 $))) (-15 -2135 ((-650 $) $)) (-15 -2000 ((-650 $) $)) (-15 -3954 ($ $)) (-15 -2623 ((-777) $ (-650 (-950 |t#1|)))) (-15 -1827 ($ $ (-777) (-950 |t#1|))) (-15 -3380 ($ $ (-950 |t#1|))) (-15 -3380 ($ $ (-650 |t#1|))) (-15 -3380 ($ $ (-777))) (-15 -3380 ($ (-950 |t#1|))) (-15 -3380 ((-950 |t#1|) $)) (-15 -2552 ((-112) $)) (-15 -1620 ($ $ (-650 (-950 |t#1|)))) (-15 -1620 ($ $ (-650 (-650 |t#1|)))) (-15 -1620 ($ (-650 (-950 |t#1|)))) (-15 -1620 ((-650 (-950 |t#1|)) $)) (-15 -2521 ((-112) $)) (-15 -4424 ($ $ (-650 (-950 |t#1|)))) (-15 -4424 ($ $ (-650 (-650 |t#1|)))) (-15 -4424 ($ (-650 (-950 |t#1|)))) (-15 -4424 ((-650 (-950 |t#1|)) $)) (-15 -3206 ((-112) $)) (-15 -1879 ($ $ (-650 (-950 |t#1|)))) (-15 -1879 ($ $ (-650 (-650 |t#1|)))) (-15 -1879 ($ (-650 (-950 |t#1|)))) (-15 -1879 ((-650 (-950 |t#1|)) $)) (-15 -2645 ((-112) $)) (-15 -1449 ($ $ (-650 (-650 (-950 |t#1|))) (-650 (-173)) (-173))) (-15 -1449 ($ $ (-650 (-650 (-650 |t#1|))) (-650 (-173)) (-173))) (-15 -1449 ($ $ (-650 (-650 (-950 |t#1|))) (-112) (-112))) (-15 -1449 ($ $ (-650 (-650 (-650 |t#1|))) (-112) (-112))) (-15 -1449 ($ (-650 (-650 (-950 |t#1|))))) (-15 -1449 ($ (-650 (-650 (-950 |t#1|))) (-112) (-112))) (-15 -1449 ((-650 (-650 (-950 |t#1|))) $)) (-15 -2702 ((-112) $)) (-15 -3361 ((-650 (-950 |t#1|)) $)) (-15 -3508 ((-650 (-650 (-650 (-777)))) $)) (-15 -3774 ((-650 (-650 (-650 (-950 |t#1|)))) $)) (-15 -1741 ((-650 (-650 (-173))) $)) (-15 -4274 ((-650 (-173)) $)) (-15 -4396 ((-2 (|:| -3917 (-777)) (|:| |curves| (-777)) (|:| |polygons| (-777)) (|:| |constructs| (-777))) $)) (-15 -3435 ($ $)) (-15 -2169 ((-1174 3 |t#1|) $)) (-15 -3802 ((-868) $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 184) (($ (-1191)) NIL) (((-1191) $) 7)) (-1851 (((-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)) (-2335 (((-112) $ $) NIL)) (-3983 (((-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)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 184) (($ (-1191)) NIL) (((-1191) $) 7)) (-1851 (((-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)) (-3359 (((-112) $ $) NIL)) (-3985 (((-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)) (-3025 (((-112) $ $) NIL)))
(((-1144) (-1146)) (T -1144))
NIL
(-1146)
@@ -4702,673 +4702,677 @@ NIL
(((-1145) (-10 -7 (-15 -2150 ((-650 (-1191)) (-1168))))) (T -1145))
((-2150 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-1145)))))
(-10 -7 (-15 -2150 ((-650 (-1191)) (-1168))))
-((-2558 (((-112) $ $) 7)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-1851 (((-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)) (-2335 (((-112) $ $) 9)) (-3983 (((-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)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) 7)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-1191)) 17) (((-1191) $) 16)) (-1851 (((-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)) (-3359 (((-112) $ $) 9)) (-3985 (((-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)) (-3025 (((-112) $ $) 6)))
(((-1146) (-141)) (T -1146))
-((-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-530))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-530)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-220))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-220)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-682))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-682)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1287))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1287)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-139))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-139)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-612))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-612)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-134))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-134)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1124))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1124)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-96)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-687))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-687)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-523))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-523)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1075))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1075)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1288))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1288)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-531))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-531)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1160))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1160)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-155))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-155)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-677))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-677)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-315))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-315)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1045))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1045)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-182))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-182)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-979))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-979)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1082))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1082)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1099))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1099)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1105))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1105)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-632))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-632)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1176))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1176)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-157))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-157)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-138))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-138)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-484))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-484)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-598))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-598)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-512)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1168)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)))) (-3983 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-570)))))
-(-13 (-1092) (-1272) (-10 -8 (-15 -1851 ((-112) $ (|[\|\|]| (-530)))) (-15 -3983 ((-530) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-220)))) (-15 -3983 ((-220) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-682)))) (-15 -3983 ((-682) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1287)))) (-15 -3983 ((-1287) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-139)))) (-15 -3983 ((-139) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-612)))) (-15 -3983 ((-612) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-134)))) (-15 -3983 ((-134) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1124)))) (-15 -3983 ((-1124) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-96)))) (-15 -3983 ((-96) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-687)))) (-15 -3983 ((-687) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-523)))) (-15 -3983 ((-523) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1075)))) (-15 -3983 ((-1075) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1288)))) (-15 -3983 ((-1288) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-531)))) (-15 -3983 ((-531) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1160)))) (-15 -3983 ((-1160) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-155)))) (-15 -3983 ((-155) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-677)))) (-15 -3983 ((-677) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-315)))) (-15 -3983 ((-315) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1045)))) (-15 -3983 ((-1045) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-182)))) (-15 -3983 ((-182) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-979)))) (-15 -3983 ((-979) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1082)))) (-15 -3983 ((-1082) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1099)))) (-15 -3983 ((-1099) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1105)))) (-15 -3983 ((-1105) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-632)))) (-15 -3983 ((-632) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1176)))) (-15 -3983 ((-1176) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-157)))) (-15 -3983 ((-157) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-138)))) (-15 -3983 ((-138) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-484)))) (-15 -3983 ((-484) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-598)))) (-15 -3983 ((-598) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -3983 ((-512) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3983 ((-1168) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-570)))) (-15 -3983 ((-570) $))))
+((-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-530))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-530)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-220))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-220)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-682))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-682)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1287))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1287)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-139))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-139)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-612))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-612)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-134))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-134)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1124))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1124)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-96))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-96)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-687))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-687)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-523))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-523)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1075))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1075)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1288))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1288)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-531))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-531)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1160))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1160)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-155))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-155)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-677))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-677)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-315))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-315)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1045))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1045)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-182))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-182)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-979))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-979)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1082))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1082)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1099))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1099)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1105))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1105)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-632))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-632)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1176))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1176)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-157))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-157)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-138))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-138)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-484))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-484)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-598))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-598)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-512)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-1168))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1168)))) (-1851 (*1 *2 *1 *3) (-12 (-4 *1 (-1146)) (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)))) (-3985 (*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-570)))))
+(-13 (-1092) (-1272) (-10 -8 (-15 -1851 ((-112) $ (|[\|\|]| (-530)))) (-15 -3985 ((-530) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-220)))) (-15 -3985 ((-220) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-682)))) (-15 -3985 ((-682) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1287)))) (-15 -3985 ((-1287) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-139)))) (-15 -3985 ((-139) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-612)))) (-15 -3985 ((-612) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-134)))) (-15 -3985 ((-134) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1124)))) (-15 -3985 ((-1124) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-96)))) (-15 -3985 ((-96) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-687)))) (-15 -3985 ((-687) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-523)))) (-15 -3985 ((-523) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1075)))) (-15 -3985 ((-1075) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1288)))) (-15 -3985 ((-1288) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-531)))) (-15 -3985 ((-531) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1160)))) (-15 -3985 ((-1160) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-155)))) (-15 -3985 ((-155) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-677)))) (-15 -3985 ((-677) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-315)))) (-15 -3985 ((-315) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1045)))) (-15 -3985 ((-1045) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-182)))) (-15 -3985 ((-182) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-979)))) (-15 -3985 ((-979) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1082)))) (-15 -3985 ((-1082) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1099)))) (-15 -3985 ((-1099) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1105)))) (-15 -3985 ((-1105) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-632)))) (-15 -3985 ((-632) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1176)))) (-15 -3985 ((-1176) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-157)))) (-15 -3985 ((-157) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-138)))) (-15 -3985 ((-138) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-484)))) (-15 -3985 ((-484) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-598)))) (-15 -3985 ((-598) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -3985 ((-512) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-1168)))) (-15 -3985 ((-1168) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-570)))) (-15 -3985 ((-570) $))))
(((-93) . T) ((-102) . T) ((-622 #0=(-1191)) . T) ((-619 (-868)) . T) ((-619 #0#) . T) ((-496 #0#) . T) ((-1109) . T) ((-1092) . T) ((-1272) . T))
-((-1794 (((-1282) (-650 (-868))) 22) (((-1282) (-868)) 21)) (-1474 (((-1282) (-650 (-868))) 20) (((-1282) (-868)) 19)) (-3396 (((-1282) (-650 (-868))) 18) (((-1282) (-868)) 10) (((-1282) (-1168) (-868)) 16)))
-(((-1147) (-10 -7 (-15 -3396 ((-1282) (-1168) (-868))) (-15 -3396 ((-1282) (-868))) (-15 -1474 ((-1282) (-868))) (-15 -1794 ((-1282) (-868))) (-15 -3396 ((-1282) (-650 (-868)))) (-15 -1474 ((-1282) (-650 (-868)))) (-15 -1794 ((-1282) (-650 (-868)))))) (T -1147))
-((-1794 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-1474 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3396 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-1794 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-1474 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3396 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3396 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))))
-(-10 -7 (-15 -3396 ((-1282) (-1168) (-868))) (-15 -3396 ((-1282) (-868))) (-15 -1474 ((-1282) (-868))) (-15 -1794 ((-1282) (-868))) (-15 -3396 ((-1282) (-650 (-868)))) (-15 -1474 ((-1282) (-650 (-868)))) (-15 -1794 ((-1282) (-650 (-868)))))
-((-4083 (($ $ $) 10)) (-2326 (($ $) 9)) (-4231 (($ $ $) 13)) (-3890 (($ $ $) 15)) (-3564 (($ $ $) 12)) (-3773 (($ $ $) 14)) (-3635 (($ $) 17)) (-4116 (($ $) 16)) (-2622 (($ $) 6)) (-2256 (($ $ $) 11) (($ $) 7)) (-4250 (($ $ $) 8)))
+((-2806 (((-1282) (-650 (-868))) 22) (((-1282) (-868)) 21)) (-2744 (((-1282) (-650 (-868))) 20) (((-1282) (-868)) 19)) (-3400 (((-1282) (-650 (-868))) 18) (((-1282) (-868)) 10) (((-1282) (-1168) (-868)) 16)))
+(((-1147) (-10 -7 (-15 -3400 ((-1282) (-1168) (-868))) (-15 -3400 ((-1282) (-868))) (-15 -2744 ((-1282) (-868))) (-15 -2806 ((-1282) (-868))) (-15 -3400 ((-1282) (-650 (-868)))) (-15 -2744 ((-1282) (-650 (-868)))) (-15 -2806 ((-1282) (-650 (-868)))))) (T -1147))
+((-2806 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-2744 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3400 (*1 *2 *3) (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-2806 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-2744 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3400 (*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))) (-3400 (*1 *2 *3 *4) (-12 (-5 *3 (-1168)) (-5 *4 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147)))))
+(-10 -7 (-15 -3400 ((-1282) (-1168) (-868))) (-15 -3400 ((-1282) (-868))) (-15 -2744 ((-1282) (-868))) (-15 -2806 ((-1282) (-868))) (-15 -3400 ((-1282) (-650 (-868)))) (-15 -2744 ((-1282) (-650 (-868)))) (-15 -2806 ((-1282) (-650 (-868)))))
+((-3539 (($ $ $) 10)) (-3266 (($ $) 9)) (-2509 (($ $ $) 13)) (-2217 (($ $ $) 15)) (-2210 (($ $ $) 12)) (-3556 (($ $ $) 14)) (-1542 (($ $) 17)) (-3845 (($ $) 16)) (-3231 (($ $) 6)) (-1941 (($ $ $) 11) (($ $) 7)) (-2669 (($ $ $) 8)))
(((-1148) (-141)) (T -1148))
-((-3635 (*1 *1 *1) (-4 *1 (-1148))) (-4116 (*1 *1 *1) (-4 *1 (-1148))) (-3890 (*1 *1 *1 *1) (-4 *1 (-1148))) (-3773 (*1 *1 *1 *1) (-4 *1 (-1148))) (-4231 (*1 *1 *1 *1) (-4 *1 (-1148))) (-3564 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2256 (*1 *1 *1 *1) (-4 *1 (-1148))) (-4083 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2326 (*1 *1 *1) (-4 *1 (-1148))) (-4250 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2256 (*1 *1 *1) (-4 *1 (-1148))) (-2622 (*1 *1 *1) (-4 *1 (-1148))))
-(-13 (-10 -8 (-15 -2622 ($ $)) (-15 -2256 ($ $)) (-15 -4250 ($ $ $)) (-15 -2326 ($ $)) (-15 -4083 ($ $ $)) (-15 -2256 ($ $ $)) (-15 -3564 ($ $ $)) (-15 -4231 ($ $ $)) (-15 -3773 ($ $ $)) (-15 -3890 ($ $ $)) (-15 -4116 ($ $)) (-15 -3635 ($ $))))
-((-2558 (((-112) $ $) 44)) (-2308 ((|#1| $) 17)) (-1569 (((-112) $ $ (-1 (-112) |#2| |#2|)) 39)) (-2667 (((-112) $) 19)) (-1454 (($ $ |#1|) 30)) (-2336 (($ $ (-112)) 32)) (-3963 (($ $) 33)) (-4283 (($ $ |#2|) 31)) (-1988 (((-1168) $) NIL)) (-3161 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 38)) (-3577 (((-1129) $) NIL)) (-2017 (((-112) $) 16)) (-2380 (($) 13)) (-3951 (($ $) 29)) (-3811 (($ |#1| |#2| (-112)) 20) (($ |#1| |#2|) 21) (($ (-2 (|:| |val| |#1|) (|:| -3684 |#2|))) 23) (((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3684 |#2|)))) 26) (((-650 $) |#1| (-650 |#2|)) 28)) (-2525 ((|#2| $) 18)) (-3799 (((-868) $) 53)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 42)))
-(((-1149 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -2380 ($)) (-15 -2017 ((-112) $)) (-15 -2308 (|#1| $)) (-15 -2525 (|#2| $)) (-15 -2667 ((-112) $)) (-15 -3811 ($ |#1| |#2| (-112))) (-15 -3811 ($ |#1| |#2|)) (-15 -3811 ($ (-2 (|:| |val| |#1|) (|:| -3684 |#2|)))) (-15 -3811 ((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3684 |#2|))))) (-15 -3811 ((-650 $) |#1| (-650 |#2|))) (-15 -3951 ($ $)) (-15 -1454 ($ $ |#1|)) (-15 -4283 ($ $ |#2|)) (-15 -2336 ($ $ (-112))) (-15 -3963 ($ $)) (-15 -3161 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -1569 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1109) (-34)) (-13 (-1109) (-34))) (T -1149))
-((-2380 (*1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2017 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-2308 (*1 *2 *1) (-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *2 *3)) (-4 *3 (-13 (-1109) (-34))))) (-2525 (*1 *2 *1) (-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34))))) (-2667 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-3811 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3811 (*1 *1 *2 *3) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3811 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -3684 *4))) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *4)))) (-3811 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |val| *4) (|:| -3684 *5)))) (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-650 (-1149 *4 *5))) (-5 *1 (-1149 *4 *5)))) (-3811 (*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))))) (-3951 (*1 *1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-1454 (*1 *1 *1 *2) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-4283 (*1 *1 *1 *2) (-12 (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34))) (-4 *2 (-13 (-1109) (-34))))) (-2336 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-3963 (*1 *1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3161 (*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)))) (-1569 (*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 -2380 ($)) (-15 -2017 ((-112) $)) (-15 -2308 (|#1| $)) (-15 -2525 (|#2| $)) (-15 -2667 ((-112) $)) (-15 -3811 ($ |#1| |#2| (-112))) (-15 -3811 ($ |#1| |#2|)) (-15 -3811 ($ (-2 (|:| |val| |#1|) (|:| -3684 |#2|)))) (-15 -3811 ((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3684 |#2|))))) (-15 -3811 ((-650 $) |#1| (-650 |#2|))) (-15 -3951 ($ $)) (-15 -1454 ($ $ |#1|)) (-15 -4283 ($ $ |#2|)) (-15 -2336 ($ $ (-112))) (-15 -3963 ($ $)) (-15 -3161 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -1569 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
-((-2558 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2308 (((-1149 |#1| |#2|) $) 27)) (-1862 (($ $) 91)) (-3317 (((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 100)) (-2353 (($ $ $ (-650 (-1149 |#1| |#2|))) 108) (($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 109)) (-4302 (((-112) $ (-777)) NIL)) (-2988 (((-1149 |#1| |#2|) $ (-1149 |#1| |#2|)) 46 (|has| $ (-6 -4450)))) (-3932 (((-1149 |#1| |#2|) $ "value" (-1149 |#1| |#2|)) NIL (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) 44 (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-1757 (((-650 (-2 (|:| |val| |#1|) (|:| -3684 |#2|))) $) 95)) (-3249 (($ (-1149 |#1| |#2|) $) 42)) (-1741 (($ (-1149 |#1| |#2|) $) 34)) (-3627 (((-650 (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 54)) (-3692 (((-112) (-1149 |#1| |#2|) $) 97)) (-2439 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 (-1149 |#1| |#2|)) $) 58 (|has| $ (-6 -4449)))) (-4108 (((-112) (-1149 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-1149 |#1| |#2|) (-1109))))) (-1502 (($ (-1 (-1149 |#1| |#2|) (-1149 |#1| |#2|)) $) 50 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-1149 |#1| |#2|) (-1149 |#1| |#2|)) $) 49)) (-3231 (((-112) $ (-777)) NIL)) (-2403 (((-650 (-1149 |#1| |#2|)) $) 56)) (-2606 (((-112) $) 45)) (-1988 (((-1168) $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-3577 (((-1129) $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-4332 (((-3 $ "failed") $) 89)) (-3642 (((-112) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 53)) (-2017 (((-112) $) 24)) (-2380 (($) 26)) (-1941 (((-1149 |#1| |#2|) $ "value") NIL)) (-2738 (((-570) $ $) NIL)) (-3817 (((-112) $) 47)) (-3584 (((-777) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4449))) (((-777) (-1149 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-1149 |#1| |#2|) (-1109))))) (-3951 (($ $) 52)) (-3811 (($ (-1149 |#1| |#2|)) 10) (($ |#1| |#2| (-650 $)) 13) (($ |#1| |#2| (-650 (-1149 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-650 |#2|)) 18)) (-4127 (((-650 |#2|) $) 96)) (-3799 (((-868) $) 87 (|has| (-1149 |#1| |#2|) (-619 (-868))))) (-3397 (((-650 $) $) 31)) (-3746 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2335 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-4371 (((-112) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 70 (|has| (-1149 |#1| |#2|) (-1109)))) (-2569 (((-777) $) 64 (|has| $ (-6 -4449)))))
-(((-1150 |#1| |#2|) (-13 (-1019 (-1149 |#1| |#2|)) (-10 -8 (-6 -4450) (-6 -4449) (-15 -4332 ((-3 $ "failed") $)) (-15 -1862 ($ $)) (-15 -3811 ($ (-1149 |#1| |#2|))) (-15 -3811 ($ |#1| |#2| (-650 $))) (-15 -3811 ($ |#1| |#2| (-650 (-1149 |#1| |#2|)))) (-15 -3811 ($ |#1| |#2| |#1| (-650 |#2|))) (-15 -4127 ((-650 |#2|) $)) (-15 -1757 ((-650 (-2 (|:| |val| |#1|) (|:| -3684 |#2|))) $)) (-15 -3692 ((-112) (-1149 |#1| |#2|) $)) (-15 -3317 ((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1741 ($ (-1149 |#1| |#2|) $)) (-15 -3249 ($ (-1149 |#1| |#2|) $)) (-15 -2353 ($ $ $ (-650 (-1149 |#1| |#2|)))) (-15 -2353 ($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1109) (-34)) (-13 (-1109) (-34))) (T -1150))
-((-4332 (*1 *1 *1) (|partial| -12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-1862 (*1 *1 *1) (-12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3811 (*1 *1 *2) (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-3811 (*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))))) (-3811 (*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)))) (-3811 (*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))))) (-4127 (*1 *2 *1) (-12 (-5 *2 (-650 *4)) (-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-1757 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3684 *4)))) (-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-3692 (*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)))) (-3317 (*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)))) (-1741 (*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)))) (-3249 (*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)))) (-2353 (*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)))) (-2353 (*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 -4332 ((-3 $ "failed") $)) (-15 -1862 ($ $)) (-15 -3811 ($ (-1149 |#1| |#2|))) (-15 -3811 ($ |#1| |#2| (-650 $))) (-15 -3811 ($ |#1| |#2| (-650 (-1149 |#1| |#2|)))) (-15 -3811 ($ |#1| |#2| |#1| (-650 |#2|))) (-15 -4127 ((-650 |#2|) $)) (-15 -1757 ((-650 (-2 (|:| |val| |#1|) (|:| -3684 |#2|))) $)) (-15 -3692 ((-112) (-1149 |#1| |#2|) $)) (-15 -3317 ((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1741 ($ (-1149 |#1| |#2|) $)) (-15 -3249 ($ (-1149 |#1| |#2|) $)) (-15 -2353 ($ $ $ (-650 (-1149 |#1| |#2|)))) (-15 -2353 ($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3244 (($ $) NIL)) (-3207 ((|#2| $) NIL)) (-1735 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1966 (($ (-695 |#2|)) 56)) (-4253 (((-112) $) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-2741 (($ |#2|) 14)) (-1705 (($) NIL T CONST)) (-4089 (($ $) 69 (|has| |#2| (-311)))) (-2219 (((-242 |#1| |#2|) $ (-570)) 42)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) 83)) (-4006 (((-777) $) 71 (|has| |#2| (-562)))) (-3820 ((|#2| $ (-570) (-570)) NIL)) (-3627 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4346 (((-112) $) NIL)) (-2206 (((-777) $) 73 (|has| |#2| (-562)))) (-2123 (((-650 (-242 |#1| |#2|)) $) 77 (|has| |#2| (-562)))) (-3316 (((-777) $) NIL)) (-4291 (($ |#2|) 25)) (-3328 (((-777) $) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-3689 ((|#2| $) 67 (|has| |#2| (-6 (-4451 "*"))))) (-4133 (((-570) $) NIL)) (-2877 (((-570) $) NIL)) (-2752 (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1552 (((-570) $) NIL)) (-1732 (((-570) $) NIL)) (-2571 (($ (-650 (-650 |#2|))) 37)) (-1502 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-3575 (((-650 (-650 |#2|)) $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-3490 (((-3 $ "failed") $) 80 (|has| |#2| (-368)))) (-3577 (((-1129) $) NIL)) (-2547 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-3642 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ (-570) (-570) |#2|) NIL) ((|#2| $ (-570) (-570)) NIL)) (-3547 (($ $ (-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)))) (-1789 ((|#2| $) NIL)) (-2173 (($ (-650 |#2|)) 50)) (-3285 (((-112) $) NIL)) (-2748 (((-242 |#1| |#2|) $) NIL)) (-2137 ((|#2| $) 65 (|has| |#2| (-6 (-4451 "*"))))) (-3584 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3951 (($ $) NIL)) (-1425 (((-542) $) 89 (|has| |#2| (-620 (-542))))) (-1508 (((-242 |#1| |#2|) $ (-570)) 44)) (-3799 (((-868) $) 47) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (((-695 |#2|) $) 52)) (-3499 (((-777)) 23 T CONST)) (-2335 (((-112) $ $) NIL)) (-4371 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-2841 (((-112) $) NIL)) (-1861 (($) 16 T CONST)) (-1875 (($) 21 T CONST)) (-2942 (($ $ (-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)))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1151 |#1| |#2|) (-13 (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-619 (-695 |#2|)) (-10 -8 (-15 -4291 ($ |#2|)) (-15 -3244 ($ $)) (-15 -1966 ($ (-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))
-((-4291 (*1 *1 *2) (-12 (-5 *1 (-1151 *3 *2)) (-14 *3 (-777)) (-4 *2 (-1058)))) (-3244 (*1 *1 *1) (-12 (-5 *1 (-1151 *2 *3)) (-14 *2 (-777)) (-4 *3 (-1058)))) (-1966 (*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 -4291 ($ |#2|)) (-15 -3244 ($ $)) (-15 -1966 ($ (-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|)))
-((-2160 (($ $) 19)) (-3989 (($ $ (-145)) 10) (($ $ (-142)) 14)) (-2666 (((-112) $ $) 24)) (-1971 (($ $) 17)) (-1941 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (($ $ $) 31)) (-3799 (($ (-145)) 29) (((-868) $) NIL)))
-(((-1152 |#1|) (-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -1941 (|#1| |#1| |#1|)) (-15 -3989 (|#1| |#1| (-142))) (-15 -3989 (|#1| |#1| (-145))) (-15 -3799 (|#1| (-145))) (-15 -2666 ((-112) |#1| |#1|)) (-15 -2160 (|#1| |#1|)) (-15 -1971 (|#1| |#1|)) (-15 -1941 (|#1| |#1| (-1244 (-570)))) (-15 -1941 ((-145) |#1| (-570))) (-15 -1941 ((-145) |#1| (-570) (-145)))) (-1153)) (T -1152))
-NIL
-(-10 -8 (-15 -3799 ((-868) |#1|)) (-15 -1941 (|#1| |#1| |#1|)) (-15 -3989 (|#1| |#1| (-142))) (-15 -3989 (|#1| |#1| (-145))) (-15 -3799 (|#1| (-145))) (-15 -2666 ((-112) |#1| |#1|)) (-15 -2160 (|#1| |#1|)) (-15 -1971 (|#1| |#1|)) (-15 -1941 (|#1| |#1| (-1244 (-570)))) (-15 -1941 ((-145) |#1| (-570))) (-15 -1941 ((-145) |#1| (-570) (-145))))
-((-2558 (((-112) $ $) 19 (|has| (-145) (-1109)))) (-2010 (($ $) 121)) (-2160 (($ $) 122)) (-3989 (($ $ (-145)) 109) (($ $ (-142)) 108)) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-2646 (((-112) $ $) 119)) (-2627 (((-112) $ $ (-570)) 118)) (-3774 (((-650 $) $ (-145)) 111) (((-650 $) $ (-142)) 110)) (-4374 (((-112) (-1 (-112) (-145) (-145)) $) 99) (((-112) $) 93 (|has| (-145) (-856)))) (-4004 (($ (-1 (-112) (-145) (-145)) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| (-145) (-856)) (|has| $ (-6 -4450))))) (-3393 (($ (-1 (-112) (-145) (-145)) $) 100) (($ $) 94 (|has| (-145) (-856)))) (-4302 (((-112) $ (-777)) 8)) (-3932 (((-145) $ (-570) (-145)) 53 (|has| $ (-6 -4450))) (((-145) $ (-1244 (-570)) (-145)) 59 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) (-145)) $) 76 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-1675 (($ $ (-145)) 105) (($ $ (-142)) 104)) (-2844 (($ $) 91 (|has| $ (-6 -4450)))) (-2377 (($ $) 101)) (-1483 (($ $ (-1244 (-570)) $) 115)) (-3579 (($ $) 79 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ (-145) $) 78 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-145)) $) 75 (|has| $ (-6 -4449)))) (-3624 (((-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)))) (-1517 (((-145) $ (-570) (-145)) 54 (|has| $ (-6 -4450)))) (-3820 (((-145) $ (-570)) 52)) (-2666 (((-112) $ $) 120)) (-4027 (((-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)) (-3627 (((-650 (-145)) $) 31 (|has| $ (-6 -4449)))) (-4291 (($ (-777) (-145)) 70)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-3466 (($ $ $) 88 (|has| (-145) (-856)))) (-2024 (($ (-1 (-112) (-145) (-145)) $ $) 102) (($ $ $) 95 (|has| (-145) (-856)))) (-2752 (((-650 (-145)) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) (-145) $) 28 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-2800 (($ $ $) 87 (|has| (-145) (-856)))) (-4035 (((-112) $ $ (-145)) 116)) (-4139 (((-777) $ $ (-145)) 117)) (-1502 (($ (-1 (-145) (-145)) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-145) (-145)) $) 36) (($ (-1 (-145) (-145) (-145)) $ $) 65)) (-2507 (($ $) 123)) (-1971 (($ $) 124)) (-3231 (((-112) $ (-777)) 10)) (-1687 (($ $ (-145)) 107) (($ $ (-142)) 106)) (-1988 (((-1168) $) 22 (|has| (-145) (-1109)))) (-4290 (($ (-145) $ (-570)) 61) (($ $ $ (-570)) 60)) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-3577 (((-1129) $) 21 (|has| (-145) (-1109)))) (-3543 (((-145) $) 43 (|has| (-570) (-856)))) (-1790 (((-3 (-145) "failed") (-1 (-112) (-145)) $) 72)) (-2147 (($ $ (-145)) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) (-145)) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) (-145) $) 46 (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3700 (((-650 (-145)) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 (((-145) $ (-570) (-145)) 51) (((-145) $ (-570)) 50) (($ $ (-1244 (-570))) 64) (($ $ $) 103)) (-4326 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3584 (((-777) (-1 (-112) (-145)) $) 32 (|has| $ (-6 -4449))) (((-777) (-145) $) 29 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-2906 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 80 (|has| (-145) (-620 (-542))))) (-3811 (($ (-650 (-145))) 71)) (-2584 (($ $ (-145)) 69) (($ (-145) $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3799 (($ (-145)) 112) (((-868) $) 18 (|has| (-145) (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| (-145) (-1109)))) (-4371 (((-112) (-1 (-112) (-145)) $) 34 (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) 85 (|has| (-145) (-856)))) (-3052 (((-112) $ $) 84 (|has| (-145) (-856)))) (-3022 (((-112) $ $) 20 (|has| (-145) (-1109)))) (-3062 (((-112) $ $) 86 (|has| (-145) (-856)))) (-3042 (((-112) $ $) 83 (|has| (-145) (-856)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-1542 (*1 *1 *1) (-4 *1 (-1148))) (-3845 (*1 *1 *1) (-4 *1 (-1148))) (-2217 (*1 *1 *1 *1) (-4 *1 (-1148))) (-3556 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2509 (*1 *1 *1 *1) (-4 *1 (-1148))) (-2210 (*1 *1 *1 *1) (-4 *1 (-1148))) (-1941 (*1 *1 *1 *1) (-4 *1 (-1148))) (-3539 (*1 *1 *1 *1) (-4 *1 (-1148))) (-3266 (*1 *1 *1) (-4 *1 (-1148))) (-2669 (*1 *1 *1 *1) (-4 *1 (-1148))) (-1941 (*1 *1 *1) (-4 *1 (-1148))) (-3231 (*1 *1 *1) (-4 *1 (-1148))))
+(-13 (-10 -8 (-15 -3231 ($ $)) (-15 -1941 ($ $)) (-15 -2669 ($ $ $)) (-15 -3266 ($ $)) (-15 -3539 ($ $ $)) (-15 -1941 ($ $ $)) (-15 -2210 ($ $ $)) (-15 -2509 ($ $ $)) (-15 -3556 ($ $ $)) (-15 -2217 ($ $ $)) (-15 -3845 ($ $)) (-15 -1542 ($ $))))
+((-2560 (((-112) $ $) 44)) (-2308 ((|#1| $) 17)) (-2457 (((-112) $ $ (-1 (-112) |#2| |#2|)) 39)) (-2668 (((-112) $) 19)) (-2541 (($ $ |#1|) 30)) (-3371 (($ $ (-112)) 32)) (-1646 (($ $) 33)) (-1736 (($ $ |#2|) 31)) (-3989 (((-1168) $) NIL)) (-2745 (((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|)) 38)) (-3580 (((-1129) $) NIL)) (-4283 (((-112) $) 16)) (-2656 (($) 13)) (-3954 (($ $) 29)) (-3814 (($ |#1| |#2| (-112)) 20) (($ |#1| |#2|) 21) (($ (-2 (|:| |val| |#1|) (|:| -3687 |#2|))) 23) (((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3687 |#2|)))) 26) (((-650 $) |#1| (-650 |#2|)) 28)) (-2526 ((|#2| $) 18)) (-3802 (((-868) $) 53)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 42)))
+(((-1149 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -2656 ($)) (-15 -4283 ((-112) $)) (-15 -2308 (|#1| $)) (-15 -2526 (|#2| $)) (-15 -2668 ((-112) $)) (-15 -3814 ($ |#1| |#2| (-112))) (-15 -3814 ($ |#1| |#2|)) (-15 -3814 ($ (-2 (|:| |val| |#1|) (|:| -3687 |#2|)))) (-15 -3814 ((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3687 |#2|))))) (-15 -3814 ((-650 $) |#1| (-650 |#2|))) (-15 -3954 ($ $)) (-15 -2541 ($ $ |#1|)) (-15 -1736 ($ $ |#2|)) (-15 -3371 ($ $ (-112))) (-15 -1646 ($ $)) (-15 -2745 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -2457 ((-112) $ $ (-1 (-112) |#2| |#2|))))) (-13 (-1109) (-34)) (-13 (-1109) (-34))) (T -1149))
+((-2656 (*1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-4283 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-2308 (*1 *2 *1) (-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *2 *3)) (-4 *3 (-13 (-1109) (-34))))) (-2526 (*1 *2 *1) (-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34))))) (-2668 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-3814 (*1 *1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3814 (*1 *1 *2 *3) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3814 (*1 *1 *2) (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -3687 *4))) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1149 *3 *4)))) (-3814 (*1 *2 *3) (-12 (-5 *3 (-650 (-2 (|:| |val| *4) (|:| -3687 *5)))) (-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34))) (-5 *2 (-650 (-1149 *4 *5))) (-5 *1 (-1149 *4 *5)))) (-3814 (*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))))) (-3954 (*1 *1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2541 (*1 *1 *1 *2) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-1736 (*1 *1 *1 *2) (-12 (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34))) (-4 *2 (-13 (-1109) (-34))))) (-3371 (*1 *1 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-1646 (*1 *1 *1) (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2745 (*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)))) (-2457 (*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 -2656 ($)) (-15 -4283 ((-112) $)) (-15 -2308 (|#1| $)) (-15 -2526 (|#2| $)) (-15 -2668 ((-112) $)) (-15 -3814 ($ |#1| |#2| (-112))) (-15 -3814 ($ |#1| |#2|)) (-15 -3814 ($ (-2 (|:| |val| |#1|) (|:| -3687 |#2|)))) (-15 -3814 ((-650 $) (-650 (-2 (|:| |val| |#1|) (|:| -3687 |#2|))))) (-15 -3814 ((-650 $) |#1| (-650 |#2|))) (-15 -3954 ($ $)) (-15 -2541 ($ $ |#1|)) (-15 -1736 ($ $ |#2|)) (-15 -3371 ($ $ (-112))) (-15 -1646 ($ $)) (-15 -2745 ((-112) $ $ (-1 (-112) |#1| |#1|) (-1 (-112) |#2| |#2|))) (-15 -2457 ((-112) $ $ (-1 (-112) |#2| |#2|)))))
+((-2560 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2308 (((-1149 |#1| |#2|) $) 27)) (-2198 (($ $) 91)) (-1797 (((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|)) 100)) (-3561 (($ $ $ (-650 (-1149 |#1| |#2|))) 108) (($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|)) 109)) (-1932 (((-112) $ (-777)) NIL)) (-1647 (((-1149 |#1| |#2|) $ (-1149 |#1| |#2|)) 46 (|has| $ (-6 -4453)))) (-3935 (((-1149 |#1| |#2|) $ "value" (-1149 |#1| |#2|)) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 44 (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-1758 (((-650 (-2 (|:| |val| |#1|) (|:| -3687 |#2|))) $) 95)) (-2385 (($ (-1149 |#1| |#2|) $) 42)) (-1742 (($ (-1149 |#1| |#2|) $) 34)) (-3630 (((-650 (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 54)) (-3980 (((-112) (-1149 |#1| |#2|) $) 97)) (-2045 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 (-1149 |#1| |#2|)) $) 58 (|has| $ (-6 -4452)))) (-3767 (((-112) (-1149 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-1149 |#1| |#2|) (-1109))))) (-1503 (($ (-1 (-1149 |#1| |#2|) (-1149 |#1| |#2|)) $) 50 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-1149 |#1| |#2|) (-1149 |#1| |#2|)) $) 49)) (-2193 (((-112) $ (-777)) NIL)) (-2404 (((-650 (-1149 |#1| |#2|)) $) 56)) (-4244 (((-112) $) 45)) (-3989 (((-1168) $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-3580 (((-1129) $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-4011 (((-3 $ "failed") $) 89)) (-1627 (((-112) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 53)) (-4283 (((-112) $) 24)) (-2656 (($) 26)) (-1942 (((-1149 |#1| |#2|) $ "value") NIL)) (-3108 (((-570) $ $) NIL)) (-2759 (((-112) $) 47)) (-3587 (((-777) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4452))) (((-777) (-1149 |#1| |#2|) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-1149 |#1| |#2|) (-1109))))) (-3954 (($ $) 52)) (-3814 (($ (-1149 |#1| |#2|)) 10) (($ |#1| |#2| (-650 $)) 13) (($ |#1| |#2| (-650 (-1149 |#1| |#2|))) 15) (($ |#1| |#2| |#1| (-650 |#2|)) 18)) (-4130 (((-650 |#2|) $) 96)) (-3802 (((-868) $) 87 (|has| (-1149 |#1| |#2|) (-619 (-868))))) (-4259 (((-650 $) $) 31)) (-3290 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-3359 (((-112) $ $) NIL (|has| (-1149 |#1| |#2|) (-1109)))) (-4379 (((-112) (-1 (-112) (-1149 |#1| |#2|)) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 70 (|has| (-1149 |#1| |#2|) (-1109)))) (-2570 (((-777) $) 64 (|has| $ (-6 -4452)))))
+(((-1150 |#1| |#2|) (-13 (-1019 (-1149 |#1| |#2|)) (-10 -8 (-6 -4453) (-6 -4452) (-15 -4011 ((-3 $ "failed") $)) (-15 -2198 ($ $)) (-15 -3814 ($ (-1149 |#1| |#2|))) (-15 -3814 ($ |#1| |#2| (-650 $))) (-15 -3814 ($ |#1| |#2| (-650 (-1149 |#1| |#2|)))) (-15 -3814 ($ |#1| |#2| |#1| (-650 |#2|))) (-15 -4130 ((-650 |#2|) $)) (-15 -1758 ((-650 (-2 (|:| |val| |#1|) (|:| -3687 |#2|))) $)) (-15 -3980 ((-112) (-1149 |#1| |#2|) $)) (-15 -1797 ((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1742 ($ (-1149 |#1| |#2|) $)) (-15 -2385 ($ (-1149 |#1| |#2|) $)) (-15 -3561 ($ $ $ (-650 (-1149 |#1| |#2|)))) (-15 -3561 ($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|))))) (-13 (-1109) (-34)) (-13 (-1109) (-34))) (T -1150))
+((-4011 (*1 *1 *1) (|partial| -12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-2198 (*1 *1 *1) (-12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34))) (-4 *3 (-13 (-1109) (-34))))) (-3814 (*1 *1 *2) (-12 (-5 *2 (-1149 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4)))) (-3814 (*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))))) (-3814 (*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)))) (-3814 (*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))))) (-4130 (*1 *2 *1) (-12 (-5 *2 (-650 *4)) (-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-1758 (*1 *2 *1) (-12 (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3687 *4)))) (-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))) (-3980 (*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)))) (-1797 (*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)))) (-1742 (*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)))) (-2385 (*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)))) (-3561 (*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)))) (-3561 (*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 -4453) (-6 -4452) (-15 -4011 ((-3 $ "failed") $)) (-15 -2198 ($ $)) (-15 -3814 ($ (-1149 |#1| |#2|))) (-15 -3814 ($ |#1| |#2| (-650 $))) (-15 -3814 ($ |#1| |#2| (-650 (-1149 |#1| |#2|)))) (-15 -3814 ($ |#1| |#2| |#1| (-650 |#2|))) (-15 -4130 ((-650 |#2|) $)) (-15 -1758 ((-650 (-2 (|:| |val| |#1|) (|:| -3687 |#2|))) $)) (-15 -3980 ((-112) (-1149 |#1| |#2|) $)) (-15 -1797 ((-112) (-1149 |#1| |#2|) $ (-1 (-112) |#2| |#2|))) (-15 -1742 ($ (-1149 |#1| |#2|) $)) (-15 -2385 ($ (-1149 |#1| |#2|) $)) (-15 -3561 ($ $ $ (-650 (-1149 |#1| |#2|)))) (-15 -3561 ($ $ $ (-650 (-1149 |#1| |#2|)) (-1 (-112) |#2| |#2|)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-2333 (($ $) NIL)) (-3211 ((|#2| $) NIL)) (-3493 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3769 (($ (-695 |#2|)) 56)) (-1407 (((-112) $) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-3130 (($ |#2|) 14)) (-3195 (($) NIL T CONST)) (-3610 (($ $) 69 (|has| |#2| (-311)))) (-1494 (((-242 |#1| |#2|) $ (-570)) 42)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#2| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-3 |#2| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) ((|#2| $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) 83)) (-4009 (((-777) $) 71 (|has| |#2| (-562)))) (-3824 ((|#2| $ (-570) (-570)) NIL)) (-3630 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-4139 (((-112) $) NIL)) (-1330 (((-777) $) 73 (|has| |#2| (-562)))) (-3017 (((-650 (-242 |#1| |#2|)) $) 77 (|has| |#2| (-562)))) (-3318 (((-777) $) NIL)) (-4294 (($ |#2|) 25)) (-3330 (((-777) $) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-3949 ((|#2| $) 67 (|has| |#2| (-6 (-4454 "*"))))) (-2822 (((-570) $) NIL)) (-1943 (((-570) $) NIL)) (-2052 (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2278 (((-570) $) NIL)) (-3461 (((-570) $) NIL)) (-2572 (($ (-650 (-650 |#2|))) 37)) (-1503 (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#2| |#2| |#2|) $ $) NIL) (($ (-1 |#2| |#2|) $) NIL)) (-2309 (((-650 (-650 |#2|)) $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-2751 (((-3 $ "failed") $) 80 (|has| |#2| (-368)))) (-3580 (((-1129) $) NIL)) (-2548 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562)))) (-1627 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ (-570) (-570) |#2|) NIL) ((|#2| $ (-570) (-570)) NIL)) (-3550 (($ $ (-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)))) (-2760 ((|#2| $) NIL)) (-2323 (($ (-650 |#2|)) 50)) (-1424 (((-112) $) NIL)) (-3193 (((-242 |#1| |#2|) $) NIL)) (-3136 ((|#2| $) 65 (|has| |#2| (-6 (-4454 "*"))))) (-3587 (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-3954 (($ $) NIL)) (-1426 (((-542) $) 89 (|has| |#2| (-620 (-542))))) (-3057 (((-242 |#1| |#2|) $ (-570)) 44)) (-3802 (((-868) $) 47) (($ (-570)) NIL) (($ (-413 (-570))) NIL (|has| |#2| (-1047 (-413 (-570))))) (($ |#2|) NIL) (((-695 |#2|) $) 52)) (-2851 (((-777)) 23 T CONST)) (-3359 (((-112) $ $) NIL)) (-4379 (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1548 (((-112) $) NIL)) (-1862 (($) 16 T CONST)) (-1876 (($) 21 T CONST)) (-2945 (($ $ (-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)))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1151 |#1| |#2|) (-13 (-1132 |#1| |#2| (-242 |#1| |#2|) (-242 |#1| |#2|)) (-619 (-695 |#2|)) (-10 -8 (-15 -4294 ($ |#2|)) (-15 -2333 ($ $)) (-15 -3769 ($ (-695 |#2|))) (IF (|has| |#2| (-6 (-4454 "*"))) (-6 -4441) |%noBranch|) (IF (|has| |#2| (-6 (-4454 "*"))) (IF (|has| |#2| (-6 -4449)) (-6 -4449) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|))) (-777) (-1058)) (T -1151))
+((-4294 (*1 *1 *2) (-12 (-5 *1 (-1151 *3 *2)) (-14 *3 (-777)) (-4 *2 (-1058)))) (-2333 (*1 *1 *1) (-12 (-5 *1 (-1151 *2 *3)) (-14 *2 (-777)) (-4 *3 (-1058)))) (-3769 (*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 -4294 ($ |#2|)) (-15 -2333 ($ $)) (-15 -3769 ($ (-695 |#2|))) (IF (|has| |#2| (-6 (-4454 "*"))) (-6 -4441) |%noBranch|) (IF (|has| |#2| (-6 (-4454 "*"))) (IF (|has| |#2| (-6 -4449)) (-6 -4449) |%noBranch|) |%noBranch|) (IF (|has| |#2| (-620 (-542))) (-6 (-620 (-542))) |%noBranch|)))
+((-2182 (($ $) 19)) (-1958 (($ $ (-145)) 10) (($ $ (-142)) 14)) (-2667 (((-112) $ $) 24)) (-3819 (($ $) 17)) (-1942 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (($ $ $) 31)) (-3802 (($ (-145)) 29) (((-868) $) NIL)))
+(((-1152 |#1|) (-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -1942 (|#1| |#1| |#1|)) (-15 -1958 (|#1| |#1| (-142))) (-15 -1958 (|#1| |#1| (-145))) (-15 -3802 (|#1| (-145))) (-15 -2667 ((-112) |#1| |#1|)) (-15 -2182 (|#1| |#1|)) (-15 -3819 (|#1| |#1|)) (-15 -1942 (|#1| |#1| (-1244 (-570)))) (-15 -1942 ((-145) |#1| (-570))) (-15 -1942 ((-145) |#1| (-570) (-145)))) (-1153)) (T -1152))
+NIL
+(-10 -8 (-15 -3802 ((-868) |#1|)) (-15 -1942 (|#1| |#1| |#1|)) (-15 -1958 (|#1| |#1| (-142))) (-15 -1958 (|#1| |#1| (-145))) (-15 -3802 (|#1| (-145))) (-15 -2667 ((-112) |#1| |#1|)) (-15 -2182 (|#1| |#1|)) (-15 -3819 (|#1| |#1|)) (-15 -1942 (|#1| |#1| (-1244 (-570)))) (-15 -1942 ((-145) |#1| (-570))) (-15 -1942 ((-145) |#1| (-570) (-145))))
+((-2560 (((-112) $ $) 19 (|has| (-145) (-1109)))) (-4214 (($ $) 121)) (-2182 (($ $) 122)) (-1958 (($ $ (-145)) 109) (($ $ (-142)) 108)) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-2647 (((-112) $ $) 119)) (-2628 (((-112) $ $ (-570)) 118)) (-3568 (((-650 $) $ (-145)) 111) (((-650 $) $ (-142)) 110)) (-4414 (((-112) (-1 (-112) (-145) (-145)) $) 99) (((-112) $) 93 (|has| (-145) (-856)))) (-3936 (($ (-1 (-112) (-145) (-145)) $) 90 (|has| $ (-6 -4453))) (($ $) 89 (-12 (|has| (-145) (-856)) (|has| $ (-6 -4453))))) (-3396 (($ (-1 (-112) (-145) (-145)) $) 100) (($ $) 94 (|has| (-145) (-856)))) (-1932 (((-112) $ (-777)) 8)) (-3935 (((-145) $ (-570) (-145)) 53 (|has| $ (-6 -4453))) (((-145) $ (-1244 (-570)) (-145)) 59 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) (-145)) $) 76 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-1676 (($ $ (-145)) 105) (($ $ (-142)) 104)) (-1582 (($ $) 91 (|has| $ (-6 -4453)))) (-2380 (($ $) 101)) (-2824 (($ $ (-1244 (-570)) $) 115)) (-3582 (($ $) 79 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ (-145) $) 78 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) (-145)) $) 75 (|has| $ (-6 -4452)))) (-3627 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) 77 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) 74 (|has| $ (-6 -4452))) (((-145) (-1 (-145) (-145) (-145)) $) 73 (|has| $ (-6 -4452)))) (-1518 (((-145) $ (-570) (-145)) 54 (|has| $ (-6 -4453)))) (-3824 (((-145) $ (-570)) 52)) (-2667 (((-112) $ $) 120)) (-4029 (((-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)) (-3630 (((-650 (-145)) $) 31 (|has| $ (-6 -4452)))) (-4294 (($ (-777) (-145)) 70)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-3469 (($ $ $) 88 (|has| (-145) (-856)))) (-3183 (($ (-1 (-112) (-145) (-145)) $ $) 102) (($ $ $) 95 (|has| (-145) (-856)))) (-2052 (((-650 (-145)) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) (-145) $) 28 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-2472 (($ $ $) 87 (|has| (-145) (-856)))) (-4038 (((-112) $ $ (-145)) 116)) (-4142 (((-777) $ $ (-145)) 117)) (-1503 (($ (-1 (-145) (-145)) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-145) (-145)) $) 36) (($ (-1 (-145) (-145) (-145)) $ $) 65)) (-1432 (($ $) 123)) (-3819 (($ $) 124)) (-2193 (((-112) $ (-777)) 10)) (-1688 (($ $ (-145)) 107) (($ $ (-142)) 106)) (-3989 (((-1168) $) 22 (|has| (-145) (-1109)))) (-4293 (($ (-145) $ (-570)) 61) (($ $ $ (-570)) 60)) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-3580 (((-1129) $) 21 (|has| (-145) (-1109)))) (-3546 (((-145) $) 43 (|has| (-570) (-856)))) (-2770 (((-3 (-145) "failed") (-1 (-112) (-145)) $) 72)) (-2061 (($ $ (-145)) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) (-145)) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) (-145) $) 46 (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-4049 (((-650 (-145)) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 (((-145) $ (-570) (-145)) 51) (((-145) $ (-570)) 50) (($ $ (-1244 (-570))) 64) (($ $ $) 103)) (-4330 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3587 (((-777) (-1 (-112) (-145)) $) 32 (|has| $ (-6 -4452))) (((-777) (-145) $) 29 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452))))) (-2087 (($ $ $ (-570)) 92 (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 80 (|has| (-145) (-620 (-542))))) (-3814 (($ (-650 (-145))) 71)) (-2585 (($ $ (-145)) 69) (($ (-145) $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3802 (($ (-145)) 112) (((-868) $) 18 (|has| (-145) (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| (-145) (-1109)))) (-4379 (((-112) (-1 (-112) (-145)) $) 34 (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) 85 (|has| (-145) (-856)))) (-3055 (((-112) $ $) 84 (|has| (-145) (-856)))) (-3025 (((-112) $ $) 20 (|has| (-145) (-1109)))) (-3065 (((-112) $ $) 86 (|has| (-145) (-856)))) (-3045 (((-112) $ $) 83 (|has| (-145) (-856)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1153) (-141)) (T -1153))
-((-1971 (*1 *1 *1) (-4 *1 (-1153))) (-2507 (*1 *1 *1) (-4 *1 (-1153))) (-2160 (*1 *1 *1) (-4 *1 (-1153))) (-2010 (*1 *1 *1) (-4 *1 (-1153))) (-2666 (*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))) (-2646 (*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))) (-2627 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-570)) (-5 *2 (-112)))) (-4139 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-777)))) (-4035 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-112)))) (-1483 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-1244 (-570))))) (-4027 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)))) (-4027 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)) (-5 *3 (-142)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-145)) (-4 *1 (-1153)))) (-3774 (*1 *2 *1 *3) (-12 (-5 *3 (-145)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))) (-3774 (*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))) (-3989 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-3989 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1687 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1687 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1675 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1675 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1941 (*1 *1 *1 *1) (-4 *1 (-1153))))
-(-13 (-19 (-145)) (-10 -8 (-15 -1971 ($ $)) (-15 -2507 ($ $)) (-15 -2160 ($ $)) (-15 -2010 ($ $)) (-15 -2666 ((-112) $ $)) (-15 -2646 ((-112) $ $)) (-15 -2627 ((-112) $ $ (-570))) (-15 -4139 ((-777) $ $ (-145))) (-15 -4035 ((-112) $ $ (-145))) (-15 -1483 ($ $ (-1244 (-570)) $)) (-15 -4027 ((-570) $ $ (-570))) (-15 -4027 ((-570) (-142) $ (-570))) (-15 -3799 ($ (-145))) (-15 -3774 ((-650 $) $ (-145))) (-15 -3774 ((-650 $) $ (-142))) (-15 -3989 ($ $ (-145))) (-15 -3989 ($ $ (-142))) (-15 -1687 ($ $ (-145))) (-15 -1687 ($ $ (-142))) (-15 -1675 ($ $ (-145))) (-15 -1675 ($ $ (-142))) (-15 -1941 ($ $ $))))
-(((-34) . T) ((-102) -2892 (|has| (-145) (-1109)) (|has| (-145) (-856))) ((-619 (-868)) -2892 (|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) -2892 (|has| (-145) (-1109)) (|has| (-145) (-856))) ((-1227) . T))
-((-3059 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-777)) 112)) (-4177 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|) 62) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777)) 61)) (-2599 (((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-777)) 97)) (-2039 (((-777) (-650 |#4|) (-650 |#5|)) 30)) (-1331 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777)) 63) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777) (-112)) 65)) (-4226 (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112)) 84) (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112)) 85)) (-1425 (((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) 90)) (-1814 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|) 60)) (-2745 (((-777) (-650 |#4|) (-650 |#5|)) 21)))
-(((-1154 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -2745 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2039 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -1814 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -4177 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777))) (-15 -4177 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777))) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -4226 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -4226 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3059 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-777))) (-15 -1425 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) (-15 -2599 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-777)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1118 |#1| |#2| |#3| |#4|)) (T -1154))
-((-2599 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3684 *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)))) (-1425 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3684 *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)))) (-3059 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-650 *11)) (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3684 *11)))))) (-5 *6 (-777)) (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3684 *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)))) (-4226 (*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)))) (-4226 (*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)))) (-1331 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-1331 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3)))) (-1331 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1154 *7 *8 *9 *3 *4)) (-4 *4 (-1118 *7 *8 *9 *3)))) (-4177 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-4177 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3)))) (-1814 (*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)) (|:| -3684 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-2039 (*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)))) (-2745 (*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 -2745 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2039 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -1814 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -4177 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777))) (-15 -4177 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5| (-777))) (-15 -1331 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) |#4| |#5|)) (-15 -4226 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -4226 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -3059 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))))) (-777))) (-15 -1425 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|)))) (-15 -2599 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3684 |#5|))) (-777))))
-((-2558 (((-112) $ $) NIL)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1515 (((-650 $) (-650 |#4|)) 124) (((-650 $) (-650 |#4|) (-112)) 125) (((-650 $) (-650 |#4|) (-112) (-112)) 123) (((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112)) 126)) (-1755 (((-650 |#3|) $) NIL)) (-3051 (((-112) $) NIL)) (-1416 (((-112) $) NIL (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3484 ((|#4| |#4| $) NIL)) (-4364 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| $) 97)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-1431 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 75)) (-1705 (($) NIL T CONST)) (-3737 (((-112) $) 29 (|has| |#1| (-562)))) (-2467 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4047 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1876 (((-112) $) NIL (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2450 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3216 (($ (-650 |#4|)) NIL)) (-3555 (((-3 $ "failed") $) 45)) (-2128 ((|#4| |#4| $) 78)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1741 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 91 (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1544 ((|#4| |#4| $) NIL)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) NIL)) (-3948 (((-112) |#4| $) NIL)) (-3825 (((-112) |#4| $) NIL)) (-2819 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1589 (((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)) 139)) (-3627 (((-650 |#4|) $) 18 (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1724 ((|#3| $) 38)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#4|) $) 19 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1502 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 23)) (-1423 (((-650 |#3|) $) NIL)) (-3907 (((-112) |#3| $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-2925 (((-3 |#4| (-650 $)) |#4| |#4| $) NIL)) (-1759 (((-650 (-2 (|:| |val| |#4|) (|:| -3684 $))) |#4| |#4| $) 117)) (-1769 (((-3 |#4| "failed") $) 42)) (-3260 (((-650 $) |#4| $) 102)) (-4090 (((-3 (-112) (-650 $)) |#4| $) NIL)) (-1743 (((-650 (-2 (|:| |val| (-112)) (|:| -3684 $))) |#4| $) 112) (((-112) |#4| $) 65)) (-2730 (((-650 $) |#4| $) 121) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 122) (((-650 $) |#4| (-650 $)) NIL)) (-3063 (((-650 $) (-650 |#4|) (-112) (-112) (-112)) 134)) (-2231 (($ |#4| $) 88) (($ (-650 |#4|) $) 89) (((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 87)) (-3534 (((-650 |#4|) $) NIL)) (-1491 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2520 ((|#4| |#4| $) NIL)) (-2971 (((-112) $ $) NIL)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4201 ((|#4| |#4| $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-3 |#4| "failed") $) 40)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1690 (((-3 $ "failed") $ |#4|) 59)) (-2431 (($ $ |#4|) NIL) (((-650 $) |#4| $) 104) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 99)) (-3642 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 17)) (-2380 (($) 14)) (-2130 (((-777) $) NIL)) (-3584 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) 13)) (-1425 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 22)) (-3710 (($ $ |#3|) 52)) (-4224 (($ $ |#3|) 54)) (-4085 (($ $) NIL)) (-1615 (($ $ |#3|) NIL)) (-3799 (((-868) $) 35) (((-650 |#4|) $) 46)) (-4392 (((-777) $) NIL (|has| |#3| (-373)))) (-2335 (((-112) $ $) NIL)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-2401 (((-650 $) |#4| $) 66) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) NIL)) (-4371 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) NIL)) (-2950 (((-112) |#4| $) NIL)) (-2561 (((-112) |#3| $) 74)) (-3022 (((-112) $ $) NIL)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1155 |#1| |#2| |#3| |#4|) (-13 (-1118 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2231 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1515 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1515 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -3063 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1589 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112))))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1155))
-((-2231 (*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)))) (-1515 (*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)))) (-1515 (*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)))) (-3063 (*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)))) (-1589 (*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 -2231 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1515 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1515 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -3063 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1589 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3353 ((|#1| $) 37)) (-2502 (($ (-650 |#1|)) 45)) (-4302 (((-112) $ (-777)) NIL)) (-1705 (($) NIL T CONST)) (-1740 ((|#1| |#1| $) 40)) (-3636 ((|#1| $) 35)) (-3627 (((-650 |#1|) $) 18 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 22)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1490 ((|#1| $) 38)) (-1385 (($ |#1| $) 41)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3647 ((|#1| $) 36)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 32)) (-2380 (($) 43)) (-2918 (((-777) $) 30)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) 27)) (-3799 (((-868) $) 14 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2082 (($ (-650 |#1|)) NIL)) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 17 (|has| |#1| (-1109)))) (-2569 (((-777) $) 31 (|has| $ (-6 -4449)))))
-(((-1156 |#1|) (-13 (-1130 |#1|) (-10 -8 (-15 -2502 ($ (-650 |#1|))))) (-1227)) (T -1156))
-((-2502 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1156 *3)))))
-(-13 (-1130 |#1|) (-10 -8 (-15 -2502 ($ (-650 |#1|)))))
-((-3932 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1244 (-570)) |#2|) 53) ((|#2| $ (-570) |#2|) 50)) (-3414 (((-112) $) 12)) (-1502 (($ (-1 |#2| |#2|) $) 48)) (-3543 ((|#2| $) NIL) (($ $ (-777)) 17)) (-2147 (($ $ |#2|) 49)) (-3607 (((-112) $) 11)) (-1941 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1244 (-570))) 36) ((|#2| $ (-570)) 26) ((|#2| $ (-570) |#2|) NIL)) (-3276 (($ $ $) 56) (($ $ |#2|) NIL)) (-2584 (($ $ $) 38) (($ |#2| $) NIL) (($ (-650 $)) 45) (($ $ |#2|) NIL)))
-(((-1157 |#1| |#2|) (-10 -8 (-15 -3414 ((-112) |#1|)) (-15 -3607 ((-112) |#1|)) (-15 -3932 (|#2| |#1| (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570))) (-15 -2147 (|#1| |#1| |#2|)) (-15 -2584 (|#1| |#1| |#2|)) (-15 -2584 (|#1| (-650 |#1|))) (-15 -1941 (|#1| |#1| (-1244 (-570)))) (-15 -3932 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -3932 (|#2| |#1| "last" |#2|)) (-15 -3932 (|#1| |#1| "rest" |#1|)) (-15 -3932 (|#2| |#1| "first" |#2|)) (-15 -3276 (|#1| |#1| |#2|)) (-15 -3276 (|#1| |#1| |#1|)) (-15 -1941 (|#2| |#1| "last")) (-15 -1941 (|#1| |#1| "rest")) (-15 -3543 (|#1| |#1| (-777))) (-15 -1941 (|#2| |#1| "first")) (-15 -3543 (|#2| |#1|)) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#1|)) (-15 -3932 (|#2| |#1| "value" |#2|)) (-15 -1941 (|#2| |#1| "value")) (-15 -1502 (|#1| (-1 |#2| |#2|) |#1|))) (-1158 |#2|) (-1227)) (T -1157))
-NIL
-(-10 -8 (-15 -3414 ((-112) |#1|)) (-15 -3607 ((-112) |#1|)) (-15 -3932 (|#2| |#1| (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570) |#2|)) (-15 -1941 (|#2| |#1| (-570))) (-15 -2147 (|#1| |#1| |#2|)) (-15 -2584 (|#1| |#1| |#2|)) (-15 -2584 (|#1| (-650 |#1|))) (-15 -1941 (|#1| |#1| (-1244 (-570)))) (-15 -3932 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -3932 (|#2| |#1| "last" |#2|)) (-15 -3932 (|#1| |#1| "rest" |#1|)) (-15 -3932 (|#2| |#1| "first" |#2|)) (-15 -3276 (|#1| |#1| |#2|)) (-15 -3276 (|#1| |#1| |#1|)) (-15 -1941 (|#2| |#1| "last")) (-15 -1941 (|#1| |#1| "rest")) (-15 -3543 (|#1| |#1| (-777))) (-15 -1941 (|#2| |#1| "first")) (-15 -3543 (|#2| |#1|)) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#1|)) (-15 -3932 (|#2| |#1| "value" |#2|)) (-15 -1941 (|#2| |#1| "value")) (-15 -1502 (|#1| (-1 |#2| |#2|) |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-2698 ((|#1| $) 66)) (-1602 (($ $) 68)) (-3851 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) 53 (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) 8)) (-2988 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3986 (($ $ $) 57 (|has| $ (-6 -4450)))) (-2363 ((|#1| $ |#1|) 55 (|has| $ (-6 -4450)))) (-2869 ((|#1| $ |#1|) 59 (|has| $ (-6 -4450)))) (-3932 ((|#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)))) (-2162 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4449)))) (-2686 ((|#1| $) 67)) (-1705 (($) 7 T CONST)) (-3555 (($ $) 74) (($ $ (-777)) 72)) (-3579 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4449))) (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3624 ((|#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))))) (-1517 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 88)) (-3414 (((-112) $) 84)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 51)) (-2439 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4291 (($ (-777) |#1|) 109)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 96 (|has| (-570) (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 95 (|has| (-570) (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-3231 (((-112) $ (-777)) 10)) (-2403 (((-650 |#1|) $) 46)) (-2606 (((-112) $) 50)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1769 ((|#1| $) 71) (($ $ (-777)) 69)) (-4290 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-1805 (((-650 (-570)) $) 93)) (-3939 (((-112) (-570) $) 92)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 77) (($ $ (-777)) 75)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-2147 (($ $ |#1|) 97 (|has| $ (-6 -4450)))) (-3607 (((-112) $) 85)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 91)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-2738 (((-570) $ $) 45)) (-4326 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-3817 (((-112) $) 47)) (-4366 (($ $) 63)) (-4063 (($ $) 60 (|has| $ (-6 -4450)))) (-2264 (((-777) $) 64)) (-1839 (($ $) 65)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-1425 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 108)) (-3276 (($ $ $) 62 (|has| $ (-6 -4450))) (($ $ |#1|) 61 (|has| $ (-6 -4450)))) (-2584 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 52)) (-3746 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-3819 (*1 *1 *1) (-4 *1 (-1153))) (-1432 (*1 *1 *1) (-4 *1 (-1153))) (-2182 (*1 *1 *1) (-4 *1 (-1153))) (-4214 (*1 *1 *1) (-4 *1 (-1153))) (-2667 (*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))) (-2647 (*1 *2 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))) (-2628 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-570)) (-5 *2 (-112)))) (-4142 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-777)))) (-4038 (*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-112)))) (-2824 (*1 *1 *1 *2 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-1244 (-570))))) (-4029 (*1 *2 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)))) (-4029 (*1 *2 *3 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-570)) (-5 *3 (-142)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-145)) (-4 *1 (-1153)))) (-3568 (*1 *2 *1 *3) (-12 (-5 *3 (-145)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))) (-3568 (*1 *2 *1 *3) (-12 (-5 *3 (-142)) (-5 *2 (-650 *1)) (-4 *1 (-1153)))) (-1958 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1958 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1688 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1688 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1676 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))) (-1676 (*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142)))) (-1942 (*1 *1 *1 *1) (-4 *1 (-1153))))
+(-13 (-19 (-145)) (-10 -8 (-15 -3819 ($ $)) (-15 -1432 ($ $)) (-15 -2182 ($ $)) (-15 -4214 ($ $)) (-15 -2667 ((-112) $ $)) (-15 -2647 ((-112) $ $)) (-15 -2628 ((-112) $ $ (-570))) (-15 -4142 ((-777) $ $ (-145))) (-15 -4038 ((-112) $ $ (-145))) (-15 -2824 ($ $ (-1244 (-570)) $)) (-15 -4029 ((-570) $ $ (-570))) (-15 -4029 ((-570) (-142) $ (-570))) (-15 -3802 ($ (-145))) (-15 -3568 ((-650 $) $ (-145))) (-15 -3568 ((-650 $) $ (-142))) (-15 -1958 ($ $ (-145))) (-15 -1958 ($ $ (-142))) (-15 -1688 ($ $ (-145))) (-15 -1688 ($ $ (-142))) (-15 -1676 ($ $ (-145))) (-15 -1676 ($ $ (-142))) (-15 -1942 ($ $ $))))
+(((-34) . T) ((-102) -2895 (|has| (-145) (-1109)) (|has| (-145) (-856))) ((-619 (-868)) -2895 (|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) -2895 (|has| (-145) (-1109)) (|has| (-145) (-856))) ((-1227) . T))
+((-4172 (((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-777)) 112)) (-3160 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|) 62) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777)) 61)) (-2600 (((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-777)) 97)) (-3319 (((-777) (-650 |#4|) (-650 |#5|)) 30)) (-1848 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|) 64) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777)) 63) (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777) (-112)) 65)) (-2456 (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112)) 84) (((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112)) 85)) (-1426 (((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) 90)) (-2972 (((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|) 60)) (-3164 (((-777) (-650 |#4|) (-650 |#5|)) 21)))
+(((-1154 |#1| |#2| |#3| |#4| |#5|) (-10 -7 (-15 -3164 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -3319 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2972 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -3160 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777))) (-15 -3160 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777))) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -2456 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -2456 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4172 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-777))) (-15 -1426 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) (-15 -2600 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-777)))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|) (-1118 |#1| |#2| |#3| |#4|)) (T -1154))
+((-2600 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3687 *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)))) (-1426 (*1 *2 *3) (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3687 *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)))) (-4172 (*1 *2 *3 *4 *2 *5 *6) (-12 (-5 *5 (-2 (|:| |done| (-650 *11)) (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3687 *11)))))) (-5 *6 (-777)) (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3687 *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)))) (-2456 (*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)))) (-2456 (*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)))) (-1848 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-1848 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3)))) (-1848 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1154 *7 *8 *9 *3 *4)) (-4 *4 (-1118 *7 *8 *9 *3)))) (-3160 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-3160 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1154 *6 *7 *8 *3 *4)) (-4 *4 (-1118 *6 *7 *8 *3)))) (-2972 (*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)) (|:| -3687 *4)))))) (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))) (-3319 (*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)))) (-3164 (*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 -3164 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -3319 ((-777) (-650 |#4|) (-650 |#5|))) (-15 -2972 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -3160 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777))) (-15 -3160 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777) (-112))) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5| (-777))) (-15 -1848 ((-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) |#4| |#5|)) (-15 -2456 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112))) (-15 -2456 ((-650 |#5|) (-650 |#4|) (-650 |#5|) (-112) (-112) (-112) (-112) (-112))) (-15 -4172 ((-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-650 |#4|) (-650 |#5|) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-2 (|:| |done| (-650 |#5|)) (|:| |todo| (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))))) (-777))) (-15 -1426 ((-1168) (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|)))) (-15 -2600 ((-1282) (-650 (-2 (|:| |val| (-650 |#4|)) (|:| -3687 |#5|))) (-777))))
+((-2560 (((-112) $ $) NIL)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1911 (((-650 $) (-650 |#4|)) 124) (((-650 $) (-650 |#4|) (-112)) 125) (((-650 $) (-650 |#4|) (-112) (-112)) 123) (((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112)) 126)) (-1755 (((-650 |#3|) $) NIL)) (-4092 (((-112) $) NIL)) (-1320 (((-112) $) NIL (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2698 ((|#4| |#4| $) NIL)) (-4310 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| $) 97)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1434 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) 75)) (-3195 (($) NIL T CONST)) (-3230 (((-112) $) 29 (|has| |#1| (-562)))) (-2339 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4337 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2327 (((-112) $) NIL (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2167 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3220 (($ (-650 |#4|)) NIL)) (-3558 (((-3 $ "failed") $) 45)) (-3059 ((|#4| |#4| $) 78)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1742 (($ |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 91 (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2191 ((|#4| |#4| $) NIL)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) NIL)) (-1483 (((-112) |#4| $) NIL)) (-2816 (((-112) |#4| $) NIL)) (-2607 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1328 (((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)) 139)) (-3630 (((-650 |#4|) $) 18 (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3357 ((|#3| $) 38)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#4|) $) 19 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 27 (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1503 (($ (-1 |#4| |#4|) $) 25 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 23)) (-1388 (((-650 |#3|) $) NIL)) (-2387 (((-112) |#3| $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-2274 (((-3 |#4| (-650 $)) |#4| |#4| $) NIL)) (-3693 (((-650 (-2 (|:| |val| |#4|) (|:| -3687 $))) |#4| |#4| $) 117)) (-1770 (((-3 |#4| "failed") $) 42)) (-2490 (((-650 $) |#4| $) 102)) (-3623 (((-3 (-112) (-650 $)) |#4| $) NIL)) (-3548 (((-650 (-2 (|:| |val| (-112)) (|:| -3687 $))) |#4| $) 112) (((-112) |#4| $) 65)) (-3051 (((-650 $) |#4| $) 121) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 122) (((-650 $) |#4| (-650 $)) NIL)) (-4202 (((-650 $) (-650 |#4|) (-112) (-112) (-112)) 134)) (-1633 (($ |#4| $) 88) (($ (-650 |#4|) $) 89) (((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112)) 87)) (-3151 (((-650 |#4|) $) NIL)) (-2898 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1590 ((|#4| |#4| $) NIL)) (-1433 (((-112) $ $) NIL)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2222 ((|#4| |#4| $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-3 |#4| "failed") $) 40)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-4207 (((-3 $ "failed") $ |#4|) 59)) (-3152 (($ $ |#4|) NIL) (((-650 $) |#4| $) 104) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) 99)) (-1627 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 17)) (-2656 (($) 14)) (-3079 (((-777) $) NIL)) (-3587 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) 13)) (-1426 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 22)) (-4138 (($ $ |#3|) 52)) (-2435 (($ $ |#3|) 54)) (-3563 (($ $) NIL)) (-1631 (($ $ |#3|) NIL)) (-3802 (((-868) $) 35) (((-650 |#4|) $) 46)) (-3394 (((-777) $) NIL (|has| |#3| (-373)))) (-3359 (((-112) $ $) NIL)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) NIL) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-2872 (((-650 $) |#4| $) 66) (((-650 $) |#4| (-650 $)) NIL) (((-650 $) (-650 |#4|) $) NIL) (((-650 $) (-650 |#4|) (-650 $)) NIL)) (-4379 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) NIL)) (-2506 (((-112) |#4| $) NIL)) (-3857 (((-112) |#3| $) 74)) (-3025 (((-112) $ $) NIL)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1155 |#1| |#2| |#3| |#4|) (-13 (-1118 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1633 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1911 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1911 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -4202 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1328 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112))))) (-458) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1155))
+((-1633 (*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)))) (-1911 (*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)))) (-1911 (*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)))) (-4202 (*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)))) (-1328 (*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 -1633 ((-650 $) |#4| $ (-112) (-112) (-112) (-112) (-112))) (-15 -1911 ((-650 $) (-650 |#4|) (-112) (-112))) (-15 -1911 ((-650 $) (-650 |#4|) (-112) (-112) (-112) (-112))) (-15 -4202 ((-650 $) (-650 |#4|) (-112) (-112) (-112))) (-15 -1328 ((-2 (|:| |val| (-650 |#4|)) (|:| |towers| (-650 $))) (-650 |#4|) (-112) (-112)))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3356 ((|#1| $) 37)) (-2503 (($ (-650 |#1|)) 45)) (-1932 (((-112) $ (-777)) NIL)) (-3195 (($) NIL T CONST)) (-3536 ((|#1| |#1| $) 40)) (-1552 ((|#1| $) 35)) (-3630 (((-650 |#1|) $) 18 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) 25 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 22)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-2885 ((|#1| $) 38)) (-3502 (($ |#1| $) 41)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1684 ((|#1| $) 36)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 32)) (-2656 (($) 43)) (-2921 (((-777) $) 30)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) 27)) (-3802 (((-868) $) 14 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2603 (($ (-650 |#1|)) NIL)) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 17 (|has| |#1| (-1109)))) (-2570 (((-777) $) 31 (|has| $ (-6 -4452)))))
+(((-1156 |#1|) (-13 (-1130 |#1|) (-10 -8 (-15 -2503 ($ (-650 |#1|))))) (-1227)) (T -1156))
+((-2503 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1156 *3)))))
+(-13 (-1130 |#1|) (-10 -8 (-15 -2503 ($ (-650 |#1|)))))
+((-3935 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) NIL) (($ $ "rest" $) NIL) ((|#2| $ "last" |#2|) NIL) ((|#2| $ (-1244 (-570)) |#2|) 53) ((|#2| $ (-570) |#2|) 50)) (-3242 (((-112) $) 12)) (-1503 (($ (-1 |#2| |#2|) $) 48)) (-3546 ((|#2| $) NIL) (($ $ (-777)) 17)) (-2061 (($ $ |#2|) 49)) (-2568 (((-112) $) 11)) (-1942 ((|#2| $ "value") NIL) ((|#2| $ "first") NIL) (($ $ "rest") NIL) ((|#2| $ "last") NIL) (($ $ (-1244 (-570))) 36) ((|#2| $ (-570)) 26) ((|#2| $ (-570) |#2|) NIL)) (-1319 (($ $ $) 56) (($ $ |#2|) NIL)) (-2585 (($ $ $) 38) (($ |#2| $) NIL) (($ (-650 $)) 45) (($ $ |#2|) NIL)))
+(((-1157 |#1| |#2|) (-10 -8 (-15 -3242 ((-112) |#1|)) (-15 -2568 ((-112) |#1|)) (-15 -3935 (|#2| |#1| (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570))) (-15 -2061 (|#1| |#1| |#2|)) (-15 -2585 (|#1| |#1| |#2|)) (-15 -2585 (|#1| (-650 |#1|))) (-15 -1942 (|#1| |#1| (-1244 (-570)))) (-15 -3935 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -3935 (|#2| |#1| "last" |#2|)) (-15 -3935 (|#1| |#1| "rest" |#1|)) (-15 -3935 (|#2| |#1| "first" |#2|)) (-15 -1319 (|#1| |#1| |#2|)) (-15 -1319 (|#1| |#1| |#1|)) (-15 -1942 (|#2| |#1| "last")) (-15 -1942 (|#1| |#1| "rest")) (-15 -3546 (|#1| |#1| (-777))) (-15 -1942 (|#2| |#1| "first")) (-15 -3546 (|#2| |#1|)) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#1|)) (-15 -3935 (|#2| |#1| "value" |#2|)) (-15 -1942 (|#2| |#1| "value")) (-15 -1503 (|#1| (-1 |#2| |#2|) |#1|))) (-1158 |#2|) (-1227)) (T -1157))
+NIL
+(-10 -8 (-15 -3242 ((-112) |#1|)) (-15 -2568 ((-112) |#1|)) (-15 -3935 (|#2| |#1| (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570) |#2|)) (-15 -1942 (|#2| |#1| (-570))) (-15 -2061 (|#1| |#1| |#2|)) (-15 -2585 (|#1| |#1| |#2|)) (-15 -2585 (|#1| (-650 |#1|))) (-15 -1942 (|#1| |#1| (-1244 (-570)))) (-15 -3935 (|#2| |#1| (-1244 (-570)) |#2|)) (-15 -3935 (|#2| |#1| "last" |#2|)) (-15 -3935 (|#1| |#1| "rest" |#1|)) (-15 -3935 (|#2| |#1| "first" |#2|)) (-15 -1319 (|#1| |#1| |#2|)) (-15 -1319 (|#1| |#1| |#1|)) (-15 -1942 (|#2| |#1| "last")) (-15 -1942 (|#1| |#1| "rest")) (-15 -3546 (|#1| |#1| (-777))) (-15 -1942 (|#2| |#1| "first")) (-15 -3546 (|#2| |#1|)) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#1|)) (-15 -3935 (|#2| |#1| "value" |#2|)) (-15 -1942 (|#2| |#1| "value")) (-15 -1503 (|#1| (-1 |#2| |#2|) |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-2701 ((|#1| $) 66)) (-1603 (($ $) 68)) (-3040 (((-1282) $ (-570) (-570)) 98 (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) 53 (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) 8)) (-1647 ((|#1| $ |#1|) 40 (|has| $ (-6 -4453)))) (-1917 (($ $ $) 57 (|has| $ (-6 -4453)))) (-3671 ((|#1| $ |#1|) 55 (|has| $ (-6 -4453)))) (-1854 ((|#1| $ |#1|) 59 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4453))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4453))) (($ $ "rest" $) 56 (|has| $ (-6 -4453))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 118 (|has| $ (-6 -4453))) ((|#1| $ (-570) |#1|) 87 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 42 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) 103 (|has| $ (-6 -4452)))) (-2688 ((|#1| $) 67)) (-3195 (($) 7 T CONST)) (-3558 (($ $) 74) (($ $ (-777)) 72)) (-3582 (($ $) 100 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ (-1 (-112) |#1|) $) 104 (|has| $ (-6 -4452))) (($ |#1| $) 101 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $) 106 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 105 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 102 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1518 ((|#1| $ (-570) |#1|) 86 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 88)) (-3242 (((-112) $) 84)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 51)) (-2045 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-4294 (($ (-777) |#1|) 109)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 96 (|has| (-570) (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 95 (|has| (-570) (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 112)) (-2193 (((-112) $ (-777)) 10)) (-2404 (((-650 |#1|) $) 46)) (-4244 (((-112) $) 50)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1770 ((|#1| $) 71) (($ $ (-777)) 69)) (-4293 (($ $ $ (-570)) 117) (($ |#1| $ (-570)) 116)) (-2903 (((-650 (-570)) $) 93)) (-1358 (((-112) (-570) $) 92)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 77) (($ $ (-777)) 75)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 107)) (-2061 (($ $ |#1|) 97 (|has| $ (-6 -4453)))) (-2568 (((-112) $) 85)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 94 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 91)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70) (($ $ (-1244 (-570))) 113) ((|#1| $ (-570)) 90) ((|#1| $ (-570) |#1|) 89)) (-3108 (((-570) $ $) 45)) (-4330 (($ $ (-1244 (-570))) 115) (($ $ (-570)) 114)) (-2759 (((-112) $) 47)) (-4332 (($ $) 63)) (-3305 (($ $) 60 (|has| $ (-6 -4453)))) (-3853 (((-777) $) 64)) (-1991 (($ $) 65)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1426 (((-542) $) 99 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 108)) (-1319 (($ $ $) 62 (|has| $ (-6 -4453))) (($ $ |#1|) 61 (|has| $ (-6 -4453)))) (-2585 (($ $ $) 79) (($ |#1| $) 78) (($ (-650 $)) 111) (($ $ |#1|) 110)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 52)) (-3290 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1158 |#1|) (-141) (-1227)) (T -1158))
-((-3607 (*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-3414 (*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
-(-13 (-1265 |t#1|) (-657 |t#1|) (-10 -8 (-15 -3607 ((-112) $)) (-15 -3414 ((-112) $))))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3851 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#2| $ |#1| |#2|) NIL)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 |#2| "failed") |#1| $) NIL)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) NIL)) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) NIL)) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 ((|#1| $) NIL (|has| |#1| (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 ((|#1| $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2911 (((-650 |#1|) $) NIL)) (-3245 (((-112) |#1| $) NIL)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1805 (((-650 |#1|) $) NIL)) (-3939 (((-112) |#1| $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3543 ((|#2| $) NIL (|has| |#1| (-856)))) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2568 (*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))) (-3242 (*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(-13 (-1265 |t#1|) (-657 |t#1|) (-10 -8 (-15 -2568 ((-112) $)) (-15 -3242 ((-112) $))))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3040 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#2| $ |#1| |#2|) NIL)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 |#2| "failed") |#1| $) NIL)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) NIL)) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) NIL)) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 ((|#1| $) NIL (|has| |#1| (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 ((|#1| $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2914 (((-650 |#1|) $) NIL)) (-2343 (((-112) |#1| $) NIL)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2903 (((-650 |#1|) $) NIL)) (-1358 (((-112) |#1| $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3546 ((|#2| $) NIL (|has| |#1| (-856)))) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-1159 |#1| |#2| |#3|) (-1203 |#1| |#2|) (-1109) (-1109) |#2|) (T -1159))
NIL
(-1203 |#1| |#2|)
-((-2558 (((-112) $ $) NIL)) (-3272 (((-697 (-1144)) $) 27)) (-3770 (((-1144) $) 15)) (-1682 (((-1144) $) 17)) (-1988 (((-1168) $) NIL)) (-1583 (((-512) $) 13)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 37) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1160) (-13 (-1092) (-10 -8 (-15 -1583 ((-512) $)) (-15 -1682 ((-1144) $)) (-15 -3272 ((-697 (-1144)) $)) (-15 -3770 ((-1144) $))))) (T -1160))
-((-1583 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1160)))) (-1682 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))) (-3272 (*1 *2 *1) (-12 (-5 *2 (-697 (-1144))) (-5 *1 (-1160)))) (-3770 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
-(-13 (-1092) (-10 -8 (-15 -1583 ((-512) $)) (-15 -1682 ((-1144) $)) (-15 -3272 ((-697 (-1144)) $)) (-15 -3770 ((-1144) $))))
-((-2558 (((-112) $ $) 7)) (-2619 (((-3 $ "failed") $) 14)) (-1988 (((-1168) $) 10)) (-2438 (($) 15 T CONST)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-3022 (((-112) $ $) 6)))
+((-2560 (((-112) $ $) NIL)) (-4405 (((-697 (-1144)) $) 27)) (-3773 (((-1144) $) 15)) (-4131 (((-1144) $) 17)) (-3989 (((-1168) $) NIL)) (-4381 (((-512) $) 13)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 37) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1160) (-13 (-1092) (-10 -8 (-15 -4381 ((-512) $)) (-15 -4131 ((-1144) $)) (-15 -4405 ((-697 (-1144)) $)) (-15 -3773 ((-1144) $))))) (T -1160))
+((-4381 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1160)))) (-4131 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))) (-4405 (*1 *2 *1) (-12 (-5 *2 (-697 (-1144))) (-5 *1 (-1160)))) (-3773 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
+(-13 (-1092) (-10 -8 (-15 -4381 ((-512) $)) (-15 -4131 ((-1144) $)) (-15 -4405 ((-697 (-1144)) $)) (-15 -3773 ((-1144) $))))
+((-2560 (((-112) $ $) 7)) (-4369 (((-3 $ "failed") $) 14)) (-3989 (((-1168) $) 10)) (-2439 (($) 15 T CONST)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-3025 (((-112) $ $) 6)))
(((-1161) (-141)) (T -1161))
-((-2438 (*1 *1) (-4 *1 (-1161))) (-2619 (*1 *1 *1) (|partial| -4 *1 (-1161))))
-(-13 (-1109) (-10 -8 (-15 -2438 ($) -3725) (-15 -2619 ((-3 $ "failed") $))))
+((-2439 (*1 *1) (-4 *1 (-1161))) (-4369 (*1 *1 *1) (|partial| -4 *1 (-1161))))
+(-13 (-1109) (-10 -8 (-15 -2439 ($) -3728) (-15 -4369 ((-3 $ "failed") $))))
(((-102) . T) ((-619 (-868)) . T) ((-1109) . T))
-((-3845 (((-1166 |#1|) (-1166 |#1|)) 17)) (-3731 (((-1166 |#1|) (-1166 |#1|)) 13)) (-4294 (((-1166 |#1|) (-1166 |#1|) (-570) (-570)) 20)) (-1621 (((-1166 |#1|) (-1166 |#1|)) 15)))
-(((-1162 |#1|) (-10 -7 (-15 -3731 ((-1166 |#1|) (-1166 |#1|))) (-15 -1621 ((-1166 |#1|) (-1166 |#1|))) (-15 -3845 ((-1166 |#1|) (-1166 |#1|))) (-15 -4294 ((-1166 |#1|) (-1166 |#1|) (-570) (-570)))) (-13 (-562) (-148))) (T -1162))
-((-4294 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1162 *4)))) (-3845 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))) (-1621 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))) (-3731 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))))
-(-10 -7 (-15 -3731 ((-1166 |#1|) (-1166 |#1|))) (-15 -1621 ((-1166 |#1|) (-1166 |#1|))) (-15 -3845 ((-1166 |#1|) (-1166 |#1|))) (-15 -4294 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))))
-((-2584 (((-1166 |#1|) (-1166 (-1166 |#1|))) 15)))
-(((-1163 |#1|) (-10 -7 (-15 -2584 ((-1166 |#1|) (-1166 (-1166 |#1|))))) (-1227)) (T -1163))
-((-2584 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1163 *4)) (-4 *4 (-1227)))))
-(-10 -7 (-15 -2584 ((-1166 |#1|) (-1166 (-1166 |#1|)))))
-((-3482 (((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)) 25)) (-3624 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)) 26)) (-1356 (((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|)) 16)))
-(((-1164 |#1| |#2|) (-10 -7 (-15 -1356 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -3482 ((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))) (-15 -3624 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)))) (-1227) (-1227)) (T -1164))
-((-3624 (*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)))) (-3482 (*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)))) (-1356 (*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 -1356 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -3482 ((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))) (-15 -3624 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))))
-((-1356 (((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|)) 21)))
-(((-1165 |#1| |#2| |#3|) (-10 -7 (-15 -1356 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|)))) (-1227) (-1227) (-1227)) (T -1165))
-((-1356 (*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 -1356 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-2698 ((|#1| $) NIL)) (-1602 (($ $) 67)) (-3851 (((-1282) $ (-570) (-570)) 99 (|has| $ (-6 -4450)))) (-4014 (($ $ (-570)) 128 (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3733 (((-868) $) 56 (|has| |#1| (-1109)))) (-2459 (((-112)) 55 (|has| |#1| (-1109)))) (-2988 ((|#1| $ |#1|) NIL (|has| $ (-6 -4450)))) (-3986 (($ $ $) 115 (|has| $ (-6 -4450))) (($ $ (-570) $) 141)) (-2363 ((|#1| $ |#1|) 125 (|has| $ (-6 -4450)))) (-2869 ((|#1| $ |#1|) 120 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ "first" |#1|) 122 (|has| $ (-6 -4450))) (($ $ "rest" $) 124 (|has| $ (-6 -4450))) ((|#1| $ "last" |#1|) 127 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 112 (|has| $ (-6 -4450))) ((|#1| $ (-570) |#1|) 77 (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) 80)) (-2686 ((|#1| $) NIL)) (-1705 (($) NIL T CONST)) (-1555 (($ $) 14)) (-3555 (($ $) 40) (($ $ (-777)) 111)) (-2920 (((-112) (-650 |#1|) $) 134 (|has| |#1| (-1109)))) (-1513 (($ (-650 |#1|)) 130)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) 79)) (-3624 ((|#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))))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-3414 (((-112) $) NIL)) (-3627 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-1943 (((-1282) (-570) $) 140 (|has| |#1| (-1109)))) (-3367 (((-777) $) 137)) (-3880 (((-650 $) $) NIL)) (-2439 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4291 (($ (-777) |#1|) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 95 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 85) (($ (-1 |#1| |#1| |#1|) $ $) 89)) (-3231 (((-112) $ (-777)) NIL)) (-2403 (((-650 |#1|) $) NIL)) (-2606 (((-112) $) NIL)) (-2070 (($ $) 113)) (-2482 (((-112) $) 13)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1769 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-4290 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) 96)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1347 (($ (-1 |#1|)) 143) (($ (-1 |#1| |#1|) |#1|) 144)) (-3826 ((|#1| $) 10)) (-3543 ((|#1| $) 39) (($ $ (-777)) 65)) (-4068 (((-2 (|:| |cycle?| (-112)) (|:| -4309 (-777)) (|:| |period| (-777))) (-777) $) 34)) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1404 (($ (-1 (-112) |#1|) $) 145)) (-1417 (($ (-1 (-112) |#1|) $) 146)) (-2147 (($ $ |#1|) 90 (|has| $ (-6 -4450)))) (-2431 (($ $ (-570)) 45)) (-3607 (((-112) $) 94)) (-1637 (((-112) $) 12)) (-4230 (((-112) $) 136)) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 30)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) 20)) (-2380 (($) 60)) (-1941 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) 75) ((|#1| $ (-570) |#1|) NIL)) (-2738 (((-570) $ $) 64)) (-4326 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-2177 (($ (-1 $)) 63)) (-3817 (((-112) $) 91)) (-4366 (($ $) 92)) (-4063 (($ $) 116 (|has| $ (-6 -4450)))) (-2264 (((-777) $) NIL)) (-1839 (($ $) NIL)) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) 59)) (-1425 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 73)) (-3758 (($ |#1| $) 114)) (-3276 (($ $ $) 118 (|has| $ (-6 -4450))) (($ $ |#1|) 119 (|has| $ (-6 -4450)))) (-2584 (($ $ $) 101) (($ |#1| $) 61) (($ (-650 $)) 106) (($ $ |#1|) 100)) (-2853 (($ $) 66)) (-3799 (($ (-650 |#1|)) 129) (((-868) $) 57 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) NIL)) (-3746 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 132 (|has| |#1| (-1109)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1166 |#1|) (-13 (-680 |#1|) (-622 (-650 |#1|)) (-10 -8 (-6 -4450) (-15 -1513 ($ (-650 |#1|))) (IF (|has| |#1| (-1109)) (-15 -2920 ((-112) (-650 |#1|) $)) |%noBranch|) (-15 -4068 ((-2 (|:| |cycle?| (-112)) (|:| -4309 (-777)) (|:| |period| (-777))) (-777) $)) (-15 -2177 ($ (-1 $))) (-15 -3758 ($ |#1| $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -1943 ((-1282) (-570) $)) (-15 -3733 ((-868) $)) (-15 -2459 ((-112)))) |%noBranch|) (-15 -3986 ($ $ (-570) $)) (-15 -1347 ($ (-1 |#1|))) (-15 -1347 ($ (-1 |#1| |#1|) |#1|)) (-15 -1404 ($ (-1 (-112) |#1|) $)) (-15 -1417 ($ (-1 (-112) |#1|) $)))) (-1227)) (T -1166))
-((-1513 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-2920 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112)) (-5 *1 (-1166 *4)))) (-4068 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -4309 (-777)) (|:| |period| (-777)))) (-5 *1 (-1166 *4)) (-4 *4 (-1227)) (-5 *3 (-777)))) (-2177 (*1 *1 *2) (-12 (-5 *2 (-1 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1227)))) (-3758 (*1 *1 *2 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1227)))) (-1943 (*1 *2 *3 *1) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1166 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)))) (-3733 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1166 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)))) (-2459 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)))) (-3986 (*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)))) (-1404 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-1417 (*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 -1513 ($ (-650 |#1|))) (IF (|has| |#1| (-1109)) (-15 -2920 ((-112) (-650 |#1|) $)) |%noBranch|) (-15 -4068 ((-2 (|:| |cycle?| (-112)) (|:| -4309 (-777)) (|:| |period| (-777))) (-777) $)) (-15 -2177 ($ (-1 $))) (-15 -3758 ($ |#1| $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -1943 ((-1282) (-570) $)) (-15 -3733 ((-868) $)) (-15 -2459 ((-112)))) |%noBranch|) (-15 -3986 ($ $ (-570) $)) (-15 -1347 ($ (-1 |#1|))) (-15 -1347 ($ (-1 |#1| |#1|) |#1|)) (-15 -1404 ($ (-1 (-112) |#1|) $)) (-15 -1417 ($ (-1 (-112) |#1|) $))))
-((-2558 (((-112) $ $) 19)) (-2010 (($ $) 121)) (-2160 (($ $) 122)) (-3989 (($ $ (-145)) 109) (($ $ (-142)) 108)) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-2646 (((-112) $ $) 119)) (-2627 (((-112) $ $ (-570)) 118)) (-3428 (($ (-570)) 128)) (-3774 (((-650 $) $ (-145)) 111) (((-650 $) $ (-142)) 110)) (-4374 (((-112) (-1 (-112) (-145) (-145)) $) 99) (((-112) $) 93 (|has| (-145) (-856)))) (-4004 (($ (-1 (-112) (-145) (-145)) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| (-145) (-856)) (|has| $ (-6 -4450))))) (-3393 (($ (-1 (-112) (-145) (-145)) $) 100) (($ $) 94 (|has| (-145) (-856)))) (-4302 (((-112) $ (-777)) 8)) (-3932 (((-145) $ (-570) (-145)) 53 (|has| $ (-6 -4450))) (((-145) $ (-1244 (-570)) (-145)) 59 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) (-145)) $) 76 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-1675 (($ $ (-145)) 105) (($ $ (-142)) 104)) (-2844 (($ $) 91 (|has| $ (-6 -4450)))) (-2377 (($ $) 101)) (-1483 (($ $ (-1244 (-570)) $) 115)) (-3579 (($ $) 79 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ (-145) $) 78 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-145)) $) 75 (|has| $ (-6 -4449)))) (-3624 (((-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)))) (-1517 (((-145) $ (-570) (-145)) 54 (|has| $ (-6 -4450)))) (-3820 (((-145) $ (-570)) 52)) (-2666 (((-112) $ $) 120)) (-4027 (((-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)) (-3627 (((-650 (-145)) $) 31 (|has| $ (-6 -4449)))) (-4291 (($ (-777) (-145)) 70)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-3466 (($ $ $) 88 (|has| (-145) (-856)))) (-2024 (($ (-1 (-112) (-145) (-145)) $ $) 102) (($ $ $) 95 (|has| (-145) (-856)))) (-2752 (((-650 (-145)) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) (-145) $) 28 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-2800 (($ $ $) 87 (|has| (-145) (-856)))) (-4035 (((-112) $ $ (-145)) 116)) (-4139 (((-777) $ $ (-145)) 117)) (-1502 (($ (-1 (-145) (-145)) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-145) (-145)) $) 36) (($ (-1 (-145) (-145) (-145)) $ $) 65)) (-2507 (($ $) 123)) (-1971 (($ $) 124)) (-3231 (((-112) $ (-777)) 10)) (-1687 (($ $ (-145)) 107) (($ $ (-142)) 106)) (-1988 (((-1168) $) 22)) (-4290 (($ (-145) $ (-570)) 61) (($ $ $ (-570)) 60)) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-3577 (((-1129) $) 21)) (-3543 (((-145) $) 43 (|has| (-570) (-856)))) (-1790 (((-3 (-145) "failed") (-1 (-112) (-145)) $) 72)) (-2147 (($ $ (-145)) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) (-145)) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) (-145) $) 46 (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3700 (((-650 (-145)) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 (((-145) $ (-570) (-145)) 51) (((-145) $ (-570)) 50) (($ $ (-1244 (-570))) 64) (($ $ $) 103)) (-4326 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3584 (((-777) (-1 (-112) (-145)) $) 32 (|has| $ (-6 -4449))) (((-777) (-145) $) 29 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4449))))) (-2906 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 80 (|has| (-145) (-620 (-542))))) (-3811 (($ (-650 (-145))) 71)) (-2584 (($ $ (-145)) 69) (($ (-145) $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3799 (($ (-145)) 112) (((-868) $) 18)) (-2335 (((-112) $ $) 23)) (-4371 (((-112) (-1 (-112) (-145)) $) 34 (|has| $ (-6 -4449)))) (-2831 (((-1168) $) 132) (((-1168) $ (-112)) 131) (((-1282) (-828) $) 130) (((-1282) (-828) $ (-112)) 129)) (-3072 (((-112) $ $) 85 (|has| (-145) (-856)))) (-3052 (((-112) $ $) 84 (|has| (-145) (-856)))) (-3022 (((-112) $ $) 20)) (-3062 (((-112) $ $) 86 (|has| (-145) (-856)))) (-3042 (((-112) $ $) 83 (|has| (-145) (-856)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2980 (((-1166 |#1|) (-1166 |#1|)) 17)) (-4342 (((-1166 |#1|) (-1166 |#1|)) 13)) (-1846 (((-1166 |#1|) (-1166 |#1|) (-570) (-570)) 20)) (-1702 (((-1166 |#1|) (-1166 |#1|)) 15)))
+(((-1162 |#1|) (-10 -7 (-15 -4342 ((-1166 |#1|) (-1166 |#1|))) (-15 -1702 ((-1166 |#1|) (-1166 |#1|))) (-15 -2980 ((-1166 |#1|) (-1166 |#1|))) (-15 -1846 ((-1166 |#1|) (-1166 |#1|) (-570) (-570)))) (-13 (-562) (-148))) (T -1162))
+((-1846 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1162 *4)))) (-2980 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))) (-1702 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))) (-4342 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1162 *3)))))
+(-10 -7 (-15 -4342 ((-1166 |#1|) (-1166 |#1|))) (-15 -1702 ((-1166 |#1|) (-1166 |#1|))) (-15 -2980 ((-1166 |#1|) (-1166 |#1|))) (-15 -1846 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))))
+((-2585 (((-1166 |#1|) (-1166 (-1166 |#1|))) 15)))
+(((-1163 |#1|) (-10 -7 (-15 -2585 ((-1166 |#1|) (-1166 (-1166 |#1|))))) (-1227)) (T -1163))
+((-2585 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1163 *4)) (-4 *4 (-1227)))))
+(-10 -7 (-15 -2585 ((-1166 |#1|) (-1166 (-1166 |#1|)))))
+((-2677 (((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)) 25)) (-3627 ((|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)) 26)) (-1357 (((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|)) 16)))
+(((-1164 |#1| |#2|) (-10 -7 (-15 -1357 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -2677 ((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))) (-15 -3627 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|)))) (-1227) (-1227)) (T -1164))
+((-3627 (*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)))) (-2677 (*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)))) (-1357 (*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 -1357 ((-1166 |#2|) (-1 |#2| |#1|) (-1166 |#1|))) (-15 -2677 ((-1166 |#2|) |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))) (-15 -3627 (|#2| |#2| (-1 |#2| |#1| |#2|) (-1166 |#1|))))
+((-1357 (((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|)) 21)))
+(((-1165 |#1| |#2| |#3|) (-10 -7 (-15 -1357 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|)))) (-1227) (-1227) (-1227)) (T -1165))
+((-1357 (*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 -1357 ((-1166 |#3|) (-1 |#3| |#1| |#2|) (-1166 |#1|) (-1166 |#2|))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) NIL)) (-2701 ((|#1| $) NIL)) (-1603 (($ $) 67)) (-3040 (((-1282) $ (-570) (-570)) 99 (|has| $ (-6 -4453)))) (-4025 (($ $ (-570)) 128 (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-4360 (((-868) $) 56 (|has| |#1| (-1109)))) (-2264 (((-112)) 55 (|has| |#1| (-1109)))) (-1647 ((|#1| $ |#1|) NIL (|has| $ (-6 -4453)))) (-1917 (($ $ $) 115 (|has| $ (-6 -4453))) (($ $ (-570) $) 141)) (-3671 ((|#1| $ |#1|) 125 (|has| $ (-6 -4453)))) (-1854 ((|#1| $ |#1|) 120 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ "first" |#1|) 122 (|has| $ (-6 -4453))) (($ $ "rest" $) 124 (|has| $ (-6 -4453))) ((|#1| $ "last" |#1|) 127 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 112 (|has| $ (-6 -4453))) ((|#1| $ (-570) |#1|) 77 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) 80)) (-2688 ((|#1| $) NIL)) (-3195 (($) NIL T CONST)) (-2311 (($ $) 14)) (-3558 (($ $) 40) (($ $ (-777)) 111)) (-2219 (((-112) (-650 |#1|) $) 134 (|has| |#1| (-1109)))) (-1897 (($ (-650 |#1|)) 130)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) 79)) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-3242 (((-112) $) NIL)) (-3630 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-1940 (((-1282) (-570) $) 140 (|has| |#1| (-1109)))) (-4062 (((-777) $) 137)) (-2119 (((-650 $) $) NIL)) (-2045 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4294 (($ (-777) |#1|) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 95 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 85) (($ (-1 |#1| |#1| |#1|) $ $) 89)) (-2193 (((-112) $ (-777)) NIL)) (-2404 (((-650 |#1|) $) NIL)) (-4244 (((-112) $) NIL)) (-3664 (($ $) 113)) (-2497 (((-112) $) 13)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1770 ((|#1| $) NIL) (($ $ (-777)) NIL)) (-4293 (($ $ $ (-570)) NIL) (($ |#1| $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) 96)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1349 (($ (-1 |#1|)) 143) (($ (-1 |#1| |#1|) |#1|) 144)) (-2825 ((|#1| $) 10)) (-3546 ((|#1| $) 39) (($ $ (-777)) 65)) (-3360 (((-2 (|:| |cycle?| (-112)) (|:| -4312 (-777)) (|:| |period| (-777))) (-777) $) 34)) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-1406 (($ (-1 (-112) |#1|) $) 145)) (-1418 (($ (-1 (-112) |#1|) $) 146)) (-2061 (($ $ |#1|) 90 (|has| $ (-6 -4453)))) (-3152 (($ $ (-570)) 45)) (-2568 (((-112) $) 94)) (-3727 (((-112) $) 12)) (-2498 (((-112) $) 136)) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 30)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) 20)) (-2656 (($) 60)) (-1942 ((|#1| $ "value") NIL) ((|#1| $ "first") NIL) (($ $ "rest") NIL) ((|#1| $ "last") NIL) (($ $ (-1244 (-570))) NIL) ((|#1| $ (-570)) 75) ((|#1| $ (-570) |#1|) NIL)) (-3108 (((-570) $ $) 64)) (-4330 (($ $ (-1244 (-570))) NIL) (($ $ (-570)) NIL)) (-2363 (($ (-1 $)) 63)) (-2759 (((-112) $) 91)) (-4332 (($ $) 92)) (-3305 (($ $) 116 (|has| $ (-6 -4453)))) (-3853 (((-777) $) NIL)) (-1991 (($ $) NIL)) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) 59)) (-1426 (((-542) $) NIL (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 73)) (-3761 (($ |#1| $) 114)) (-1319 (($ $ $) 118 (|has| $ (-6 -4453))) (($ $ |#1|) 119 (|has| $ (-6 -4453)))) (-2585 (($ $ $) 101) (($ |#1| $) 61) (($ (-650 $)) 106) (($ $ |#1|) 100)) (-1682 (($ $) 66)) (-3802 (($ (-650 |#1|)) 129) (((-868) $) 57 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) NIL)) (-3290 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 132 (|has| |#1| (-1109)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1166 |#1|) (-13 (-680 |#1|) (-622 (-650 |#1|)) (-10 -8 (-6 -4453) (-15 -1897 ($ (-650 |#1|))) (IF (|has| |#1| (-1109)) (-15 -2219 ((-112) (-650 |#1|) $)) |%noBranch|) (-15 -3360 ((-2 (|:| |cycle?| (-112)) (|:| -4312 (-777)) (|:| |period| (-777))) (-777) $)) (-15 -2363 ($ (-1 $))) (-15 -3761 ($ |#1| $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -1940 ((-1282) (-570) $)) (-15 -4360 ((-868) $)) (-15 -2264 ((-112)))) |%noBranch|) (-15 -1917 ($ $ (-570) $)) (-15 -1349 ($ (-1 |#1|))) (-15 -1349 ($ (-1 |#1| |#1|) |#1|)) (-15 -1406 ($ (-1 (-112) |#1|) $)) (-15 -1418 ($ (-1 (-112) |#1|) $)))) (-1227)) (T -1166))
+((-1897 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-2219 (*1 *2 *3 *1) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112)) (-5 *1 (-1166 *4)))) (-3360 (*1 *2 *3 *1) (-12 (-5 *2 (-2 (|:| |cycle?| (-112)) (|:| -4312 (-777)) (|:| |period| (-777)))) (-5 *1 (-1166 *4)) (-4 *4 (-1227)) (-5 *3 (-777)))) (-2363 (*1 *1 *2) (-12 (-5 *2 (-1 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1227)))) (-3761 (*1 *1 *2 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1227)))) (-1940 (*1 *2 *3 *1) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1166 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)))) (-4360 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1166 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)))) (-2264 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1109)) (-4 *3 (-1227)))) (-1917 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1166 *3)) (-4 *3 (-1227)))) (-1349 (*1 *1 *2) (-12 (-5 *2 (-1 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-1349 (*1 *1 *2 *3) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-1406 (*1 *1 *2 *1) (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))) (-1418 (*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 -4453) (-15 -1897 ($ (-650 |#1|))) (IF (|has| |#1| (-1109)) (-15 -2219 ((-112) (-650 |#1|) $)) |%noBranch|) (-15 -3360 ((-2 (|:| |cycle?| (-112)) (|:| -4312 (-777)) (|:| |period| (-777))) (-777) $)) (-15 -2363 ($ (-1 $))) (-15 -3761 ($ |#1| $)) (IF (|has| |#1| (-1109)) (PROGN (-15 -1940 ((-1282) (-570) $)) (-15 -4360 ((-868) $)) (-15 -2264 ((-112)))) |%noBranch|) (-15 -1917 ($ $ (-570) $)) (-15 -1349 ($ (-1 |#1|))) (-15 -1349 ($ (-1 |#1| |#1|) |#1|)) (-15 -1406 ($ (-1 (-112) |#1|) $)) (-15 -1418 ($ (-1 (-112) |#1|) $))))
+((-2560 (((-112) $ $) 19)) (-4214 (($ $) 121)) (-2182 (($ $) 122)) (-1958 (($ $ (-145)) 109) (($ $ (-142)) 108)) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-2647 (((-112) $ $) 119)) (-2628 (((-112) $ $ (-570)) 118)) (-3431 (($ (-570)) 128)) (-3568 (((-650 $) $ (-145)) 111) (((-650 $) $ (-142)) 110)) (-4414 (((-112) (-1 (-112) (-145) (-145)) $) 99) (((-112) $) 93 (|has| (-145) (-856)))) (-3936 (($ (-1 (-112) (-145) (-145)) $) 90 (|has| $ (-6 -4453))) (($ $) 89 (-12 (|has| (-145) (-856)) (|has| $ (-6 -4453))))) (-3396 (($ (-1 (-112) (-145) (-145)) $) 100) (($ $) 94 (|has| (-145) (-856)))) (-1932 (((-112) $ (-777)) 8)) (-3935 (((-145) $ (-570) (-145)) 53 (|has| $ (-6 -4453))) (((-145) $ (-1244 (-570)) (-145)) 59 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) (-145)) $) 76 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-1676 (($ $ (-145)) 105) (($ $ (-142)) 104)) (-1582 (($ $) 91 (|has| $ (-6 -4453)))) (-2380 (($ $) 101)) (-2824 (($ $ (-1244 (-570)) $) 115)) (-3582 (($ $) 79 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ (-145) $) 78 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) (-145)) $) 75 (|has| $ (-6 -4452)))) (-3627 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) 77 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) 74 (|has| $ (-6 -4452))) (((-145) (-1 (-145) (-145) (-145)) $) 73 (|has| $ (-6 -4452)))) (-1518 (((-145) $ (-570) (-145)) 54 (|has| $ (-6 -4453)))) (-3824 (((-145) $ (-570)) 52)) (-2667 (((-112) $ $) 120)) (-4029 (((-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)) (-3630 (((-650 (-145)) $) 31 (|has| $ (-6 -4452)))) (-4294 (($ (-777) (-145)) 70)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-3469 (($ $ $) 88 (|has| (-145) (-856)))) (-3183 (($ (-1 (-112) (-145) (-145)) $ $) 102) (($ $ $) 95 (|has| (-145) (-856)))) (-2052 (((-650 (-145)) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) (-145) $) 28 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-2472 (($ $ $) 87 (|has| (-145) (-856)))) (-4038 (((-112) $ $ (-145)) 116)) (-4142 (((-777) $ $ (-145)) 117)) (-1503 (($ (-1 (-145) (-145)) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-145) (-145)) $) 36) (($ (-1 (-145) (-145) (-145)) $ $) 65)) (-1432 (($ $) 123)) (-3819 (($ $) 124)) (-2193 (((-112) $ (-777)) 10)) (-1688 (($ $ (-145)) 107) (($ $ (-142)) 106)) (-3989 (((-1168) $) 22)) (-4293 (($ (-145) $ (-570)) 61) (($ $ $ (-570)) 60)) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-3580 (((-1129) $) 21)) (-3546 (((-145) $) 43 (|has| (-570) (-856)))) (-2770 (((-3 (-145) "failed") (-1 (-112) (-145)) $) 72)) (-2061 (($ $ (-145)) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) (-145)) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) (-145) $) 46 (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-4049 (((-650 (-145)) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 (((-145) $ (-570) (-145)) 51) (((-145) $ (-570)) 50) (($ $ (-1244 (-570))) 64) (($ $ $) 103)) (-4330 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3587 (((-777) (-1 (-112) (-145)) $) 32 (|has| $ (-6 -4452))) (((-777) (-145) $) 29 (-12 (|has| (-145) (-1109)) (|has| $ (-6 -4452))))) (-2087 (($ $ $ (-570)) 92 (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 80 (|has| (-145) (-620 (-542))))) (-3814 (($ (-650 (-145))) 71)) (-2585 (($ $ (-145)) 69) (($ (-145) $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3802 (($ (-145)) 112) (((-868) $) 18)) (-3359 (((-112) $ $) 23)) (-4379 (((-112) (-1 (-112) (-145)) $) 34 (|has| $ (-6 -4452)))) (-1423 (((-1168) $) 132) (((-1168) $ (-112)) 131) (((-1282) (-828) $) 130) (((-1282) (-828) $ (-112)) 129)) (-3075 (((-112) $ $) 85 (|has| (-145) (-856)))) (-3055 (((-112) $ $) 84 (|has| (-145) (-856)))) (-3025 (((-112) $ $) 20)) (-3065 (((-112) $ $) 86 (|has| (-145) (-856)))) (-3045 (((-112) $ $) 83 (|has| (-145) (-856)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1167) (-141)) (T -1167))
-((-3428 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1167)))))
-(-13 (-1153) (-1109) (-834) (-10 -8 (-15 -3428 ($ (-570)))))
+((-3431 (*1 *1 *2) (-12 (-5 *2 (-570)) (-4 *1 (-1167)))))
+(-13 (-1153) (-1109) (-834) (-10 -8 (-15 -3431 ($ (-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) ((-1227) . T))
-((-2558 (((-112) $ $) NIL)) (-2010 (($ $) NIL)) (-2160 (($ $) NIL)) (-3989 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-2646 (((-112) $ $) NIL)) (-2627 (((-112) $ $ (-570)) NIL)) (-3428 (($ (-570)) 8)) (-3774 (((-650 $) $ (-145)) NIL) (((-650 $) $ (-142)) NIL)) (-4374 (((-112) (-1 (-112) (-145) (-145)) $) NIL) (((-112) $) NIL (|has| (-145) (-856)))) (-4004 (($ (-1 (-112) (-145) (-145)) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| (-145) (-856))))) (-3393 (($ (-1 (-112) (-145) (-145)) $) NIL) (($ $) NIL (|has| (-145) (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4450))) (((-145) $ (-1244 (-570)) (-145)) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-1675 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-1483 (($ $ (-1244 (-570)) $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-1741 (($ (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109)))) (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-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)))) (-1517 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4450)))) (-3820 (((-145) $ (-570)) NIL)) (-2666 (((-112) $ $) NIL)) (-4027 (((-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)) (-3627 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-4291 (($ (-777) (-145)) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| (-145) (-856)))) (-2024 (($ (-1 (-112) (-145) (-145)) $ $) NIL) (($ $ $) NIL (|has| (-145) (-856)))) (-2752 (((-650 (-145)) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-1460 (((-570) $) NIL (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| (-145) (-856)))) (-4035 (((-112) $ $ (-145)) NIL)) (-4139 (((-777) $ $ (-145)) NIL)) (-1502 (($ (-1 (-145) (-145)) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-145) (-145)) $) NIL) (($ (-1 (-145) (-145) (-145)) $ $) NIL)) (-2507 (($ $) NIL)) (-1971 (($ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1687 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-1988 (((-1168) $) NIL)) (-4290 (($ (-145) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-145) $) NIL (|has| (-570) (-856)))) (-1790 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-2147 (($ $ (-145)) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-3700 (((-650 (-145)) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (($ $ $) NIL)) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3584 (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449))) (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-145) (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-145) (-620 (-542))))) (-3811 (($ (-650 (-145))) NIL)) (-2584 (($ $ (-145)) NIL) (($ (-145) $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3799 (($ (-145)) NIL) (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-4371 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4449)))) (-2831 (((-1168) $) 19) (((-1168) $ (-112)) 21) (((-1282) (-828) $) 22) (((-1282) (-828) $ (-112)) 23)) (-3072 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3052 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3042 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-4214 (($ $) NIL)) (-2182 (($ $) NIL)) (-1958 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-2647 (((-112) $ $) NIL)) (-2628 (((-112) $ $ (-570)) NIL)) (-3431 (($ (-570)) 8)) (-3568 (((-650 $) $ (-145)) NIL) (((-650 $) $ (-142)) NIL)) (-4414 (((-112) (-1 (-112) (-145) (-145)) $) NIL) (((-112) $) NIL (|has| (-145) (-856)))) (-3936 (($ (-1 (-112) (-145) (-145)) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| (-145) (-856))))) (-3396 (($ (-1 (-112) (-145) (-145)) $) NIL) (($ $) NIL (|has| (-145) (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4453))) (((-145) $ (-1244 (-570)) (-145)) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1676 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-2824 (($ $ (-1244 (-570)) $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-1742 (($ (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109)))) (($ (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-145) (-1 (-145) (-145) (-145)) $ (-145) (-145)) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109)))) (((-145) (-1 (-145) (-145) (-145)) $ (-145)) NIL (|has| $ (-6 -4452))) (((-145) (-1 (-145) (-145) (-145)) $) NIL (|has| $ (-6 -4452)))) (-1518 (((-145) $ (-570) (-145)) NIL (|has| $ (-6 -4453)))) (-3824 (((-145) $ (-570)) NIL)) (-2667 (((-112) $ $) NIL)) (-4029 (((-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)) (-3630 (((-650 (-145)) $) NIL (|has| $ (-6 -4452)))) (-4294 (($ (-777) (-145)) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| (-145) (-856)))) (-3183 (($ (-1 (-112) (-145) (-145)) $ $) NIL) (($ $ $) NIL (|has| (-145) (-856)))) (-2052 (((-650 (-145)) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-2602 (((-570) $) NIL (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| (-145) (-856)))) (-4038 (((-112) $ $ (-145)) NIL)) (-4142 (((-777) $ $ (-145)) NIL)) (-1503 (($ (-1 (-145) (-145)) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-145) (-145)) $) NIL) (($ (-1 (-145) (-145) (-145)) $ $) NIL)) (-1432 (($ $) NIL)) (-3819 (($ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-1688 (($ $ (-145)) NIL) (($ $ (-142)) NIL)) (-3989 (((-1168) $) NIL)) (-4293 (($ (-145) $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-145) $) NIL (|has| (-570) (-856)))) (-2770 (((-3 (-145) "failed") (-1 (-112) (-145)) $) NIL)) (-2061 (($ $ (-145)) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-4049 (((-650 (-145)) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 (((-145) $ (-570) (-145)) NIL) (((-145) $ (-570)) NIL) (($ $ (-1244 (-570))) NIL) (($ $ $) NIL)) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3587 (((-777) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452))) (((-777) (-145) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-145) (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-145) (-620 (-542))))) (-3814 (($ (-650 (-145))) NIL)) (-2585 (($ $ (-145)) NIL) (($ (-145) $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3802 (($ (-145)) NIL) (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-4379 (((-112) (-1 (-112) (-145)) $) NIL (|has| $ (-6 -4452)))) (-1423 (((-1168) $) 19) (((-1168) $ (-112)) 21) (((-1282) (-828) $) 22) (((-1282) (-828) $ (-112)) 23)) (-3075 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3055 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (|has| (-145) (-856)))) (-3045 (((-112) $ $) NIL (|has| (-145) (-856)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
(((-1168) (-1167)) (T -1168))
NIL
(-1167)
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL)) (-3851 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-1168) |#1|) NIL)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 |#1| "failed") (-1168) $) NIL)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-3249 (($ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#1| "failed") (-1168) $) NIL)) (-1741 (($ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449)))) (-1517 ((|#1| $ (-1168) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-1168)) NIL)) (-3627 (((-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2752 (((-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-1168) $) NIL (|has| (-1168) (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2911 (((-650 (-1168)) $) NIL)) (-3245 (((-112) (-1168) $) NIL)) (-1490 (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-1805 (((-650 (-1168)) $) NIL)) (-3939 (((-112) (-1168) $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-3543 ((|#1| $) NIL (|has| (-1168) (-856)))) (-1790 (((-3 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) "failed") (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL (-12 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-1168)) NIL) ((|#1| $ (-1168) |#1|) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-619 (-868))) (|has| |#1| (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2569 (((-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)))
-((-2214 (((-1166 |#1|) (-1166 |#1|)) 83)) (-2875 (((-3 (-1166 |#1|) "failed") (-1166 |#1|)) 39)) (-3172 (((-1166 |#1|) (-413 (-570)) (-1166 |#1|)) 133 (|has| |#1| (-38 (-413 (-570)))))) (-1521 (((-1166 |#1|) |#1| (-1166 |#1|)) 139 (|has| |#1| (-368)))) (-2269 (((-1166 |#1|) (-1166 |#1|)) 97)) (-2787 (((-1166 (-570)) (-570)) 63)) (-1689 (((-1166 |#1|) (-1166 (-1166 |#1|))) 116 (|has| |#1| (-38 (-413 (-570)))))) (-3162 (((-1166 |#1|) (-570) (-570) (-1166 |#1|)) 102)) (-3384 (((-1166 |#1|) |#1| (-570)) 51)) (-3952 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 66)) (-3140 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 136 (|has| |#1| (-368)))) (-4100 (((-1166 |#1|) |#1| (-1 (-1166 |#1|))) 115 (|has| |#1| (-38 (-413 (-570)))))) (-4169 (((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|))) 137 (|has| |#1| (-368)))) (-2227 (((-1166 |#1|) (-1166 |#1|)) 96)) (-1822 (((-1166 |#1|) (-1166 |#1|)) 82)) (-3363 (((-1166 |#1|) (-570) (-570) (-1166 |#1|)) 103)) (-2898 (((-1166 |#1|) |#1| (-1166 |#1|)) 112 (|has| |#1| (-38 (-413 (-570)))))) (-1920 (((-1166 (-570)) (-570)) 62)) (-3807 (((-1166 |#1|) |#1|) 65)) (-4193 (((-1166 |#1|) (-1166 |#1|) (-570) (-570)) 99)) (-3071 (((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|)) 72)) (-2547 (((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|)) 37)) (-3877 (((-1166 |#1|) (-1166 |#1|)) 98)) (-1770 (((-1166 |#1|) (-1166 |#1|) |#1|) 77)) (-4188 (((-1166 |#1|) (-1166 |#1|)) 68)) (-4271 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 78)) (-3799 (((-1166 |#1|) |#1|) 73)) (-1807 (((-1166 |#1|) (-1166 (-1166 |#1|))) 88)) (-3122 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 38)) (-3111 (((-1166 |#1|) (-1166 |#1|)) 21) (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 23)) (-3101 (((-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 -3101 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3111 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3111 ((-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2547 ((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|))) (-15 -3122 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2875 ((-3 (-1166 |#1|) "failed") (-1166 |#1|))) (-15 -3384 ((-1166 |#1|) |#1| (-570))) (-15 -1920 ((-1166 (-570)) (-570))) (-15 -2787 ((-1166 (-570)) (-570))) (-15 -3807 ((-1166 |#1|) |#1|)) (-15 -3952 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -4188 ((-1166 |#1|) (-1166 |#1|))) (-15 -3071 ((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|))) (-15 -3799 ((-1166 |#1|) |#1|)) (-15 -1770 ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -4271 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1822 ((-1166 |#1|) (-1166 |#1|))) (-15 -2214 ((-1166 |#1|) (-1166 |#1|))) (-15 -1807 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -2227 ((-1166 |#1|) (-1166 |#1|))) (-15 -2269 ((-1166 |#1|) (-1166 |#1|))) (-15 -3877 ((-1166 |#1|) (-1166 |#1|))) (-15 -4193 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))) (-15 -3162 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (-15 -3363 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 -4100 ((-1166 |#1|) |#1| (-1 (-1166 |#1|)))) (-15 -1689 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -3172 ((-1166 |#1|) (-413 (-570)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3140 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -4169 ((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|)))) (-15 -1521 ((-1166 |#1|) |#1| (-1166 |#1|)))) |%noBranch|)) (-1058)) (T -1170))
-((-1521 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-4169 (*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)))) (-3140 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3172 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1058)) (-5 *3 (-413 (-570))) (-5 *1 (-1170 *4)))) (-1689 (*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)))) (-4100 (*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)))) (-2898 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3363 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-3162 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-4193 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-3877 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2269 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2227 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1807 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)) (-4 *4 (-1058)))) (-2214 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1822 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-4271 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1770 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3799 (*1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-3071 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1 *4 (-570))) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-4188 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3952 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3807 (*1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-2787 (*1 *2 *3) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058)) (-5 *3 (-570)))) (-1920 (*1 *2 *3) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058)) (-5 *3 (-570)))) (-3384 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-2875 (*1 *2 *2) (|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3122 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2547 (*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)))) (-3111 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3111 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3101 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(-10 -7 (-15 -3101 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3111 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3111 ((-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2547 ((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|))) (-15 -3122 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2875 ((-3 (-1166 |#1|) "failed") (-1166 |#1|))) (-15 -3384 ((-1166 |#1|) |#1| (-570))) (-15 -1920 ((-1166 (-570)) (-570))) (-15 -2787 ((-1166 (-570)) (-570))) (-15 -3807 ((-1166 |#1|) |#1|)) (-15 -3952 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -4188 ((-1166 |#1|) (-1166 |#1|))) (-15 -3071 ((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|))) (-15 -3799 ((-1166 |#1|) |#1|)) (-15 -1770 ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -4271 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1822 ((-1166 |#1|) (-1166 |#1|))) (-15 -2214 ((-1166 |#1|) (-1166 |#1|))) (-15 -1807 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -2227 ((-1166 |#1|) (-1166 |#1|))) (-15 -2269 ((-1166 |#1|) (-1166 |#1|))) (-15 -3877 ((-1166 |#1|) (-1166 |#1|))) (-15 -4193 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))) (-15 -3162 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (-15 -3363 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 -4100 ((-1166 |#1|) |#1| (-1 (-1166 |#1|)))) (-15 -1689 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -3172 ((-1166 |#1|) (-413 (-570)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3140 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -4169 ((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|)))) (-15 -1521 ((-1166 |#1|) |#1| (-1166 |#1|)))) |%noBranch|))
-((-2887 (((-1166 |#1|) (-1166 |#1|)) 60)) (-2751 (((-1166 |#1|) (-1166 |#1|)) 42)) (-2866 (((-1166 |#1|) (-1166 |#1|)) 56)) (-2733 (((-1166 |#1|) (-1166 |#1|)) 38)) (-4107 (((-1166 |#1|) (-1166 |#1|)) 63)) (-2774 (((-1166 |#1|) (-1166 |#1|)) 45)) (-2789 (((-1166 |#1|) (-1166 |#1|)) 34)) (-4387 (((-1166 |#1|) (-1166 |#1|)) 29)) (-4117 (((-1166 |#1|) (-1166 |#1|)) 64)) (-2788 (((-1166 |#1|) (-1166 |#1|)) 46)) (-2899 (((-1166 |#1|) (-1166 |#1|)) 61)) (-2766 (((-1166 |#1|) (-1166 |#1|)) 43)) (-2876 (((-1166 |#1|) (-1166 |#1|)) 58)) (-2740 (((-1166 |#1|) (-1166 |#1|)) 40)) (-4154 (((-1166 |#1|) (-1166 |#1|)) 68)) (-2825 (((-1166 |#1|) (-1166 |#1|)) 50)) (-4129 (((-1166 |#1|) (-1166 |#1|)) 66)) (-2801 (((-1166 |#1|) (-1166 |#1|)) 48)) (-4176 (((-1166 |#1|) (-1166 |#1|)) 71)) (-2845 (((-1166 |#1|) (-1166 |#1|)) 53)) (-1578 (((-1166 |#1|) (-1166 |#1|)) 72)) (-2855 (((-1166 |#1|) (-1166 |#1|)) 54)) (-4163 (((-1166 |#1|) (-1166 |#1|)) 70)) (-2835 (((-1166 |#1|) (-1166 |#1|)) 52)) (-4140 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2814 (((-1166 |#1|) (-1166 |#1|)) 51)) (** (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 36)))
-(((-1171 |#1|) (-10 -7 (-15 -4387 ((-1166 |#1|) (-1166 |#1|))) (-15 -2789 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2733 ((-1166 |#1|) (-1166 |#1|))) (-15 -2740 ((-1166 |#1|) (-1166 |#1|))) (-15 -2751 ((-1166 |#1|) (-1166 |#1|))) (-15 -2766 ((-1166 |#1|) (-1166 |#1|))) (-15 -2774 ((-1166 |#1|) (-1166 |#1|))) (-15 -2788 ((-1166 |#1|) (-1166 |#1|))) (-15 -2801 ((-1166 |#1|) (-1166 |#1|))) (-15 -2814 ((-1166 |#1|) (-1166 |#1|))) (-15 -2825 ((-1166 |#1|) (-1166 |#1|))) (-15 -2835 ((-1166 |#1|) (-1166 |#1|))) (-15 -2845 ((-1166 |#1|) (-1166 |#1|))) (-15 -2855 ((-1166 |#1|) (-1166 |#1|))) (-15 -2866 ((-1166 |#1|) (-1166 |#1|))) (-15 -2876 ((-1166 |#1|) (-1166 |#1|))) (-15 -2887 ((-1166 |#1|) (-1166 |#1|))) (-15 -2899 ((-1166 |#1|) (-1166 |#1|))) (-15 -4107 ((-1166 |#1|) (-1166 |#1|))) (-15 -4117 ((-1166 |#1|) (-1166 |#1|))) (-15 -4129 ((-1166 |#1|) (-1166 |#1|))) (-15 -4140 ((-1166 |#1|) (-1166 |#1|))) (-15 -4154 ((-1166 |#1|) (-1166 |#1|))) (-15 -4163 ((-1166 |#1|) (-1166 |#1|))) (-15 -4176 ((-1166 |#1|) (-1166 |#1|))) (-15 -1578 ((-1166 |#1|) (-1166 |#1|)))) (-38 (-413 (-570)))) (T -1171))
-((-1578 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4176 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4163 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4154 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4140 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4129 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4117 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4107 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2899 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2887 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2876 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2866 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2855 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2845 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2835 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2825 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2814 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2801 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2788 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2774 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2766 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2751 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2740 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2733 (*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)))) (-2789 (*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 -2789 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2733 ((-1166 |#1|) (-1166 |#1|))) (-15 -2740 ((-1166 |#1|) (-1166 |#1|))) (-15 -2751 ((-1166 |#1|) (-1166 |#1|))) (-15 -2766 ((-1166 |#1|) (-1166 |#1|))) (-15 -2774 ((-1166 |#1|) (-1166 |#1|))) (-15 -2788 ((-1166 |#1|) (-1166 |#1|))) (-15 -2801 ((-1166 |#1|) (-1166 |#1|))) (-15 -2814 ((-1166 |#1|) (-1166 |#1|))) (-15 -2825 ((-1166 |#1|) (-1166 |#1|))) (-15 -2835 ((-1166 |#1|) (-1166 |#1|))) (-15 -2845 ((-1166 |#1|) (-1166 |#1|))) (-15 -2855 ((-1166 |#1|) (-1166 |#1|))) (-15 -2866 ((-1166 |#1|) (-1166 |#1|))) (-15 -2876 ((-1166 |#1|) (-1166 |#1|))) (-15 -2887 ((-1166 |#1|) (-1166 |#1|))) (-15 -2899 ((-1166 |#1|) (-1166 |#1|))) (-15 -4107 ((-1166 |#1|) (-1166 |#1|))) (-15 -4117 ((-1166 |#1|) (-1166 |#1|))) (-15 -4129 ((-1166 |#1|) (-1166 |#1|))) (-15 -4140 ((-1166 |#1|) (-1166 |#1|))) (-15 -4154 ((-1166 |#1|) (-1166 |#1|))) (-15 -4163 ((-1166 |#1|) (-1166 |#1|))) (-15 -4176 ((-1166 |#1|) (-1166 |#1|))) (-15 -1578 ((-1166 |#1|) (-1166 |#1|))))
-((-2887 (((-1166 |#1|) (-1166 |#1|)) 102)) (-2751 (((-1166 |#1|) (-1166 |#1|)) 61)) (-3995 (((-2 (|:| -2866 (-1166 |#1|)) (|:| -2876 (-1166 |#1|))) (-1166 |#1|)) 98)) (-2866 (((-1166 |#1|) (-1166 |#1|)) 99)) (-2469 (((-2 (|:| -2733 (-1166 |#1|)) (|:| -2740 (-1166 |#1|))) (-1166 |#1|)) 54)) (-2733 (((-1166 |#1|) (-1166 |#1|)) 55)) (-4107 (((-1166 |#1|) (-1166 |#1|)) 104)) (-2774 (((-1166 |#1|) (-1166 |#1|)) 68)) (-2789 (((-1166 |#1|) (-1166 |#1|)) 40)) (-4387 (((-1166 |#1|) (-1166 |#1|)) 37)) (-4117 (((-1166 |#1|) (-1166 |#1|)) 105)) (-2788 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2899 (((-1166 |#1|) (-1166 |#1|)) 103)) (-2766 (((-1166 |#1|) (-1166 |#1|)) 64)) (-2876 (((-1166 |#1|) (-1166 |#1|)) 100)) (-2740 (((-1166 |#1|) (-1166 |#1|)) 56)) (-4154 (((-1166 |#1|) (-1166 |#1|)) 113)) (-2825 (((-1166 |#1|) (-1166 |#1|)) 88)) (-4129 (((-1166 |#1|) (-1166 |#1|)) 107)) (-2801 (((-1166 |#1|) (-1166 |#1|)) 84)) (-4176 (((-1166 |#1|) (-1166 |#1|)) 117)) (-2845 (((-1166 |#1|) (-1166 |#1|)) 92)) (-1578 (((-1166 |#1|) (-1166 |#1|)) 119)) (-2855 (((-1166 |#1|) (-1166 |#1|)) 94)) (-4163 (((-1166 |#1|) (-1166 |#1|)) 115)) (-2835 (((-1166 |#1|) (-1166 |#1|)) 90)) (-4140 (((-1166 |#1|) (-1166 |#1|)) 109)) (-2814 (((-1166 |#1|) (-1166 |#1|)) 86)) (** (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 41)))
-(((-1172 |#1|) (-10 -7 (-15 -4387 ((-1166 |#1|) (-1166 |#1|))) (-15 -2789 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2469 ((-2 (|:| -2733 (-1166 |#1|)) (|:| -2740 (-1166 |#1|))) (-1166 |#1|))) (-15 -2733 ((-1166 |#1|) (-1166 |#1|))) (-15 -2740 ((-1166 |#1|) (-1166 |#1|))) (-15 -2751 ((-1166 |#1|) (-1166 |#1|))) (-15 -2766 ((-1166 |#1|) (-1166 |#1|))) (-15 -2774 ((-1166 |#1|) (-1166 |#1|))) (-15 -2788 ((-1166 |#1|) (-1166 |#1|))) (-15 -2801 ((-1166 |#1|) (-1166 |#1|))) (-15 -2814 ((-1166 |#1|) (-1166 |#1|))) (-15 -2825 ((-1166 |#1|) (-1166 |#1|))) (-15 -2835 ((-1166 |#1|) (-1166 |#1|))) (-15 -2845 ((-1166 |#1|) (-1166 |#1|))) (-15 -2855 ((-1166 |#1|) (-1166 |#1|))) (-15 -3995 ((-2 (|:| -2866 (-1166 |#1|)) (|:| -2876 (-1166 |#1|))) (-1166 |#1|))) (-15 -2866 ((-1166 |#1|) (-1166 |#1|))) (-15 -2876 ((-1166 |#1|) (-1166 |#1|))) (-15 -2887 ((-1166 |#1|) (-1166 |#1|))) (-15 -2899 ((-1166 |#1|) (-1166 |#1|))) (-15 -4107 ((-1166 |#1|) (-1166 |#1|))) (-15 -4117 ((-1166 |#1|) (-1166 |#1|))) (-15 -4129 ((-1166 |#1|) (-1166 |#1|))) (-15 -4140 ((-1166 |#1|) (-1166 |#1|))) (-15 -4154 ((-1166 |#1|) (-1166 |#1|))) (-15 -4163 ((-1166 |#1|) (-1166 |#1|))) (-15 -4176 ((-1166 |#1|) (-1166 |#1|))) (-15 -1578 ((-1166 |#1|) (-1166 |#1|)))) (-38 (-413 (-570)))) (T -1172))
-((-1578 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4176 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4163 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4154 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4140 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4129 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4117 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4107 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2899 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2887 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2876 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2866 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-3995 (*1 *2 *3) (-12 (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-2 (|:| -2866 (-1166 *4)) (|:| -2876 (-1166 *4)))) (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))) (-2855 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2845 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2835 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2825 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2814 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2801 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2788 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2774 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2766 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2751 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2740 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2733 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2469 (*1 *2 *3) (-12 (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-2 (|:| -2733 (-1166 *4)) (|:| -2740 (-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)))) (-2789 (*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 -2789 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2469 ((-2 (|:| -2733 (-1166 |#1|)) (|:| -2740 (-1166 |#1|))) (-1166 |#1|))) (-15 -2733 ((-1166 |#1|) (-1166 |#1|))) (-15 -2740 ((-1166 |#1|) (-1166 |#1|))) (-15 -2751 ((-1166 |#1|) (-1166 |#1|))) (-15 -2766 ((-1166 |#1|) (-1166 |#1|))) (-15 -2774 ((-1166 |#1|) (-1166 |#1|))) (-15 -2788 ((-1166 |#1|) (-1166 |#1|))) (-15 -2801 ((-1166 |#1|) (-1166 |#1|))) (-15 -2814 ((-1166 |#1|) (-1166 |#1|))) (-15 -2825 ((-1166 |#1|) (-1166 |#1|))) (-15 -2835 ((-1166 |#1|) (-1166 |#1|))) (-15 -2845 ((-1166 |#1|) (-1166 |#1|))) (-15 -2855 ((-1166 |#1|) (-1166 |#1|))) (-15 -3995 ((-2 (|:| -2866 (-1166 |#1|)) (|:| -2876 (-1166 |#1|))) (-1166 |#1|))) (-15 -2866 ((-1166 |#1|) (-1166 |#1|))) (-15 -2876 ((-1166 |#1|) (-1166 |#1|))) (-15 -2887 ((-1166 |#1|) (-1166 |#1|))) (-15 -2899 ((-1166 |#1|) (-1166 |#1|))) (-15 -4107 ((-1166 |#1|) (-1166 |#1|))) (-15 -4117 ((-1166 |#1|) (-1166 |#1|))) (-15 -4129 ((-1166 |#1|) (-1166 |#1|))) (-15 -4140 ((-1166 |#1|) (-1166 |#1|))) (-15 -4154 ((-1166 |#1|) (-1166 |#1|))) (-15 -4163 ((-1166 |#1|) (-1166 |#1|))) (-15 -4176 ((-1166 |#1|) (-1166 |#1|))) (-15 -1578 ((-1166 |#1|) (-1166 |#1|))))
-((-2897 (((-965 |#2|) |#2| |#2|) 50)) (-3988 ((|#2| |#2| |#1|) 19 (|has| |#1| (-311)))))
-(((-1173 |#1| |#2|) (-10 -7 (-15 -2897 ((-965 |#2|) |#2| |#2|)) (IF (|has| |#1| (-311)) (-15 -3988 (|#2| |#2| |#1|)) |%noBranch|)) (-562) (-1253 |#1|)) (T -1173))
-((-3988 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-1173 *3 *2)) (-4 *2 (-1253 *3)))) (-2897 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-965 *3)) (-5 *1 (-1173 *4 *3)) (-4 *3 (-1253 *4)))))
-(-10 -7 (-15 -2897 ((-965 |#2|) |#2| |#2|)) (IF (|has| |#1| (-311)) (-15 -3988 (|#2| |#2| |#1|)) |%noBranch|))
-((-2558 (((-112) $ $) NIL)) (-2146 (($ $ (-650 (-777))) 79)) (-4195 (($) 33)) (-2893 (($ $) 51)) (-4425 (((-650 $) $) 60)) (-3702 (((-112) $) 19)) (-2258 (((-650 (-950 |#2|)) $) 86)) (-2511 (($ $) 80)) (-1617 (((-777) $) 47)) (-4291 (($) 32)) (-2696 (($ $ (-650 (-777)) (-950 |#2|)) 72) (($ $ (-650 (-777)) (-777)) 73) (($ $ (-777) (-950 |#2|)) 75)) (-2024 (($ $ $) 57) (($ (-650 $)) 59)) (-2608 (((-777) $) 87)) (-2606 (((-112) $) 15)) (-1988 (((-1168) $) NIL)) (-2756 (((-112) $) 22)) (-3577 (((-1129) $) NIL)) (-2533 (((-173) $) 85)) (-3303 (((-950 |#2|) $) 81)) (-2351 (((-777) $) 82)) (-2095 (((-112) $) 84)) (-2642 (($ $ (-650 (-777)) (-173)) 78)) (-1482 (($ $) 52)) (-3799 (((-868) $) 98)) (-2096 (($ $ (-650 (-777)) (-112)) 77)) (-3397 (((-650 $) $) 11)) (-3837 (($ $ (-777)) 46)) (-2874 (($ $) 43)) (-2335 (((-112) $ $) NIL)) (-4301 (($ $ $ (-950 |#2|) (-777)) 68)) (-2460 (($ $ (-950 |#2|)) 67)) (-2582 (($ $ (-650 (-777)) (-950 |#2|)) 66) (($ $ (-650 (-777)) (-777)) 70) (((-777) $ (-950 |#2|)) 71)) (-3022 (((-112) $ $) 92)))
-(((-1174 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -2606 ((-112) $)) (-15 -3702 ((-112) $)) (-15 -2756 ((-112) $)) (-15 -4291 ($)) (-15 -4195 ($)) (-15 -2874 ($ $)) (-15 -3837 ($ $ (-777))) (-15 -3397 ((-650 $) $)) (-15 -1617 ((-777) $)) (-15 -2893 ($ $)) (-15 -1482 ($ $)) (-15 -2024 ($ $ $)) (-15 -2024 ($ (-650 $))) (-15 -4425 ((-650 $) $)) (-15 -2582 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2460 ($ $ (-950 |#2|))) (-15 -4301 ($ $ $ (-950 |#2|) (-777))) (-15 -2696 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2582 ($ $ (-650 (-777)) (-777))) (-15 -2696 ($ $ (-650 (-777)) (-777))) (-15 -2582 ((-777) $ (-950 |#2|))) (-15 -2696 ($ $ (-777) (-950 |#2|))) (-15 -2096 ($ $ (-650 (-777)) (-112))) (-15 -2642 ($ $ (-650 (-777)) (-173))) (-15 -2146 ($ $ (-650 (-777)))) (-15 -3303 ((-950 |#2|) $)) (-15 -2351 ((-777) $)) (-15 -2095 ((-112) $)) (-15 -2533 ((-173) $)) (-15 -2608 ((-777) $)) (-15 -2511 ($ $)) (-15 -2258 ((-650 (-950 |#2|)) $)))) (-928) (-1058)) (T -1174))
-((-2606 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3702 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2756 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4291 (*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-4195 (*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2874 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3837 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3397 (*1 *2 *1) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1617 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2893 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-1482 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2024 (*1 *1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2024 (*1 *1 *2) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4425 (*1 *2 *1) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2582 (*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)))) (-2460 (*1 *1 *1 *2) (-12 (-5 *2 (-950 *4)) (-4 *4 (-1058)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)))) (-4301 (*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)))) (-2696 (*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)))) (-2582 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2696 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2582 (*1 *2 *1 *3) (-12 (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *2 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-2696 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-2096 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-112)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2642 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-173)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2146 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3303 (*1 *2 *1) (-12 (-5 *2 (-950 *4)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2351 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2095 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2533 (*1 *2 *1) (-12 (-5 *2 (-173)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2608 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2511 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2258 (*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 -2606 ((-112) $)) (-15 -3702 ((-112) $)) (-15 -2756 ((-112) $)) (-15 -4291 ($)) (-15 -4195 ($)) (-15 -2874 ($ $)) (-15 -3837 ($ $ (-777))) (-15 -3397 ((-650 $) $)) (-15 -1617 ((-777) $)) (-15 -2893 ($ $)) (-15 -1482 ($ $)) (-15 -2024 ($ $ $)) (-15 -2024 ($ (-650 $))) (-15 -4425 ((-650 $) $)) (-15 -2582 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2460 ($ $ (-950 |#2|))) (-15 -4301 ($ $ $ (-950 |#2|) (-777))) (-15 -2696 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2582 ($ $ (-650 (-777)) (-777))) (-15 -2696 ($ $ (-650 (-777)) (-777))) (-15 -2582 ((-777) $ (-950 |#2|))) (-15 -2696 ($ $ (-777) (-950 |#2|))) (-15 -2096 ($ $ (-650 (-777)) (-112))) (-15 -2642 ($ $ (-650 (-777)) (-173))) (-15 -2146 ($ $ (-650 (-777)))) (-15 -3303 ((-950 |#2|) $)) (-15 -2351 ((-777) $)) (-15 -2095 ((-112) $)) (-15 -2533 ((-173) $)) (-15 -2608 ((-777) $)) (-15 -2511 ($ $)) (-15 -2258 ((-650 (-950 |#2|)) $))))
-((-2558 (((-112) $ $) NIL)) (-2225 ((|#2| $) 11)) (-2213 ((|#1| $) 10)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3811 (($ |#1| |#2|) 9)) (-3799 (((-868) $) 16)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1175 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3811 ($ |#1| |#2|)) (-15 -2213 (|#1| $)) (-15 -2225 (|#2| $)))) (-1109) (-1109)) (T -1175))
-((-3811 (*1 *1 *2 *3) (-12 (-5 *1 (-1175 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-2213 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-1175 *2 *3)) (-4 *3 (-1109)))) (-2225 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-1175 *3 *2)) (-4 *3 (-1109)))))
-(-13 (-1109) (-10 -8 (-15 -3811 ($ |#1| |#2|)) (-15 -2213 (|#1| $)) (-15 -2225 (|#2| $))))
-((-2558 (((-112) $ $) NIL)) (-3739 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1176) (-13 (-1092) (-10 -8 (-15 -3739 ((-1144) $))))) (T -1176))
-((-3739 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1176)))))
-(-13 (-1092) (-10 -8 (-15 -3739 ((-1144) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 11)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3074 (($ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3475 (((-112) $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1447 (($ $ (-570)) NIL) (($ $ (-570) (-570)) 75)) (-3416 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) NIL)) (-2489 (((-1184 |#1| |#2| |#3|) $) 42)) (-2600 (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 32)) (-1825 (((-1184 |#1| |#2| |#3|) $) 33)) (-2887 (($ $) 116 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 92 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2866 (($ $) 112 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 88 (|has| |#1| (-38 (-413 (-570)))))) (-4395 (((-570) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3418 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) NIL)) (-4107 (($ $) 120 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 96 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-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))))) (-1964 (($ $) 37) (($ (-570) $) 38)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-1184 |#1| |#2| |#3|)) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2415 (-695 (-1184 |#1| |#2| |#3|))) (|:| |vec| (-1277 (-1184 |#1| |#2| |#3|)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2415 (-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))))) (-2875 (((-3 $ "failed") $) 54)) (-3208 (((-413 (-959 |#1|)) $ (-570)) 74 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 76 (|has| |#1| (-562)))) (-3446 (($) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-3903 (((-112) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-2379 (((-112) $) 28)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2842 (((-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))))) (-4323 (((-570) $) NIL) (((-570) $ (-570)) 26)) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL (|has| |#1| (-368)))) (-4399 (((-1184 |#1| |#2| |#3|) $) 44 (|has| |#1| (-368)))) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2619 (((-3 $ "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))))) (-1479 (((-112) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-2362 (($ $ (-928)) NIL)) (-1712 (($ (-1 |#1| (-570)) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-570)) 19) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3466 (($ $ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2800 (($ $ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-368)))) (-2789 (($ $) 81 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1838 (($ (-570) (-1184 |#1| |#2| |#3|)) 36)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2898 (($ $) 79 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-2438 (($) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2564 (($ $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-3665 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2431 (($ $ (-570)) 158)) (-2547 (((-3 $ "failed") $ $) 55 (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) 82 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-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))))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#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))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3547 (($ $ (-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 (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 56 (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2892 (-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 (-2892 (-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 (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2978 (($ $) NIL (|has| |#1| (-368)))) (-4413 (((-1184 |#1| |#2| |#3|) $) 46 (|has| |#1| (-368)))) (-2130 (((-570) $) 43)) (-4117 (($ $) 122 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 98 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 118 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 94 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 114 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 90 (|has| |#1| (-38 (-413 (-570)))))) (-1425 (((-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))))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2853 (($ $) NIL)) (-3799 (((-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 (-2892 (-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 (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))) (|has| |#1| (-38 (-413 (-570))))))) (-2249 ((|#1| $ (-570)) 77)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-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))))) (-3499 (((-777)) NIL T CONST)) (-2288 ((|#1| $) 12)) (-1313 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 104 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4129 (($ $) 124 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 100 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 108 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 110 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 106 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 126 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 102 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1861 (($) 21 T CONST)) (-1875 (($) 16 T CONST)) (-2942 (($ $ (-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 (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2892 (-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 (-2892 (-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 (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-3072 (((-112) $ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3052 (((-112) $ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3042 (((-112) $ $) NIL (-2892 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 49 (|has| |#1| (-368))) (($ (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) 50 (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3799 ($ (-1273 |#2|))) (-15 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1177))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2898 (*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 -3799 ($ (-1273 |#2|))) (-15 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|)))
-((-3318 ((|#2| |#2| (-1101 |#2|)) 26) ((|#2| |#2| (-1186)) 28)))
-(((-1178 |#1| |#2|) (-10 -7 (-15 -3318 (|#2| |#2| (-1186))) (-15 -3318 (|#2| |#2| (-1101 |#2|)))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-436 |#1|) (-161) (-27) (-1212))) (T -1178))
-((-3318 (*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)))) (-3318 (*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 -3318 (|#2| |#2| (-1186))) (-15 -3318 (|#2| |#2| (-1101 |#2|))))
-((-3318 (((-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 -3318 ((-413 (-959 |#1|)) (-959 |#1|) (-1186))) (-15 -3318 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -3318 ((-413 (-959 |#1|)) (-959 |#1|) (-1101 (-959 |#1|)))) (-15 -3318 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1101 (-413 (-959 |#1|)))))) (-13 (-562) (-1047 (-570)))) (T -1179))
-((-3318 (*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)))) (-3318 (*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)))) (-3318 (*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))))) (-3318 (*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 -3318 ((-413 (-959 |#1|)) (-959 |#1|) (-1186))) (-15 -3318 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -3318 ((-413 (-959 |#1|)) (-959 |#1|) (-1101 (-959 |#1|)))) (-15 -3318 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1101 (-413 (-959 |#1|))))))
-((-1356 (((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|)) 13)))
-(((-1180 |#1| |#2|) (-10 -7 (-15 -1356 ((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|)))) (-1058) (-1058)) (T -1180))
-((-1356 (*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 -1356 ((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|))))
-((-1652 (((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))) 51)) (-3801 (((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))) 52)))
-(((-1181 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3801 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))) (-15 -1652 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))))) (-799) (-856) (-458) (-956 |#3| |#1| |#2|)) (T -1181))
-((-1652 (*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))))) (-3801 (*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 -3801 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))) (-15 -1652 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))))
-((-2558 (((-112) $ $) 171)) (-3467 (((-112) $) 43)) (-2277 (((-1277 |#1|) $ (-777)) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-3985 (($ (-1182 |#1|)) NIL)) (-3775 (((-1182 $) $ (-1091)) 82) (((-1182 |#1|) $) 71)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) 164 (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-2022 (($ $ $) 158 (|has| |#1| (-562)))) (-3924 (((-424 (-1182 $)) (-1182 $)) 95 (|has| |#1| (-916)))) (-4364 (($ $) NIL (|has| |#1| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 115 (|has| |#1| (-916)))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-1576 (($ $ (-777)) 61)) (-2347 (($ $ (-777)) 63)) (-4425 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL)) (-4322 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) 160 (|has| |#1| (-174)))) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) 80)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3239 (($ $ $) 131)) (-2677 (($ $ $) NIL (|has| |#1| (-562)))) (-3640 (((-2 (|:| -1452 |#1|) (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-562)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3988 (($ $) 165 (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#1| (-916)))) (-3720 (($ $ |#1| (-777) $) 69)) (-2842 (((-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)))))) (-2710 (((-868) $ (-868)) 148)) (-4323 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4346 (((-112) $) 48)) (-3173 (((-777) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1742 (($ (-1182 |#1|) (-1091)) 73) (($ (-1182 $) (-1091)) 89)) (-2362 (($ $ (-777)) 51)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) 87) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-1091)) NIL) (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 153)) (-2575 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1918 (($ (-1 (-777) (-777)) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-3900 (((-1182 |#1|) $) NIL)) (-3362 (((-3 (-1091) "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) 76)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-1988 (((-1168) $) NIL)) (-3213 (((-2 (|:| -2573 $) (|:| -3691 $)) $ (-777)) 60)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-1091)) (|:| -3357 (-777))) "failed") $) NIL)) (-2898 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2438 (($) NIL (|has| |#1| (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) 50)) (-1898 ((|#1| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 103 (|has| |#1| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) 167 (|has| |#1| (-458)))) (-1319 (($ $ (-777) |#1| $) 123)) (-1659 (((-424 (-1182 $)) (-1182 $)) 101 (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) 100 (|has| |#1| (-916)))) (-3801 (((-424 $) $) 108 (|has| |#1| (-916)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2547 (((-3 $ "failed") $ |#1|) 163 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 124 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1770 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ |#1|) 150) (($ $ $) 151) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-2527 (((-3 $ "failed") $ (-777)) 54)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 172 (|has| |#1| (-368)))) (-3570 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) 156 (|has| |#1| (-174)))) (-3547 (($ $ (-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)) (-2130 (((-777) $) 78) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1425 (((-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)))))) (-1848 ((|#1| $) 162 (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-2105 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3799 (((-868) $) 149) (($ (-570)) NIL) (($ |#1|) 77) (($ (-1091)) NIL) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) 41 (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) 17 T CONST)) (-1875 (($) 19 T CONST)) (-2942 (($ $ (-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)) (-3022 (((-112) $ $) 120)) (-3122 (($ $ |#1|) 173 (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2710 ((-868) $ (-868))) (-15 -1319 ($ $ (-777) |#1| $)))) (-1058)) (T -1182))
-((-2710 (*1 *2 *1 *2) (-12 (-5 *2 (-868)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))) (-1319 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))))
-(-13 (-1253 |#1|) (-10 -8 (-15 -2710 ((-868) $ (-868))) (-15 -1319 ($ $ (-777) |#1| $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 11)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-1447 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3416 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2887 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2866 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4107 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-1177 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 36)) (-3216 (((-1177 |#1| |#2| |#3|) $) NIL) (((-1184 |#1| |#2| |#3|) $) NIL)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-1457 (((-413 (-570)) $) 59)) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-1852 (($ (-413 (-570)) (-1177 |#1| |#2| |#3|)) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-2379 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-413 (-570))) 20) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-2789 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2247 (((-1177 |#1| |#2| |#3|) $) 41)) (-1547 (((-3 (-1177 |#1| |#2| |#3|) "failed") $) NIL)) (-1838 (((-1177 |#1| |#2| |#3|) $) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2898 (($ $) 39 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2431 (($ $ (-413 (-570))) NIL)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3547 (($ $ (-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)) (-2130 (((-413 (-570)) $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) NIL)) (-3799 (((-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)))) (-2249 ((|#1| $ (-413 (-570))) NIL)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2288 ((|#1| $) 12)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 22 T CONST)) (-1875 (($) 16 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1183))
-((-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2898 (*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 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 129)) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 119)) (-3568 (((-1250 |#2| |#1|) $ (-777)) 69)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-1447 (($ $ (-777)) 85) (($ $ (-777) (-777)) 82)) (-3416 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 105)) (-2887 (($ $) 173 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2866 (($ $) 169 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 118) (($ (-1166 |#1|)) 113)) (-4107 (($ $) 177 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) 25)) (-3914 (($ $) 28)) (-3372 (((-959 |#1|) $ (-777)) 81) (((-959 |#1|) $ (-777) (-777)) 83)) (-2379 (((-112) $) 124)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-777) $) 126) (((-777) $ (-777)) 128)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) NIL)) (-1712 (($ (-1 |#1| (-570)) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) 13) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-2789 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-2898 (($ $) 133 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-3577 (((-1129) $) NIL)) (-2431 (($ $ (-777)) 15)) (-2547 (((-3 $ "failed") $ $) 26 (|has| |#1| (-562)))) (-4387 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1941 ((|#1| $ (-777)) 122) (($ $ $) 132 (|has| (-777) (-1121)))) (-3547 (($ $ (-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)) (-2130 (((-777) $) NIL)) (-4117 (($ $) 179 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 175 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 171 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) NIL)) (-3799 (((-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)) (-2186 (((-1166 |#1|) $) 101)) (-2249 ((|#1| $ (-777)) 121)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2288 ((|#1| $) 58)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) 185 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 161 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 181 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 189 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 165 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-777)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 191 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 167 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 187 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 163 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 183 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 159 (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 17 T CONST)) (-1875 (($) 20 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) 198)) (-3101 (($ $ $) 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 -3799 ($ (-1250 |#2| |#1|))) (-15 -3568 ((-1250 |#2| |#1|) $ (-777))) (-15 -3799 ($ (-1273 |#2|))) (-15 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1184))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1250 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-1184 *3 *4 *5)))) (-3568 (*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))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2898 (*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 -3799 ($ (-1250 |#2| |#1|))) (-15 -3568 ((-1250 |#2| |#1|) $ (-777))) (-15 -3799 ($ (-1273 |#2|))) (-15 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|)))
-((-3799 (((-868) $) 33) (($ (-1186)) 35)) (-2892 (($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 46)) (-2880 (($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 39) (($ $) 40)) (-2815 (($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 41)) (-2802 (($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 43)) (-2790 (($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 42)) (-2777 (($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 44)) (-2199 (($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 47)) (-12 (($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 45)))
-(((-1185) (-13 (-619 (-868)) (-10 -8 (-15 -3799 ($ (-1186))) (-15 -2815 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2790 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2802 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2777 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2892 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2199 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2880 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2880 ($ $))))) (T -1185))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1185)))) (-2815 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2790 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2802 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2777 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2892 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2199 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2880 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2880 (*1 *1 *1) (-5 *1 (-1185))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3799 ($ (-1186))) (-15 -2815 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2790 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2802 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2777 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2892 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2199 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2880 ($ (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2880 ($ $))))
-((-2558 (((-112) $ $) NIL)) (-2650 (($ $ (-650 (-868))) 62)) (-2167 (($ $ (-650 (-868))) 60)) (-3428 (((-1168) $) 101)) (-1369 (((-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868))) (|:| |args| (-650 (-868)))) $) 108)) (-1371 (((-112) $) 23)) (-4362 (($ $ (-650 (-650 (-868)))) 59) (($ $ (-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868))) (|:| |args| (-650 (-868))))) 99)) (-1705 (($) 163 T CONST)) (-1541 (((-1282)) 135)) (-2842 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 69) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 76)) (-4291 (($) 122) (($ $) 131)) (-3600 (($ $) 100)) (-3466 (($ $ $) NIL)) (-2800 (($ $ $) NIL)) (-3420 (((-650 $) $) 136)) (-1988 (((-1168) $) 114)) (-3577 (((-1129) $) NIL)) (-1941 (($ $ (-650 (-868))) 61)) (-1425 (((-542) $) 48) (((-1186) $) 49) (((-899 (-570)) $) 80) (((-899 (-384)) $) 78)) (-3799 (((-868) $) 55) (($ (-1168)) 50)) (-2335 (((-112) $ $) NIL)) (-2386 (($ $ (-650 (-868))) 63)) (-2831 (((-1168) $) 34) (((-1168) $ (-112)) 35) (((-1282) (-828) $) 36) (((-1282) (-828) $ (-112)) 37)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 51)) (-3062 (((-112) $ $) NIL)) (-3042 (((-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 -4291 ($)) (-15 -4291 ($ $)) (-15 -1541 ((-1282))) (-15 -3600 ($ $)) (-15 -1371 ((-112) $)) (-15 -1369 ((-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868))) (|:| |args| (-650 (-868)))) $)) (-15 -4362 ($ $ (-650 (-650 (-868))))) (-15 -4362 ($ $ (-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868))) (|:| |args| (-650 (-868)))))) (-15 -2167 ($ $ (-650 (-868)))) (-15 -2650 ($ $ (-650 (-868)))) (-15 -2386 ($ $ (-650 (-868)))) (-15 -1941 ($ $ (-650 (-868)))) (-15 -3428 ((-1168) $)) (-15 -3420 ((-650 $) $)) (-15 -1705 ($) -3725)))) (T -1186))
-((-4291 (*1 *1) (-5 *1 (-1186))) (-4291 (*1 *1 *1) (-5 *1 (-1186))) (-1541 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1186)))) (-3600 (*1 *1 *1) (-5 *1 (-1186))) (-1371 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1186)))) (-1369 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868))) (|:| |args| (-650 (-868))))) (-5 *1 (-1186)))) (-4362 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-1186)))) (-4362 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868))) (|:| |args| (-650 (-868))))) (-5 *1 (-1186)))) (-2167 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-2650 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-2386 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-1941 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-3428 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1186)))) (-3420 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1186)))) (-1705 (*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 -4291 ($)) (-15 -4291 ($ $)) (-15 -1541 ((-1282))) (-15 -3600 ($ $)) (-15 -1371 ((-112) $)) (-15 -1369 ((-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868))) (|:| |args| (-650 (-868)))) $)) (-15 -4362 ($ $ (-650 (-650 (-868))))) (-15 -4362 ($ $ (-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868))) (|:| |args| (-650 (-868)))))) (-15 -2167 ($ $ (-650 (-868)))) (-15 -2650 ($ $ (-650 (-868)))) (-15 -2386 ($ $ (-650 (-868)))) (-15 -1941 ($ $ (-650 (-868)))) (-15 -3428 ((-1168) $)) (-15 -3420 ((-650 $) $)) (-15 -1705 ($) -3725)))
-((-2843 (((-1277 |#1|) |#1| (-928)) 18) (((-1277 |#1|) (-650 |#1|)) 25)))
-(((-1187 |#1|) (-10 -7 (-15 -2843 ((-1277 |#1|) (-650 |#1|))) (-15 -2843 ((-1277 |#1|) |#1| (-928)))) (-1058)) (T -1187))
-((-2843 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-1277 *3)) (-5 *1 (-1187 *3)) (-4 *3 (-1058)))) (-2843 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1058)) (-5 *2 (-1277 *4)) (-5 *1 (-1187 *4)))))
-(-10 -7 (-15 -2843 ((-1277 |#1|) (-650 |#1|))) (-15 -2843 ((-1277 |#1|) |#1| (-928))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3216 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3988 (($ $) NIL (|has| |#1| (-458)))) (-3720 (($ $ |#1| (-980) $) NIL)) (-4346 (((-112) $) 17)) (-3173 (((-777) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-980)) NIL)) (-2575 (((-980) $) NIL)) (-1918 (($ (-1 (-980) (-980)) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#1| $) NIL)) (-1319 (($ $ (-980) |#1| $) NIL (-12 (|has| (-980) (-132)) (|has| |#1| (-562))))) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-2130 (((-980) $) NIL)) (-1848 ((|#1| $) NIL (|has| |#1| (-458)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) NIL) (($ (-413 (-570))) NIL (-2892 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ (-980)) NIL)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1861 (($) 10 T CONST)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1319 ($ $ (-980) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|))) (-1058)) (T -1188))
-((-1319 (*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 -1319 ($ $ (-980) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4447)) (-6 -4447) |%noBranch|)))
-((-2390 (((-1190) (-1186) $) 25)) (-4078 (($) 29)) (-2207 (((-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-1186) $) 22)) (-2437 (((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2713 "void")) $) 41) (((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) 42) (((-1282) (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) 43)) (-1910 (((-1282) (-1186)) 58)) (-2886 (((-1282) (-1186) $) 55) (((-1282) (-1186)) 56) (((-1282)) 57)) (-1727 (((-1282) (-1186)) 37)) (-3599 (((-1186)) 36)) (-2380 (($) 34)) (-2859 (((-443) (-1186) (-443) (-1186) $) 45) (((-443) (-650 (-1186)) (-443) (-1186) $) 49) (((-443) (-1186) (-443)) 46) (((-443) (-1186) (-443) (-1186)) 50)) (-4199 (((-1186)) 35)) (-3799 (((-868) $) 28)) (-3781 (((-1282)) 30) (((-1282) (-1186)) 33)) (-1341 (((-650 (-1186)) (-1186) $) 24)) (-3867 (((-1282) (-1186) (-650 (-1186)) $) 38) (((-1282) (-1186) (-650 (-1186))) 39) (((-1282) (-650 (-1186))) 40)))
-(((-1189) (-13 (-619 (-868)) (-10 -8 (-15 -4078 ($)) (-15 -3781 ((-1282))) (-15 -3781 ((-1282) (-1186))) (-15 -2859 ((-443) (-1186) (-443) (-1186) $)) (-15 -2859 ((-443) (-650 (-1186)) (-443) (-1186) $)) (-15 -2859 ((-443) (-1186) (-443))) (-15 -2859 ((-443) (-1186) (-443) (-1186))) (-15 -1727 ((-1282) (-1186))) (-15 -4199 ((-1186))) (-15 -3599 ((-1186))) (-15 -3867 ((-1282) (-1186) (-650 (-1186)) $)) (-15 -3867 ((-1282) (-1186) (-650 (-1186)))) (-15 -3867 ((-1282) (-650 (-1186)))) (-15 -2437 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2713 "void")) $)) (-15 -2437 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2713 "void")))) (-15 -2437 ((-1282) (-3 (|:| |fst| (-440)) (|:| -2713 "void")))) (-15 -2886 ((-1282) (-1186) $)) (-15 -2886 ((-1282) (-1186))) (-15 -2886 ((-1282))) (-15 -1910 ((-1282) (-1186))) (-15 -2380 ($)) (-15 -2207 ((-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-1186) $)) (-15 -1341 ((-650 (-1186)) (-1186) $)) (-15 -2390 ((-1190) (-1186) $))))) (T -1189))
-((-4078 (*1 *1) (-5 *1 (-1189))) (-3781 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3781 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2859 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2859 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *4 (-1186)) (-5 *1 (-1189)))) (-2859 (*1 *2 *3 *2) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2859 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-1727 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-4199 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))) (-3599 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))) (-3867 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3867 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3867 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2437 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1186)) (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2437 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2437 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2886 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2886 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2886 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))) (-1910 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2380 (*1 *1) (-5 *1 (-1189))) (-2207 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *1 (-1189)))) (-1341 (*1 *2 *3 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1189)) (-5 *3 (-1186)))) (-2390 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1190)) (-5 *1 (-1189)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -4078 ($)) (-15 -3781 ((-1282))) (-15 -3781 ((-1282) (-1186))) (-15 -2859 ((-443) (-1186) (-443) (-1186) $)) (-15 -2859 ((-443) (-650 (-1186)) (-443) (-1186) $)) (-15 -2859 ((-443) (-1186) (-443))) (-15 -2859 ((-443) (-1186) (-443) (-1186))) (-15 -1727 ((-1282) (-1186))) (-15 -4199 ((-1186))) (-15 -3599 ((-1186))) (-15 -3867 ((-1282) (-1186) (-650 (-1186)) $)) (-15 -3867 ((-1282) (-1186) (-650 (-1186)))) (-15 -3867 ((-1282) (-650 (-1186)))) (-15 -2437 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2713 "void")) $)) (-15 -2437 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2713 "void")))) (-15 -2437 ((-1282) (-3 (|:| |fst| (-440)) (|:| -2713 "void")))) (-15 -2886 ((-1282) (-1186) $)) (-15 -2886 ((-1282) (-1186))) (-15 -2886 ((-1282))) (-15 -1910 ((-1282) (-1186))) (-15 -2380 ($)) (-15 -2207 ((-3 (|:| |fst| (-440)) (|:| -2713 "void")) (-1186) $)) (-15 -1341 ((-650 (-1186)) (-1186) $)) (-15 -2390 ((-1190) (-1186) $))))
-((-3227 (((-650 (-650 (-3 (|:| -3600 (-1186)) (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $) 66)) (-2271 (((-650 (-3 (|:| -3600 (-1186)) (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $) 47)) (-3345 (($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-443))))) 17)) (-1910 (((-1282) $) 73)) (-4066 (((-650 (-1186)) $) 22)) (-2456 (((-1113) $) 60)) (-3541 (((-443) (-1186) $) 27)) (-2294 (((-650 (-1186)) $) 30)) (-2380 (($) 19)) (-2859 (((-443) (-650 (-1186)) (-443) $) 25) (((-443) (-1186) (-443) $) 24)) (-3799 (((-868) $) 9) (((-1199 (-1186) (-443)) $) 13)))
-(((-1190) (-13 (-619 (-868)) (-10 -8 (-15 -3799 ((-1199 (-1186) (-443)) $)) (-15 -2380 ($)) (-15 -2859 ((-443) (-650 (-1186)) (-443) $)) (-15 -2859 ((-443) (-1186) (-443) $)) (-15 -3541 ((-443) (-1186) $)) (-15 -4066 ((-650 (-1186)) $)) (-15 -2271 ((-650 (-3 (|:| -3600 (-1186)) (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $)) (-15 -2294 ((-650 (-1186)) $)) (-15 -3227 ((-650 (-650 (-3 (|:| -3600 (-1186)) (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $)) (-15 -2456 ((-1113) $)) (-15 -1910 ((-1282) $)) (-15 -3345 ($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-443))))))))) (T -1190))
-((-3799 (*1 *2 *1) (-12 (-5 *2 (-1199 (-1186) (-443))) (-5 *1 (-1190)))) (-2380 (*1 *1) (-5 *1 (-1190))) (-2859 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *1 (-1190)))) (-2859 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1190)))) (-3541 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-443)) (-5 *1 (-1190)))) (-4066 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))) (-2271 (*1 *2 *3 *1) (-12 (-5 *3 (-440)) (-5 *2 (-650 (-3 (|:| -3600 (-1186)) (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) (-5 *1 (-1190)))) (-2294 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))) (-3227 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-3 (|:| -3600 (-1186)) (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))))) (-5 *1 (-1190)))) (-2456 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1190)))) (-1910 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1190)))) (-3345 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-443))))) (-5 *1 (-1190)))))
-(-13 (-619 (-868)) (-10 -8 (-15 -3799 ((-1199 (-1186) (-443)) $)) (-15 -2380 ($)) (-15 -2859 ((-443) (-650 (-1186)) (-443) $)) (-15 -2859 ((-443) (-1186) (-443) $)) (-15 -3541 ((-443) (-1186) $)) (-15 -4066 ((-650 (-1186)) $)) (-15 -2271 ((-650 (-3 (|:| -3600 (-1186)) (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $)) (-15 -2294 ((-650 (-1186)) $)) (-15 -3227 ((-650 (-650 (-3 (|:| -3600 (-1186)) (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $)) (-15 -2456 ((-1113) $)) (-15 -1910 ((-1282) $)) (-15 -3345 ($ (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-443))))))))
-((-2558 (((-112) $ $) NIL)) (-4380 (((-3 (-570) "failed") $) 29) (((-3 (-227) "failed") $) 35) (((-3 (-512) "failed") $) 43) (((-3 (-1168) "failed") $) 47)) (-3216 (((-570) $) 30) (((-227) $) 36) (((-512) $) 40) (((-1168) $) 48)) (-4222 (((-112) $) 53)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3056 (((-3 (-570) (-227) (-512) (-1168) $) $) 55)) (-1951 (((-650 $) $) 57)) (-1425 (((-1113) $) 24) (($ (-1113)) 25)) (-1771 (((-112) $) 56)) (-3799 (((-868) $) 23) (($ (-570)) 26) (($ (-227)) 32) (($ (-512)) 38) (($ (-1168)) 44) (((-542) $) 59) (((-570) $) 31) (((-227) $) 37) (((-512) $) 41) (((-1168) $) 49)) (-1851 (((-112) $ (|[\|\|]| (-570))) 10) (((-112) $ (|[\|\|]| (-227))) 13) (((-112) $ (|[\|\|]| (-512))) 19) (((-112) $ (|[\|\|]| (-1168))) 16)) (-3937 (($ (-512) (-650 $)) 51) (($ $ (-650 $)) 52)) (-2335 (((-112) $ $) NIL)) (-3983 (((-570) $) 27) (((-227) $) 33) (((-512) $) 39) (((-1168) $) 45)) (-3022 (((-112) $ $) 7)))
-(((-1191) (-13 (-1272) (-1109) (-1047 (-570)) (-1047 (-227)) (-1047 (-512)) (-1047 (-1168)) (-619 (-542)) (-10 -8 (-15 -1425 ((-1113) $)) (-15 -1425 ($ (-1113))) (-15 -3799 ((-570) $)) (-15 -3983 ((-570) $)) (-15 -3799 ((-227) $)) (-15 -3983 ((-227) $)) (-15 -3799 ((-512) $)) (-15 -3983 ((-512) $)) (-15 -3799 ((-1168) $)) (-15 -3983 ((-1168) $)) (-15 -3937 ($ (-512) (-650 $))) (-15 -3937 ($ $ (-650 $))) (-15 -4222 ((-112) $)) (-15 -3056 ((-3 (-570) (-227) (-512) (-1168) $) $)) (-15 -1951 ((-650 $) $)) (-15 -1771 ((-112) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-570)))) (-15 -1851 ((-112) $ (|[\|\|]| (-227)))) (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -1851 ((-112) $ (|[\|\|]| (-1168))))))) (T -1191))
-((-1425 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1191)))) (-1425 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-1191)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))) (-3983 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191)))) (-3983 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191)))) (-3983 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191)))) (-3983 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191)))) (-3937 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-1191))) (-5 *1 (-1191)))) (-3937 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))) (-4222 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))) (-3056 (*1 *2 *1) (-12 (-5 *2 (-3 (-570) (-227) (-512) (-1168) (-1191))) (-5 *1 (-1191)))) (-1951 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))) (-1771 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-227))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1851 (*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 -1425 ((-1113) $)) (-15 -1425 ($ (-1113))) (-15 -3799 ((-570) $)) (-15 -3983 ((-570) $)) (-15 -3799 ((-227) $)) (-15 -3983 ((-227) $)) (-15 -3799 ((-512) $)) (-15 -3983 ((-512) $)) (-15 -3799 ((-1168) $)) (-15 -3983 ((-1168) $)) (-15 -3937 ($ (-512) (-650 $))) (-15 -3937 ($ $ (-650 $))) (-15 -4222 ((-112) $)) (-15 -3056 ((-3 (-570) (-227) (-512) (-1168) $) $)) (-15 -1951 ((-650 $) $)) (-15 -1771 ((-112) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-570)))) (-15 -1851 ((-112) $ (|[\|\|]| (-227)))) (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -1851 ((-112) $ (|[\|\|]| (-1168))))))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) 22)) (-1705 (($) 12 T CONST)) (-3446 (($) 26)) (-3466 (($ $ $) NIL) (($) 19 T CONST)) (-2800 (($ $ $) NIL) (($) 20 T CONST)) (-1884 (((-928) $) 24)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) 23)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-1192 |#1|) (-13 (-850) (-10 -8 (-15 -1705 ($) -3725))) (-928)) (T -1192))
-((-1705 (*1 *1) (-12 (-5 *1 (-1192 *2)) (-14 *2 (-928)))))
-(-13 (-850) (-10 -8 (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL)) (-3040 (((-1282) $ (-1168) (-1168)) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-1168) |#1|) NIL)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 |#1| "failed") (-1168) $) NIL)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109))))) (-2385 (($ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (((-3 |#1| "failed") (-1168) $) NIL)) (-1742 (($ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-1168) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-1168)) NIL)) (-3630 (((-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-1168) $) NIL (|has| (-1168) (-856)))) (-2052 (((-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-1168) $) NIL (|has| (-1168) (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4453))) (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL) (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2914 (((-650 (-1168)) $) NIL)) (-2343 (((-112) (-1168) $) NIL)) (-2885 (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-2903 (((-650 (-1168)) $) NIL)) (-1358 (((-112) (-1168) $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-3546 ((|#1| $) NIL (|has| (-1168) (-856)))) (-2770 (((-3 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) "failed") (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL (-12 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-313 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-1168)) NIL) ((|#1| $ (-1168) |#1|) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-619 (-868))) (|has| |#1| (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 (-1168)) (|:| -2340 |#1|)) (-1109)) (|has| |#1| (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1169 |#1|) (-13 (-1203 (-1168) |#1|) (-10 -7 (-6 -4452))) (-1109)) (T -1169))
+NIL
+(-13 (-1203 (-1168) |#1|) (-10 -7 (-6 -4452)))
+((-1425 (((-1166 |#1|) (-1166 |#1|)) 83)) (-1929 (((-3 (-1166 |#1|) "failed") (-1166 |#1|)) 39)) (-2856 (((-1166 |#1|) (-413 (-570)) (-1166 |#1|)) 133 (|has| |#1| (-38 (-413 (-570)))))) (-1974 (((-1166 |#1|) |#1| (-1166 |#1|)) 139 (|has| |#1| (-368)))) (-3893 (((-1166 |#1|) (-1166 |#1|)) 97)) (-2376 (((-1166 (-570)) (-570)) 63)) (-4196 (((-1166 |#1|) (-1166 (-1166 |#1|))) 116 (|has| |#1| (-38 (-413 (-570)))))) (-2757 (((-1166 |#1|) (-570) (-570) (-1166 |#1|)) 102)) (-3387 (((-1166 |#1|) |#1| (-570)) 51)) (-1524 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 66)) (-3734 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 136 (|has| |#1| (-368)))) (-3715 (((-1166 |#1|) |#1| (-1 (-1166 |#1|))) 115 (|has| |#1| (-38 (-413 (-570)))))) (-3094 (((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|))) 137 (|has| |#1| (-368)))) (-1583 (((-1166 |#1|) (-1166 |#1|)) 96)) (-3042 (((-1166 |#1|) (-1166 |#1|)) 82)) (-4034 (((-1166 |#1|) (-570) (-570) (-1166 |#1|)) 103)) (-2023 (((-1166 |#1|) |#1| (-1166 |#1|)) 112 (|has| |#1| (-38 (-413 (-570)))))) (-1448 (((-1166 (-570)) (-570)) 62)) (-3810 (((-1166 |#1|) |#1|) 65)) (-2147 (((-1166 |#1|) (-1166 |#1|) (-570) (-570)) 99)) (-4284 (((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|)) 72)) (-2548 (((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|)) 37)) (-2086 (((-1166 |#1|) (-1166 |#1|)) 98)) (-1771 (((-1166 |#1|) (-1166 |#1|) |#1|) 77)) (-2102 (((-1166 |#1|) (-1166 |#1|)) 68)) (-1602 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 78)) (-3802 (((-1166 |#1|) |#1|) 73)) (-2924 (((-1166 |#1|) (-1166 (-1166 |#1|))) 88)) (-3125 (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 38)) (-3114 (((-1166 |#1|) (-1166 |#1|)) 21) (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 23)) (-3104 (((-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 -3104 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3114 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3114 ((-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2548 ((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|))) (-15 -3125 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1929 ((-3 (-1166 |#1|) "failed") (-1166 |#1|))) (-15 -3387 ((-1166 |#1|) |#1| (-570))) (-15 -1448 ((-1166 (-570)) (-570))) (-15 -2376 ((-1166 (-570)) (-570))) (-15 -3810 ((-1166 |#1|) |#1|)) (-15 -1524 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2102 ((-1166 |#1|) (-1166 |#1|))) (-15 -4284 ((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|))) (-15 -3802 ((-1166 |#1|) |#1|)) (-15 -1771 ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -1602 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3042 ((-1166 |#1|) (-1166 |#1|))) (-15 -1425 ((-1166 |#1|) (-1166 |#1|))) (-15 -2924 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -1583 ((-1166 |#1|) (-1166 |#1|))) (-15 -3893 ((-1166 |#1|) (-1166 |#1|))) (-15 -2086 ((-1166 |#1|) (-1166 |#1|))) (-15 -2147 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))) (-15 -2757 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (-15 -4034 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 -3715 ((-1166 |#1|) |#1| (-1 (-1166 |#1|)))) (-15 -4196 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -2856 ((-1166 |#1|) (-413 (-570)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3734 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3094 ((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|)))) (-15 -1974 ((-1166 |#1|) |#1| (-1166 |#1|)))) |%noBranch|)) (-1058)) (T -1170))
+((-1974 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3094 (*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)))) (-3734 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2856 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1058)) (-5 *3 (-413 (-570))) (-5 *1 (-1170 *4)))) (-4196 (*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)))) (-3715 (*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)))) (-2023 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-4034 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-2757 (*1 *2 *3 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-2147 (*1 *2 *2 *3 *3) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-570)) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-2086 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3893 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1583 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2924 (*1 *2 *3) (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4)) (-4 *4 (-1058)))) (-1425 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3042 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1602 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1771 (*1 *2 *2 *3) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3802 (*1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-4284 (*1 *2 *3 *2) (-12 (-5 *2 (-1166 *4)) (-5 *3 (-1 *4 (-570))) (-4 *4 (-1058)) (-5 *1 (-1170 *4)))) (-2102 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-1524 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3810 (*1 *2 *3) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-2376 (*1 *2 *3) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058)) (-5 *3 (-570)))) (-1448 (*1 *2 *3) (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058)) (-5 *3 (-570)))) (-3387 (*1 *2 *3 *4) (-12 (-5 *4 (-570)) (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))) (-1929 (*1 *2 *2) (|partial| -12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3125 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-2548 (*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)))) (-3114 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3114 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))) (-3104 (*1 *2 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
+(-10 -7 (-15 -3104 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3114 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3114 ((-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 * ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 * ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -2548 ((-3 (-1166 |#1|) "failed") (-1166 |#1|) (-1166 |#1|))) (-15 -3125 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -1929 ((-3 (-1166 |#1|) "failed") (-1166 |#1|))) (-15 -3387 ((-1166 |#1|) |#1| (-570))) (-15 -1448 ((-1166 (-570)) (-570))) (-15 -2376 ((-1166 (-570)) (-570))) (-15 -3810 ((-1166 |#1|) |#1|)) (-15 -1524 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2102 ((-1166 |#1|) (-1166 |#1|))) (-15 -4284 ((-1166 |#1|) (-1 |#1| (-570)) (-1166 |#1|))) (-15 -3802 ((-1166 |#1|) |#1|)) (-15 -1771 ((-1166 |#1|) (-1166 |#1|) |#1|)) (-15 -1602 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3042 ((-1166 |#1|) (-1166 |#1|))) (-15 -1425 ((-1166 |#1|) (-1166 |#1|))) (-15 -2924 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -1583 ((-1166 |#1|) (-1166 |#1|))) (-15 -3893 ((-1166 |#1|) (-1166 |#1|))) (-15 -2086 ((-1166 |#1|) (-1166 |#1|))) (-15 -2147 ((-1166 |#1|) (-1166 |#1|) (-570) (-570))) (-15 -2757 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (-15 -4034 ((-1166 |#1|) (-570) (-570) (-1166 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ((-1166 |#1|) |#1| (-1166 |#1|))) (-15 -3715 ((-1166 |#1|) |#1| (-1 (-1166 |#1|)))) (-15 -4196 ((-1166 |#1|) (-1166 (-1166 |#1|)))) (-15 -2856 ((-1166 |#1|) (-413 (-570)) (-1166 |#1|)))) |%noBranch|) (IF (|has| |#1| (-368)) (PROGN (-15 -3734 ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -3094 ((-1166 |#1|) (-1 |#1| (-570)) |#1| (-1 (-1166 |#1|)))) (-15 -1974 ((-1166 |#1|) |#1| (-1166 |#1|)))) |%noBranch|))
+((-2890 (((-1166 |#1|) (-1166 |#1|)) 60)) (-2755 (((-1166 |#1|) (-1166 |#1|)) 42)) (-2869 (((-1166 |#1|) (-1166 |#1|)) 56)) (-2736 (((-1166 |#1|) (-1166 |#1|)) 38)) (-4109 (((-1166 |#1|) (-1166 |#1|)) 63)) (-2777 (((-1166 |#1|) (-1166 |#1|)) 45)) (-2792 (((-1166 |#1|) (-1166 |#1|)) 34)) (-4389 (((-1166 |#1|) (-1166 |#1|)) 29)) (-4120 (((-1166 |#1|) (-1166 |#1|)) 64)) (-2791 (((-1166 |#1|) (-1166 |#1|)) 46)) (-2902 (((-1166 |#1|) (-1166 |#1|)) 61)) (-2768 (((-1166 |#1|) (-1166 |#1|)) 43)) (-2879 (((-1166 |#1|) (-1166 |#1|)) 58)) (-2743 (((-1166 |#1|) (-1166 |#1|)) 40)) (-4157 (((-1166 |#1|) (-1166 |#1|)) 68)) (-2828 (((-1166 |#1|) (-1166 |#1|)) 50)) (-4129 (((-1166 |#1|) (-1166 |#1|)) 66)) (-2804 (((-1166 |#1|) (-1166 |#1|)) 48)) (-4179 (((-1166 |#1|) (-1166 |#1|)) 71)) (-2848 (((-1166 |#1|) (-1166 |#1|)) 53)) (-1579 (((-1166 |#1|) (-1166 |#1|)) 72)) (-2858 (((-1166 |#1|) (-1166 |#1|)) 54)) (-4166 (((-1166 |#1|) (-1166 |#1|)) 70)) (-2838 (((-1166 |#1|) (-1166 |#1|)) 52)) (-4144 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2817 (((-1166 |#1|) (-1166 |#1|)) 51)) (** (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 36)))
+(((-1171 |#1|) (-10 -7 (-15 -4389 ((-1166 |#1|) (-1166 |#1|))) (-15 -2792 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2736 ((-1166 |#1|) (-1166 |#1|))) (-15 -2743 ((-1166 |#1|) (-1166 |#1|))) (-15 -2755 ((-1166 |#1|) (-1166 |#1|))) (-15 -2768 ((-1166 |#1|) (-1166 |#1|))) (-15 -2777 ((-1166 |#1|) (-1166 |#1|))) (-15 -2791 ((-1166 |#1|) (-1166 |#1|))) (-15 -2804 ((-1166 |#1|) (-1166 |#1|))) (-15 -2817 ((-1166 |#1|) (-1166 |#1|))) (-15 -2828 ((-1166 |#1|) (-1166 |#1|))) (-15 -2838 ((-1166 |#1|) (-1166 |#1|))) (-15 -2848 ((-1166 |#1|) (-1166 |#1|))) (-15 -2858 ((-1166 |#1|) (-1166 |#1|))) (-15 -2869 ((-1166 |#1|) (-1166 |#1|))) (-15 -2879 ((-1166 |#1|) (-1166 |#1|))) (-15 -2890 ((-1166 |#1|) (-1166 |#1|))) (-15 -2902 ((-1166 |#1|) (-1166 |#1|))) (-15 -4109 ((-1166 |#1|) (-1166 |#1|))) (-15 -4120 ((-1166 |#1|) (-1166 |#1|))) (-15 -4129 ((-1166 |#1|) (-1166 |#1|))) (-15 -4144 ((-1166 |#1|) (-1166 |#1|))) (-15 -4157 ((-1166 |#1|) (-1166 |#1|))) (-15 -4166 ((-1166 |#1|) (-1166 |#1|))) (-15 -4179 ((-1166 |#1|) (-1166 |#1|))) (-15 -1579 ((-1166 |#1|) (-1166 |#1|)))) (-38 (-413 (-570)))) (T -1171))
+((-1579 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4179 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4166 (*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)))) (-4144 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4129 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4120 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4109 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2902 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2890 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2879 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2869 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2858 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2848 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2838 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2828 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2817 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2804 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2791 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2777 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2768 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2755 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2743 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-2736 (*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)))) (-2792 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))) (-4389 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1171 *3)))))
+(-10 -7 (-15 -4389 ((-1166 |#1|) (-1166 |#1|))) (-15 -2792 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2736 ((-1166 |#1|) (-1166 |#1|))) (-15 -2743 ((-1166 |#1|) (-1166 |#1|))) (-15 -2755 ((-1166 |#1|) (-1166 |#1|))) (-15 -2768 ((-1166 |#1|) (-1166 |#1|))) (-15 -2777 ((-1166 |#1|) (-1166 |#1|))) (-15 -2791 ((-1166 |#1|) (-1166 |#1|))) (-15 -2804 ((-1166 |#1|) (-1166 |#1|))) (-15 -2817 ((-1166 |#1|) (-1166 |#1|))) (-15 -2828 ((-1166 |#1|) (-1166 |#1|))) (-15 -2838 ((-1166 |#1|) (-1166 |#1|))) (-15 -2848 ((-1166 |#1|) (-1166 |#1|))) (-15 -2858 ((-1166 |#1|) (-1166 |#1|))) (-15 -2869 ((-1166 |#1|) (-1166 |#1|))) (-15 -2879 ((-1166 |#1|) (-1166 |#1|))) (-15 -2890 ((-1166 |#1|) (-1166 |#1|))) (-15 -2902 ((-1166 |#1|) (-1166 |#1|))) (-15 -4109 ((-1166 |#1|) (-1166 |#1|))) (-15 -4120 ((-1166 |#1|) (-1166 |#1|))) (-15 -4129 ((-1166 |#1|) (-1166 |#1|))) (-15 -4144 ((-1166 |#1|) (-1166 |#1|))) (-15 -4157 ((-1166 |#1|) (-1166 |#1|))) (-15 -4166 ((-1166 |#1|) (-1166 |#1|))) (-15 -4179 ((-1166 |#1|) (-1166 |#1|))) (-15 -1579 ((-1166 |#1|) (-1166 |#1|))))
+((-2890 (((-1166 |#1|) (-1166 |#1|)) 102)) (-2755 (((-1166 |#1|) (-1166 |#1|)) 61)) (-2020 (((-2 (|:| -2869 (-1166 |#1|)) (|:| -2879 (-1166 |#1|))) (-1166 |#1|)) 98)) (-2869 (((-1166 |#1|) (-1166 |#1|)) 99)) (-2360 (((-2 (|:| -2736 (-1166 |#1|)) (|:| -2743 (-1166 |#1|))) (-1166 |#1|)) 54)) (-2736 (((-1166 |#1|) (-1166 |#1|)) 55)) (-4109 (((-1166 |#1|) (-1166 |#1|)) 104)) (-2777 (((-1166 |#1|) (-1166 |#1|)) 68)) (-2792 (((-1166 |#1|) (-1166 |#1|)) 40)) (-4389 (((-1166 |#1|) (-1166 |#1|)) 37)) (-4120 (((-1166 |#1|) (-1166 |#1|)) 105)) (-2791 (((-1166 |#1|) (-1166 |#1|)) 69)) (-2902 (((-1166 |#1|) (-1166 |#1|)) 103)) (-2768 (((-1166 |#1|) (-1166 |#1|)) 64)) (-2879 (((-1166 |#1|) (-1166 |#1|)) 100)) (-2743 (((-1166 |#1|) (-1166 |#1|)) 56)) (-4157 (((-1166 |#1|) (-1166 |#1|)) 113)) (-2828 (((-1166 |#1|) (-1166 |#1|)) 88)) (-4129 (((-1166 |#1|) (-1166 |#1|)) 107)) (-2804 (((-1166 |#1|) (-1166 |#1|)) 84)) (-4179 (((-1166 |#1|) (-1166 |#1|)) 117)) (-2848 (((-1166 |#1|) (-1166 |#1|)) 92)) (-1579 (((-1166 |#1|) (-1166 |#1|)) 119)) (-2858 (((-1166 |#1|) (-1166 |#1|)) 94)) (-4166 (((-1166 |#1|) (-1166 |#1|)) 115)) (-2838 (((-1166 |#1|) (-1166 |#1|)) 90)) (-4144 (((-1166 |#1|) (-1166 |#1|)) 109)) (-2817 (((-1166 |#1|) (-1166 |#1|)) 86)) (** (((-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) 41)))
+(((-1172 |#1|) (-10 -7 (-15 -4389 ((-1166 |#1|) (-1166 |#1|))) (-15 -2792 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2360 ((-2 (|:| -2736 (-1166 |#1|)) (|:| -2743 (-1166 |#1|))) (-1166 |#1|))) (-15 -2736 ((-1166 |#1|) (-1166 |#1|))) (-15 -2743 ((-1166 |#1|) (-1166 |#1|))) (-15 -2755 ((-1166 |#1|) (-1166 |#1|))) (-15 -2768 ((-1166 |#1|) (-1166 |#1|))) (-15 -2777 ((-1166 |#1|) (-1166 |#1|))) (-15 -2791 ((-1166 |#1|) (-1166 |#1|))) (-15 -2804 ((-1166 |#1|) (-1166 |#1|))) (-15 -2817 ((-1166 |#1|) (-1166 |#1|))) (-15 -2828 ((-1166 |#1|) (-1166 |#1|))) (-15 -2838 ((-1166 |#1|) (-1166 |#1|))) (-15 -2848 ((-1166 |#1|) (-1166 |#1|))) (-15 -2858 ((-1166 |#1|) (-1166 |#1|))) (-15 -2020 ((-2 (|:| -2869 (-1166 |#1|)) (|:| -2879 (-1166 |#1|))) (-1166 |#1|))) (-15 -2869 ((-1166 |#1|) (-1166 |#1|))) (-15 -2879 ((-1166 |#1|) (-1166 |#1|))) (-15 -2890 ((-1166 |#1|) (-1166 |#1|))) (-15 -2902 ((-1166 |#1|) (-1166 |#1|))) (-15 -4109 ((-1166 |#1|) (-1166 |#1|))) (-15 -4120 ((-1166 |#1|) (-1166 |#1|))) (-15 -4129 ((-1166 |#1|) (-1166 |#1|))) (-15 -4144 ((-1166 |#1|) (-1166 |#1|))) (-15 -4157 ((-1166 |#1|) (-1166 |#1|))) (-15 -4166 ((-1166 |#1|) (-1166 |#1|))) (-15 -4179 ((-1166 |#1|) (-1166 |#1|))) (-15 -1579 ((-1166 |#1|) (-1166 |#1|)))) (-38 (-413 (-570)))) (T -1172))
+((-1579 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4179 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4166 (*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)))) (-4144 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4129 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4120 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4109 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2902 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2890 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2879 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2869 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2020 (*1 *2 *3) (-12 (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-2 (|:| -2869 (-1166 *4)) (|:| -2879 (-1166 *4)))) (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))) (-2858 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2848 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2838 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2828 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2817 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2804 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2791 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2777 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2768 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2755 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2743 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2736 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-2360 (*1 *2 *3) (-12 (-4 *4 (-38 (-413 (-570)))) (-5 *2 (-2 (|:| -2736 (-1166 *4)) (|:| -2743 (-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)))) (-2792 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))) (-4389 (*1 *2 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1172 *3)))))
+(-10 -7 (-15 -4389 ((-1166 |#1|) (-1166 |#1|))) (-15 -2792 ((-1166 |#1|) (-1166 |#1|))) (-15 ** ((-1166 |#1|) (-1166 |#1|) (-1166 |#1|))) (-15 -2360 ((-2 (|:| -2736 (-1166 |#1|)) (|:| -2743 (-1166 |#1|))) (-1166 |#1|))) (-15 -2736 ((-1166 |#1|) (-1166 |#1|))) (-15 -2743 ((-1166 |#1|) (-1166 |#1|))) (-15 -2755 ((-1166 |#1|) (-1166 |#1|))) (-15 -2768 ((-1166 |#1|) (-1166 |#1|))) (-15 -2777 ((-1166 |#1|) (-1166 |#1|))) (-15 -2791 ((-1166 |#1|) (-1166 |#1|))) (-15 -2804 ((-1166 |#1|) (-1166 |#1|))) (-15 -2817 ((-1166 |#1|) (-1166 |#1|))) (-15 -2828 ((-1166 |#1|) (-1166 |#1|))) (-15 -2838 ((-1166 |#1|) (-1166 |#1|))) (-15 -2848 ((-1166 |#1|) (-1166 |#1|))) (-15 -2858 ((-1166 |#1|) (-1166 |#1|))) (-15 -2020 ((-2 (|:| -2869 (-1166 |#1|)) (|:| -2879 (-1166 |#1|))) (-1166 |#1|))) (-15 -2869 ((-1166 |#1|) (-1166 |#1|))) (-15 -2879 ((-1166 |#1|) (-1166 |#1|))) (-15 -2890 ((-1166 |#1|) (-1166 |#1|))) (-15 -2902 ((-1166 |#1|) (-1166 |#1|))) (-15 -4109 ((-1166 |#1|) (-1166 |#1|))) (-15 -4120 ((-1166 |#1|) (-1166 |#1|))) (-15 -4129 ((-1166 |#1|) (-1166 |#1|))) (-15 -4144 ((-1166 |#1|) (-1166 |#1|))) (-15 -4157 ((-1166 |#1|) (-1166 |#1|))) (-15 -4166 ((-1166 |#1|) (-1166 |#1|))) (-15 -4179 ((-1166 |#1|) (-1166 |#1|))) (-15 -1579 ((-1166 |#1|) (-1166 |#1|))))
+((-2011 (((-965 |#2|) |#2| |#2|) 50)) (-1944 ((|#2| |#2| |#1|) 19 (|has| |#1| (-311)))))
+(((-1173 |#1| |#2|) (-10 -7 (-15 -2011 ((-965 |#2|) |#2| |#2|)) (IF (|has| |#1| (-311)) (-15 -1944 (|#2| |#2| |#1|)) |%noBranch|)) (-562) (-1253 |#1|)) (T -1173))
+((-1944 (*1 *2 *2 *3) (-12 (-4 *3 (-311)) (-4 *3 (-562)) (-5 *1 (-1173 *3 *2)) (-4 *2 (-1253 *3)))) (-2011 (*1 *2 *3 *3) (-12 (-4 *4 (-562)) (-5 *2 (-965 *3)) (-5 *1 (-1173 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -2011 ((-965 |#2|) |#2| |#2|)) (IF (|has| |#1| (-311)) (-15 -1944 (|#2| |#2| |#1|)) |%noBranch|))
+((-2560 (((-112) $ $) NIL)) (-2050 (($ $ (-650 (-777))) 79)) (-2169 (($) 33)) (-1969 (($ $) 51)) (-3657 (((-650 $) $) 60)) (-4067 (((-112) $) 19)) (-3793 (((-650 (-950 |#2|)) $) 86)) (-1488 (($ $) 80)) (-1653 (((-777) $) 47)) (-4294 (($) 32)) (-2737 (($ $ (-650 (-777)) (-950 |#2|)) 72) (($ $ (-650 (-777)) (-777)) 73) (($ $ (-777) (-950 |#2|)) 75)) (-3183 (($ $ $) 57) (($ (-650 $)) 59)) (-2609 (((-777) $) 87)) (-4244 (((-112) $) 15)) (-3989 (((-1168) $) NIL)) (-2085 (((-112) $) 22)) (-3580 (((-1129) $) NIL)) (-1734 (((-173) $) 85)) (-1643 (((-950 |#2|) $) 81)) (-3537 (((-777) $) 82)) (-2735 (((-112) $) 84)) (-3407 (($ $ (-650 (-777)) (-173)) 78)) (-2813 (($ $) 52)) (-3802 (((-868) $) 98)) (-2746 (($ $ (-650 (-777)) (-112)) 77)) (-4259 (((-650 $) $) 11)) (-2923 (($ $ (-777)) 46)) (-1916 (($ $) 43)) (-3359 (((-112) $ $) NIL)) (-1921 (($ $ $ (-950 |#2|) (-777)) 68)) (-2276 (($ $ (-950 |#2|)) 67)) (-4030 (($ $ (-650 (-777)) (-950 |#2|)) 66) (($ $ (-650 (-777)) (-777)) 70) (((-777) $ (-950 |#2|)) 71)) (-3025 (((-112) $ $) 92)))
+(((-1174 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -4244 ((-112) $)) (-15 -4067 ((-112) $)) (-15 -2085 ((-112) $)) (-15 -4294 ($)) (-15 -2169 ($)) (-15 -1916 ($ $)) (-15 -2923 ($ $ (-777))) (-15 -4259 ((-650 $) $)) (-15 -1653 ((-777) $)) (-15 -1969 ($ $)) (-15 -2813 ($ $)) (-15 -3183 ($ $ $)) (-15 -3183 ($ (-650 $))) (-15 -3657 ((-650 $) $)) (-15 -4030 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2276 ($ $ (-950 |#2|))) (-15 -1921 ($ $ $ (-950 |#2|) (-777))) (-15 -2737 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -4030 ($ $ (-650 (-777)) (-777))) (-15 -2737 ($ $ (-650 (-777)) (-777))) (-15 -4030 ((-777) $ (-950 |#2|))) (-15 -2737 ($ $ (-777) (-950 |#2|))) (-15 -2746 ($ $ (-650 (-777)) (-112))) (-15 -3407 ($ $ (-650 (-777)) (-173))) (-15 -2050 ($ $ (-650 (-777)))) (-15 -1643 ((-950 |#2|) $)) (-15 -3537 ((-777) $)) (-15 -2735 ((-112) $)) (-15 -1734 ((-173) $)) (-15 -2609 ((-777) $)) (-15 -1488 ($ $)) (-15 -3793 ((-650 (-950 |#2|)) $)))) (-928) (-1058)) (T -1174))
+((-4244 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4067 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2085 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4294 (*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2169 (*1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-1916 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2923 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4259 (*1 *2 *1) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1653 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1969 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-2813 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3183 (*1 *1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3183 (*1 *1 *2) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3657 (*1 *2 *1) (-12 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-4030 (*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)))) (-2276 (*1 *1 *1 *2) (-12 (-5 *2 (-950 *4)) (-4 *4 (-1058)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)))) (-1921 (*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)))) (-2737 (*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)))) (-4030 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2737 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-4030 (*1 *2 *1 *3) (-12 (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *2 (-777)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-2737 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-950 *5)) (-4 *5 (-1058)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)))) (-2746 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-112)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-3407 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-650 (-777))) (-5 *3 (-173)) (-5 *1 (-1174 *4 *5)) (-14 *4 (-928)) (-4 *5 (-1058)))) (-2050 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1643 (*1 *2 *1) (-12 (-5 *2 (-950 *4)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-3537 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2735 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1734 (*1 *2 *1) (-12 (-5 *2 (-173)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-2609 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928)) (-4 *4 (-1058)))) (-1488 (*1 *1 *1) (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))) (-3793 (*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 -4244 ((-112) $)) (-15 -4067 ((-112) $)) (-15 -2085 ((-112) $)) (-15 -4294 ($)) (-15 -2169 ($)) (-15 -1916 ($ $)) (-15 -2923 ($ $ (-777))) (-15 -4259 ((-650 $) $)) (-15 -1653 ((-777) $)) (-15 -1969 ($ $)) (-15 -2813 ($ $)) (-15 -3183 ($ $ $)) (-15 -3183 ($ (-650 $))) (-15 -3657 ((-650 $) $)) (-15 -4030 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -2276 ($ $ (-950 |#2|))) (-15 -1921 ($ $ $ (-950 |#2|) (-777))) (-15 -2737 ($ $ (-650 (-777)) (-950 |#2|))) (-15 -4030 ($ $ (-650 (-777)) (-777))) (-15 -2737 ($ $ (-650 (-777)) (-777))) (-15 -4030 ((-777) $ (-950 |#2|))) (-15 -2737 ($ $ (-777) (-950 |#2|))) (-15 -2746 ($ $ (-650 (-777)) (-112))) (-15 -3407 ($ $ (-650 (-777)) (-173))) (-15 -2050 ($ $ (-650 (-777)))) (-15 -1643 ((-950 |#2|) $)) (-15 -3537 ((-777) $)) (-15 -2735 ((-112) $)) (-15 -1734 ((-173) $)) (-15 -2609 ((-777) $)) (-15 -1488 ($ $)) (-15 -3793 ((-650 (-950 |#2|)) $))))
+((-2560 (((-112) $ $) NIL)) (-2226 ((|#2| $) 11)) (-2215 ((|#1| $) 10)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3814 (($ |#1| |#2|) 9)) (-3802 (((-868) $) 16)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1175 |#1| |#2|) (-13 (-1109) (-10 -8 (-15 -3814 ($ |#1| |#2|)) (-15 -2215 (|#1| $)) (-15 -2226 (|#2| $)))) (-1109) (-1109)) (T -1175))
+((-3814 (*1 *1 *2 *3) (-12 (-5 *1 (-1175 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-2215 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-1175 *2 *3)) (-4 *3 (-1109)))) (-2226 (*1 *2 *1) (-12 (-4 *2 (-1109)) (-5 *1 (-1175 *3 *2)) (-4 *3 (-1109)))))
+(-13 (-1109) (-10 -8 (-15 -3814 ($ |#1| |#2|)) (-15 -2215 (|#1| $)) (-15 -2226 (|#2| $))))
+((-2560 (((-112) $ $) NIL)) (-3742 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1176) (-13 (-1092) (-10 -8 (-15 -3742 ((-1144) $))))) (T -1176))
+((-3742 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1176)))))
+(-13 (-1092) (-10 -8 (-15 -3742 ((-1144) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 11)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4306 (($ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-2617 (((-112) $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1622 (($ $ (-570)) NIL) (($ $ (-570) (-570)) 75)) (-3257 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) NIL)) (-2569 (((-1184 |#1| |#2| |#3|) $) 42)) (-4193 (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 32)) (-1822 (((-1184 |#1| |#2| |#3|) $) 33)) (-2890 (($ $) 116 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 92 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2869 (($ $) 112 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 88 (|has| |#1| (-38 (-413 (-570)))))) (-3408 (((-570) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3421 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) NIL)) (-4109 (($ $) 120 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 96 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-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))))) (-1907 (($ $) 37) (($ (-570) $) 38)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-1184 |#1| |#2| |#3|)) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2990 (-695 (-1184 |#1| |#2| |#3|))) (|:| |vec| (-1277 (-1184 |#1| |#2| |#3|)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2990 (-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))))) (-1929 (((-3 $ "failed") $) 54)) (-1987 (((-413 (-959 |#1|)) $ (-570)) 74 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 76 (|has| |#1| (-562)))) (-3449 (($) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-2346 (((-112) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-2646 (((-112) $) 28)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1557 (((-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))))) (-3941 (((-570) $) NIL) (((-570) $ (-570)) 26)) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL (|has| |#1| (-368)))) (-4402 (((-1184 |#1| |#2| |#3|) $) 44 (|has| |#1| (-368)))) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4369 (((-3 $ "failed") $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))))) (-2788 (((-112) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3660 (($ $ (-928)) NIL)) (-3240 (($ (-1 |#1| (-570)) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-570)) 19) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3469 (($ $ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2472 (($ $ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-368)))) (-2792 (($ $) 81 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1839 (($ (-570) (-1184 |#1| |#2| |#3|)) 36)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2023 (($ $) 79 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-2439 (($) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3889 (($ $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1920 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3152 (($ $ (-570)) 158)) (-2548 (((-3 $ "failed") $ $) 55 (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4389 (($ $) 82 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-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))))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#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))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-3550 (($ $ (-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 (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 56 (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2895 (-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 (-2895 (-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 (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-1526 (($ $) NIL (|has| |#1| (-368)))) (-4416 (((-1184 |#1| |#2| |#3|) $) 46 (|has| |#1| (-368)))) (-3079 (((-570) $) 43)) (-4120 (($ $) 122 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 98 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 118 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 94 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 114 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 90 (|has| |#1| (-38 (-413 (-570)))))) (-1426 (((-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))))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-1682 (($ $) NIL)) (-3802 (((-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 (-2895 (-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 (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))) (|has| |#1| (-38 (-413 (-570))))))) (-1864 ((|#1| $ (-570)) 77)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-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))))) (-2851 (((-777)) NIL T CONST)) (-2289 ((|#1| $) 12)) (-1918 (((-1184 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 104 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4129 (($ $) 124 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 100 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 108 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 110 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 106 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 126 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 102 (|has| |#1| (-38 (-413 (-570)))))) (-3231 (($ $) NIL (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1862 (($) 21 T CONST)) (-1876 (($) 16 T CONST)) (-2945 (($ $ (-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 (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2895 (-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 (-2895 (-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 (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-3075 (((-112) $ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3055 (((-112) $ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3045 (((-112) $ $) NIL (-2895 (-12 (|has| (-1184 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1184 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 49 (|has| |#1| (-368))) (($ (-1184 |#1| |#2| |#3|) (-1184 |#1| |#2| |#3|)) 50 (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3802 ($ (-1273 |#2|))) (-15 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1177))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1177 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2023 (*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 -3802 ($ (-1273 |#2|))) (-15 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-3321 ((|#2| |#2| (-1101 |#2|)) 26) ((|#2| |#2| (-1186)) 28)))
+(((-1178 |#1| |#2|) (-10 -7 (-15 -3321 (|#2| |#2| (-1186))) (-15 -3321 (|#2| |#2| (-1101 |#2|)))) (-13 (-562) (-1047 (-570)) (-645 (-570))) (-13 (-436 |#1|) (-161) (-27) (-1212))) (T -1178))
+((-3321 (*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)))) (-3321 (*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 -3321 (|#2| |#2| (-1186))) (-15 -3321 (|#2| |#2| (-1101 |#2|))))
+((-3321 (((-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 -3321 ((-413 (-959 |#1|)) (-959 |#1|) (-1186))) (-15 -3321 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -3321 ((-413 (-959 |#1|)) (-959 |#1|) (-1101 (-959 |#1|)))) (-15 -3321 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1101 (-413 (-959 |#1|)))))) (-13 (-562) (-1047 (-570)))) (T -1179))
+((-3321 (*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)))) (-3321 (*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)))) (-3321 (*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))))) (-3321 (*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 -3321 ((-413 (-959 |#1|)) (-959 |#1|) (-1186))) (-15 -3321 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1186))) (-15 -3321 ((-413 (-959 |#1|)) (-959 |#1|) (-1101 (-959 |#1|)))) (-15 -3321 ((-3 (-413 (-959 |#1|)) (-320 |#1|)) (-413 (-959 |#1|)) (-1101 (-413 (-959 |#1|))))))
+((-1357 (((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|)) 13)))
+(((-1180 |#1| |#2|) (-10 -7 (-15 -1357 ((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|)))) (-1058) (-1058)) (T -1180))
+((-1357 (*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 -1357 ((-1182 |#2|) (-1 |#2| |#1|) (-1182 |#1|))))
+((-3871 (((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))) 51)) (-3804 (((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))) 52)))
+(((-1181 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3804 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))) (-15 -3871 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|))))) (-799) (-856) (-458) (-956 |#3| |#1| |#2|)) (T -1181))
+((-3871 (*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))))) (-3804 (*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 -3804 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))) (-15 -3871 ((-424 (-1182 (-413 |#4|))) (-1182 (-413 |#4|)))))
+((-2560 (((-112) $ $) 171)) (-3721 (((-112) $) 43)) (-3975 (((-1277 |#1|) $ (-777)) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-1904 (($ (-1182 |#1|)) NIL)) (-3778 (((-1182 $) $ (-1091)) 82) (((-1182 |#1|) $) 71)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) 164 (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3162 (($ $ $) 158 (|has| |#1| (-562)))) (-2536 (((-424 (-1182 $)) (-1182 $)) 95 (|has| |#1| (-916)))) (-4310 (($ $) NIL (|has| |#1| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 115 (|has| |#1| (-916)))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-4323 (($ $ (-777)) 61)) (-3495 (($ $ (-777)) 63)) (-3657 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#1| (-458)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) NIL) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-1091) $) NIL)) (-3930 (($ $ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $ $) 160 (|has| |#1| (-174)))) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) 80)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) NIL) (((-695 |#1|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-2280 (($ $ $) 131)) (-3746 (($ $ $) NIL (|has| |#1| (-562)))) (-1601 (((-2 (|:| -1453 |#1|) (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-562)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1944 (($ $) 165 (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#1| (-916)))) (-4243 (($ $ |#1| (-777) $) 69)) (-1557 (((-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)))))) (-2878 (((-868) $ (-868)) 148)) (-3941 (((-777) $ $) NIL (|has| |#1| (-562)))) (-4139 (((-112) $) 48)) (-2867 (((-777) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| |#1| (-1161)))) (-1744 (($ (-1182 |#1|) (-1091)) 73) (($ (-1182 $) (-1091)) 89)) (-3660 (($ $ (-777)) 51)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) 87) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-1091)) NIL) (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 153)) (-3970 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1414 (($ (-1 (-777) (-777)) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2315 (((-1182 |#1|) $) NIL)) (-4023 (((-3 (-1091) "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) 76)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) NIL (|has| |#1| (-458)))) (-3989 (((-1168) $) NIL)) (-2041 (((-2 (|:| -3959 $) (|:| -3971 $)) $ (-777)) 60)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-1091)) (|:| -3994 (-777))) "failed") $) NIL)) (-2023 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2439 (($) NIL (|has| |#1| (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) 50)) (-1900 ((|#1| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 103 (|has| |#1| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-458))) (($ $ $) 167 (|has| |#1| (-458)))) (-1701 (($ $ (-777) |#1| $) 123)) (-3933 (((-424 (-1182 $)) (-1182 $)) 101 (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) 100 (|has| |#1| (-916)))) (-3804 (((-424 $) $) 108 (|has| |#1| (-916)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-2548 (((-3 $ "failed") $ |#1|) 163 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 124 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-1771 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#1|) NIL) (($ $ (-650 (-1091)) (-650 |#1|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ |#1|) 150) (($ $ $) 151) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) NIL (|has| |#1| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#1| (-562)))) (-1662 (((-3 $ "failed") $ (-777)) 54)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 172 (|has| |#1| (-368)))) (-2265 (($ $ (-1091)) NIL (|has| |#1| (-174))) ((|#1| $) 156 (|has| |#1| (-174)))) (-3550 (($ $ (-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)) (-3079 (((-777) $) 78) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1426 (((-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)))))) (-2077 ((|#1| $) 162 (|has| |#1| (-458))) (($ $ (-1091)) NIL (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#1| (-916))))) (-2846 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#1| (-562)))) (-3802 (((-868) $) 149) (($ (-570)) NIL) (($ |#1|) 77) (($ (-1091)) NIL) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) 41 (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) 17 T CONST)) (-1876 (($) 19 T CONST)) (-2945 (($ $ (-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)) (-3025 (((-112) $ $) 120)) (-3125 (($ $ |#1|) 173 (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -2878 ((-868) $ (-868))) (-15 -1701 ($ $ (-777) |#1| $)))) (-1058)) (T -1182))
+((-2878 (*1 *2 *1 *2) (-12 (-5 *2 (-868)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))) (-1701 (*1 *1 *1 *2 *3 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1182 *3)) (-4 *3 (-1058)))))
+(-13 (-1253 |#1|) (-10 -8 (-15 -2878 ((-868) $ (-868))) (-15 -1701 ($ $ (-777) |#1| $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 11)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1622 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3257 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2890 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2869 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4109 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-1177 |#1| |#2| |#3|) "failed") $) 33) (((-3 (-1184 |#1| |#2| |#3|) "failed") $) 36)) (-3220 (((-1177 |#1| |#2| |#3|) $) NIL) (((-1184 |#1| |#2| |#3|) $) NIL)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2573 (((-413 (-570)) $) 59)) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-1853 (($ (-413 (-570)) (-1177 |#1| |#2| |#3|)) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-2646 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-413 (-570))) 20) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2792 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1838 (((-1177 |#1| |#2| |#3|) $) 41)) (-2224 (((-3 (-1177 |#1| |#2| |#3|) "failed") $) NIL)) (-1839 (((-1177 |#1| |#2| |#3|) $) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2023 (($ $) 39 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3152 (($ $ (-413 (-570))) NIL)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4389 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-3550 (($ $ (-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)) (-3079 (((-413 (-570)) $) NIL)) (-4120 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) NIL)) (-3802 (((-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)))) (-1864 ((|#1| $ (-413 (-570))) NIL)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-2289 ((|#1| $) 12)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 22 T CONST)) (-1876 (($) 16 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1183))
+((-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1183 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2023 (*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 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 129)) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 119)) (-2244 (((-1250 |#2| |#1|) $ (-777)) 69)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1622 (($ $ (-777)) 85) (($ $ (-777) (-777)) 82)) (-3257 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 105)) (-2890 (($ $) 173 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2869 (($ $) 169 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 118) (($ (-1166 |#1|)) 113)) (-4109 (($ $) 177 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) 25)) (-2441 (($ $) 28)) (-3375 (((-959 |#1|) $ (-777)) 81) (((-959 |#1|) $ (-777) (-777)) 83)) (-2646 (((-112) $) 124)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-777) $) 126) (((-777) $ (-777)) 128)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) NIL)) (-3240 (($ (-1 |#1| (-570)) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) 13) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2792 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-2023 (($ $) 133 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-3580 (((-1129) $) NIL)) (-3152 (($ $ (-777)) 15)) (-2548 (((-3 $ "failed") $ $) 26 (|has| |#1| (-562)))) (-4389 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1942 ((|#1| $ (-777)) 122) (($ $ $) 132 (|has| (-777) (-1121)))) (-3550 (($ $ (-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)) (-3079 (((-777) $) NIL)) (-4120 (($ $) 179 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 175 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 171 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) NIL)) (-3802 (((-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)) (-2459 (((-1166 |#1|) $) 101)) (-1864 ((|#1| $ (-777)) 121)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-2289 ((|#1| $) 58)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) 185 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 161 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 181 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 189 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 165 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-777)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 191 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 167 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 187 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 163 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 183 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 159 (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 17 T CONST)) (-1876 (($) 20 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) 198)) (-3104 (($ $ $) 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 -3802 ($ (-1250 |#2| |#1|))) (-15 -2244 ((-1250 |#2| |#1|) $ (-777))) (-15 -3802 ($ (-1273 |#2|))) (-15 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1184))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1250 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-1184 *3 *4 *5)))) (-2244 (*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))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1184 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2023 (*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 -3802 ($ (-1250 |#2| |#1|))) (-15 -2244 ((-1250 |#2| |#1|) $ (-777))) (-15 -3802 ($ (-1273 |#2|))) (-15 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-3802 (((-868) $) 33) (($ (-1186)) 35)) (-2895 (($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 46)) (-2883 (($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 39) (($ $) 40)) (-2818 (($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 41)) (-2805 (($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 43)) (-2793 (($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 42)) (-2780 (($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 44)) (-2200 (($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 47)) (-12 (($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $))) 45)))
+(((-1185) (-13 (-619 (-868)) (-10 -8 (-15 -3802 ($ (-1186))) (-15 -2818 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2793 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2805 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2780 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2895 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2200 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2883 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2883 ($ $))))) (T -1185))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1185)))) (-2818 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2793 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2805 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2780 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2895 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2200 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-12 (*1 *1 *2 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2883 (*1 *1 *2) (-12 (-5 *2 (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185)))) (-5 *1 (-1185)))) (-2883 (*1 *1 *1) (-5 *1 (-1185))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3802 ($ (-1186))) (-15 -2818 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2793 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2805 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2780 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2895 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2200 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -12 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)) (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2883 ($ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384))) (|:| CF (-320 (-171 (-384)))) (|:| |switch| $)))) (-15 -2883 ($ $))))
+((-2560 (((-112) $ $) NIL)) (-3489 (($ $ (-650 (-868))) 62)) (-2258 (($ $ (-650 (-868))) 60)) (-3431 (((-1168) $) 101)) (-1370 (((-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868))) (|:| |args| (-650 (-868)))) $) 108)) (-3438 (((-112) $) 23)) (-4365 (($ $ (-650 (-650 (-868)))) 59) (($ $ (-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868))) (|:| |args| (-650 (-868))))) 99)) (-3195 (($) 163 T CONST)) (-2160 (((-1282)) 135)) (-1557 (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 69) (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 76)) (-4294 (($) 122) (($ $) 131)) (-3602 (($ $) 100)) (-3469 (($ $ $) NIL)) (-2472 (($ $ $) NIL)) (-3423 (((-650 $) $) 136)) (-3989 (((-1168) $) 114)) (-3580 (((-1129) $) NIL)) (-1942 (($ $ (-650 (-868))) 61)) (-1426 (((-542) $) 48) (((-1186) $) 49) (((-899 (-570)) $) 80) (((-899 (-384)) $) 78)) (-3802 (((-868) $) 55) (($ (-1168)) 50)) (-3359 (((-112) $ $) NIL)) (-2718 (($ $ (-650 (-868))) 63)) (-1423 (((-1168) $) 34) (((-1168) $ (-112)) 35) (((-1282) (-828) $) 36) (((-1282) (-828) $ (-112)) 37)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 51)) (-3065 (((-112) $ $) NIL)) (-3045 (((-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 -4294 ($)) (-15 -4294 ($ $)) (-15 -2160 ((-1282))) (-15 -3602 ($ $)) (-15 -3438 ((-112) $)) (-15 -1370 ((-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868))) (|:| |args| (-650 (-868)))) $)) (-15 -4365 ($ $ (-650 (-650 (-868))))) (-15 -4365 ($ $ (-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868))) (|:| |args| (-650 (-868)))))) (-15 -2258 ($ $ (-650 (-868)))) (-15 -3489 ($ $ (-650 (-868)))) (-15 -2718 ($ $ (-650 (-868)))) (-15 -1942 ($ $ (-650 (-868)))) (-15 -3431 ((-1168) $)) (-15 -3423 ((-650 $) $)) (-15 -3195 ($) -3728)))) (T -1186))
+((-4294 (*1 *1) (-5 *1 (-1186))) (-4294 (*1 *1 *1) (-5 *1 (-1186))) (-2160 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1186)))) (-3602 (*1 *1 *1) (-5 *1 (-1186))) (-3438 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1186)))) (-1370 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868))) (|:| |args| (-650 (-868))))) (-5 *1 (-1186)))) (-4365 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-1186)))) (-4365 (*1 *1 *1 *2) (-12 (-5 *2 (-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868))) (|:| |args| (-650 (-868))))) (-5 *1 (-1186)))) (-2258 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-3489 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-2718 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-1942 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))) (-3431 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1186)))) (-3423 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1186)))) (-3195 (*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 -4294 ($)) (-15 -4294 ($ $)) (-15 -2160 ((-1282))) (-15 -3602 ($ $)) (-15 -3438 ((-112) $)) (-15 -1370 ((-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868))) (|:| |args| (-650 (-868)))) $)) (-15 -4365 ($ $ (-650 (-650 (-868))))) (-15 -4365 ($ $ (-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868))) (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868))) (|:| |args| (-650 (-868)))))) (-15 -2258 ($ $ (-650 (-868)))) (-15 -3489 ($ $ (-650 (-868)))) (-15 -2718 ($ $ (-650 (-868)))) (-15 -1942 ($ $ (-650 (-868)))) (-15 -3431 ((-1168) $)) (-15 -3423 ((-650 $) $)) (-15 -3195 ($) -3728)))
+((-1569 (((-1277 |#1|) |#1| (-928)) 18) (((-1277 |#1|) (-650 |#1|)) 25)))
+(((-1187 |#1|) (-10 -7 (-15 -1569 ((-1277 |#1|) (-650 |#1|))) (-15 -1569 ((-1277 |#1|) |#1| (-928)))) (-1058)) (T -1187))
+((-1569 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-1277 *3)) (-5 *1 (-1187 *3)) (-4 *3 (-1058)))) (-1569 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1058)) (-5 *2 (-1277 *4)) (-5 *1 (-1187 *4)))))
+(-10 -7 (-15 -1569 ((-1277 |#1|) (-650 |#1|))) (-15 -1569 ((-1277 |#1|) |#1| (-928))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-570) "failed") $) NIL (|has| |#1| (-1047 (-570)))) (((-3 (-413 (-570)) "failed") $) NIL (|has| |#1| (-1047 (-413 (-570))))) (((-3 |#1| "failed") $) NIL)) (-3220 (((-570) $) NIL (|has| |#1| (-1047 (-570)))) (((-413 (-570)) $) NIL (|has| |#1| (-1047 (-413 (-570))))) ((|#1| $) NIL)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-1944 (($ $) NIL (|has| |#1| (-458)))) (-4243 (($ $ |#1| (-980) $) NIL)) (-4139 (((-112) $) 17)) (-2867 (((-777) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-980)) NIL)) (-3970 (((-980) $) NIL)) (-1414 (($ (-1 (-980) (-980)) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#1| $) NIL)) (-1701 (($ $ (-980) |#1| $) NIL (-12 (|has| (-980) (-132)) (|has| |#1| (-562))))) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562))) (((-3 $ "failed") $ |#1|) NIL (|has| |#1| (-562)))) (-3079 (((-980) $) NIL)) (-2077 ((|#1| $) NIL (|has| |#1| (-458)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) NIL) (($ (-413 (-570))) NIL (-2895 (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-1047 (-413 (-570))))))) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ (-980)) NIL)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#1| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1862 (($) 10 T CONST)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1701 ($ $ (-980) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4450)) (-6 -4450) |%noBranch|))) (-1058)) (T -1188))
+((-1701 (*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 -1701 ($ $ (-980) |#1| $)) |%noBranch|) |%noBranch|) (IF (|has| |#1| (-6 -4450)) (-6 -4450) |%noBranch|)))
+((-2762 (((-1190) (-1186) $) 25)) (-3485 (($) 29)) (-1342 (((-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-1186) $) 22)) (-2036 (((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2716 "void")) $) 41) (((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) 42) (((-1282) (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) 43)) (-1322 (((-1282) (-1186)) 58)) (-2032 (((-1282) (-1186) $) 55) (((-1282) (-1186)) 56) (((-1282)) 57)) (-3398 (((-1282) (-1186)) 37)) (-2508 (((-1186)) 36)) (-2656 (($) 34)) (-2862 (((-443) (-1186) (-443) (-1186) $) 45) (((-443) (-650 (-1186)) (-443) (-1186) $) 49) (((-443) (-1186) (-443)) 46) (((-443) (-1186) (-443) (-1186)) 50)) (-2201 (((-1186)) 35)) (-3802 (((-868) $) 28)) (-3638 (((-1282)) 30) (((-1282) (-1186)) 33)) (-1965 (((-650 (-1186)) (-1186) $) 24)) (-3165 (((-1282) (-1186) (-650 (-1186)) $) 38) (((-1282) (-1186) (-650 (-1186))) 39) (((-1282) (-650 (-1186))) 40)))
+(((-1189) (-13 (-619 (-868)) (-10 -8 (-15 -3485 ($)) (-15 -3638 ((-1282))) (-15 -3638 ((-1282) (-1186))) (-15 -2862 ((-443) (-1186) (-443) (-1186) $)) (-15 -2862 ((-443) (-650 (-1186)) (-443) (-1186) $)) (-15 -2862 ((-443) (-1186) (-443))) (-15 -2862 ((-443) (-1186) (-443) (-1186))) (-15 -3398 ((-1282) (-1186))) (-15 -2201 ((-1186))) (-15 -2508 ((-1186))) (-15 -3165 ((-1282) (-1186) (-650 (-1186)) $)) (-15 -3165 ((-1282) (-1186) (-650 (-1186)))) (-15 -3165 ((-1282) (-650 (-1186)))) (-15 -2036 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2716 "void")) $)) (-15 -2036 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2716 "void")))) (-15 -2036 ((-1282) (-3 (|:| |fst| (-440)) (|:| -2716 "void")))) (-15 -2032 ((-1282) (-1186) $)) (-15 -2032 ((-1282) (-1186))) (-15 -2032 ((-1282))) (-15 -1322 ((-1282) (-1186))) (-15 -2656 ($)) (-15 -1342 ((-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-1186) $)) (-15 -1965 ((-650 (-1186)) (-1186) $)) (-15 -2762 ((-1190) (-1186) $))))) (T -1189))
+((-3485 (*1 *1) (-5 *1 (-1189))) (-3638 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3638 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2862 (*1 *2 *3 *2 *3 *1) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2862 (*1 *2 *3 *2 *4 *1) (-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *4 (-1186)) (-5 *1 (-1189)))) (-2862 (*1 *2 *3 *2) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-2862 (*1 *2 *3 *2 *3) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1189)))) (-3398 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2201 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))) (-2508 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))) (-3165 (*1 *2 *3 *4 *1) (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3165 (*1 *2 *3 *4) (-12 (-5 *4 (-650 (-1186))) (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-3165 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2036 (*1 *2 *3 *4 *1) (-12 (-5 *3 (-1186)) (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2036 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2036 (*1 *2 *3) (-12 (-5 *3 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2032 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2032 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2032 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))) (-1322 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))) (-2656 (*1 *1) (-5 *1 (-1189))) (-1342 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *1 (-1189)))) (-1965 (*1 *2 *3 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1189)) (-5 *3 (-1186)))) (-2762 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1190)) (-5 *1 (-1189)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3485 ($)) (-15 -3638 ((-1282))) (-15 -3638 ((-1282) (-1186))) (-15 -2862 ((-443) (-1186) (-443) (-1186) $)) (-15 -2862 ((-443) (-650 (-1186)) (-443) (-1186) $)) (-15 -2862 ((-443) (-1186) (-443))) (-15 -2862 ((-443) (-1186) (-443) (-1186))) (-15 -3398 ((-1282) (-1186))) (-15 -2201 ((-1186))) (-15 -2508 ((-1186))) (-15 -3165 ((-1282) (-1186) (-650 (-1186)) $)) (-15 -3165 ((-1282) (-1186) (-650 (-1186)))) (-15 -3165 ((-1282) (-650 (-1186)))) (-15 -2036 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2716 "void")) $)) (-15 -2036 ((-1282) (-1186) (-3 (|:| |fst| (-440)) (|:| -2716 "void")))) (-15 -2036 ((-1282) (-3 (|:| |fst| (-440)) (|:| -2716 "void")))) (-15 -2032 ((-1282) (-1186) $)) (-15 -2032 ((-1282) (-1186))) (-15 -2032 ((-1282))) (-15 -1322 ((-1282) (-1186))) (-15 -2656 ($)) (-15 -1342 ((-3 (|:| |fst| (-440)) (|:| -2716 "void")) (-1186) $)) (-15 -1965 ((-650 (-1186)) (-1186) $)) (-15 -2762 ((-1190) (-1186) $))))
+((-2151 (((-650 (-650 (-3 (|:| -3602 (-1186)) (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $) 66)) (-3912 (((-650 (-3 (|:| -3602 (-1186)) (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $) 47)) (-3348 (($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-443))))) 17)) (-1322 (((-1282) $) 73)) (-3338 (((-650 (-1186)) $) 22)) (-2231 (((-1113) $) 60)) (-2025 (((-443) (-1186) $) 27)) (-4133 (((-650 (-1186)) $) 30)) (-2656 (($) 19)) (-2862 (((-443) (-650 (-1186)) (-443) $) 25) (((-443) (-1186) (-443) $) 24)) (-3802 (((-868) $) 9) (((-1199 (-1186) (-443)) $) 13)))
+(((-1190) (-13 (-619 (-868)) (-10 -8 (-15 -3802 ((-1199 (-1186) (-443)) $)) (-15 -2656 ($)) (-15 -2862 ((-443) (-650 (-1186)) (-443) $)) (-15 -2862 ((-443) (-1186) (-443) $)) (-15 -2025 ((-443) (-1186) $)) (-15 -3338 ((-650 (-1186)) $)) (-15 -3912 ((-650 (-3 (|:| -3602 (-1186)) (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $)) (-15 -4133 ((-650 (-1186)) $)) (-15 -2151 ((-650 (-650 (-3 (|:| -3602 (-1186)) (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $)) (-15 -2231 ((-1113) $)) (-15 -1322 ((-1282) $)) (-15 -3348 ($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-443))))))))) (T -1190))
+((-3802 (*1 *2 *1) (-12 (-5 *2 (-1199 (-1186) (-443))) (-5 *1 (-1190)))) (-2656 (*1 *1) (-5 *1 (-1190))) (-2862 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-443)) (-5 *3 (-650 (-1186))) (-5 *1 (-1190)))) (-2862 (*1 *2 *3 *2 *1) (-12 (-5 *2 (-443)) (-5 *3 (-1186)) (-5 *1 (-1190)))) (-2025 (*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-443)) (-5 *1 (-1190)))) (-3338 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))) (-3912 (*1 *2 *3 *1) (-12 (-5 *3 (-440)) (-5 *2 (-650 (-3 (|:| -3602 (-1186)) (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) (-5 *1 (-1190)))) (-4133 (*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))) (-2151 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-3 (|:| -3602 (-1186)) (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))))) (-5 *1 (-1190)))) (-2231 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1190)))) (-1322 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1190)))) (-3348 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-443))))) (-5 *1 (-1190)))))
+(-13 (-619 (-868)) (-10 -8 (-15 -3802 ((-1199 (-1186) (-443)) $)) (-15 -2656 ($)) (-15 -2862 ((-443) (-650 (-1186)) (-443) $)) (-15 -2862 ((-443) (-1186) (-443) $)) (-15 -2025 ((-443) (-1186) $)) (-15 -3338 ((-650 (-1186)) $)) (-15 -3912 ((-650 (-3 (|:| -3602 (-1186)) (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))) (-440) $)) (-15 -4133 ((-650 (-1186)) $)) (-15 -2151 ((-650 (-650 (-3 (|:| -3602 (-1186)) (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))) $)) (-15 -2231 ((-1113) $)) (-15 -1322 ((-1282) $)) (-15 -3348 ($ (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-443))))))))
+((-2560 (((-112) $ $) NIL)) (-4383 (((-3 (-570) "failed") $) 29) (((-3 (-227) "failed") $) 35) (((-3 (-512) "failed") $) 43) (((-3 (-1168) "failed") $) 47)) (-3220 (((-570) $) 30) (((-227) $) 36) (((-512) $) 40) (((-1168) $) 48)) (-2415 (((-112) $) 53)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-4136 (((-3 (-570) (-227) (-512) (-1168) $) $) 55)) (-1760 (((-650 $) $) 57)) (-1426 (((-1113) $) 24) (($ (-1113)) 25)) (-2608 (((-112) $) 56)) (-3802 (((-868) $) 23) (($ (-570)) 26) (($ (-227)) 32) (($ (-512)) 38) (($ (-1168)) 44) (((-542) $) 59) (((-570) $) 31) (((-227) $) 37) (((-512) $) 41) (((-1168) $) 49)) (-1851 (((-112) $ (|[\|\|]| (-570))) 10) (((-112) $ (|[\|\|]| (-227))) 13) (((-112) $ (|[\|\|]| (-512))) 19) (((-112) $ (|[\|\|]| (-1168))) 16)) (-1332 (($ (-512) (-650 $)) 51) (($ $ (-650 $)) 52)) (-3359 (((-112) $ $) NIL)) (-3985 (((-570) $) 27) (((-227) $) 33) (((-512) $) 39) (((-1168) $) 45)) (-3025 (((-112) $ $) 7)))
+(((-1191) (-13 (-1272) (-1109) (-1047 (-570)) (-1047 (-227)) (-1047 (-512)) (-1047 (-1168)) (-619 (-542)) (-10 -8 (-15 -1426 ((-1113) $)) (-15 -1426 ($ (-1113))) (-15 -3802 ((-570) $)) (-15 -3985 ((-570) $)) (-15 -3802 ((-227) $)) (-15 -3985 ((-227) $)) (-15 -3802 ((-512) $)) (-15 -3985 ((-512) $)) (-15 -3802 ((-1168) $)) (-15 -3985 ((-1168) $)) (-15 -1332 ($ (-512) (-650 $))) (-15 -1332 ($ $ (-650 $))) (-15 -2415 ((-112) $)) (-15 -4136 ((-3 (-570) (-227) (-512) (-1168) $) $)) (-15 -1760 ((-650 $) $)) (-15 -2608 ((-112) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-570)))) (-15 -1851 ((-112) $ (|[\|\|]| (-227)))) (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -1851 ((-112) $ (|[\|\|]| (-1168))))))) (T -1191))
+((-1426 (*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1191)))) (-1426 (*1 *1 *2) (-12 (-5 *2 (-1113)) (-5 *1 (-1191)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1191)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-1191)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1191)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191)))) (-3985 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191)))) (-1332 (*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-650 (-1191))) (-5 *1 (-1191)))) (-1332 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))) (-2415 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))) (-4136 (*1 *2 *1) (-12 (-5 *2 (-3 (-570) (-227) (-512) (-1168) (-1191))) (-5 *1 (-1191)))) (-1760 (*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))) (-2608 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-570))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-227))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1851 (*1 *2 *1 *3) (-12 (-5 *3 (|[\|\|]| (-512))) (-5 *2 (-112)) (-5 *1 (-1191)))) (-1851 (*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 -1426 ((-1113) $)) (-15 -1426 ($ (-1113))) (-15 -3802 ((-570) $)) (-15 -3985 ((-570) $)) (-15 -3802 ((-227) $)) (-15 -3985 ((-227) $)) (-15 -3802 ((-512) $)) (-15 -3985 ((-512) $)) (-15 -3802 ((-1168) $)) (-15 -3985 ((-1168) $)) (-15 -1332 ($ (-512) (-650 $))) (-15 -1332 ($ $ (-650 $))) (-15 -2415 ((-112) $)) (-15 -4136 ((-3 (-570) (-227) (-512) (-1168) $) $)) (-15 -1760 ((-650 $) $)) (-15 -2608 ((-112) $)) (-15 -1851 ((-112) $ (|[\|\|]| (-570)))) (-15 -1851 ((-112) $ (|[\|\|]| (-227)))) (-15 -1851 ((-112) $ (|[\|\|]| (-512)))) (-15 -1851 ((-112) $ (|[\|\|]| (-1168))))))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) 22)) (-3195 (($) 12 T CONST)) (-3449 (($) 26)) (-3469 (($ $ $) NIL) (($) 19 T CONST)) (-2472 (($ $ $) NIL) (($) 20 T CONST)) (-2400 (((-928) $) 24)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) 23)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-1192 |#1|) (-13 (-850) (-10 -8 (-15 -3195 ($) -3728))) (-928)) (T -1192))
+((-3195 (*1 *1) (-12 (-5 *1 (-1192 *2)) (-14 *2 (-928)))))
+(-13 (-850) (-10 -8 (-15 -3195 ($) -3728)))
((|Integer|) (NOT (> (INTEGER-LENGTH |#1|) @1)))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) 19 T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) 12 T CONST)) (-2800 (($ $ $) NIL) (($) 18 T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-1379 (($ $ $) 21)) (-1363 (($ $ $) 20)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-1193 |#1|) (-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725))) (-928)) (T -1193))
-((-1363 (*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))) (-1379 (*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))) (-1705 (*1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))))
-(-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) 19 T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) 12 T CONST)) (-2472 (($ $ $) NIL) (($) 18 T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-1380 (($ $ $) 21)) (-1364 (($ $ $) 20)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-1193 |#1|) (-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728))) (-928)) (T -1193))
+((-1364 (*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))) (-1380 (*1 *1 *1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))) (-3195 (*1 *1) (-12 (-5 *1 (-1193 *2)) (-14 *2 (-928)))))
+(-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) @1)))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 9)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 7)))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 9)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 7)))
(((-1194) (-1109)) (T -1194))
NIL
(-1109)
-((-2701 (((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 67)) (-3476 (((-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|))))) 104) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|)))) 103) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186))) 105) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 102)))
-(((-1195 |#1|) (-10 -7 (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3476 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -3476 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -3476 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)))) (-15 -3476 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))))) (-15 -2701 ((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))))) (-562)) (T -1195))
-((-2701 (*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)))) (-3476 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4))))) (-5 *1 (-1195 *4)) (-5 *3 (-298 (-413 (-959 *4)))))) (-3476 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4))))) (-5 *1 (-1195 *4)) (-5 *3 (-413 (-959 *4))))) (-3476 (*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)))))) (-3476 (*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))))) (-3476 (*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))))))) (-3476 (*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)))) (-3476 (*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))))))) (-3476 (*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 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))))) (-15 -3476 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -3476 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -3476 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -3476 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)))) (-15 -3476 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))))) (-15 -2701 ((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))))
-((-2706 (((-1168)) 7)) (-4256 (((-1168)) 11 T CONST)) (-3708 (((-1282) (-1168)) 13)) (-3633 (((-1168)) 8 T CONST)) (-3854 (((-131)) 10 T CONST)))
-(((-1196) (-13 (-1227) (-10 -7 (-15 -2706 ((-1168))) (-15 -3633 ((-1168)) -3725) (-15 -3854 ((-131)) -3725) (-15 -4256 ((-1168)) -3725) (-15 -3708 ((-1282) (-1168)))))) (T -1196))
-((-2706 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-3633 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-3854 (*1 *2) (-12 (-5 *2 (-131)) (-5 *1 (-1196)))) (-4256 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-3708 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1196)))))
-(-13 (-1227) (-10 -7 (-15 -2706 ((-1168))) (-15 -3633 ((-1168)) -3725) (-15 -3854 ((-131)) -3725) (-15 -4256 ((-1168)) -3725) (-15 -3708 ((-1282) (-1168)))))
-((-2419 (((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|)))) 56)) (-3696 (((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|))) 38)) (-1729 (((-1198 (-650 |#1|)) (-650 |#1|)) 49)) (-1435 (((-650 (-650 |#1|)) (-650 |#1|)) 45)) (-3592 (((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|)))) 53)) (-3560 (((-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)) (-2232 (((-650 (-650 |#1|)) (-650 (-650 |#1|))) 43)) (-3490 (((-650 |#1|) (-650 |#1|)) 46)) (-1348 (((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|)))) 32)) (-4128 (((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|)))) 29)) (-3149 (((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|))) 24)) (-3304 (((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|)))) 58)) (-3027 (((-650 (-650 |#1|)) (-1198 (-650 |#1|))) 60)))
-(((-1197 |#1|) (-10 -7 (-15 -3149 ((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|)))) (-15 -4128 ((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -1348 ((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -2419 ((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -3304 ((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -3027 ((-650 (-650 |#1|)) (-1198 (-650 |#1|)))) (-15 -3696 ((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)))) (-15 -1729 ((-1198 (-650 |#1|)) (-650 |#1|))) (-15 -2232 ((-650 (-650 |#1|)) (-650 (-650 |#1|)))) (-15 -1435 ((-650 (-650 |#1|)) (-650 |#1|))) (-15 -3490 ((-650 |#1|) (-650 |#1|))) (-15 -3560 ((-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 -3592 ((-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))
-((-3592 (*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)))))) (-3560 (*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)))) (-3490 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-1197 *3)))) (-1435 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)) (-5 *3 (-650 *4)))) (-2232 (*1 *2 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-856)) (-5 *1 (-1197 *3)))) (-1729 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-1198 (-650 *4))) (-5 *1 (-1197 *4)) (-5 *3 (-650 *4)))) (-3696 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 (-650 *4)))) (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 *4))))) (-3027 (*1 *2 *3) (-12 (-5 *3 (-1198 (-650 *4))) (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)))) (-3304 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)) (-4 *4 (-856)))) (-2419 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4))) (-4 *4 (-856)) (-5 *1 (-1197 *4)))) (-1348 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-650 *4)) (-4 *4 (-856)) (-5 *1 (-1197 *4)))) (-4128 (*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)))) (-3149 (*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 -3149 ((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|)))) (-15 -4128 ((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -1348 ((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -2419 ((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -3304 ((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -3027 ((-650 (-650 |#1|)) (-1198 (-650 |#1|)))) (-15 -3696 ((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)))) (-15 -1729 ((-1198 (-650 |#1|)) (-650 |#1|))) (-15 -2232 ((-650 (-650 |#1|)) (-650 (-650 |#1|)))) (-15 -1435 ((-650 (-650 |#1|)) (-650 |#1|))) (-15 -3490 ((-650 |#1|) (-650 |#1|))) (-15 -3560 ((-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 -3592 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|))))))
-((-1760 (($ (-650 (-650 |#1|))) 10)) (-3575 (((-650 (-650 |#1|)) $) 11)) (-3799 (((-868) $) 33)))
-(((-1198 |#1|) (-10 -8 (-15 -1760 ($ (-650 (-650 |#1|)))) (-15 -3575 ((-650 (-650 |#1|)) $)) (-15 -3799 ((-868) $))) (-1109)) (T -1198))
-((-3799 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))) (-3575 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 *3))) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))) (-1760 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-1198 *3)))))
-(-10 -8 (-15 -1760 ($ (-650 (-650 |#1|)))) (-15 -3575 ((-650 (-650 |#1|)) $)) (-15 -3799 ((-868) $)))
-((-2558 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4279 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3851 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#2| $ |#1| |#2|) NIL)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-2496 (((-3 |#2| "failed") |#1| $) NIL)) (-1705 (($) NIL T CONST)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) NIL)) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) NIL)) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) NIL)) (-2383 ((|#1| $) NIL (|has| |#1| (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-650 |#2|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-1460 ((|#1| $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2911 (((-650 |#1|) $) NIL)) (-3245 (((-112) |#1| $) NIL)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1805 (((-650 |#1|) $) NIL)) (-3939 (((-112) |#1| $) NIL)) (-3577 (((-1129) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3543 ((|#2| $) NIL (|has| |#1| (-856)))) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2147 (($ $ |#2|) NIL (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2178 (($) NIL) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4449)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-3799 (((-868) $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-2335 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) NIL)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) NIL (-2892 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2569 (((-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)))
-((-2558 (((-112) $ $) NIL)) (-3756 (($ |#1| (-55)) 10)) (-3600 ((|#1| $) 12)) (-1988 (((-1168) $) NIL)) (-3190 (((-112) $ |#1|) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-2335 (((-112) $ $) NIL)) (-1835 (((-55) $) 14)) (-3022 (((-112) $ $) NIL)))
-(((-1200 |#1|) (-13 (-841 |#1|) (-10 -8 (-15 -3756 ($ |#1| (-55))))) (-1109)) (T -1200))
-((-3756 (*1 *1 *2 *3) (-12 (-5 *3 (-55)) (-5 *1 (-1200 *2)) (-4 *2 (-1109)))))
-(-13 (-841 |#1|) (-10 -8 (-15 -3756 ($ |#1| (-55)))))
-((-1343 ((|#1| (-650 |#1|)) 46)) (-3704 ((|#1| |#1| (-570)) 24)) (-1426 (((-1182 |#1|) |#1| (-928)) 20)))
-(((-1201 |#1|) (-10 -7 (-15 -1343 (|#1| (-650 |#1|))) (-15 -1426 ((-1182 |#1|) |#1| (-928))) (-15 -3704 (|#1| |#1| (-570)))) (-368)) (T -1201))
-((-3704 (*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))) (-1426 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-1182 *3)) (-5 *1 (-1201 *3)) (-4 *3 (-368)))) (-1343 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
-(-10 -7 (-15 -1343 (|#1| (-650 |#1|))) (-15 -1426 ((-1182 |#1|) |#1| (-928))) (-15 -3704 (|#1| |#1| (-570))))
-((-4279 (($) 10) (($ (-650 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)))) 14)) (-3249 (($ (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) $) 67) (($ (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-3627 (((-650 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) $) 39) (((-650 |#3|) $) 41)) (-1502 (($ (-1 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) $) 57) (($ (-1 |#3| |#3|) $) 33)) (-1356 (($ (-1 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-1490 (((-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) $) 60)) (-1385 (($ (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) $) 16)) (-1805 (((-650 |#2|) $) 19)) (-3939 (((-112) |#2| $) 65)) (-1790 (((-3 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) "failed") (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) $) 64)) (-3647 (((-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) $) 69)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 73)) (-3700 (((-650 |#3|) $) 43)) (-1941 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) $) NIL) (((-777) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) $) NIL) (((-777) |#3| $) NIL) (((-777) (-1 (-112) |#3|) $) 79)) (-3799 (((-868) $) 27)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 71)) (-3022 (((-112) $ $) 51)))
-(((-1202 |#1| |#2| |#3|) (-10 -8 (-15 -3022 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -1356 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4279 (|#1| (-650 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))))) (-15 -4279 (|#1|)) (-15 -1356 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1502 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3584 ((-777) (-1 (-112) |#3|) |#1|)) (-15 -3627 ((-650 |#3|) |#1|)) (-15 -3584 ((-777) |#3| |#1|)) (-15 -1941 (|#3| |#1| |#2| |#3|)) (-15 -1941 (|#3| |#1| |#2|)) (-15 -3700 ((-650 |#3|) |#1|)) (-15 -3939 ((-112) |#2| |#1|)) (-15 -1805 ((-650 |#2|) |#1|)) (-15 -3249 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3249 (|#1| (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -3249 (|#1| (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -1790 ((-3 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) "failed") (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1490 ((-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -1385 (|#1| (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3647 ((-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3584 ((-777) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3627 ((-650 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -3584 ((-777) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -3642 ((-112) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -4371 ((-112) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1502 (|#1| (-1 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1356 (|#1| (-1 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|))) (-1203 |#2| |#3|) (-1109) (-1109)) (T -1202))
-NIL
-(-10 -8 (-15 -3022 ((-112) |#1| |#1|)) (-15 -3799 ((-868) |#1|)) (-15 -1356 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4279 (|#1| (-650 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))))) (-15 -4279 (|#1|)) (-15 -1356 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1502 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4371 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3642 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3584 ((-777) (-1 (-112) |#3|) |#1|)) (-15 -3627 ((-650 |#3|) |#1|)) (-15 -3584 ((-777) |#3| |#1|)) (-15 -1941 (|#3| |#1| |#2| |#3|)) (-15 -1941 (|#3| |#1| |#2|)) (-15 -3700 ((-650 |#3|) |#1|)) (-15 -3939 ((-112) |#2| |#1|)) (-15 -1805 ((-650 |#2|) |#1|)) (-15 -3249 ((-3 |#3| "failed") |#2| |#1|)) (-15 -3249 (|#1| (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -3249 (|#1| (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -1790 ((-3 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) "failed") (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1490 ((-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -1385 (|#1| (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3647 ((-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3584 ((-777) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3627 ((-650 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -3584 ((-777) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -3642 ((-112) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -4371 ((-112) (-1 (-112) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1502 (|#1| (-1 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1356 (|#1| (-1 (-2 (|:| -2106 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2106 |#2|) (|:| -2340 |#3|))) |#1|)))
-((-2558 (((-112) $ $) 19 (-2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-4279 (($) 73) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 72)) (-3851 (((-1282) $ |#1| |#1|) 100 (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#2| $ |#1| |#2|) 74)) (-3753 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 46 (|has| $ (-6 -4449)))) (-1431 (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 56 (|has| $ (-6 -4449)))) (-2496 (((-3 |#2| "failed") |#1| $) 62)) (-1705 (($) 7 T CONST)) (-3579 (($ $) 59 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449))))) (-3249 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 48 (|has| $ (-6 -4449))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 47 (|has| $ (-6 -4449))) (((-3 |#2| "failed") |#1| $) 63)) (-1741 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 55 (|has| $ (-6 -4449)))) (-3624 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 57 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 54 (|has| $ (-6 -4449))) (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 53 (|has| $ (-6 -4449)))) (-1517 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4450)))) (-3820 ((|#2| $ |#1|) 89)) (-3627 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 31 (|has| $ (-6 -4449))) (((-650 |#2|) $) 80 (|has| $ (-6 -4449)))) (-2929 (((-112) $ (-777)) 9)) (-2383 ((|#1| $) 97 (|has| |#1| (-856)))) (-2752 (((-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 30 (|has| $ (-6 -4449))) (((-650 |#2|) $) 81 (|has| $ (-6 -4449)))) (-4108 (((-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449))))) (-1460 ((|#1| $) 96 (|has| |#1| (-856)))) (-1502 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 35 (|has| $ (-6 -4450))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4450)))) (-1356 (($ (-1 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71)) (-3231 (((-112) $ (-777)) 10)) (-1988 (((-1168) $) 22 (-2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2911 (((-650 |#1|) $) 64)) (-3245 (((-112) |#1| $) 65)) (-1490 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 40)) (-1385 (($ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 41)) (-1805 (((-650 |#1|) $) 94)) (-3939 (((-112) |#1| $) 93)) (-3577 (((-1129) $) 21 (-2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3543 ((|#2| $) 98 (|has| |#1| (-856)))) (-1790 (((-3 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 52)) (-2147 (($ $ |#2|) 99 (|has| $ (-6 -4450)))) (-3647 (((-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 42)) (-3642 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 33 (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4449)))) (-1770 (($ $ (-650 (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))))) 27 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 26 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) 25 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 24 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4449)) (|has| |#2| (-1109))))) (-3700 (((-650 |#2|) $) 92)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90)) (-2178 (($) 50) (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 49)) (-3584 (((-777) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 32 (|has| $ (-6 -4449))) (((-777) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4449)))) (((-777) |#2| $) 82 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4449)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 60 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3811 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 51)) (-3799 (((-868) $) 18 (-2892 (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868)))))) (-2335 (((-112) $ $) 23 (-2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2082 (($ (-650 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) 43)) (-4371 (((-112) (-1 (-112) (-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) $) 34 (|has| $ (-6 -4449))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (-2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2779 (((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 67)) (-2627 (((-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|))))) 104) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|)))) 103) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186))) 105) (((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186))) 102)))
+(((-1195 |#1|) (-10 -7 (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -2627 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -2627 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2627 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)))) (-15 -2627 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))))) (-15 -2779 ((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186))))) (-562)) (T -1195))
+((-2779 (*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)))) (-2627 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4))))) (-5 *1 (-1195 *4)) (-5 *3 (-298 (-413 (-959 *4)))))) (-2627 (*1 *2 *3) (-12 (-4 *4 (-562)) (-5 *2 (-650 (-298 (-413 (-959 *4))))) (-5 *1 (-1195 *4)) (-5 *3 (-413 (-959 *4))))) (-2627 (*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)))))) (-2627 (*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))))) (-2627 (*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))))))) (-2627 (*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)))) (-2627 (*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))))))) (-2627 (*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 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))) (-650 (-1186)))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-413 (-959 |#1|))))) (-15 -2627 ((-650 (-650 (-298 (-413 (-959 |#1|))))) (-650 (-298 (-413 (-959 |#1|)))))) (-15 -2627 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)) (-1186))) (-15 -2627 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))) (-1186))) (-15 -2627 ((-650 (-298 (-413 (-959 |#1|)))) (-413 (-959 |#1|)))) (-15 -2627 ((-650 (-298 (-413 (-959 |#1|)))) (-298 (-413 (-959 |#1|))))) (-15 -2779 ((-650 (-650 (-959 |#1|))) (-650 (-413 (-959 |#1|))) (-650 (-1186)))))
+((-2837 (((-1168)) 7)) (-1451 (((-1168)) 11 T CONST)) (-3711 (((-1282) (-1168)) 13)) (-1516 (((-1168)) 8 T CONST)) (-3070 (((-131)) 10 T CONST)))
+(((-1196) (-13 (-1227) (-10 -7 (-15 -2837 ((-1168))) (-15 -1516 ((-1168)) -3728) (-15 -3070 ((-131)) -3728) (-15 -1451 ((-1168)) -3728) (-15 -3711 ((-1282) (-1168)))))) (T -1196))
+((-2837 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-1516 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-3070 (*1 *2) (-12 (-5 *2 (-131)) (-5 *1 (-1196)))) (-1451 (*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))) (-3711 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1196)))))
+(-13 (-1227) (-10 -7 (-15 -2837 ((-1168))) (-15 -1516 ((-1168)) -3728) (-15 -3070 ((-131)) -3728) (-15 -1451 ((-1168)) -3728) (-15 -3711 ((-1282) (-1168)))))
+((-3034 (((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|)))) 56)) (-4019 (((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|))) 38)) (-3425 (((-1198 (-650 |#1|)) (-650 |#1|)) 49)) (-1496 (((-650 (-650 |#1|)) (-650 |#1|)) 45)) (-3595 (((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|)))) 53)) (-2178 (((-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)) (-1644 (((-650 (-650 |#1|)) (-650 (-650 |#1|))) 43)) (-2751 (((-650 |#1|) (-650 |#1|)) 46)) (-2028 (((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|)))) 32)) (-2773 (((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|)))) 29)) (-2643 (((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|))) 24)) (-1655 (((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|)))) 58)) (-3887 (((-650 (-650 |#1|)) (-1198 (-650 |#1|))) 60)))
+(((-1197 |#1|) (-10 -7 (-15 -2643 ((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|)))) (-15 -2773 ((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -2028 ((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -3034 ((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -1655 ((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -3887 ((-650 (-650 |#1|)) (-1198 (-650 |#1|)))) (-15 -4019 ((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)))) (-15 -3425 ((-1198 (-650 |#1|)) (-650 |#1|))) (-15 -1644 ((-650 (-650 |#1|)) (-650 (-650 |#1|)))) (-15 -1496 ((-650 (-650 |#1|)) (-650 |#1|))) (-15 -2751 ((-650 |#1|) (-650 |#1|))) (-15 -2178 ((-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 -3595 ((-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))
+((-3595 (*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)))))) (-2178 (*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)))) (-2751 (*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-1197 *3)))) (-1496 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)) (-5 *3 (-650 *4)))) (-1644 (*1 *2 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-856)) (-5 *1 (-1197 *3)))) (-3425 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-1198 (-650 *4))) (-5 *1 (-1197 *4)) (-5 *3 (-650 *4)))) (-4019 (*1 *2 *3) (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 (-650 *4)))) (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 *4))))) (-3887 (*1 *2 *3) (-12 (-5 *3 (-1198 (-650 *4))) (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)))) (-1655 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)) (-4 *4 (-856)))) (-3034 (*1 *2 *2 *3) (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4))) (-4 *4 (-856)) (-5 *1 (-1197 *4)))) (-2028 (*1 *2 *3 *2) (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-650 *4)) (-4 *4 (-856)) (-5 *1 (-1197 *4)))) (-2773 (*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)))) (-2643 (*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 -2643 ((-2 (|:| |fs| (-112)) (|:| |sd| (-650 |#1|)) (|:| |td| (-650 (-650 |#1|)))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 |#1|)))) (-15 -2773 ((-650 (-650 (-650 |#1|))) (-1 (-112) |#1| |#1|) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -2028 ((-650 (-650 (-650 |#1|))) (-650 |#1|) (-650 (-650 (-650 |#1|))))) (-15 -3034 ((-650 (-650 |#1|)) (-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -1655 ((-650 (-650 |#1|)) (-650 (-650 (-650 |#1|))))) (-15 -3887 ((-650 (-650 |#1|)) (-1198 (-650 |#1|)))) (-15 -4019 ((-650 (-650 (-650 |#1|))) (-650 (-650 |#1|)))) (-15 -3425 ((-1198 (-650 |#1|)) (-650 |#1|))) (-15 -1644 ((-650 (-650 |#1|)) (-650 (-650 |#1|)))) (-15 -1496 ((-650 (-650 |#1|)) (-650 |#1|))) (-15 -2751 ((-650 |#1|) (-650 |#1|))) (-15 -2178 ((-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 -3595 ((-2 (|:| |f1| (-650 |#1|)) (|:| |f2| (-650 (-650 (-650 |#1|)))) (|:| |f3| (-650 (-650 |#1|))) (|:| |f4| (-650 (-650 (-650 |#1|))))) (-650 (-650 (-650 |#1|))))))
+((-3703 (($ (-650 (-650 |#1|))) 10)) (-2309 (((-650 (-650 |#1|)) $) 11)) (-3802 (((-868) $) 33)))
+(((-1198 |#1|) (-10 -8 (-15 -3703 ($ (-650 (-650 |#1|)))) (-15 -2309 ((-650 (-650 |#1|)) $)) (-15 -3802 ((-868) $))) (-1109)) (T -1198))
+((-3802 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))) (-2309 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 *3))) (-5 *1 (-1198 *3)) (-4 *3 (-1109)))) (-3703 (*1 *1 *2) (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-1198 *3)))))
+(-10 -8 (-15 -3703 ($ (-650 (-650 |#1|)))) (-15 -2309 ((-650 (-650 |#1|)) $)) (-15 -3802 ((-868) $)))
+((-2560 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-4282 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3040 (((-1282) $ |#1| |#1|) NIL (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#2| $ |#1| |#2|) NIL)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-2496 (((-3 |#2| "failed") |#1| $) NIL)) (-3195 (($) NIL T CONST)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) NIL)) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) NIL)) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) NIL)) (-2685 ((|#1| $) NIL (|has| |#1| (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-650 |#2|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-2602 ((|#1| $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL) (($ (-1 |#2| |#2|) $) NIL) (($ (-1 |#2| |#2| |#2|) $ $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2914 (((-650 |#1|) $) NIL)) (-2343 (((-112) |#1| $) NIL)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-2903 (((-650 |#1|) $) NIL)) (-1358 (((-112) |#1| $) NIL)) (-3580 (((-1129) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-3546 ((|#2| $) NIL (|has| |#1| (-856)))) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL)) (-2061 (($ $ |#2|) NIL (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#2| $ |#1|) NIL) ((|#2| $ |#1| |#2|) NIL)) (-2374 (($) NIL) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) NIL (-12 (|has| $ (-6 -4452)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (((-777) |#2| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109)))) (((-777) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-3802 (((-868) $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868))) (|has| |#2| (-619 (-868)))))) (-3359 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) NIL)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) NIL (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) NIL (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) NIL (-2895 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| |#2| (-1109))))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1199 |#1| |#2|) (-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452))) (-1109) (-1109)) (T -1199))
+NIL
+(-13 (-1203 |#1| |#2|) (-10 -7 (-6 -4452)))
+((-2560 (((-112) $ $) NIL)) (-3759 (($ |#1| (-55)) 10)) (-3602 ((|#1| $) 12)) (-3989 (((-1168) $) NIL)) (-3006 (((-112) $ |#1|) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-3359 (((-112) $ $) NIL)) (-1968 (((-55) $) 14)) (-3025 (((-112) $ $) NIL)))
+(((-1200 |#1|) (-13 (-841 |#1|) (-10 -8 (-15 -3759 ($ |#1| (-55))))) (-1109)) (T -1200))
+((-3759 (*1 *1 *2 *3) (-12 (-5 *3 (-55)) (-5 *1 (-1200 *2)) (-4 *2 (-1109)))))
+(-13 (-841 |#1|) (-10 -8 (-15 -3759 ($ |#1| (-55)))))
+((-1985 ((|#1| (-650 |#1|)) 46)) (-4086 ((|#1| |#1| (-570)) 24)) (-1413 (((-1182 |#1|) |#1| (-928)) 20)))
+(((-1201 |#1|) (-10 -7 (-15 -1985 (|#1| (-650 |#1|))) (-15 -1413 ((-1182 |#1|) |#1| (-928))) (-15 -4086 (|#1| |#1| (-570)))) (-368)) (T -1201))
+((-4086 (*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))) (-1413 (*1 *2 *3 *4) (-12 (-5 *4 (-928)) (-5 *2 (-1182 *3)) (-5 *1 (-1201 *3)) (-4 *3 (-368)))) (-1985 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
+(-10 -7 (-15 -1985 (|#1| (-650 |#1|))) (-15 -1413 ((-1182 |#1|) |#1| (-928))) (-15 -4086 (|#1| |#1| (-570))))
+((-4282 (($) 10) (($ (-650 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)))) 14)) (-2385 (($ (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) $) 67) (($ (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) $) NIL) (((-3 |#3| "failed") |#2| $) NIL)) (-3630 (((-650 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) $) 39) (((-650 |#3|) $) 41)) (-1503 (($ (-1 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) $) 57) (($ (-1 |#3| |#3|) $) 33)) (-1357 (($ (-1 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) $) 53) (($ (-1 |#3| |#3|) $) NIL) (($ (-1 |#3| |#3| |#3|) $ $) 38)) (-2885 (((-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) $) 60)) (-3502 (($ (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) $) 16)) (-2903 (((-650 |#2|) $) 19)) (-1358 (((-112) |#2| $) 65)) (-2770 (((-3 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) "failed") (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) $) 64)) (-1684 (((-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) $) 69)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 73)) (-4049 (((-650 |#3|) $) 43)) (-1942 ((|#3| $ |#2|) 30) ((|#3| $ |#2| |#3|) 31)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) $) NIL) (((-777) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) $) NIL) (((-777) |#3| $) NIL) (((-777) (-1 (-112) |#3|) $) 79)) (-3802 (((-868) $) 27)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) $) NIL) (((-112) (-1 (-112) |#3|) $) 71)) (-3025 (((-112) $ $) 51)))
+(((-1202 |#1| |#2| |#3|) (-10 -8 (-15 -3025 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -1357 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4282 (|#1| (-650 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))))) (-15 -4282 (|#1|)) (-15 -1357 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1503 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3587 ((-777) (-1 (-112) |#3|) |#1|)) (-15 -3630 ((-650 |#3|) |#1|)) (-15 -3587 ((-777) |#3| |#1|)) (-15 -1942 (|#3| |#1| |#2| |#3|)) (-15 -1942 (|#3| |#1| |#2|)) (-15 -4049 ((-650 |#3|) |#1|)) (-15 -1358 ((-112) |#2| |#1|)) (-15 -2903 ((-650 |#2|) |#1|)) (-15 -2385 ((-3 |#3| "failed") |#2| |#1|)) (-15 -2385 (|#1| (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -2385 (|#1| (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -2770 ((-3 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) "failed") (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -2885 ((-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3502 (|#1| (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -1684 ((-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3587 ((-777) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3630 ((-650 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -3587 ((-777) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1627 ((-112) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -4379 ((-112) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1503 (|#1| (-1 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1357 (|#1| (-1 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|))) (-1203 |#2| |#3|) (-1109) (-1109)) (T -1202))
+NIL
+(-10 -8 (-15 -3025 ((-112) |#1| |#1|)) (-15 -3802 ((-868) |#1|)) (-15 -1357 (|#1| (-1 |#3| |#3| |#3|) |#1| |#1|)) (-15 -4282 (|#1| (-650 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))))) (-15 -4282 (|#1|)) (-15 -1357 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -1503 (|#1| (-1 |#3| |#3|) |#1|)) (-15 -4379 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -1627 ((-112) (-1 (-112) |#3|) |#1|)) (-15 -3587 ((-777) (-1 (-112) |#3|) |#1|)) (-15 -3630 ((-650 |#3|) |#1|)) (-15 -3587 ((-777) |#3| |#1|)) (-15 -1942 (|#3| |#1| |#2| |#3|)) (-15 -1942 (|#3| |#1| |#2|)) (-15 -4049 ((-650 |#3|) |#1|)) (-15 -1358 ((-112) |#2| |#1|)) (-15 -2903 ((-650 |#2|) |#1|)) (-15 -2385 ((-3 |#3| "failed") |#2| |#1|)) (-15 -2385 (|#1| (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -2385 (|#1| (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -2770 ((-3 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) "failed") (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -2885 ((-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3502 (|#1| (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -1684 ((-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3587 ((-777) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) |#1|)) (-15 -3630 ((-650 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -3587 ((-777) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1627 ((-112) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -4379 ((-112) (-1 (-112) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1503 (|#1| (-1 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)) (-15 -1357 (|#1| (-1 (-2 (|:| -2107 |#2|) (|:| -2340 |#3|)) (-2 (|:| -2107 |#2|) (|:| -2340 |#3|))) |#1|)))
+((-2560 (((-112) $ $) 19 (-2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-4282 (($) 73) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 72)) (-3040 (((-1282) $ |#1| |#1|) 100 (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#2| $ |#1| |#2|) 74)) (-3353 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 46 (|has| $ (-6 -4452)))) (-1434 (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 56 (|has| $ (-6 -4452)))) (-2496 (((-3 |#2| "failed") |#1| $) 62)) (-3195 (($) 7 T CONST)) (-3582 (($ $) 59 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452))))) (-2385 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 48 (|has| $ (-6 -4452))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 47 (|has| $ (-6 -4452))) (((-3 |#2| "failed") |#1| $) 63)) (-1742 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 58 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 55 (|has| $ (-6 -4452)))) (-3627 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 57 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 54 (|has| $ (-6 -4452))) (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 53 (|has| $ (-6 -4452)))) (-1518 ((|#2| $ |#1| |#2|) 88 (|has| $ (-6 -4453)))) (-3824 ((|#2| $ |#1|) 89)) (-3630 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 31 (|has| $ (-6 -4452))) (((-650 |#2|) $) 80 (|has| $ (-6 -4452)))) (-2317 (((-112) $ (-777)) 9)) (-2685 ((|#1| $) 97 (|has| |#1| (-856)))) (-2052 (((-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 30 (|has| $ (-6 -4452))) (((-650 |#2|) $) 81 (|has| $ (-6 -4452)))) (-3767 (((-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 28 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-112) |#2| $) 83 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452))))) (-2602 ((|#1| $) 96 (|has| |#1| (-856)))) (-1503 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 35 (|has| $ (-6 -4453))) (($ (-1 |#2| |#2|) $) 76 (|has| $ (-6 -4453)))) (-1357 (($ (-1 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 36) (($ (-1 |#2| |#2|) $) 75) (($ (-1 |#2| |#2| |#2|) $ $) 71)) (-2193 (((-112) $ (-777)) 10)) (-3989 (((-1168) $) 22 (-2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2914 (((-650 |#1|) $) 64)) (-2343 (((-112) |#1| $) 65)) (-2885 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 40)) (-3502 (($ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 41)) (-2903 (((-650 |#1|) $) 94)) (-1358 (((-112) |#1| $) 93)) (-3580 (((-1129) $) 21 (-2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-3546 ((|#2| $) 98 (|has| |#1| (-856)))) (-2770 (((-3 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) "failed") (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 52)) (-2061 (($ $ |#2|) 99 (|has| $ (-6 -4453)))) (-1684 (((-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 42)) (-1627 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 33 (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) 78 (|has| $ (-6 -4452)))) (-1771 (($ $ (-650 (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))))) 27 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-298 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 26 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) 25 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)))) (($ $ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 24 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#2| $) 95 (-12 (|has| $ (-6 -4452)) (|has| |#2| (-1109))))) (-4049 (((-650 |#2|) $) 92)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#2| $ |#1|) 91) ((|#2| $ |#1| |#2|) 90)) (-2374 (($) 50) (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 49)) (-3587 (((-777) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 32 (|has| $ (-6 -4452))) (((-777) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) $) 29 (-12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| $ (-6 -4452)))) (((-777) |#2| $) 82 (-12 (|has| |#2| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#2|) $) 79 (|has| $ (-6 -4452)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 60 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))))) (-3814 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 51)) (-3802 (((-868) $) 18 (-2895 (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868)))))) (-3359 (((-112) $ $) 23 (-2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2603 (($ (-650 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) 43)) (-4379 (((-112) (-1 (-112) (-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) $) 34 (|has| $ (-6 -4452))) (((-112) (-1 (-112) |#2|) $) 77 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (-2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1203 |#1| |#2|) (-141) (-1109) (-1109)) (T -1203))
-((-3932 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-4279 (*1 *1) (-12 (-4 *1 (-1203 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-4279 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2106 *3) (|:| -2340 *4)))) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *1 (-1203 *3 *4)))) (-1356 (*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 -3932 (|t#2| $ |t#1| |t#2|)) (-15 -4279 ($)) (-15 -4279 ($ (-650 (-2 (|:| -2106 |t#1|) (|:| -2340 |t#2|))))) (-15 -1356 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
-(((-34) . T) ((-107 #0=(-2 (|:| -2106 |#1|) (|:| -2340 |#2|))) . T) ((-102) -2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))) ((-619 (-868)) -2892 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-619 (-868)))) ((-152 #0#) . T) ((-620 (-542)) |has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-290 |#1| |#2|) . T) ((-292 |#1| |#2|) . T) ((-313 #0#) -12 (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#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 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-616 |#1| |#2|) . T) ((-1109) -2892 (|has| |#2| (-1109)) (|has| (-2 (|:| -2106 |#1|) (|:| -2340 |#2|)) (-1109))) ((-1227) . T))
-((-1847 (((-112)) 29)) (-2306 (((-1282) (-1168)) 31)) (-3137 (((-112)) 41)) (-2161 (((-1282)) 39)) (-3723 (((-1282) (-1168) (-1168)) 30)) (-3247 (((-112)) 42)) (-1385 (((-1282) |#1| |#2|) 53)) (-1853 (((-1282)) 26)) (-1523 (((-3 |#2| "failed") |#1|) 51)) (-3711 (((-1282)) 40)))
-(((-1204 |#1| |#2|) (-10 -7 (-15 -1853 ((-1282))) (-15 -3723 ((-1282) (-1168) (-1168))) (-15 -2306 ((-1282) (-1168))) (-15 -2161 ((-1282))) (-15 -3711 ((-1282))) (-15 -1847 ((-112))) (-15 -3137 ((-112))) (-15 -3247 ((-112))) (-15 -1523 ((-3 |#2| "failed") |#1|)) (-15 -1385 ((-1282) |#1| |#2|))) (-1109) (-1109)) (T -1204))
-((-1385 (*1 *2 *3 *4) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-1523 (*1 *2 *3) (|partial| -12 (-4 *2 (-1109)) (-5 *1 (-1204 *3 *2)) (-4 *3 (-1109)))) (-3247 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3137 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-1847 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3711 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2161 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2306 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)))) (-3723 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)))) (-1853 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
-(-10 -7 (-15 -1853 ((-1282))) (-15 -3723 ((-1282) (-1168) (-1168))) (-15 -2306 ((-1282) (-1168))) (-15 -2161 ((-1282))) (-15 -3711 ((-1282))) (-15 -1847 ((-112))) (-15 -3137 ((-112))) (-15 -3247 ((-112))) (-15 -1523 ((-3 |#2| "failed") |#1|)) (-15 -1385 ((-1282) |#1| |#2|)))
-((-2085 (((-1168) (-1168)) 22)) (-3486 (((-52) (-1168)) 25)))
-(((-1205) (-10 -7 (-15 -3486 ((-52) (-1168))) (-15 -2085 ((-1168) (-1168))))) (T -1205))
-((-2085 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1205)))) (-3486 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-1205)))))
-(-10 -7 (-15 -3486 ((-52) (-1168))) (-15 -2085 ((-1168) (-1168))))
-((-3799 (((-1207) |#1|) 11)))
-(((-1206 |#1|) (-10 -7 (-15 -3799 ((-1207) |#1|))) (-1109)) (T -1206))
-((-3799 (*1 *2 *3) (-12 (-5 *2 (-1207)) (-5 *1 (-1206 *3)) (-4 *3 (-1109)))))
-(-10 -7 (-15 -3799 ((-1207) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-4394 (((-650 (-1168)) $) 39)) (-1500 (((-650 (-1168)) $ (-650 (-1168))) 42)) (-1430 (((-650 (-1168)) $ (-650 (-1168))) 41)) (-3076 (((-650 (-1168)) $ (-650 (-1168))) 43)) (-3419 (((-650 (-1168)) $) 38)) (-4291 (($) 28)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2328 (((-650 (-1168)) $) 40)) (-4147 (((-1282) $ (-570)) 35) (((-1282) $) 36)) (-1425 (($ (-868) (-570)) 33) (($ (-868) (-570) (-868)) NIL)) (-3799 (((-868) $) 49) (($ (-868)) 32)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1207) (-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1425 ($ (-868) (-570))) (-15 -1425 ($ (-868) (-570) (-868))) (-15 -4147 ((-1282) $ (-570))) (-15 -4147 ((-1282) $)) (-15 -2328 ((-650 (-1168)) $)) (-15 -4394 ((-650 (-1168)) $)) (-15 -4291 ($)) (-15 -3419 ((-650 (-1168)) $)) (-15 -3076 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1500 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1430 ((-650 (-1168)) $ (-650 (-1168))))))) (T -1207))
-((-1425 (*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1207)))) (-1425 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1207)))) (-4147 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1207)))) (-4147 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1207)))) (-2328 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-4394 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-4291 (*1 *1) (-5 *1 (-1207))) (-3419 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-3076 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-1500 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-1430 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
-(-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1425 ($ (-868) (-570))) (-15 -1425 ($ (-868) (-570) (-868))) (-15 -4147 ((-1282) $ (-570))) (-15 -4147 ((-1282) $)) (-15 -2328 ((-650 (-1168)) $)) (-15 -4394 ((-650 (-1168)) $)) (-15 -4291 ($)) (-15 -3419 ((-650 (-1168)) $)) (-15 -3076 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1500 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1430 ((-650 (-1168)) $ (-650 (-1168))))))
-((-2558 (((-112) $ $) NIL)) (-3117 (((-1168) $ (-1168)) 17) (((-1168) $) 16)) (-2391 (((-1168) $ (-1168)) 15)) (-2117 (($ $ (-1168)) NIL)) (-3992 (((-3 (-1168) "failed") $) 11)) (-4306 (((-1168) $) 8)) (-2732 (((-3 (-1168) "failed") $) 12)) (-2080 (((-1168) $) 9)) (-1762 (($ (-394)) NIL) (($ (-394) (-1168)) NIL)) (-3600 (((-394) $) NIL)) (-1988 (((-1168) $) NIL)) (-3767 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2152 (((-112) $) 21)) (-3799 (((-868) $) NIL)) (-3107 (($ $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1208) (-13 (-369 (-394) (-1168)) (-10 -8 (-15 -3117 ((-1168) $ (-1168))) (-15 -3117 ((-1168) $)) (-15 -4306 ((-1168) $)) (-15 -3992 ((-3 (-1168) "failed") $)) (-15 -2732 ((-3 (-1168) "failed") $)) (-15 -2152 ((-112) $))))) (T -1208))
-((-3117 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-3117 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-4306 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-3992 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-2732 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-2152 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1208)))))
-(-13 (-369 (-394) (-1168)) (-10 -8 (-15 -3117 ((-1168) $ (-1168))) (-15 -3117 ((-1168) $)) (-15 -4306 ((-1168) $)) (-15 -3992 ((-3 (-1168) "failed") $)) (-15 -2732 ((-3 (-1168) "failed") $)) (-15 -2152 ((-112) $))))
-((-4395 (((-3 (-570) "failed") |#1|) 19)) (-3565 (((-3 (-570) "failed") |#1|) 14)) (-3707 (((-570) (-1168)) 33)))
-(((-1209 |#1|) (-10 -7 (-15 -4395 ((-3 (-570) "failed") |#1|)) (-15 -3565 ((-3 (-570) "failed") |#1|)) (-15 -3707 ((-570) (-1168)))) (-1058)) (T -1209))
-((-3707 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-1209 *4)) (-4 *4 (-1058)))) (-3565 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))) (-4395 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))))
-(-10 -7 (-15 -4395 ((-3 (-570) "failed") |#1|)) (-15 -3565 ((-3 (-570) "failed") |#1|)) (-15 -3707 ((-570) (-1168))))
-((-2053 (((-1142 (-227))) 9)))
-(((-1210) (-10 -7 (-15 -2053 ((-1142 (-227)))))) (T -1210))
-((-2053 (*1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1210)))))
-(-10 -7 (-15 -2053 ((-1142 (-227)))))
-((-1315 (($) 12)) (-4154 (($ $) 36)) (-4129 (($ $) 34)) (-2801 (($ $) 26)) (-4176 (($ $) 18)) (-1578 (($ $) 16)) (-4163 (($ $) 20)) (-2835 (($ $) 31)) (-4140 (($ $) 35)) (-2814 (($ $) 30)))
-(((-1211 |#1|) (-10 -8 (-15 -1315 (|#1|)) (-15 -4154 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4176 (|#1| |#1|)) (-15 -1578 (|#1| |#1|)) (-15 -4163 (|#1| |#1|)) (-15 -4140 (|#1| |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -2835 (|#1| |#1|)) (-15 -2814 (|#1| |#1|))) (-1212)) (T -1211))
-NIL
-(-10 -8 (-15 -1315 (|#1|)) (-15 -4154 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4176 (|#1| |#1|)) (-15 -1578 (|#1| |#1|)) (-15 -4163 (|#1| |#1|)) (-15 -4140 (|#1| |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -2835 (|#1| |#1|)) (-15 -2814 (|#1| |#1|)))
-((-2887 (($ $) 26)) (-2751 (($ $) 11)) (-2866 (($ $) 27)) (-2733 (($ $) 10)) (-4107 (($ $) 28)) (-2774 (($ $) 9)) (-1315 (($) 16)) (-2789 (($ $) 19)) (-4387 (($ $) 18)) (-4117 (($ $) 29)) (-2788 (($ $) 8)) (-2899 (($ $) 30)) (-2766 (($ $) 7)) (-2876 (($ $) 31)) (-2740 (($ $) 6)) (-4154 (($ $) 20)) (-2825 (($ $) 32)) (-4129 (($ $) 21)) (-2801 (($ $) 33)) (-4176 (($ $) 22)) (-2845 (($ $) 34)) (-1578 (($ $) 23)) (-2855 (($ $) 35)) (-4163 (($ $) 24)) (-2835 (($ $) 36)) (-4140 (($ $) 25)) (-2814 (($ $) 37)) (** (($ $ $) 17)))
+((-3935 (*1 *2 *1 *3 *2) (-12 (-4 *1 (-1203 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))) (-4282 (*1 *1) (-12 (-4 *1 (-1203 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))) (-4282 (*1 *1 *2) (-12 (-5 *2 (-650 (-2 (|:| -2107 *3) (|:| -2340 *4)))) (-4 *3 (-1109)) (-4 *4 (-1109)) (-4 *1 (-1203 *3 *4)))) (-1357 (*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 -3935 (|t#2| $ |t#1| |t#2|)) (-15 -4282 ($)) (-15 -4282 ($ (-650 (-2 (|:| -2107 |t#1|) (|:| -2340 |t#2|))))) (-15 -1357 ($ (-1 |t#2| |t#2| |t#2|) $ $))))
+(((-34) . T) ((-107 #0=(-2 (|:| -2107 |#1|) (|:| -2340 |#2|))) . T) ((-102) -2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))) ((-619 (-868)) -2895 (|has| |#2| (-1109)) (|has| |#2| (-619 (-868))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-619 (-868)))) ((-152 #0#) . T) ((-620 (-542)) |has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-620 (-542))) ((-231 #0#) . T) ((-237 #0#) . T) ((-290 |#1| |#2|) . T) ((-292 |#1| |#2|) . T) ((-313 #0#) -12 (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#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 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-313 (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)))) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))) ((-520 |#2| |#2|) -12 (|has| |#2| (-313 |#2|)) (|has| |#2| (-1109))) ((-616 |#1| |#2|) . T) ((-1109) -2895 (|has| |#2| (-1109)) (|has| (-2 (|:| -2107 |#1|) (|:| -2340 |#2|)) (-1109))) ((-1227) . T))
+((-2065 (((-112)) 29)) (-4249 (((-1282) (-1168)) 31)) (-3717 (((-112)) 41)) (-2192 (((-1282)) 39)) (-4276 (((-1282) (-1168) (-1168)) 30)) (-2364 (((-112)) 42)) (-3502 (((-1282) |#1| |#2|) 53)) (-2111 (((-1282)) 26)) (-1996 (((-3 |#2| "failed") |#1|) 51)) (-4149 (((-1282)) 40)))
+(((-1204 |#1| |#2|) (-10 -7 (-15 -2111 ((-1282))) (-15 -4276 ((-1282) (-1168) (-1168))) (-15 -4249 ((-1282) (-1168))) (-15 -2192 ((-1282))) (-15 -4149 ((-1282))) (-15 -2065 ((-112))) (-15 -3717 ((-112))) (-15 -2364 ((-112))) (-15 -1996 ((-3 |#2| "failed") |#1|)) (-15 -3502 ((-1282) |#1| |#2|))) (-1109) (-1109)) (T -1204))
+((-3502 (*1 *2 *3 *4) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-1996 (*1 *2 *3) (|partial| -12 (-4 *2 (-1109)) (-5 *1 (-1204 *3 *2)) (-4 *3 (-1109)))) (-2364 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-3717 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2065 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-4149 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-2192 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))) (-4249 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)))) (-4276 (*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5)) (-4 *4 (-1109)) (-4 *5 (-1109)))) (-2111 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109)))))
+(-10 -7 (-15 -2111 ((-1282))) (-15 -4276 ((-1282) (-1168) (-1168))) (-15 -4249 ((-1282) (-1168))) (-15 -2192 ((-1282))) (-15 -4149 ((-1282))) (-15 -2065 ((-112))) (-15 -3717 ((-112))) (-15 -2364 ((-112))) (-15 -1996 ((-3 |#2| "failed") |#1|)) (-15 -3502 ((-1282) |#1| |#2|)))
+((-2632 (((-1168) (-1168)) 22)) (-2719 (((-52) (-1168)) 25)))
+(((-1205) (-10 -7 (-15 -2719 ((-52) (-1168))) (-15 -2632 ((-1168) (-1168))))) (T -1205))
+((-2632 (*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1205)))) (-2719 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-1205)))))
+(-10 -7 (-15 -2719 ((-52) (-1168))) (-15 -2632 ((-1168) (-1168))))
+((-3802 (((-1207) |#1|) 11)))
+(((-1206 |#1|) (-10 -7 (-15 -3802 ((-1207) |#1|))) (-1109)) (T -1206))
+((-3802 (*1 *2 *3) (-12 (-5 *2 (-1207)) (-5 *1 (-1206 *3)) (-4 *3 (-1109)))))
+(-10 -7 (-15 -3802 ((-1207) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-4397 (((-650 (-1168)) $) 39)) (-2985 (((-650 (-1168)) $ (-650 (-1168))) 42)) (-1459 (((-650 (-1168)) $ (-650 (-1168))) 41)) (-3161 (((-650 (-1168)) $ (-650 (-1168))) 43)) (-3275 (((-650 (-1168)) $) 38)) (-4294 (($) 28)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3284 (((-650 (-1168)) $) 40)) (-4150 (((-1282) $ (-570)) 35) (((-1282) $) 36)) (-1426 (($ (-868) (-570)) 33) (($ (-868) (-570) (-868)) NIL)) (-3802 (((-868) $) 49) (($ (-868)) 32)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1207) (-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1426 ($ (-868) (-570))) (-15 -1426 ($ (-868) (-570) (-868))) (-15 -4150 ((-1282) $ (-570))) (-15 -4150 ((-1282) $)) (-15 -3284 ((-650 (-1168)) $)) (-15 -4397 ((-650 (-1168)) $)) (-15 -4294 ($)) (-15 -3275 ((-650 (-1168)) $)) (-15 -3161 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2985 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1459 ((-650 (-1168)) $ (-650 (-1168))))))) (T -1207))
+((-1426 (*1 *1 *2 *3) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1207)))) (-1426 (*1 *1 *2 *3 *2) (-12 (-5 *2 (-868)) (-5 *3 (-570)) (-5 *1 (-1207)))) (-4150 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1207)))) (-4150 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1207)))) (-3284 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-4397 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-4294 (*1 *1) (-5 *1 (-1207))) (-3275 (*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-3161 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-2985 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))) (-1459 (*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(-13 (-1109) (-622 (-868)) (-10 -8 (-15 -1426 ($ (-868) (-570))) (-15 -1426 ($ (-868) (-570) (-868))) (-15 -4150 ((-1282) $ (-570))) (-15 -4150 ((-1282) $)) (-15 -3284 ((-650 (-1168)) $)) (-15 -4397 ((-650 (-1168)) $)) (-15 -4294 ($)) (-15 -3275 ((-650 (-1168)) $)) (-15 -3161 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -2985 ((-650 (-1168)) $ (-650 (-1168)))) (-15 -1459 ((-650 (-1168)) $ (-650 (-1168))))))
+((-2560 (((-112) $ $) NIL)) (-3531 (((-1168) $ (-1168)) 17) (((-1168) $) 16)) (-2771 (((-1168) $ (-1168)) 15)) (-2960 (($ $ (-1168)) NIL)) (-1989 (((-3 (-1168) "failed") $) 11)) (-1972 (((-1168) $) 8)) (-3071 (((-3 (-1168) "failed") $) 12)) (-2582 (((-1168) $) 9)) (-1765 (($ (-394)) NIL) (($ (-394) (-1168)) NIL)) (-3602 (((-394) $) NIL)) (-3989 (((-1168) $) NIL)) (-3499 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2106 (((-112) $) 21)) (-3802 (((-868) $) NIL)) (-3443 (($ $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1208) (-13 (-369 (-394) (-1168)) (-10 -8 (-15 -3531 ((-1168) $ (-1168))) (-15 -3531 ((-1168) $)) (-15 -1972 ((-1168) $)) (-15 -1989 ((-3 (-1168) "failed") $)) (-15 -3071 ((-3 (-1168) "failed") $)) (-15 -2106 ((-112) $))))) (T -1208))
+((-3531 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-3531 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-1972 (*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-1989 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-3071 (*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))) (-2106 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1208)))))
+(-13 (-369 (-394) (-1168)) (-10 -8 (-15 -3531 ((-1168) $ (-1168))) (-15 -3531 ((-1168) $)) (-15 -1972 ((-1168) $)) (-15 -1989 ((-3 (-1168) "failed") $)) (-15 -3071 ((-3 (-1168) "failed") $)) (-15 -2106 ((-112) $))))
+((-3408 (((-3 (-570) "failed") |#1|) 19)) (-2221 (((-3 (-570) "failed") |#1|) 14)) (-4116 (((-570) (-1168)) 33)))
+(((-1209 |#1|) (-10 -7 (-15 -3408 ((-3 (-570) "failed") |#1|)) (-15 -2221 ((-3 (-570) "failed") |#1|)) (-15 -4116 ((-570) (-1168)))) (-1058)) (T -1209))
+((-4116 (*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-1209 *4)) (-4 *4 (-1058)))) (-2221 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))) (-3408 (*1 *2 *3) (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))))
+(-10 -7 (-15 -3408 ((-3 (-570) "failed") |#1|)) (-15 -2221 ((-3 (-570) "failed") |#1|)) (-15 -4116 ((-570) (-1168))))
+((-3487 (((-1142 (-227))) 9)))
+(((-1210) (-10 -7 (-15 -3487 ((-1142 (-227)))))) (T -1210))
+((-3487 (*1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1210)))))
+(-10 -7 (-15 -3487 ((-1142 (-227)))))
+((-1315 (($) 12)) (-4157 (($ $) 36)) (-4129 (($ $) 34)) (-2804 (($ $) 26)) (-4179 (($ $) 18)) (-1579 (($ $) 16)) (-4166 (($ $) 20)) (-2838 (($ $) 31)) (-4144 (($ $) 35)) (-2817 (($ $) 30)))
+(((-1211 |#1|) (-10 -8 (-15 -1315 (|#1|)) (-15 -4157 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4179 (|#1| |#1|)) (-15 -1579 (|#1| |#1|)) (-15 -4166 (|#1| |#1|)) (-15 -4144 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2838 (|#1| |#1|)) (-15 -2817 (|#1| |#1|))) (-1212)) (T -1211))
+NIL
+(-10 -8 (-15 -1315 (|#1|)) (-15 -4157 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4179 (|#1| |#1|)) (-15 -1579 (|#1| |#1|)) (-15 -4166 (|#1| |#1|)) (-15 -4144 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2838 (|#1| |#1|)) (-15 -2817 (|#1| |#1|)))
+((-2890 (($ $) 26)) (-2755 (($ $) 11)) (-2869 (($ $) 27)) (-2736 (($ $) 10)) (-4109 (($ $) 28)) (-2777 (($ $) 9)) (-1315 (($) 16)) (-2792 (($ $) 19)) (-4389 (($ $) 18)) (-4120 (($ $) 29)) (-2791 (($ $) 8)) (-2902 (($ $) 30)) (-2768 (($ $) 7)) (-2879 (($ $) 31)) (-2743 (($ $) 6)) (-4157 (($ $) 20)) (-2828 (($ $) 32)) (-4129 (($ $) 21)) (-2804 (($ $) 33)) (-4179 (($ $) 22)) (-2848 (($ $) 34)) (-1579 (($ $) 23)) (-2858 (($ $) 35)) (-4166 (($ $) 24)) (-2838 (($ $) 36)) (-4144 (($ $) 25)) (-2817 (($ $) 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))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 19)) (-2405 (($ |#1| (-650 $)) 28) (($ (-650 |#1|)) 35) (($ |#1|) 30)) (-4302 (((-112) $ (-777)) 71)) (-2988 ((|#1| $ |#1|) 14 (|has| $ (-6 -4450)))) (-3932 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4450)))) (-2162 (($ $ (-650 $)) 13 (|has| $ (-6 -4450)))) (-1705 (($) NIL T CONST)) (-3627 (((-650 |#1|) $) 75 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 63)) (-2439 (((-112) $ $) 49 (|has| |#1| (-1109)))) (-2929 (((-112) $ (-777)) 61)) (-2752 (((-650 |#1|) $) 76 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 74 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1502 (($ (-1 |#1| |#1|) $) 29 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 27)) (-3231 (((-112) $ (-777)) 59)) (-2403 (((-650 |#1|) $) 54)) (-2606 (((-112) $) 52)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3642 (((-112) (-1 (-112) |#1|) $) 73 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 105)) (-2017 (((-112) $) 9)) (-2380 (($) 10)) (-1941 ((|#1| $ "value") NIL)) (-2738 (((-570) $ $) 48)) (-2001 (((-650 $) $) 87)) (-1709 (((-112) $ $) 108)) (-1600 (((-650 $) $) 103)) (-2218 (($ $) 104)) (-3817 (((-112) $) 82)) (-3584 (((-777) (-1 (-112) |#1|) $) 25 (|has| $ (-6 -4449))) (((-777) |#1| $) 17 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3951 (($ $) 86)) (-3799 (((-868) $) 89 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 12)) (-3746 (((-112) $ $) 39 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 72 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 37 (|has| |#1| (-1109)))) (-2569 (((-777) $) 57 (|has| $ (-6 -4449)))))
-(((-1213 |#1|) (-13 (-1019 |#1|) (-10 -8 (-6 -4449) (-6 -4450) (-15 -2405 ($ |#1| (-650 $))) (-15 -2405 ($ (-650 |#1|))) (-15 -2405 ($ |#1|)) (-15 -3817 ((-112) $)) (-15 -2218 ($ $)) (-15 -1600 ((-650 $) $)) (-15 -1709 ((-112) $ $)) (-15 -2001 ((-650 $) $)))) (-1109)) (T -1213))
-((-3817 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-2405 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-1213 *2))) (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-2405 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1213 *3)))) (-2405 (*1 *1 *2) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-2218 (*1 *1 *1) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-1600 (*1 *2 *1) (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-1709 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-2001 (*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 -2405 ($ |#1| (-650 $))) (-15 -2405 ($ (-650 |#1|))) (-15 -2405 ($ |#1|)) (-15 -3817 ((-112) $)) (-15 -2218 ($ $)) (-15 -1600 ((-650 $) $)) (-15 -1709 ((-112) $ $)) (-15 -2001 ((-650 $) $))))
-((-2751 (($ $) 15)) (-2774 (($ $) 12)) (-2788 (($ $) 10)) (-2766 (($ $) 17)))
-(((-1214 |#1|) (-10 -8 (-15 -2766 (|#1| |#1|)) (-15 -2788 (|#1| |#1|)) (-15 -2774 (|#1| |#1|)) (-15 -2751 (|#1| |#1|))) (-1215)) (T -1214))
-NIL
-(-10 -8 (-15 -2766 (|#1| |#1|)) (-15 -2788 (|#1| |#1|)) (-15 -2774 (|#1| |#1|)) (-15 -2751 (|#1| |#1|)))
-((-2751 (($ $) 11)) (-2733 (($ $) 10)) (-2774 (($ $) 9)) (-2788 (($ $) 8)) (-2766 (($ $) 7)) (-2740 (($ $) 6)))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2308 ((|#1| $) 19)) (-2405 (($ |#1| (-650 $)) 28) (($ (-650 |#1|)) 35) (($ |#1|) 30)) (-1932 (((-112) $ (-777)) 71)) (-1647 ((|#1| $ |#1|) 14 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) NIL (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 13 (|has| $ (-6 -4453)))) (-3195 (($) NIL T CONST)) (-3630 (((-650 |#1|) $) 75 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 63)) (-2045 (((-112) $ $) 49 (|has| |#1| (-1109)))) (-2317 (((-112) $ (-777)) 61)) (-2052 (((-650 |#1|) $) 76 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 74 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1503 (($ (-1 |#1| |#1|) $) 29 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 27)) (-2193 (((-112) $ (-777)) 59)) (-2404 (((-650 |#1|) $) 54)) (-4244 (((-112) $) 52)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1627 (((-112) (-1 (-112) |#1|) $) 73 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 105)) (-4283 (((-112) $) 9)) (-2656 (($) 10)) (-1942 ((|#1| $ "value") NIL)) (-3108 (((-570) $ $) 48)) (-4113 (((-650 $) $) 87)) (-3214 (((-112) $ $) 108)) (-1479 (((-650 $) $) 103)) (-1481 (($ $) 104)) (-2759 (((-112) $) 82)) (-3587 (((-777) (-1 (-112) |#1|) $) 25 (|has| $ (-6 -4452))) (((-777) |#1| $) 17 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-3954 (($ $) 86)) (-3802 (((-868) $) 89 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 12)) (-3290 (((-112) $ $) 39 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 72 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 37 (|has| |#1| (-1109)))) (-2570 (((-777) $) 57 (|has| $ (-6 -4452)))))
+(((-1213 |#1|) (-13 (-1019 |#1|) (-10 -8 (-6 -4452) (-6 -4453) (-15 -2405 ($ |#1| (-650 $))) (-15 -2405 ($ (-650 |#1|))) (-15 -2405 ($ |#1|)) (-15 -2759 ((-112) $)) (-15 -1481 ($ $)) (-15 -1479 ((-650 $) $)) (-15 -3214 ((-112) $ $)) (-15 -4113 ((-650 $) $)))) (-1109)) (T -1213))
+((-2759 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-2405 (*1 *1 *2 *3) (-12 (-5 *3 (-650 (-1213 *2))) (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-2405 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1213 *3)))) (-2405 (*1 *1 *2) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-1481 (*1 *1 *1) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))) (-1479 (*1 *2 *1) (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-3214 (*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))) (-4113 (*1 *2 *1) (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
+(-13 (-1019 |#1|) (-10 -8 (-6 -4452) (-6 -4453) (-15 -2405 ($ |#1| (-650 $))) (-15 -2405 ($ (-650 |#1|))) (-15 -2405 ($ |#1|)) (-15 -2759 ((-112) $)) (-15 -1481 ($ $)) (-15 -1479 ((-650 $) $)) (-15 -3214 ((-112) $ $)) (-15 -4113 ((-650 $) $))))
+((-2755 (($ $) 15)) (-2777 (($ $) 12)) (-2791 (($ $) 10)) (-2768 (($ $) 17)))
+(((-1214 |#1|) (-10 -8 (-15 -2768 (|#1| |#1|)) (-15 -2791 (|#1| |#1|)) (-15 -2777 (|#1| |#1|)) (-15 -2755 (|#1| |#1|))) (-1215)) (T -1214))
+NIL
+(-10 -8 (-15 -2768 (|#1| |#1|)) (-15 -2791 (|#1| |#1|)) (-15 -2777 (|#1| |#1|)) (-15 -2755 (|#1| |#1|)))
+((-2755 (($ $) 11)) (-2736 (($ $) 10)) (-2777 (($ $) 9)) (-2791 (($ $) 8)) (-2768 (($ $) 7)) (-2743 (($ $) 6)))
(((-1215) (-141)) (T -1215))
-((-2751 (*1 *1 *1) (-4 *1 (-1215))) (-2733 (*1 *1 *1) (-4 *1 (-1215))) (-2774 (*1 *1 *1) (-4 *1 (-1215))) (-2788 (*1 *1 *1) (-4 *1 (-1215))) (-2766 (*1 *1 *1) (-4 *1 (-1215))) (-2740 (*1 *1 *1) (-4 *1 (-1215))))
-(-13 (-10 -8 (-15 -2740 ($ $)) (-15 -2766 ($ $)) (-15 -2788 ($ $)) (-15 -2774 ($ $)) (-15 -2733 ($ $)) (-15 -2751 ($ $))))
-((-1653 ((|#2| |#2|) 98)) (-2754 (((-112) |#2|) 29)) (-3823 ((|#2| |#2|) 33)) (-3833 ((|#2| |#2|) 35)) (-3780 ((|#2| |#2| (-1186)) 92) ((|#2| |#2|) 93)) (-3356 (((-171 |#2|) |#2|) 31)) (-1412 ((|#2| |#2| (-1186)) 94) ((|#2| |#2|) 95)))
-(((-1216 |#1| |#2|) (-10 -7 (-15 -3780 (|#2| |#2|)) (-15 -3780 (|#2| |#2| (-1186))) (-15 -1412 (|#2| |#2|)) (-15 -1412 (|#2| |#2| (-1186))) (-15 -1653 (|#2| |#2|)) (-15 -3823 (|#2| |#2|)) (-15 -3833 (|#2| |#2|)) (-15 -2754 ((-112) |#2|)) (-15 -3356 ((-171 |#2|) |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -1216))
-((-3356 (*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))))) (-2754 (*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))))) (-3833 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3823 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-1653 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-1412 (*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))))) (-1412 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3780 (*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))))) (-3780 (*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 -3780 (|#2| |#2|)) (-15 -3780 (|#2| |#2| (-1186))) (-15 -1412 (|#2| |#2|)) (-15 -1412 (|#2| |#2| (-1186))) (-15 -1653 (|#2| |#2|)) (-15 -3823 (|#2| |#2|)) (-15 -3833 (|#2| |#2|)) (-15 -2754 ((-112) |#2|)) (-15 -3356 ((-171 |#2|) |#2|)))
-((-2712 ((|#4| |#4| |#1|) 31)) (-3593 ((|#4| |#4| |#1|) 32)))
-(((-1217 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2712 (|#4| |#4| |#1|)) (-15 -3593 (|#4| |#4| |#1|))) (-562) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -1217))
-((-3593 (*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)))) (-2712 (*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 -2712 (|#4| |#4| |#1|)) (-15 -3593 (|#4| |#4| |#1|)))
-((-1318 ((|#2| |#2|) 148)) (-2216 ((|#2| |#2|) 145)) (-3054 ((|#2| |#2|) 136)) (-1926 ((|#2| |#2|) 133)) (-3187 ((|#2| |#2|) 141)) (-3251 ((|#2| |#2|) 129)) (-2061 ((|#2| |#2|) 44)) (-3913 ((|#2| |#2|) 105)) (-4092 ((|#2| |#2|) 88)) (-4340 ((|#2| |#2|) 143)) (-2194 ((|#2| |#2|) 131)) (-1480 ((|#2| |#2|) 153)) (-2595 ((|#2| |#2|) 151)) (-1327 ((|#2| |#2|) 152)) (-3177 ((|#2| |#2|) 150)) (-2413 ((|#2| |#2|) 163)) (-3842 ((|#2| |#2|) 30 (-12 (|has| |#2| (-620 (-899 |#1|))) (|has| |#2| (-893 |#1|)) (|has| |#1| (-620 (-899 |#1|))) (|has| |#1| (-893 |#1|))))) (-4360 ((|#2| |#2|) 89)) (-1892 ((|#2| |#2|) 154)) (-1392 ((|#2| |#2|) 155)) (-4352 ((|#2| |#2|) 142)) (-2516 ((|#2| |#2|) 130)) (-1462 ((|#2| |#2|) 149)) (-3324 ((|#2| |#2|) 147)) (-2114 ((|#2| |#2|) 137)) (-2332 ((|#2| |#2|) 135)) (-3048 ((|#2| |#2|) 139)) (-3667 ((|#2| |#2|) 127)))
-(((-1218 |#1| |#2|) (-10 -7 (-15 -1392 (|#2| |#2|)) (-15 -4092 (|#2| |#2|)) (-15 -2413 (|#2| |#2|)) (-15 -3913 (|#2| |#2|)) (-15 -2061 (|#2| |#2|)) (-15 -4360 (|#2| |#2|)) (-15 -1892 (|#2| |#2|)) (-15 -3667 (|#2| |#2|)) (-15 -3048 (|#2| |#2|)) (-15 -2114 (|#2| |#2|)) (-15 -1462 (|#2| |#2|)) (-15 -2516 (|#2| |#2|)) (-15 -4352 (|#2| |#2|)) (-15 -2194 (|#2| |#2|)) (-15 -4340 (|#2| |#2|)) (-15 -3251 (|#2| |#2|)) (-15 -3187 (|#2| |#2|)) (-15 -3054 (|#2| |#2|)) (-15 -1318 (|#2| |#2|)) (-15 -1926 (|#2| |#2|)) (-15 -2216 (|#2| |#2|)) (-15 -2332 (|#2| |#2|)) (-15 -3324 (|#2| |#2|)) (-15 -3177 (|#2| |#2|)) (-15 -2595 (|#2| |#2|)) (-15 -1327 (|#2| |#2|)) (-15 -1480 (|#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 -3842 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-458) (-13 (-436 |#1|) (-1212))) (T -1218))
-((-3842 (*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))))) (-1480 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1327 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2595 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3177 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3324 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2332 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2216 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1926 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1318 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3054 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3187 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3251 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4340 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2194 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4352 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2516 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1462 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2114 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3048 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3667 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1892 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4360 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2061 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3913 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2413 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4092 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1392 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))))
-(-10 -7 (-15 -1392 (|#2| |#2|)) (-15 -4092 (|#2| |#2|)) (-15 -2413 (|#2| |#2|)) (-15 -3913 (|#2| |#2|)) (-15 -2061 (|#2| |#2|)) (-15 -4360 (|#2| |#2|)) (-15 -1892 (|#2| |#2|)) (-15 -3667 (|#2| |#2|)) (-15 -3048 (|#2| |#2|)) (-15 -2114 (|#2| |#2|)) (-15 -1462 (|#2| |#2|)) (-15 -2516 (|#2| |#2|)) (-15 -4352 (|#2| |#2|)) (-15 -2194 (|#2| |#2|)) (-15 -4340 (|#2| |#2|)) (-15 -3251 (|#2| |#2|)) (-15 -3187 (|#2| |#2|)) (-15 -3054 (|#2| |#2|)) (-15 -1318 (|#2| |#2|)) (-15 -1926 (|#2| |#2|)) (-15 -2216 (|#2| |#2|)) (-15 -2332 (|#2| |#2|)) (-15 -3324 (|#2| |#2|)) (-15 -3177 (|#2| |#2|)) (-15 -2595 (|#2| |#2|)) (-15 -1327 (|#2| |#2|)) (-15 -1480 (|#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 -3842 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
-((-2986 (((-112) |#5| $) 68) (((-112) $) 110)) (-3484 ((|#5| |#5| $) 83)) (-1431 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 127)) (-3868 (((-650 |#5|) (-650 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 81)) (-4380 (((-3 $ "failed") (-650 |#5|)) 135)) (-3555 (((-3 $ "failed") $) 120)) (-2128 ((|#5| |#5| $) 102)) (-2862 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 36)) (-1544 ((|#5| |#5| $) 106)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#5|)) (|:| -1762 (-650 |#5|))) $) 63)) (-3586 (((-112) |#5| $) 66) (((-112) $) 111)) (-1724 ((|#4| $) 116)) (-1769 (((-3 |#5| "failed") $) 118)) (-3534 (((-650 |#5|) $) 55)) (-1491 (((-112) |#5| $) 75) (((-112) $) 115)) (-2520 ((|#5| |#5| $) 89)) (-2971 (((-112) $ $) 29)) (-2035 (((-112) |#5| $) 71) (((-112) $) 113)) (-4201 ((|#5| |#5| $) 86)) (-3543 (((-3 |#5| "failed") $) 117)) (-2431 (($ $ |#5|) 136)) (-2130 (((-777) $) 60)) (-3811 (($ (-650 |#5|)) 133)) (-3710 (($ $ |#4|) 131)) (-4224 (($ $ |#4|) 129)) (-4085 (($ $) 128)) (-3799 (((-868) $) NIL) (((-650 |#5|) $) 121)) (-4392 (((-777) $) 140)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|)) 49) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 51)) (-4148 (((-112) $ (-1 (-112) |#5| (-650 |#5|))) 108)) (-3716 (((-650 |#4|) $) 123)) (-2561 (((-112) |#4| $) 126)) (-3022 (((-112) $ $) 20)))
-(((-1219 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -4392 ((-777) |#1|)) (-15 -2431 (|#1| |#1| |#5|)) (-15 -1431 ((-3 |#5| "failed") |#1| |#4|)) (-15 -2561 ((-112) |#4| |#1|)) (-15 -3716 ((-650 |#4|) |#1|)) (-15 -3555 ((-3 |#1| "failed") |#1|)) (-15 -1769 ((-3 |#5| "failed") |#1|)) (-15 -3543 ((-3 |#5| "failed") |#1|)) (-15 -1544 (|#5| |#5| |#1|)) (-15 -4085 (|#1| |#1|)) (-15 -2128 (|#5| |#5| |#1|)) (-15 -2520 (|#5| |#5| |#1|)) (-15 -4201 (|#5| |#5| |#1|)) (-15 -3484 (|#5| |#5| |#1|)) (-15 -3868 ((-650 |#5|) (-650 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3624 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1491 ((-112) |#1|)) (-15 -2035 ((-112) |#1|)) (-15 -2986 ((-112) |#1|)) (-15 -4148 ((-112) |#1| (-1 (-112) |#5| (-650 |#5|)))) (-15 -1491 ((-112) |#5| |#1|)) (-15 -2035 ((-112) |#5| |#1|)) (-15 -2986 ((-112) |#5| |#1|)) (-15 -2862 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -3586 ((-112) |#1|)) (-15 -3586 ((-112) |#5| |#1|)) (-15 -4334 ((-2 (|:| -4122 (-650 |#5|)) (|:| -1762 (-650 |#5|))) |#1|)) (-15 -2130 ((-777) |#1|)) (-15 -3534 ((-650 |#5|) |#1|)) (-15 -1405 ((-3 (-2 (|:| |bas| |#1|) (|:| -3353 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -1405 ((-3 (-2 (|:| |bas| |#1|) (|:| -3353 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2971 ((-112) |#1| |#1|)) (-15 -3710 (|#1| |#1| |#4|)) (-15 -4224 (|#1| |#1| |#4|)) (-15 -1724 (|#4| |#1|)) (-15 -4380 ((-3 |#1| "failed") (-650 |#5|))) (-15 -3799 ((-650 |#5|) |#1|)) (-15 -3811 (|#1| (-650 |#5|))) (-15 -3624 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3624 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1431 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -3624 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|))) (-1220 |#2| |#3| |#4| |#5|) (-562) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -1219))
-NIL
-(-10 -8 (-15 -4392 ((-777) |#1|)) (-15 -2431 (|#1| |#1| |#5|)) (-15 -1431 ((-3 |#5| "failed") |#1| |#4|)) (-15 -2561 ((-112) |#4| |#1|)) (-15 -3716 ((-650 |#4|) |#1|)) (-15 -3555 ((-3 |#1| "failed") |#1|)) (-15 -1769 ((-3 |#5| "failed") |#1|)) (-15 -3543 ((-3 |#5| "failed") |#1|)) (-15 -1544 (|#5| |#5| |#1|)) (-15 -4085 (|#1| |#1|)) (-15 -2128 (|#5| |#5| |#1|)) (-15 -2520 (|#5| |#5| |#1|)) (-15 -4201 (|#5| |#5| |#1|)) (-15 -3484 (|#5| |#5| |#1|)) (-15 -3868 ((-650 |#5|) (-650 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3624 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -1491 ((-112) |#1|)) (-15 -2035 ((-112) |#1|)) (-15 -2986 ((-112) |#1|)) (-15 -4148 ((-112) |#1| (-1 (-112) |#5| (-650 |#5|)))) (-15 -1491 ((-112) |#5| |#1|)) (-15 -2035 ((-112) |#5| |#1|)) (-15 -2986 ((-112) |#5| |#1|)) (-15 -2862 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -3586 ((-112) |#1|)) (-15 -3586 ((-112) |#5| |#1|)) (-15 -4334 ((-2 (|:| -4122 (-650 |#5|)) (|:| -1762 (-650 |#5|))) |#1|)) (-15 -2130 ((-777) |#1|)) (-15 -3534 ((-650 |#5|) |#1|)) (-15 -1405 ((-3 (-2 (|:| |bas| |#1|) (|:| -3353 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -1405 ((-3 (-2 (|:| |bas| |#1|) (|:| -3353 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|))) (-15 -2971 ((-112) |#1| |#1|)) (-15 -3710 (|#1| |#1| |#4|)) (-15 -4224 (|#1| |#1| |#4|)) (-15 -1724 (|#4| |#1|)) (-15 -4380 ((-3 |#1| "failed") (-650 |#5|))) (-15 -3799 ((-650 |#5|) |#1|)) (-15 -3811 (|#1| (-650 |#5|))) (-15 -3624 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3624 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1431 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -3624 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3799 ((-868) |#1|)) (-15 -3022 ((-112) |#1| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) 86)) (-1515 (((-650 $) (-650 |#4|)) 87)) (-1755 (((-650 |#3|) $) 34)) (-3051 (((-112) $) 27)) (-1416 (((-112) $) 18 (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) 102) (((-112) $) 98)) (-3484 ((|#4| |#4| $) 93)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) 28)) (-4302 (((-112) $ (-777)) 45)) (-1431 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) 80)) (-1705 (($) 46 T CONST)) (-3737 (((-112) $) 23 (|has| |#1| (-562)))) (-2467 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4047 (((-112) $ $) 24 (|has| |#1| (-562)))) (-1876 (((-112) $) 26 (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2450 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) 37)) (-3216 (($ (-650 |#4|)) 36)) (-3555 (((-3 $ "failed") $) 83)) (-2128 ((|#4| |#4| $) 90)) (-3579 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-1544 ((|#4| |#4| $) 88)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) 106)) (-3627 (((-650 |#4|) $) 53 (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) 105) (((-112) $) 104)) (-1724 ((|#3| $) 35)) (-2929 (((-112) $ (-777)) 44)) (-2752 (((-650 |#4|) $) 54 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) 48)) (-1423 (((-650 |#3|) $) 33)) (-3907 (((-112) |#3| $) 32)) (-3231 (((-112) $ (-777)) 43)) (-1988 (((-1168) $) 10)) (-1769 (((-3 |#4| "failed") $) 84)) (-3534 (((-650 |#4|) $) 108)) (-1491 (((-112) |#4| $) 100) (((-112) $) 96)) (-2520 ((|#4| |#4| $) 91)) (-2971 (((-112) $ $) 111)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) 101) (((-112) $) 97)) (-4201 ((|#4| |#4| $) 92)) (-3577 (((-1129) $) 11)) (-3543 (((-3 |#4| "failed") $) 85)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-1690 (((-3 $ "failed") $ |#4|) 79)) (-2431 (($ $ |#4|) 78)) (-3642 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 39)) (-2017 (((-112) $) 42)) (-2380 (($) 41)) (-2130 (((-777) $) 107)) (-3584 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4449)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4449)))) (-3951 (($ $) 40)) (-1425 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) 61)) (-3710 (($ $ |#3|) 29)) (-4224 (($ $ |#3|) 31)) (-4085 (($ $) 89)) (-1615 (($ $ |#3|) 30)) (-3799 (((-868) $) 12) (((-650 |#4|) $) 38)) (-4392 (((-777) $) 77 (|has| |#3| (-373)))) (-2335 (((-112) $ $) 9)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-4371 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) 82)) (-2561 (((-112) |#3| $) 81)) (-3022 (((-112) $ $) 6)) (-2569 (((-777) $) 47 (|has| $ (-6 -4449)))))
+((-2755 (*1 *1 *1) (-4 *1 (-1215))) (-2736 (*1 *1 *1) (-4 *1 (-1215))) (-2777 (*1 *1 *1) (-4 *1 (-1215))) (-2791 (*1 *1 *1) (-4 *1 (-1215))) (-2768 (*1 *1 *1) (-4 *1 (-1215))) (-2743 (*1 *1 *1) (-4 *1 (-1215))))
+(-13 (-10 -8 (-15 -2743 ($ $)) (-15 -2768 ($ $)) (-15 -2791 ($ $)) (-15 -2777 ($ $)) (-15 -2736 ($ $)) (-15 -2755 ($ $))))
+((-3881 ((|#2| |#2|) 98)) (-2063 (((-112) |#2|) 29)) (-3826 ((|#2| |#2|) 33)) (-3836 ((|#2| |#2|) 35)) (-3628 ((|#2| |#2| (-1186)) 92) ((|#2| |#2|) 93)) (-3986 (((-171 |#2|) |#2|) 31)) (-1455 ((|#2| |#2| (-1186)) 94) ((|#2| |#2|) 95)))
+(((-1216 |#1| |#2|) (-10 -7 (-15 -3628 (|#2| |#2|)) (-15 -3628 (|#2| |#2| (-1186))) (-15 -1455 (|#2| |#2|)) (-15 -1455 (|#2| |#2| (-1186))) (-15 -3881 (|#2| |#2|)) (-15 -3826 (|#2| |#2|)) (-15 -3836 (|#2| |#2|)) (-15 -2063 ((-112) |#2|)) (-15 -3986 ((-171 |#2|) |#2|))) (-13 (-458) (-1047 (-570)) (-645 (-570))) (-13 (-27) (-1212) (-436 |#1|))) (T -1216))
+((-3986 (*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))))) (-2063 (*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))))) (-3836 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3826 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3881 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-1455 (*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))))) (-1455 (*1 *2 *2) (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))) (-3628 (*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))))) (-3628 (*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 -3628 (|#2| |#2|)) (-15 -3628 (|#2| |#2| (-1186))) (-15 -1455 (|#2| |#2|)) (-15 -1455 (|#2| |#2| (-1186))) (-15 -3881 (|#2| |#2|)) (-15 -3826 (|#2| |#2|)) (-15 -3836 (|#2| |#2|)) (-15 -2063 ((-112) |#2|)) (-15 -3986 ((-171 |#2|) |#2|)))
+((-2899 ((|#4| |#4| |#1|) 31)) (-2455 ((|#4| |#4| |#1|) 32)))
+(((-1217 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2899 (|#4| |#4| |#1|)) (-15 -2455 (|#4| |#4| |#1|))) (-562) (-378 |#1|) (-378 |#1|) (-693 |#1| |#2| |#3|)) (T -1217))
+((-2455 (*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)))) (-2899 (*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 -2899 (|#4| |#4| |#1|)) (-15 -2455 (|#4| |#4| |#1|)))
+((-1690 ((|#2| |#2|) 148)) (-1457 ((|#2| |#2|) 145)) (-4114 ((|#2| |#2|) 136)) (-1514 ((|#2| |#2|) 133)) (-2987 ((|#2| |#2|) 141)) (-2408 ((|#2| |#2|) 129)) (-3578 ((|#2| |#2|) 44)) (-2430 ((|#2| |#2|) 105)) (-3643 ((|#2| |#2|) 88)) (-4078 ((|#2| |#2|) 143)) (-2534 ((|#2| |#2|) 131)) (-2799 ((|#2| |#2|) 153)) (-4151 ((|#2| |#2|) 151)) (-1793 ((|#2| |#2|) 152)) (-2900 ((|#2| |#2|) 150)) (-2974 ((|#2| |#2|) 163)) (-2961 ((|#2| |#2|) 30 (-12 (|has| |#2| (-620 (-899 |#1|))) (|has| |#2| (-893 |#1|)) (|has| |#1| (-620 (-899 |#1|))) (|has| |#1| (-893 |#1|))))) (-4287 ((|#2| |#2|) 89)) (-2474 ((|#2| |#2|) 154)) (-1393 ((|#2| |#2|) 155)) (-4205 ((|#2| |#2|) 142)) (-1553 ((|#2| |#2|) 130)) (-2620 ((|#2| |#2|) 149)) (-1863 ((|#2| |#2|) 147)) (-2930 ((|#2| |#2|) 137)) (-3326 ((|#2| |#2|) 135)) (-4066 ((|#2| |#2|) 139)) (-1949 ((|#2| |#2|) 127)))
+(((-1218 |#1| |#2|) (-10 -7 (-15 -1393 (|#2| |#2|)) (-15 -3643 (|#2| |#2|)) (-15 -2974 (|#2| |#2|)) (-15 -2430 (|#2| |#2|)) (-15 -3578 (|#2| |#2|)) (-15 -4287 (|#2| |#2|)) (-15 -2474 (|#2| |#2|)) (-15 -1949 (|#2| |#2|)) (-15 -4066 (|#2| |#2|)) (-15 -2930 (|#2| |#2|)) (-15 -2620 (|#2| |#2|)) (-15 -1553 (|#2| |#2|)) (-15 -4205 (|#2| |#2|)) (-15 -2534 (|#2| |#2|)) (-15 -4078 (|#2| |#2|)) (-15 -2408 (|#2| |#2|)) (-15 -2987 (|#2| |#2|)) (-15 -4114 (|#2| |#2|)) (-15 -1690 (|#2| |#2|)) (-15 -1514 (|#2| |#2|)) (-15 -1457 (|#2| |#2|)) (-15 -3326 (|#2| |#2|)) (-15 -1863 (|#2| |#2|)) (-15 -2900 (|#2| |#2|)) (-15 -4151 (|#2| |#2|)) (-15 -1793 (|#2| |#2|)) (-15 -2799 (|#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 -2961 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|)) (-458) (-13 (-436 |#1|) (-1212))) (T -1218))
+((-2961 (*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))))) (-2799 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1793 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4151 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2900 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1863 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3326 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1457 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1514 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1690 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4114 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2987 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2408 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4078 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2534 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4205 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1553 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2620 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2930 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4066 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1949 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2474 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-4287 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3578 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2430 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-2974 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-3643 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))) (-1393 (*1 *2 *2) (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2)) (-4 *2 (-13 (-436 *3) (-1212))))))
+(-10 -7 (-15 -1393 (|#2| |#2|)) (-15 -3643 (|#2| |#2|)) (-15 -2974 (|#2| |#2|)) (-15 -2430 (|#2| |#2|)) (-15 -3578 (|#2| |#2|)) (-15 -4287 (|#2| |#2|)) (-15 -2474 (|#2| |#2|)) (-15 -1949 (|#2| |#2|)) (-15 -4066 (|#2| |#2|)) (-15 -2930 (|#2| |#2|)) (-15 -2620 (|#2| |#2|)) (-15 -1553 (|#2| |#2|)) (-15 -4205 (|#2| |#2|)) (-15 -2534 (|#2| |#2|)) (-15 -4078 (|#2| |#2|)) (-15 -2408 (|#2| |#2|)) (-15 -2987 (|#2| |#2|)) (-15 -4114 (|#2| |#2|)) (-15 -1690 (|#2| |#2|)) (-15 -1514 (|#2| |#2|)) (-15 -1457 (|#2| |#2|)) (-15 -3326 (|#2| |#2|)) (-15 -1863 (|#2| |#2|)) (-15 -2900 (|#2| |#2|)) (-15 -4151 (|#2| |#2|)) (-15 -1793 (|#2| |#2|)) (-15 -2799 (|#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 -2961 (|#2| |#2|)) |%noBranch|) |%noBranch|) |%noBranch|) |%noBranch|))
+((-1625 (((-112) |#5| $) 68) (((-112) $) 110)) (-2698 ((|#5| |#5| $) 83)) (-1434 (($ (-1 (-112) |#5|) $) NIL) (((-3 |#5| "failed") $ |#4|) 127)) (-3175 (((-650 |#5|) (-650 |#5|) $ (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|)) 81)) (-4383 (((-3 $ "failed") (-650 |#5|)) 135)) (-3558 (((-3 $ "failed") $) 120)) (-3059 ((|#5| |#5| $) 102)) (-1772 (((-112) |#5| $ (-1 (-112) |#5| |#5|)) 36)) (-2191 ((|#5| |#5| $) 106)) (-3627 ((|#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)) (-4031 (((-2 (|:| -4125 (-650 |#5|)) (|:| -1765 (-650 |#5|))) $) 63)) (-2391 (((-112) |#5| $) 66) (((-112) $) 111)) (-3357 ((|#4| $) 116)) (-1770 (((-3 |#5| "failed") $) 118)) (-3151 (((-650 |#5|) $) 55)) (-2898 (((-112) |#5| $) 75) (((-112) $) 115)) (-1590 ((|#5| |#5| $) 89)) (-1433 (((-112) $ $) 29)) (-3279 (((-112) |#5| $) 71) (((-112) $) 113)) (-2222 ((|#5| |#5| $) 86)) (-3546 (((-3 |#5| "failed") $) 117)) (-3152 (($ $ |#5|) 136)) (-3079 (((-777) $) 60)) (-3814 (($ (-650 |#5|)) 133)) (-4138 (($ $ |#4|) 131)) (-2435 (($ $ |#4|) 129)) (-3563 (($ $) 128)) (-3802 (((-868) $) NIL) (((-650 |#5|) $) 121)) (-3394 (((-777) $) 140)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|)) 49) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|)) 51)) (-2938 (((-112) $ (-1 (-112) |#5| (-650 |#5|))) 108)) (-4204 (((-650 |#4|) $) 123)) (-3857 (((-112) |#4| $) 126)) (-3025 (((-112) $ $) 20)))
+(((-1219 |#1| |#2| |#3| |#4| |#5|) (-10 -8 (-15 -3394 ((-777) |#1|)) (-15 -3152 (|#1| |#1| |#5|)) (-15 -1434 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3857 ((-112) |#4| |#1|)) (-15 -4204 ((-650 |#4|) |#1|)) (-15 -3558 ((-3 |#1| "failed") |#1|)) (-15 -1770 ((-3 |#5| "failed") |#1|)) (-15 -3546 ((-3 |#5| "failed") |#1|)) (-15 -2191 (|#5| |#5| |#1|)) (-15 -3563 (|#1| |#1|)) (-15 -3059 (|#5| |#5| |#1|)) (-15 -1590 (|#5| |#5| |#1|)) (-15 -2222 (|#5| |#5| |#1|)) (-15 -2698 (|#5| |#5| |#1|)) (-15 -3175 ((-650 |#5|) (-650 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3627 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2898 ((-112) |#1|)) (-15 -3279 ((-112) |#1|)) (-15 -1625 ((-112) |#1|)) (-15 -2938 ((-112) |#1| (-1 (-112) |#5| (-650 |#5|)))) (-15 -2898 ((-112) |#5| |#1|)) (-15 -3279 ((-112) |#5| |#1|)) (-15 -1625 ((-112) |#5| |#1|)) (-15 -1772 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2391 ((-112) |#1|)) (-15 -2391 ((-112) |#5| |#1|)) (-15 -4031 ((-2 (|:| -4125 (-650 |#5|)) (|:| -1765 (-650 |#5|))) |#1|)) (-15 -3079 ((-777) |#1|)) (-15 -3151 ((-650 |#5|) |#1|)) (-15 -4336 ((-3 (-2 (|:| |bas| |#1|) (|:| -3356 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -4336 ((-3 (-2 (|:| |bas| |#1|) (|:| -3356 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|))) (-15 -1433 ((-112) |#1| |#1|)) (-15 -4138 (|#1| |#1| |#4|)) (-15 -2435 (|#1| |#1| |#4|)) (-15 -3357 (|#4| |#1|)) (-15 -4383 ((-3 |#1| "failed") (-650 |#5|))) (-15 -3802 ((-650 |#5|) |#1|)) (-15 -3814 (|#1| (-650 |#5|))) (-15 -3627 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3627 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1434 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -3627 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|))) (-1220 |#2| |#3| |#4| |#5|) (-562) (-799) (-856) (-1074 |#2| |#3| |#4|)) (T -1219))
+NIL
+(-10 -8 (-15 -3394 ((-777) |#1|)) (-15 -3152 (|#1| |#1| |#5|)) (-15 -1434 ((-3 |#5| "failed") |#1| |#4|)) (-15 -3857 ((-112) |#4| |#1|)) (-15 -4204 ((-650 |#4|) |#1|)) (-15 -3558 ((-3 |#1| "failed") |#1|)) (-15 -1770 ((-3 |#5| "failed") |#1|)) (-15 -3546 ((-3 |#5| "failed") |#1|)) (-15 -2191 (|#5| |#5| |#1|)) (-15 -3563 (|#1| |#1|)) (-15 -3059 (|#5| |#5| |#1|)) (-15 -1590 (|#5| |#5| |#1|)) (-15 -2222 (|#5| |#5| |#1|)) (-15 -2698 (|#5| |#5| |#1|)) (-15 -3175 ((-650 |#5|) (-650 |#5|) |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -3627 (|#5| |#5| |#1| (-1 |#5| |#5| |#5|) (-1 (-112) |#5| |#5|))) (-15 -2898 ((-112) |#1|)) (-15 -3279 ((-112) |#1|)) (-15 -1625 ((-112) |#1|)) (-15 -2938 ((-112) |#1| (-1 (-112) |#5| (-650 |#5|)))) (-15 -2898 ((-112) |#5| |#1|)) (-15 -3279 ((-112) |#5| |#1|)) (-15 -1625 ((-112) |#5| |#1|)) (-15 -1772 ((-112) |#5| |#1| (-1 (-112) |#5| |#5|))) (-15 -2391 ((-112) |#1|)) (-15 -2391 ((-112) |#5| |#1|)) (-15 -4031 ((-2 (|:| -4125 (-650 |#5|)) (|:| -1765 (-650 |#5|))) |#1|)) (-15 -3079 ((-777) |#1|)) (-15 -3151 ((-650 |#5|) |#1|)) (-15 -4336 ((-3 (-2 (|:| |bas| |#1|) (|:| -3356 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5|) (-1 (-112) |#5| |#5|))) (-15 -4336 ((-3 (-2 (|:| |bas| |#1|) (|:| -3356 (-650 |#5|))) "failed") (-650 |#5|) (-1 (-112) |#5| |#5|))) (-15 -1433 ((-112) |#1| |#1|)) (-15 -4138 (|#1| |#1| |#4|)) (-15 -2435 (|#1| |#1| |#4|)) (-15 -3357 (|#4| |#1|)) (-15 -4383 ((-3 |#1| "failed") (-650 |#5|))) (-15 -3802 ((-650 |#5|) |#1|)) (-15 -3814 (|#1| (-650 |#5|))) (-15 -3627 (|#5| (-1 |#5| |#5| |#5|) |#1|)) (-15 -3627 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5|)) (-15 -1434 (|#1| (-1 (-112) |#5|) |#1|)) (-15 -3627 (|#5| (-1 |#5| |#5| |#5|) |#1| |#5| |#5|)) (-15 -3802 ((-868) |#1|)) (-15 -3025 ((-112) |#1| |#1|)))
+((-2560 (((-112) $ $) 7)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) 86)) (-1911 (((-650 $) (-650 |#4|)) 87)) (-1755 (((-650 |#3|) $) 34)) (-4092 (((-112) $) 27)) (-1320 (((-112) $) 18 (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) 102) (((-112) $) 98)) (-2698 ((|#4| |#4| $) 93)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) 28)) (-1932 (((-112) $ (-777)) 45)) (-1434 (($ (-1 (-112) |#4|) $) 66 (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) 80)) (-3195 (($) 46 T CONST)) (-3230 (((-112) $) 23 (|has| |#1| (-562)))) (-2339 (((-112) $ $) 25 (|has| |#1| (-562)))) (-4337 (((-112) $ $) 24 (|has| |#1| (-562)))) (-2327 (((-112) $) 26 (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 94)) (-2167 (((-650 |#4|) (-650 |#4|) $) 19 (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) 20 (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) 37)) (-3220 (($ (-650 |#4|)) 36)) (-3558 (((-3 $ "failed") $) 83)) (-3059 ((|#4| |#4| $) 90)) (-3582 (($ $) 69 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#4| $) 68 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#4|) $) 65 (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) 21 (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) 103)) (-2191 ((|#4| |#4| $) 88)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) 67 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) 64 (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) 63 (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 95)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) 106)) (-3630 (((-650 |#4|) $) 53 (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) 105) (((-112) $) 104)) (-3357 ((|#3| $) 35)) (-2317 (((-112) $ (-777)) 44)) (-2052 (((-650 |#4|) $) 54 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) 56 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#4| |#4|) $) 49 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) 48)) (-1388 (((-650 |#3|) $) 33)) (-2387 (((-112) |#3| $) 32)) (-2193 (((-112) $ (-777)) 43)) (-3989 (((-1168) $) 10)) (-1770 (((-3 |#4| "failed") $) 84)) (-3151 (((-650 |#4|) $) 108)) (-2898 (((-112) |#4| $) 100) (((-112) $) 96)) (-1590 ((|#4| |#4| $) 91)) (-1433 (((-112) $ $) 111)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) 22 (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) 101) (((-112) $) 97)) (-2222 ((|#4| |#4| $) 92)) (-3580 (((-1129) $) 11)) (-3546 (((-3 |#4| "failed") $) 85)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) 62)) (-4207 (((-3 $ "failed") $ |#4|) 79)) (-3152 (($ $ |#4|) 78)) (-1627 (((-112) (-1 (-112) |#4|) $) 51 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 39)) (-4283 (((-112) $) 42)) (-2656 (($) 41)) (-3079 (((-777) $) 107)) (-3587 (((-777) |#4| $) 55 (-12 (|has| |#4| (-1109)) (|has| $ (-6 -4452)))) (((-777) (-1 (-112) |#4|) $) 52 (|has| $ (-6 -4452)))) (-3954 (($ $) 40)) (-1426 (((-542) $) 70 (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) 61)) (-4138 (($ $ |#3|) 29)) (-2435 (($ $ |#3|) 31)) (-3563 (($ $) 89)) (-1631 (($ $ |#3|) 30)) (-3802 (((-868) $) 12) (((-650 |#4|) $) 38)) (-3394 (((-777) $) 77 (|has| |#3| (-373)))) (-3359 (((-112) $ $) 9)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 110) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) 109)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) 99)) (-4379 (((-112) (-1 (-112) |#4|) $) 50 (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) 82)) (-3857 (((-112) |#3| $) 81)) (-3025 (((-112) $ $) 6)) (-2570 (((-777) $) 47 (|has| $ (-6 -4452)))))
(((-1220 |#1| |#2| |#3| |#4|) (-141) (-562) (-799) (-856) (-1074 |t#1| |t#2| |t#3|)) (T -1220))
-((-2971 (*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)))) (-1405 (*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) (|:| -3353 (-650 *8)))) (-5 *3 (-650 *8)) (-4 *1 (-1220 *5 *6 *7 *8)))) (-1405 (*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) (|:| -3353 (-650 *9)))) (-5 *3 (-650 *9)) (-4 *1 (-1220 *6 *7 *8 *9)))) (-3534 (*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)))) (-2130 (*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)))) (-4334 (*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 (|:| -4122 (-650 *6)) (|:| -1762 (-650 *6)))))) (-3586 (*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)))) (-3586 (*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)))) (-2862 (*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)))) (-2986 (*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)))) (-2035 (*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)))) (-1491 (*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)))) (-4148 (*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)))) (-2986 (*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)))) (-2035 (*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)))) (-1491 (*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)))) (-3624 (*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)))) (-3868 (*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)))) (-3484 (*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)))) (-4201 (*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)))) (-2520 (*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)))) (-2128 (*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)))) (-4085 (*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)))) (-1515 (*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)))) (-3835 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| -4122 *1) (|:| -1762 (-650 *7))))) (-5 *3 (-650 *7)) (-4 *1 (-1220 *4 *5 *6 *7)))) (-3543 (*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)))) (-1769 (*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)))) (-3555 (*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)))) (-3716 (*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)))) (-2561 (*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)))) (-1431 (*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)))) (-1690 (*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)))) (-2431 (*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)))) (-4392 (*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 -2971 ((-112) $ $)) (-15 -1405 ((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |t#4|))) "failed") (-650 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -1405 ((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |t#4|))) "failed") (-650 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3534 ((-650 |t#4|) $)) (-15 -2130 ((-777) $)) (-15 -4334 ((-2 (|:| -4122 (-650 |t#4|)) (|:| -1762 (-650 |t#4|))) $)) (-15 -3586 ((-112) |t#4| $)) (-15 -3586 ((-112) $)) (-15 -2862 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -2986 ((-112) |t#4| $)) (-15 -2035 ((-112) |t#4| $)) (-15 -1491 ((-112) |t#4| $)) (-15 -4148 ((-112) $ (-1 (-112) |t#4| (-650 |t#4|)))) (-15 -2986 ((-112) $)) (-15 -2035 ((-112) $)) (-15 -1491 ((-112) $)) (-15 -3624 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3868 ((-650 |t#4|) (-650 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3484 (|t#4| |t#4| $)) (-15 -4201 (|t#4| |t#4| $)) (-15 -2520 (|t#4| |t#4| $)) (-15 -2128 (|t#4| |t#4| $)) (-15 -4085 ($ $)) (-15 -1544 (|t#4| |t#4| $)) (-15 -1515 ((-650 $) (-650 |t#4|))) (-15 -3835 ((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |t#4|)))) (-650 |t#4|))) (-15 -3543 ((-3 |t#4| "failed") $)) (-15 -1769 ((-3 |t#4| "failed") $)) (-15 -3555 ((-3 $ "failed") $)) (-15 -3716 ((-650 |t#3|) $)) (-15 -2561 ((-112) |t#3| $)) (-15 -1431 ((-3 |t#4| "failed") $ |t#3|)) (-15 -1690 ((-3 $ "failed") $ |t#4|)) (-15 -2431 ($ $ |t#4|)) (IF (|has| |t#3| (-373)) (-15 -4392 ((-777) $)) |%noBranch|)))
+((-1433 (*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)))) (-4336 (*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) (|:| -3356 (-650 *8)))) (-5 *3 (-650 *8)) (-4 *1 (-1220 *5 *6 *7 *8)))) (-4336 (*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) (|:| -3356 (-650 *9)))) (-5 *3 (-650 *9)) (-4 *1 (-1220 *6 *7 *8 *9)))) (-3151 (*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)))) (-3079 (*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)))) (-4031 (*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 (|:| -4125 (-650 *6)) (|:| -1765 (-650 *6)))))) (-2391 (*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)))) (-2391 (*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)))) (-1772 (*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)))) (-1625 (*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)))) (-3279 (*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)))) (-2898 (*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)))) (-2938 (*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)))) (-1625 (*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)))) (-3279 (*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)))) (-2898 (*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)))) (-3627 (*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)))) (-3175 (*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)))) (-2698 (*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)))) (-2222 (*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)))) (-1590 (*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)))) (-3059 (*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)))) (-3563 (*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)))) (-2191 (*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)))) (-1911 (*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)))) (-2901 (*1 *2 *3) (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-1074 *4 *5 *6)) (-5 *2 (-650 (-2 (|:| -4125 *1) (|:| -1765 (-650 *7))))) (-5 *3 (-650 *7)) (-4 *1 (-1220 *4 *5 *6 *7)))) (-3546 (*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)))) (-1770 (*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)))) (-3558 (*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)))) (-4204 (*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)))) (-3857 (*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)))) (-1434 (*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)))) (-4207 (*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)))) (-3152 (*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)))) (-3394 (*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 -4452) (-6 -4453) (-15 -1433 ((-112) $ $)) (-15 -4336 ((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |t#4|))) "failed") (-650 |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -4336 ((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |t#4|))) "failed") (-650 |t#4|) (-1 (-112) |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3151 ((-650 |t#4|) $)) (-15 -3079 ((-777) $)) (-15 -4031 ((-2 (|:| -4125 (-650 |t#4|)) (|:| -1765 (-650 |t#4|))) $)) (-15 -2391 ((-112) |t#4| $)) (-15 -2391 ((-112) $)) (-15 -1772 ((-112) |t#4| $ (-1 (-112) |t#4| |t#4|))) (-15 -1625 ((-112) |t#4| $)) (-15 -3279 ((-112) |t#4| $)) (-15 -2898 ((-112) |t#4| $)) (-15 -2938 ((-112) $ (-1 (-112) |t#4| (-650 |t#4|)))) (-15 -1625 ((-112) $)) (-15 -3279 ((-112) $)) (-15 -2898 ((-112) $)) (-15 -3627 (|t#4| |t#4| $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -3175 ((-650 |t#4|) (-650 |t#4|) $ (-1 |t#4| |t#4| |t#4|) (-1 (-112) |t#4| |t#4|))) (-15 -2698 (|t#4| |t#4| $)) (-15 -2222 (|t#4| |t#4| $)) (-15 -1590 (|t#4| |t#4| $)) (-15 -3059 (|t#4| |t#4| $)) (-15 -3563 ($ $)) (-15 -2191 (|t#4| |t#4| $)) (-15 -1911 ((-650 $) (-650 |t#4|))) (-15 -2901 ((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |t#4|)))) (-650 |t#4|))) (-15 -3546 ((-3 |t#4| "failed") $)) (-15 -1770 ((-3 |t#4| "failed") $)) (-15 -3558 ((-3 $ "failed") $)) (-15 -4204 ((-650 |t#3|) $)) (-15 -3857 ((-112) |t#3| $)) (-15 -1434 ((-3 |t#4| "failed") $ |t#3|)) (-15 -4207 ((-3 $ "failed") $ |t#4|)) (-15 -3152 ($ $ |t#4|)) (IF (|has| |t#3| (-373)) (-15 -3394 ((-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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-1186)) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-2887 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2866 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4107 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3372 (((-959 |#1|) $ (-777)) 17) (((-959 |#1|) $ (-777) (-777)) NIL)) (-2379 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-777) $ (-1186)) NIL) (((-777) $ (-1186) (-777)) NIL)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2359 (((-112) $) NIL)) (-3912 (($ $ (-650 (-1186)) (-650 (-537 (-1186)))) NIL) (($ $ (-1186) (-537 (-1186))) NIL) (($ |#1| (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-2789 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-2898 (($ $ (-1186)) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3577 (((-1129) $) NIL)) (-1955 (($ (-1 $) (-1186) |#1|) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2431 (($ $ (-777)) NIL)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1770 (($ $ (-1186) $) NIL) (($ $ (-650 (-1186)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL)) (-3547 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-2130 (((-537 (-1186)) $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) NIL)) (-3799 (((-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)) (-2249 ((|#1| $ (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (((-959 |#1|) $ (-777)) NIL)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1578 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-2942 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -2249 ((-959 |#1|) $ (-777))) (-15 -3799 ($ (-1186))) (-15 -3799 ($ (-959 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $ (-1186) |#1|)) (-15 -1955 ($ (-1 $) (-1186) |#1|))) |%noBranch|))) (-1058)) (T -1221))
-((-2249 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-959 *4)) (-5 *1 (-1221 *4)) (-4 *4 (-1058)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1221 *3)) (-4 *3 (-1058)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-5 *1 (-1221 *3)))) (-2898 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *1 (-1221 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))) (-1955 (*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 -2249 ((-959 |#1|) $ (-777))) (-15 -3799 ($ (-1186))) (-15 -3799 ($ (-959 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $ (-1186) |#1|)) (-15 -1955 ($ (-1 $) (-1186) |#1|))) |%noBranch|)))
-((-2356 (($ |#1| (-650 (-650 (-950 (-227)))) (-112)) 19)) (-1618 (((-112) $ (-112)) 18)) (-3909 (((-112) $) 17)) (-3417 (((-650 (-650 (-950 (-227)))) $) 13)) (-3236 ((|#1| $) 8)) (-1982 (((-112) $) 15)))
-(((-1222 |#1|) (-10 -8 (-15 -3236 (|#1| $)) (-15 -3417 ((-650 (-650 (-950 (-227)))) $)) (-15 -1982 ((-112) $)) (-15 -3909 ((-112) $)) (-15 -1618 ((-112) $ (-112))) (-15 -2356 ($ |#1| (-650 (-650 (-950 (-227)))) (-112)))) (-983)) (T -1222))
-((-2356 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-112)) (-5 *1 (-1222 *2)) (-4 *2 (-983)))) (-1618 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-3909 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-1982 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-3417 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-3236 (*1 *2 *1) (-12 (-5 *1 (-1222 *2)) (-4 *2 (-983)))))
-(-10 -8 (-15 -3236 (|#1| $)) (-15 -3417 ((-650 (-650 (-950 (-227)))) $)) (-15 -1982 ((-112) $)) (-15 -3909 ((-112) $)) (-15 -1618 ((-112) $ (-112))) (-15 -2356 ($ |#1| (-650 (-650 (-950 (-227)))) (-112))))
-((-2797 (((-950 (-227)) (-950 (-227))) 31)) (-3377 (((-950 (-227)) (-227) (-227) (-227) (-227)) 10)) (-4017 (((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227)))) 56)) (-2609 (((-227) (-950 (-227)) (-950 (-227))) 27)) (-3432 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 28)) (-3926 (((-650 (-650 (-227))) (-570)) 44)) (-3111 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 26)) (-3101 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 24)) (* (((-950 (-227)) (-227) (-950 (-227))) 22)))
-(((-1223) (-10 -7 (-15 -3377 ((-950 (-227)) (-227) (-227) (-227) (-227))) (-15 * ((-950 (-227)) (-227) (-950 (-227)))) (-15 -3101 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -3111 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2609 ((-227) (-950 (-227)) (-950 (-227)))) (-15 -3432 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2797 ((-950 (-227)) (-950 (-227)))) (-15 -3926 ((-650 (-650 (-227))) (-570))) (-15 -4017 ((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227))))))) (T -1223))
-((-4017 (*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)))) (-3926 (*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-1223)))) (-2797 (*1 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-3432 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-2609 (*1 *2 *3 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-227)) (-5 *1 (-1223)))) (-3111 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-3101 (*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)))) (-3377 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)) (-5 *3 (-227)))))
-(-10 -7 (-15 -3377 ((-950 (-227)) (-227) (-227) (-227) (-227))) (-15 * ((-950 (-227)) (-227) (-950 (-227)))) (-15 -3101 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -3111 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2609 ((-227) (-950 (-227)) (-950 (-227)))) (-15 -3432 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2797 ((-950 (-227)) (-950 (-227)))) (-15 -3926 ((-650 (-650 (-227))) (-570))) (-15 -4017 ((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227))))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1431 ((|#1| $ (-777)) 18)) (-1355 (((-777) $) 13)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3799 (((-965 |#1|) $) 12) (($ (-965 |#1|)) 11) (((-868) $) 29 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3022 (((-112) $ $) 22 (|has| |#1| (-1109)))))
-(((-1224 |#1|) (-13 (-496 (-965 |#1|)) (-10 -8 (-15 -1431 (|#1| $ (-777))) (-15 -1355 ((-777) $)) (IF (|has| |#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1224))
-((-1431 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-1224 *2)) (-4 *2 (-1227)))) (-1355 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1224 *3)) (-4 *3 (-1227)))))
-(-13 (-496 (-965 |#1|)) (-10 -8 (-15 -1431 (|#1| $ (-777))) (-15 -1355 ((-777) $)) (IF (|has| |#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
-((-2154 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570)) 94)) (-3895 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|))) 86)) (-4252 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|))) 70)))
-(((-1225 |#1|) (-10 -7 (-15 -3895 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -4252 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -2154 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570)))) (-354)) (T -1225))
-((-2154 (*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))))) (-4252 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4)))) (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))) (-3895 (*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 -3895 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -4252 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -2154 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 9) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-1186)) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-2890 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2869 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4109 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3375 (((-959 |#1|) $ (-777)) 17) (((-959 |#1|) $ (-777) (-777)) NIL)) (-2646 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-777) $ (-1186)) NIL) (((-777) $ (-1186) (-777)) NIL)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3633 (((-112) $) NIL)) (-3915 (($ $ (-650 (-1186)) (-650 (-537 (-1186)))) NIL) (($ $ (-1186) (-537 (-1186))) NIL) (($ |#1| (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2792 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-2023 (($ $ (-1186)) NIL (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186) |#1|) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3580 (((-1129) $) NIL)) (-1802 (($ (-1 $) (-1186) |#1|) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3152 (($ $ (-777)) NIL)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4389 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1771 (($ $ (-1186) $) NIL) (($ $ (-650 (-1186)) (-650 $)) NIL) (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL)) (-3550 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3079 (((-537 (-1186)) $) NIL)) (-4120 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) NIL)) (-3802 (((-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)) (-1864 ((|#1| $ (-537 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL) (((-959 |#1|) $ (-777)) NIL)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-2945 (($ $ (-1186)) NIL) (($ $ (-650 (-1186))) NIL) (($ $ (-1186) (-777)) NIL) (($ $ (-650 (-1186)) (-650 (-777))) NIL)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1864 ((-959 |#1|) $ (-777))) (-15 -3802 ($ (-1186))) (-15 -3802 ($ (-959 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $ (-1186) |#1|)) (-15 -1802 ($ (-1 $) (-1186) |#1|))) |%noBranch|))) (-1058)) (T -1221))
+((-1864 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *2 (-959 *4)) (-5 *1 (-1221 *4)) (-4 *4 (-1058)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1221 *3)) (-4 *3 (-1058)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-5 *1 (-1221 *3)))) (-2023 (*1 *1 *1 *2 *3) (-12 (-5 *2 (-1186)) (-5 *1 (-1221 *3)) (-4 *3 (-38 (-413 (-570)))) (-4 *3 (-1058)))) (-1802 (*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 -1864 ((-959 |#1|) $ (-777))) (-15 -3802 ($ (-1186))) (-15 -3802 ($ (-959 |#1|))) (IF (|has| |#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $ (-1186) |#1|)) (-15 -1802 ($ (-1 $) (-1186) |#1|))) |%noBranch|)))
+((-3596 (($ |#1| (-650 (-650 (-950 (-227)))) (-112)) 19)) (-1666 (((-112) $ (-112)) 18)) (-2410 (((-112) $) 17)) (-3267 (((-650 (-650 (-950 (-227)))) $) 13)) (-2248 ((|#1| $) 8)) (-3926 (((-112) $) 15)))
+(((-1222 |#1|) (-10 -8 (-15 -2248 (|#1| $)) (-15 -3267 ((-650 (-650 (-950 (-227)))) $)) (-15 -3926 ((-112) $)) (-15 -2410 ((-112) $)) (-15 -1666 ((-112) $ (-112))) (-15 -3596 ($ |#1| (-650 (-650 (-950 (-227)))) (-112)))) (-983)) (T -1222))
+((-3596 (*1 *1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-112)) (-5 *1 (-1222 *2)) (-4 *2 (-983)))) (-1666 (*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-2410 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-3926 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-3267 (*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-1222 *3)) (-4 *3 (-983)))) (-2248 (*1 *2 *1) (-12 (-5 *1 (-1222 *2)) (-4 *2 (-983)))))
+(-10 -8 (-15 -2248 (|#1| $)) (-15 -3267 ((-650 (-650 (-950 (-227)))) $)) (-15 -3926 ((-112) $)) (-15 -2410 ((-112) $)) (-15 -1666 ((-112) $ (-112))) (-15 -3596 ($ |#1| (-650 (-650 (-950 (-227)))) (-112))))
+((-2451 (((-950 (-227)) (-950 (-227))) 31)) (-3380 (((-950 (-227)) (-227) (-227) (-227) (-227)) 10)) (-4054 (((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227)))) 56)) (-4266 (((-227) (-950 (-227)) (-950 (-227))) 27)) (-3385 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 28)) (-2556 (((-650 (-650 (-227))) (-570)) 44)) (-3114 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 26)) (-3104 (((-950 (-227)) (-950 (-227)) (-950 (-227))) 24)) (* (((-950 (-227)) (-227) (-950 (-227))) 22)))
+(((-1223) (-10 -7 (-15 -3380 ((-950 (-227)) (-227) (-227) (-227) (-227))) (-15 * ((-950 (-227)) (-227) (-950 (-227)))) (-15 -3104 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -3114 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -4266 ((-227) (-950 (-227)) (-950 (-227)))) (-15 -3385 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2451 ((-950 (-227)) (-950 (-227)))) (-15 -2556 ((-650 (-650 (-227))) (-570))) (-15 -4054 ((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227))))))) (T -1223))
+((-4054 (*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)))) (-2556 (*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-1223)))) (-2451 (*1 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-3385 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-4266 (*1 *2 *3 *3) (-12 (-5 *3 (-950 (-227))) (-5 *2 (-227)) (-5 *1 (-1223)))) (-3114 (*1 *2 *2 *2) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)))) (-3104 (*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)))) (-3380 (*1 *2 *3 *3 *3 *3) (-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)) (-5 *3 (-227)))))
+(-10 -7 (-15 -3380 ((-950 (-227)) (-227) (-227) (-227) (-227))) (-15 * ((-950 (-227)) (-227) (-950 (-227)))) (-15 -3104 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -3114 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -4266 ((-227) (-950 (-227)) (-950 (-227)))) (-15 -3385 ((-950 (-227)) (-950 (-227)) (-950 (-227)))) (-15 -2451 ((-950 (-227)) (-950 (-227)))) (-15 -2556 ((-650 (-650 (-227))) (-570))) (-15 -4054 ((-650 (-950 (-227))) (-950 (-227)) (-950 (-227)) (-950 (-227)) (-227) (-650 (-650 (-227))))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-1434 ((|#1| $ (-777)) 18)) (-1356 (((-777) $) 13)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3802 (((-965 |#1|) $) 12) (($ (-965 |#1|)) 11) (((-868) $) 29 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3025 (((-112) $ $) 22 (|has| |#1| (-1109)))))
+(((-1224 |#1|) (-13 (-496 (-965 |#1|)) (-10 -8 (-15 -1434 (|#1| $ (-777))) (-15 -1356 ((-777) $)) (IF (|has| |#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|))) (-1227)) (T -1224))
+((-1434 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-5 *1 (-1224 *2)) (-4 *2 (-1227)))) (-1356 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1224 *3)) (-4 *3 (-1227)))))
+(-13 (-496 (-965 |#1|)) (-10 -8 (-15 -1434 (|#1| $ (-777))) (-15 -1356 ((-777) $)) (IF (|has| |#1| (-619 (-868))) (-6 (-619 (-868))) |%noBranch|) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|)))
+((-2129 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570)) 94)) (-2272 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|))) 86)) (-1394 (((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|))) 70)))
+(((-1225 |#1|) (-10 -7 (-15 -2272 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -1394 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -2129 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570)))) (-354)) (T -1225))
+((-2129 (*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))))) (-1394 (*1 *2 *3) (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4)))) (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))) (-2272 (*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 -2272 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -1394 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)))) (-15 -2129 ((-424 (-1182 (-1182 |#1|))) (-1182 (-1182 |#1|)) (-570))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 9) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
(((-1226) (-1092)) (T -1226))
NIL
(-1092)
NIL
(((-1227) (-141)) (T -1227))
NIL
-(-13 (-10 -7 (-6 -3139)))
-((-3790 (((-112)) 18)) (-4378 (((-1282) (-650 |#1|) (-650 |#1|)) 22) (((-1282) (-650 |#1|)) 23)) (-2929 (((-112) |#1| |#1|) 37 (|has| |#1| (-856)))) (-3231 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 29) (((-3 (-112) "failed") |#1| |#1|) 27)) (-2124 ((|#1| (-650 |#1|)) 38 (|has| |#1| (-856))) ((|#1| (-650 |#1|) (-1 (-112) |#1| |#1|)) 32)) (-3371 (((-2 (|:| -2762 (-650 |#1|)) (|:| -1458 (-650 |#1|)))) 20)))
-(((-1228 |#1|) (-10 -7 (-15 -4378 ((-1282) (-650 |#1|))) (-15 -4378 ((-1282) (-650 |#1|) (-650 |#1|))) (-15 -3371 ((-2 (|:| -2762 (-650 |#1|)) (|:| -1458 (-650 |#1|))))) (-15 -3231 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3231 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2124 (|#1| (-650 |#1|) (-1 (-112) |#1| |#1|))) (-15 -3790 ((-112))) (IF (|has| |#1| (-856)) (PROGN (-15 -2124 (|#1| (-650 |#1|))) (-15 -2929 ((-112) |#1| |#1|))) |%noBranch|)) (-1109)) (T -1228))
-((-2929 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-856)) (-4 *3 (-1109)))) (-2124 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-856)) (-5 *1 (-1228 *2)))) (-3790 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-2124 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1228 *2)) (-4 *2 (-1109)))) (-3231 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1109)) (-5 *2 (-112)) (-5 *1 (-1228 *3)))) (-3231 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-3371 (*1 *2) (-12 (-5 *2 (-2 (|:| -2762 (-650 *3)) (|:| -1458 (-650 *3)))) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-4378 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1282)) (-5 *1 (-1228 *4)))) (-4378 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1282)) (-5 *1 (-1228 *4)))))
-(-10 -7 (-15 -4378 ((-1282) (-650 |#1|))) (-15 -4378 ((-1282) (-650 |#1|) (-650 |#1|))) (-15 -3371 ((-2 (|:| -2762 (-650 |#1|)) (|:| -1458 (-650 |#1|))))) (-15 -3231 ((-3 (-112) "failed") |#1| |#1|)) (-15 -3231 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -2124 (|#1| (-650 |#1|) (-1 (-112) |#1| |#1|))) (-15 -3790 ((-112))) (IF (|has| |#1| (-856)) (PROGN (-15 -2124 (|#1| (-650 |#1|))) (-15 -2929 ((-112) |#1| |#1|))) |%noBranch|))
-((-2316 (((-1282) (-650 (-1186)) (-650 (-1186))) 14) (((-1282) (-650 (-1186))) 12)) (-2357 (((-1282)) 16)) (-1362 (((-2 (|:| -1458 (-650 (-1186))) (|:| -2762 (-650 (-1186))))) 20)))
-(((-1229) (-10 -7 (-15 -2316 ((-1282) (-650 (-1186)))) (-15 -2316 ((-1282) (-650 (-1186)) (-650 (-1186)))) (-15 -1362 ((-2 (|:| -1458 (-650 (-1186))) (|:| -2762 (-650 (-1186)))))) (-15 -2357 ((-1282))))) (T -1229))
-((-2357 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1229)))) (-1362 (*1 *2) (-12 (-5 *2 (-2 (|:| -1458 (-650 (-1186))) (|:| -2762 (-650 (-1186))))) (-5 *1 (-1229)))) (-2316 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229)))) (-2316 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229)))))
-(-10 -7 (-15 -2316 ((-1282) (-650 (-1186)))) (-15 -2316 ((-1282) (-650 (-1186)) (-650 (-1186)))) (-15 -1362 ((-2 (|:| -1458 (-650 (-1186))) (|:| -2762 (-650 (-1186)))))) (-15 -2357 ((-1282))))
-((-4364 (($ $) 17)) (-3618 (((-112) $) 28)))
-(((-1230 |#1|) (-10 -8 (-15 -4364 (|#1| |#1|)) (-15 -3618 ((-112) |#1|))) (-1231)) (T -1230))
-NIL
-(-10 -8 (-15 -4364 (|#1| |#1|)) (-15 -3618 ((-112) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 57)) (-1652 (((-424 $) $) 58)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-3618 (((-112) $) 59)) (-4346 (((-112) $) 35)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-3801 (((-424 $) $) 56)) (-2547 (((-3 $ "failed") $ $) 48)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
+(-13 (-10 -7 (-6 -3141)))
+((-3719 (((-112)) 18)) (-1338 (((-1282) (-650 |#1|) (-650 |#1|)) 22) (((-1282) (-650 |#1|)) 23)) (-2317 (((-112) |#1| |#1|) 37 (|has| |#1| (-856)))) (-2193 (((-112) |#1| |#1| (-1 (-112) |#1| |#1|)) 29) (((-3 (-112) "failed") |#1| |#1|) 27)) (-3028 ((|#1| (-650 |#1|)) 38 (|has| |#1| (-856))) ((|#1| (-650 |#1|) (-1 (-112) |#1| |#1|)) 32)) (-4081 (((-2 (|:| -2153 (-650 |#1|)) (|:| -2583 (-650 |#1|)))) 20)))
+(((-1228 |#1|) (-10 -7 (-15 -1338 ((-1282) (-650 |#1|))) (-15 -1338 ((-1282) (-650 |#1|) (-650 |#1|))) (-15 -4081 ((-2 (|:| -2153 (-650 |#1|)) (|:| -2583 (-650 |#1|))))) (-15 -2193 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2193 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -3028 (|#1| (-650 |#1|) (-1 (-112) |#1| |#1|))) (-15 -3719 ((-112))) (IF (|has| |#1| (-856)) (PROGN (-15 -3028 (|#1| (-650 |#1|))) (-15 -2317 ((-112) |#1| |#1|))) |%noBranch|)) (-1109)) (T -1228))
+((-2317 (*1 *2 *3 *3) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-856)) (-4 *3 (-1109)))) (-3028 (*1 *2 *3) (-12 (-5 *3 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-856)) (-5 *1 (-1228 *2)))) (-3719 (*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-3028 (*1 *2 *3 *4) (-12 (-5 *3 (-650 *2)) (-5 *4 (-1 (-112) *2 *2)) (-5 *1 (-1228 *2)) (-4 *2 (-1109)))) (-2193 (*1 *2 *3 *3 *4) (-12 (-5 *4 (-1 (-112) *3 *3)) (-4 *3 (-1109)) (-5 *2 (-112)) (-5 *1 (-1228 *3)))) (-2193 (*1 *2 *3 *3) (|partial| -12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-4081 (*1 *2) (-12 (-5 *2 (-2 (|:| -2153 (-650 *3)) (|:| -2583 (-650 *3)))) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))) (-1338 (*1 *2 *3 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1282)) (-5 *1 (-1228 *4)))) (-1338 (*1 *2 *3) (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-5 *2 (-1282)) (-5 *1 (-1228 *4)))))
+(-10 -7 (-15 -1338 ((-1282) (-650 |#1|))) (-15 -1338 ((-1282) (-650 |#1|) (-650 |#1|))) (-15 -4081 ((-2 (|:| -2153 (-650 |#1|)) (|:| -2583 (-650 |#1|))))) (-15 -2193 ((-3 (-112) "failed") |#1| |#1|)) (-15 -2193 ((-112) |#1| |#1| (-1 (-112) |#1| |#1|))) (-15 -3028 (|#1| (-650 |#1|) (-1 (-112) |#1| |#1|))) (-15 -3719 ((-112))) (IF (|has| |#1| (-856)) (PROGN (-15 -3028 (|#1| (-650 |#1|))) (-15 -2317 ((-112) |#1| |#1|))) |%noBranch|))
+((-4346 (((-1282) (-650 (-1186)) (-650 (-1186))) 14) (((-1282) (-650 (-1186))) 12)) (-3608 (((-1282)) 16)) (-2232 (((-2 (|:| -2583 (-650 (-1186))) (|:| -2153 (-650 (-1186))))) 20)))
+(((-1229) (-10 -7 (-15 -4346 ((-1282) (-650 (-1186)))) (-15 -4346 ((-1282) (-650 (-1186)) (-650 (-1186)))) (-15 -2232 ((-2 (|:| -2583 (-650 (-1186))) (|:| -2153 (-650 (-1186)))))) (-15 -3608 ((-1282))))) (T -1229))
+((-3608 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1229)))) (-2232 (*1 *2) (-12 (-5 *2 (-2 (|:| -2583 (-650 (-1186))) (|:| -2153 (-650 (-1186))))) (-5 *1 (-1229)))) (-4346 (*1 *2 *3 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229)))) (-4346 (*1 *2 *3) (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229)))))
+(-10 -7 (-15 -4346 ((-1282) (-650 (-1186)))) (-15 -4346 ((-1282) (-650 (-1186)) (-650 (-1186)))) (-15 -2232 ((-2 (|:| -2583 (-650 (-1186))) (|:| -2153 (-650 (-1186)))))) (-15 -3608 ((-1282))))
+((-4310 (($ $) 17)) (-1336 (((-112) $) 28)))
+(((-1230 |#1|) (-10 -8 (-15 -4310 (|#1| |#1|)) (-15 -1336 ((-112) |#1|))) (-1231)) (T -1230))
+NIL
+(-10 -8 (-15 -4310 (|#1| |#1|)) (-15 -1336 ((-112) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 57)) (-3871 (((-424 $) $) 58)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-1336 (((-112) $) 59)) (-4139 (((-112) $) 35)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3804 (((-424 $) $) 56)) (-2548 (((-3 $ "failed") $ $) 48)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27)))
(((-1231) (-141)) (T -1231))
-((-3618 (*1 *2 *1) (-12 (-4 *1 (-1231)) (-5 *2 (-112)))) (-1652 (*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231)))) (-4364 (*1 *1 *1) (-4 *1 (-1231))) (-3801 (*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231)))))
-(-13 (-458) (-10 -8 (-15 -3618 ((-112) $)) (-15 -1652 ((-424 $) $)) (-15 -4364 ($ $)) (-15 -3801 ((-424 $) $))))
+((-1336 (*1 *2 *1) (-12 (-4 *1 (-1231)) (-5 *2 (-112)))) (-3871 (*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231)))) (-4310 (*1 *1 *1) (-4 *1 (-1231))) (-3804 (*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231)))))
+(-13 (-458) (-10 -8 (-15 -1336 ((-112) $)) (-15 -3871 ((-424 $) $)) (-15 -4310 ($ $)) (-15 -3804 ((-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))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-1379 (($ $ $) NIL)) (-1363 (($ $ $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-1232) (-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))) (T -1232))
-((-1363 (*1 *1 *1 *1) (-5 *1 (-1232))) (-1379 (*1 *1 *1 *1) (-5 *1 (-1232))) (-1705 (*1 *1) (-5 *1 (-1232))))
-(-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-1380 (($ $ $) NIL)) (-1364 (($ $ $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-1232) (-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))) (T -1232))
+((-1364 (*1 *1 *1 *1) (-5 *1 (-1232))) (-1380 (*1 *1 *1 *1) (-5 *1 (-1232))) (-3195 (*1 *1) (-5 *1 (-1232))))
+(-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 16)))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-1379 (($ $ $) NIL)) (-1363 (($ $ $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-1233) (-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))) (T -1233))
-((-1363 (*1 *1 *1 *1) (-5 *1 (-1233))) (-1379 (*1 *1 *1 *1) (-5 *1 (-1233))) (-1705 (*1 *1) (-5 *1 (-1233))))
-(-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-1380 (($ $ $) NIL)) (-1364 (($ $ $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-1233) (-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))) (T -1233))
+((-1364 (*1 *1 *1 *1) (-5 *1 (-1233))) (-1380 (*1 *1 *1 *1) (-5 *1 (-1233))) (-3195 (*1 *1) (-5 *1 (-1233))))
+(-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 32)))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-1379 (($ $ $) NIL)) (-1363 (($ $ $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-1234) (-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))) (T -1234))
-((-1363 (*1 *1 *1 *1) (-5 *1 (-1234))) (-1379 (*1 *1 *1 *1) (-5 *1 (-1234))) (-1705 (*1 *1) (-5 *1 (-1234))))
-(-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-1380 (($ $ $) NIL)) (-1364 (($ $ $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-1234) (-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))) (T -1234))
+((-1364 (*1 *1 *1 *1) (-5 *1 (-1234))) (-1380 (*1 *1 *1 *1) (-5 *1 (-1234))) (-3195 (*1 *1) (-5 *1 (-1234))))
+(-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 64)))
-((-2558 (((-112) $ $) NIL)) (-3510 (((-777)) NIL)) (-1705 (($) NIL T CONST)) (-3446 (($) NIL)) (-3466 (($ $ $) NIL) (($) NIL T CONST)) (-2800 (($ $ $) NIL) (($) NIL T CONST)) (-1884 (((-928) $) NIL)) (-1988 (((-1168) $) NIL)) (-2268 (($ (-928)) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) NIL)) (-1379 (($ $ $) NIL)) (-1363 (($ $ $) NIL)) (-2335 (((-112) $ $) NIL)) (-3072 (((-112) $ $) NIL)) (-3052 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL)) (-3042 (((-112) $ $) NIL)))
-(((-1235) (-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))) (T -1235))
-((-1363 (*1 *1 *1 *1) (-5 *1 (-1235))) (-1379 (*1 *1 *1 *1) (-5 *1 (-1235))) (-1705 (*1 *1) (-5 *1 (-1235))))
-(-13 (-850) (-10 -8 (-15 -1363 ($ $ $)) (-15 -1379 ($ $ $)) (-15 -1705 ($) -3725)))
+((-2560 (((-112) $ $) NIL)) (-3513 (((-777)) NIL)) (-3195 (($) NIL T CONST)) (-3449 (($) NIL)) (-3469 (($ $ $) NIL) (($) NIL T CONST)) (-2472 (($ $ $) NIL) (($) NIL T CONST)) (-2400 (((-928) $) NIL)) (-3989 (((-1168) $) NIL)) (-2267 (($ (-928)) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) NIL)) (-1380 (($ $ $) NIL)) (-1364 (($ $ $) NIL)) (-3359 (((-112) $ $) NIL)) (-3075 (((-112) $ $) NIL)) (-3055 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL)) (-3045 (((-112) $ $) NIL)))
+(((-1235) (-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))) (T -1235))
+((-1364 (*1 *1 *1 *1) (-5 *1 (-1235))) (-1380 (*1 *1 *1 *1) (-5 *1 (-1235))) (-3195 (*1 *1) (-5 *1 (-1235))))
+(-13 (-850) (-10 -8 (-15 -1364 ($ $ $)) (-15 -1380 ($ $ $)) (-15 -3195 ($) -3728)))
((|NonNegativeInteger|) (NOT (> (INTEGER-LENGTH |#1|) 8)))
-((-1356 (((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|)) 23)))
-(((-1236 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1356 ((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|)))) (-1058) (-1058) (-1186) (-1186) |#1| |#2|) (T -1236))
-((-1356 (*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 -1356 ((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2798 (((-1186) $) 115)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-1447 (($ $ (-570)) 110) (($ $ (-570) (-570)) 109)) (-3416 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 117)) (-2887 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 174 (|has| |#1| (-368)))) (-1652 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3814 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-3473 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2866 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 185)) (-4107 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) 18 T CONST)) (-2506 (($ $ $) 169 (|has| |#1| (-368)))) (-1956 (($ $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-3208 (((-413 (-959 |#1|)) $ (-570)) 183 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 182 (|has| |#1| (-562)))) (-2518 (($ $ $) 168 (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-3618 (((-112) $) 176 (|has| |#1| (-368)))) (-2379 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-570) $) 112) (((-570) $ (-570)) 111)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) 113)) (-1712 (($ (-1 |#1| (-570)) $) 184)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-2359 (((-112) $) 74)) (-3912 (($ |#1| (-570)) 73) (($ $ (-1091) (-570)) 88) (($ $ (-650 (-1091)) (-650 (-570))) 87)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-2789 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1899 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1988 (((-1168) $) 10)) (-1877 (($ $) 177 (|has| |#1| (-368)))) (-2898 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2892 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1942 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3801 (((-424 $) $) 173 (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 170 (|has| |#1| (-368)))) (-2431 (($ $ (-570)) 107)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-570)))))) (-2142 (((-777) $) 166 (|has| |#1| (-368)))) (-1941 ((|#1| $ (-570)) 116) (($ $ $) 93 (|has| (-570) (-1121)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 167 (|has| |#1| (-368)))) (-3547 (($ $ (-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|))))) (-2130 (((-570) $) 76)) (-4117 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 84)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-2249 ((|#1| $ (-570)) 71)) (-3532 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2288 ((|#1| $) 114)) (-2335 (((-112) $ $) 9)) (-4154 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-570)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))))
+((-1357 (((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|)) 23)))
+(((-1236 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1357 ((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|)))) (-1058) (-1058) (-1186) (-1186) |#1| |#2|) (T -1236))
+((-1357 (*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 -1357 ((-1241 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1241 |#1| |#3| |#5|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2800 (((-1186) $) 115)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1622 (($ $ (-570)) 110) (($ $ (-570) (-570)) 109)) (-3257 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 117)) (-2890 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 174 (|has| |#1| (-368)))) (-3871 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3817 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-3765 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2869 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 185)) (-4109 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) 18 T CONST)) (-2504 (($ $ $) 169 (|has| |#1| (-368)))) (-1954 (($ $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-1987 (((-413 (-959 |#1|)) $ (-570)) 183 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 182 (|has| |#1| (-562)))) (-2519 (($ $ $) 168 (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-1336 (((-112) $) 176 (|has| |#1| (-368)))) (-2646 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-570) $) 112) (((-570) $ (-570)) 111)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) 113)) (-3240 (($ (-1 |#1| (-570)) $) 184)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-3633 (((-112) $) 74)) (-3915 (($ |#1| (-570)) 73) (($ $ (-1091) (-570)) 88) (($ $ (-650 (-1091)) (-650 (-570))) 87)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-2792 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-1901 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-3989 (((-1168) $) 10)) (-1878 (($ $) 177 (|has| |#1| (-368)))) (-2023 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2895 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1939 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3804 (((-424 $) $) 173 (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 170 (|has| |#1| (-368)))) (-3152 (($ $ (-570)) 107)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4389 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-570)))))) (-2006 (((-777) $) 166 (|has| |#1| (-368)))) (-1942 ((|#1| $ (-570)) 116) (($ $ $) 93 (|has| (-570) (-1121)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 167 (|has| |#1| (-368)))) (-3550 (($ $ (-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|))))) (-3079 (((-570) $) 76)) (-4120 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 84)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1864 ((|#1| $ (-570)) 71)) (-3132 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-2289 ((|#1| $) 114)) (-3359 (((-112) $ $) 9)) (-4157 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-570)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3418 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-4 *3 (-1058)) (-4 *1 (-1237 *3)))) (-1712 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1237 *3)) (-4 *3 (-1058)))) (-3208 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1237 *4)) (-4 *4 (-1058)) (-4 *4 (-562)) (-5 *2 (-413 (-959 *4))))) (-3208 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1237 *4)) (-4 *4 (-1058)) (-4 *4 (-562)) (-5 *2 (-413 (-959 *4))))) (-2898 (*1 *1 *1) (-12 (-4 *1 (-1237 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-2898 (*1 *1 *1 *2) (-2892 (-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 -1755 ((-650 *2) *3))) (|has| *3 (-15 -2898 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
-(-13 (-1255 |t#1| (-570)) (-10 -8 (-15 -3418 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |t#1|))))) (-15 -1712 ($ (-1 |t#1| (-570)) $)) (IF (|has| |t#1| (-562)) (PROGN (-15 -3208 ((-413 (-959 |t#1|)) $ (-570))) (-15 -3208 ((-413 (-959 |t#1|)) $ (-570) (-570)))) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $)) (IF (|has| |t#1| (-15 -2898 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1755 ((-650 (-1186)) |t#1|))) (-15 -2898 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -2898 ($ $ (-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))) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2892 (|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) -2892 (|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) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2892 (|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#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|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))
-((-3467 (((-112) $) 12)) (-4380 (((-3 |#3| "failed") $) 17) (((-3 (-1186) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL)) (-3216 ((|#3| $) 14) (((-1186) $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL)))
-(((-1238 |#1| |#2| |#3|) (-10 -8 (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-1186) "failed") |#1|)) (-15 -3216 ((-1186) |#1|)) (-15 -4380 ((-3 |#3| "failed") |#1|)) (-15 -3216 (|#3| |#1|)) (-15 -3467 ((-112) |#1|))) (-1239 |#2| |#3|) (-1058) (-1268 |#2|)) (T -1238))
-NIL
-(-10 -8 (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -4380 ((-3 (-1186) "failed") |#1|)) (-15 -3216 ((-1186) |#1|)) (-15 -4380 ((-3 |#3| "failed") |#1|)) (-15 -3216 (|#3| |#1|)) (-15 -3467 ((-112) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1733 ((|#2| $) 242 (-1809 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1755 (((-650 (-1091)) $) 86)) (-2798 (((-1186) $) 115)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-1447 (($ $ (-570)) 110) (($ $ (-570) (-570)) 109)) (-3416 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 117)) (-2489 ((|#2| $) 278)) (-2600 (((-3 |#2| "failed") $) 274)) (-1825 ((|#2| $) 275)) (-2887 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) 20)) (-3924 (((-424 (-1182 $)) (-1182 $)) 251 (-1809 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-4364 (($ $) 174 (|has| |#1| (-368)))) (-1652 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3814 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 248 (-1809 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3473 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2866 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-4395 (((-570) $) 260 (-1809 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3418 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 185)) (-4107 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) 18 T CONST)) (-4380 (((-3 |#2| "failed") $) 281) (((-3 (-570) "failed") $) 271 (-1809 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) 269 (-1809 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-1186) "failed") $) 253 (-1809 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-3216 ((|#2| $) 282) (((-570) $) 270 (-1809 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-413 (-570)) $) 268 (-1809 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-1186) $) 252 (-1809 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-1964 (($ $) 277) (($ (-570) $) 276)) (-2506 (($ $ $) 169 (|has| |#1| (-368)))) (-1956 (($ $) 72)) (-4196 (((-695 |#2|) (-695 $)) 232 (|has| |#1| (-368))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 231 (|has| |#1| (-368))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 230 (-1809 (|has| |#2| (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) 229 (-1809 (|has| |#2| (-645 (-570))) (|has| |#1| (-368))))) (-2875 (((-3 $ "failed") $) 37)) (-3208 (((-413 (-959 |#1|)) $ (-570)) 183 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 182 (|has| |#1| (-562)))) (-3446 (($) 244 (-1809 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2518 (($ $ $) 168 (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-3618 (((-112) $) 176 (|has| |#1| (-368)))) (-3903 (((-112) $) 258 (-1809 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-2379 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-2842 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 236 (-1809 (|has| |#2| (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 235 (-1809 (|has| |#2| (-893 (-570))) (|has| |#1| (-368))))) (-4323 (((-570) $) 112) (((-570) $ (-570)) 111)) (-4346 (((-112) $) 35)) (-1330 (($ $) 240 (|has| |#1| (-368)))) (-4399 ((|#2| $) 238 (|has| |#1| (-368)))) (-2923 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2619 (((-3 $ "failed") $) 272 (-1809 (|has| |#2| (-1161)) (|has| |#1| (-368))))) (-1479 (((-112) $) 259 (-1809 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-2362 (($ $ (-928)) 113)) (-1712 (($ (-1 |#1| (-570)) $) 184)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-2359 (((-112) $) 74)) (-3912 (($ |#1| (-570)) 73) (($ $ (-1091) (-570)) 88) (($ $ (-650 (-1091)) (-650 (-570))) 87)) (-3466 (($ $ $) 262 (-1809 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2800 (($ $ $) 263 (-1809 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-1356 (($ (-1 |#1| |#1|) $) 75) (($ (-1 |#2| |#2|) $) 224 (|has| |#1| (-368)))) (-2789 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1899 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1838 (($ (-570) |#2|) 279)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 177 (|has| |#1| (-368)))) (-2898 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2892 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-2438 (($) 273 (-1809 (|has| |#2| (-1161)) (|has| |#1| (-368))) CONST)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1942 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-2564 (($ $) 243 (-1809 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-3665 ((|#2| $) 246 (-1809 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-1659 (((-424 (-1182 $)) (-1182 $)) 249 (-1809 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-2224 (((-424 (-1182 $)) (-1182 $)) 250 (-1809 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3801 (((-424 $) $) 173 (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 170 (|has| |#1| (-368)))) (-2431 (($ $ (-570)) 107)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) |#2|) 223 (-1809 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 |#2|)) 222 (-1809 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-298 |#2|))) 221 (-1809 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-298 |#2|)) 220 (-1809 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ |#2| |#2|) 219 (-1809 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-650 |#2|) (-650 |#2|)) 218 (-1809 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368))))) (-2142 (((-777) $) 166 (|has| |#1| (-368)))) (-1941 ((|#1| $ (-570)) 116) (($ $ $) 93 (|has| (-570) (-1121))) (($ $ |#2|) 217 (-1809 (|has| |#2| (-290 |#2| |#2|)) (|has| |#1| (-368))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 167 (|has| |#1| (-368)))) (-3547 (($ $ (-1 |#2| |#2|)) 228 (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) 227 (|has| |#1| (-368))) (($ $ (-777)) 96 (-2892 (-1809 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 94 (-2892 (-1809 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) 101 (-2892 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186) (-777)) 100 (-2892 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-650 (-1186))) 99 (-2892 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186)) 98 (-2892 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))))) (-2978 (($ $) 241 (|has| |#1| (-368)))) (-4413 ((|#2| $) 239 (|has| |#1| (-368)))) (-2130 (((-570) $) 76)) (-4117 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1425 (((-227) $) 257 (-1809 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-384) $) 256 (-1809 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-542) $) 255 (-1809 (|has| |#2| (-620 (-542))) (|has| |#1| (-368)))) (((-899 (-384)) $) 234 (-1809 (|has| |#2| (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) 233 (-1809 (|has| |#2| (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 247 (-1809 (-1809 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#1| (-368))))) (-2853 (($ $) 84)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ |#2|) 280) (($ (-1186)) 254 (-1809 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368)))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-2249 ((|#1| $ (-570)) 71)) (-3532 (((-3 $ "failed") $) 60 (-2892 (-1809 (-2892 (|has| |#2| (-146)) (-1809 (|has| $ (-146)) (|has| |#2| (-916)))) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-3499 (((-777)) 32 T CONST)) (-2288 ((|#1| $) 114)) (-1313 ((|#2| $) 245 (-1809 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2335 (((-112) $ $) 9)) (-4154 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-570)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) 261 (-1809 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-1 |#2| |#2|)) 226 (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) 225 (|has| |#1| (-368))) (($ $ (-777)) 97 (-2892 (-1809 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 95 (-2892 (-1809 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) 105 (-2892 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186) (-777)) 104 (-2892 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-650 (-1186))) 103 (-2892 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186)) 102 (-2892 (-1809 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))))) (-3072 (((-112) $ $) 265 (-1809 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3052 (((-112) $ $) 266 (-1809 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3022 (((-112) $ $) 6)) (-3062 (((-112) $ $) 264 (-1809 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3042 (((-112) $ $) 267 (-1809 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368))) (($ |#2| |#2|) 237 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))))
+((-3421 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3)))) (-4 *3 (-1058)) (-4 *1 (-1237 *3)))) (-3240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1237 *3)) (-4 *3 (-1058)))) (-1987 (*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1237 *4)) (-4 *4 (-1058)) (-4 *4 (-562)) (-5 *2 (-413 (-959 *4))))) (-1987 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-4 *1 (-1237 *4)) (-4 *4 (-1058)) (-4 *4 (-562)) (-5 *2 (-413 (-959 *4))))) (-2023 (*1 *1 *1) (-12 (-4 *1 (-1237 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-2023 (*1 *1 *1 *2) (-2895 (-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 -1755 ((-650 *2) *3))) (|has| *3 (-15 -2023 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
+(-13 (-1255 |t#1| (-570)) (-10 -8 (-15 -3421 ($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |t#1|))))) (-15 -3240 ($ (-1 |t#1| (-570)) $)) (IF (|has| |t#1| (-562)) (PROGN (-15 -1987 ((-413 (-959 |t#1|)) $ (-570))) (-15 -1987 ((-413 (-959 |t#1|)) $ (-570) (-570)))) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $)) (IF (|has| |t#1| (-15 -2023 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1755 ((-650 (-1186)) |t#1|))) (-15 -2023 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -2023 ($ $ (-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))) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2895 (|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) -2895 (|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) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2895 (|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#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|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))
+((-3721 (((-112) $) 12)) (-4383 (((-3 |#3| "failed") $) 17) (((-3 (-1186) "failed") $) NIL) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL)) (-3220 ((|#3| $) 14) (((-1186) $) NIL) (((-413 (-570)) $) NIL) (((-570) $) NIL)))
+(((-1238 |#1| |#2| |#3|) (-10 -8 (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-1186) "failed") |#1|)) (-15 -3220 ((-1186) |#1|)) (-15 -4383 ((-3 |#3| "failed") |#1|)) (-15 -3220 (|#3| |#1|)) (-15 -3721 ((-112) |#1|))) (-1239 |#2| |#3|) (-1058) (-1268 |#2|)) (T -1238))
+NIL
+(-10 -8 (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -4383 ((-3 (-1186) "failed") |#1|)) (-15 -3220 ((-1186) |#1|)) (-15 -4383 ((-3 |#3| "failed") |#1|)) (-15 -3220 (|#3| |#1|)) (-15 -3721 ((-112) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3472 ((|#2| $) 242 (-1810 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1755 (((-650 (-1091)) $) 86)) (-2800 (((-1186) $) 115)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1622 (($ $ (-570)) 110) (($ $ (-570) (-570)) 109)) (-3257 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 117)) (-2569 ((|#2| $) 278)) (-4193 (((-3 |#2| "failed") $) 274)) (-1822 ((|#2| $) 275)) (-2890 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) 20)) (-2536 (((-424 (-1182 $)) (-1182 $)) 251 (-1810 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-4310 (($ $) 174 (|has| |#1| (-368)))) (-3871 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3817 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 248 (-1810 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3765 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2869 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3408 (((-570) $) 260 (-1810 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3421 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 185)) (-4109 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) 18 T CONST)) (-4383 (((-3 |#2| "failed") $) 281) (((-3 (-570) "failed") $) 271 (-1810 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-413 (-570)) "failed") $) 269 (-1810 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-3 (-1186) "failed") $) 253 (-1810 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-3220 ((|#2| $) 282) (((-570) $) 270 (-1810 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-413 (-570)) $) 268 (-1810 (|has| |#2| (-1047 (-570))) (|has| |#1| (-368)))) (((-1186) $) 252 (-1810 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368))))) (-1907 (($ $) 277) (($ (-570) $) 276)) (-2504 (($ $ $) 169 (|has| |#1| (-368)))) (-1954 (($ $) 72)) (-2179 (((-695 |#2|) (-695 $)) 232 (|has| |#1| (-368))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) 231 (|has| |#1| (-368))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 230 (-1810 (|has| |#2| (-645 (-570))) (|has| |#1| (-368)))) (((-695 (-570)) (-695 $)) 229 (-1810 (|has| |#2| (-645 (-570))) (|has| |#1| (-368))))) (-1929 (((-3 $ "failed") $) 37)) (-1987 (((-413 (-959 |#1|)) $ (-570)) 183 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 182 (|has| |#1| (-562)))) (-3449 (($) 244 (-1810 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2519 (($ $ $) 168 (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-1336 (((-112) $) 176 (|has| |#1| (-368)))) (-2346 (((-112) $) 258 (-1810 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-2646 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-1557 (((-896 (-384) $) $ (-899 (-384)) (-896 (-384) $)) 236 (-1810 (|has| |#2| (-893 (-384))) (|has| |#1| (-368)))) (((-896 (-570) $) $ (-899 (-570)) (-896 (-570) $)) 235 (-1810 (|has| |#2| (-893 (-570))) (|has| |#1| (-368))))) (-3941 (((-570) $) 112) (((-570) $ (-570)) 111)) (-4139 (((-112) $) 35)) (-1834 (($ $) 240 (|has| |#1| (-368)))) (-4402 ((|#2| $) 238 (|has| |#1| (-368)))) (-2252 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-4369 (((-3 $ "failed") $) 272 (-1810 (|has| |#2| (-1161)) (|has| |#1| (-368))))) (-2788 (((-112) $) 259 (-1810 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3660 (($ $ (-928)) 113)) (-3240 (($ (-1 |#1| (-570)) $) 184)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-3633 (((-112) $) 74)) (-3915 (($ |#1| (-570)) 73) (($ $ (-1091) (-570)) 88) (($ $ (-650 (-1091)) (-650 (-570))) 87)) (-3469 (($ $ $) 262 (-1810 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2472 (($ $ $) 263 (-1810 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-1357 (($ (-1 |#1| |#1|) $) 75) (($ (-1 |#2| |#2|) $) 224 (|has| |#1| (-368)))) (-2792 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-1901 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1839 (($ (-570) |#2|) 279)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 177 (|has| |#1| (-368)))) (-2023 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2895 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-2439 (($) 273 (-1810 (|has| |#2| (-1161)) (|has| |#1| (-368))) CONST)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1939 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3889 (($ $) 243 (-1810 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1920 ((|#2| $) 246 (-1810 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-3933 (((-424 (-1182 $)) (-1182 $)) 249 (-1810 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-1558 (((-424 (-1182 $)) (-1182 $)) 250 (-1810 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3804 (((-424 $) $) 173 (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 170 (|has| |#1| (-368)))) (-3152 (($ $ (-570)) 107)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4389 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-570))))) (($ $ (-1186) |#2|) 223 (-1810 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-1186)) (-650 |#2|)) 222 (-1810 (|has| |#2| (-520 (-1186) |#2|)) (|has| |#1| (-368)))) (($ $ (-650 (-298 |#2|))) 221 (-1810 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-298 |#2|)) 220 (-1810 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ |#2| |#2|) 219 (-1810 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368)))) (($ $ (-650 |#2|) (-650 |#2|)) 218 (-1810 (|has| |#2| (-313 |#2|)) (|has| |#1| (-368))))) (-2006 (((-777) $) 166 (|has| |#1| (-368)))) (-1942 ((|#1| $ (-570)) 116) (($ $ $) 93 (|has| (-570) (-1121))) (($ $ |#2|) 217 (-1810 (|has| |#2| (-290 |#2| |#2|)) (|has| |#1| (-368))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 167 (|has| |#1| (-368)))) (-3550 (($ $ (-1 |#2| |#2|)) 228 (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) 227 (|has| |#1| (-368))) (($ $ (-777)) 96 (-2895 (-1810 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 94 (-2895 (-1810 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) 101 (-2895 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186) (-777)) 100 (-2895 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-650 (-1186))) 99 (-2895 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186)) 98 (-2895 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))))) (-1526 (($ $) 241 (|has| |#1| (-368)))) (-4416 ((|#2| $) 239 (|has| |#1| (-368)))) (-3079 (((-570) $) 76)) (-4120 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1426 (((-227) $) 257 (-1810 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-384) $) 256 (-1810 (|has| |#2| (-1031)) (|has| |#1| (-368)))) (((-542) $) 255 (-1810 (|has| |#2| (-620 (-542))) (|has| |#1| (-368)))) (((-899 (-384)) $) 234 (-1810 (|has| |#2| (-620 (-899 (-384)))) (|has| |#1| (-368)))) (((-899 (-570)) $) 233 (-1810 (|has| |#2| (-620 (-899 (-570)))) (|has| |#1| (-368))))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 247 (-1810 (-1810 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#1| (-368))))) (-1682 (($ $) 84)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ |#2|) 280) (($ (-1186)) 254 (-1810 (|has| |#2| (-1047 (-1186))) (|has| |#1| (-368)))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1864 ((|#1| $ (-570)) 71)) (-3132 (((-3 $ "failed") $) 60 (-2895 (-1810 (-2895 (|has| |#2| (-146)) (-1810 (|has| $ (-146)) (|has| |#2| (-916)))) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-2851 (((-777)) 32 T CONST)) (-2289 ((|#1| $) 114)) (-1918 ((|#2| $) 245 (-1810 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-3359 (((-112) $ $) 9)) (-4157 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-570)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-3231 (($ $) 261 (-1810 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-1 |#2| |#2|)) 226 (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) 225 (|has| |#1| (-368))) (($ $ (-777)) 97 (-2895 (-1810 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 95 (-2895 (-1810 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) 105 (-2895 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186) (-777)) 104 (-2895 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-650 (-1186))) 103 (-2895 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|)))))) (($ $ (-1186)) 102 (-2895 (-1810 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-907 (-1186))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))))) (-3075 (((-112) $ $) 265 (-1810 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3055 (((-112) $ $) 266 (-1810 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3025 (((-112) $ $) 6)) (-3065 (((-112) $ $) 264 (-1810 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3045 (((-112) $ $) 267 (-1810 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368))) (($ |#2| |#2|) 237 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2130 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1268 *3)) (-5 *2 (-570)))) (-1838 (*1 *1 *2 *3) (-12 (-5 *2 (-570)) (-4 *4 (-1058)) (-4 *1 (-1239 *4 *3)) (-4 *3 (-1268 *4)))) (-2489 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))) (-1964 (*1 *1 *1) (-12 (-4 *1 (-1239 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1268 *2)))) (-1964 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-1239 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1268 *3)))) (-1825 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))) (-2600 (*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 -1838 ($ (-570) |t#2|)) (-15 -2130 ((-570) $)) (-15 -2489 (|t#2| $)) (-15 -1964 ($ $)) (-15 -1964 ($ (-570) $)) (-15 -1825 (|t#2| $)) (-15 -2600 ((-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))) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 |#2|) |has| |#1| (-368)) ((-38 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-368)) ((-111 $ $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) -2892 (-12 (|has| |#1| (-368)) (|has| |#2| (-146))) (|has| |#1| (-146))) ((-148) -2892 (-12 (|has| |#1| (-368)) (|has| |#2| (-148))) (|has| |#1| (-148))) ((-622 #1#) -2892 (|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 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2892 (|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) -2892 (-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) -2892 (|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) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 |#2|) |has| |#1| (-368)) ((-652 $) . T) ((-654 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 |#2|) |has| |#1| (-368)) ((-654 $) . T) ((-646 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 |#2|) |has| |#1| (-368)) ((-646 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-645 (-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-645 (-570)))) ((-645 |#2|) |has| |#1| (-368)) ((-723 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 |#2|) |has| |#1| (-368)) ((-723 $) -2892 (|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) -2892 (-12 (|has| |#1| (-368)) (|has| |#2| (-856))) (-12 (|has| |#1| (-368)) (|has| |#2| (-826)))) ((-907 (-1186)) -2892 (-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#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 |#2|) |has| |#1| (-368)) ((-1060 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 |#2|) |has| |#1| (-368)) ((-1065 $) -2892 (|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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 81)) (-1733 ((|#2| $) NIL (-12 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 100)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-1447 (($ $ (-570)) 109) (($ $ (-570) (-570)) 111)) (-3416 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 51)) (-2489 ((|#2| $) 11)) (-2600 (((-3 |#2| "failed") $) 35)) (-1825 ((|#2| $) 36)) (-2887 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 182 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2866 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 178 (|has| |#1| (-38 (-413 (-570)))))) (-4395 (((-570) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3418 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 59)) (-4107 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 186 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 ((|#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))))) (-1964 (($ $) 65) (($ (-570) $) 28)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) NIL)) (-4196 (((-695 |#2|) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2415 (-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))))) (-2875 (((-3 $ "failed") $) 88)) (-3208 (((-413 (-959 |#1|)) $ (-570)) 124 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 126 (|has| |#1| (-562)))) (-3446 (($) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-3903 (((-112) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-2379 (((-112) $) 74)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2842 (((-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))))) (-4323 (((-570) $) 105) (((-570) $ (-570)) 107)) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL (|has| |#1| (-368)))) (-4399 ((|#2| $) 165 (|has| |#1| (-368)))) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2619 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1161)) (|has| |#1| (-368))))) (-1479 (((-112) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-2362 (($ $ (-928)) 148)) (-1712 (($ (-1 |#1| (-570)) $) 144)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-570)) 20) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3466 (($ $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2800 (($ $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-1356 (($ (-1 |#1| |#1|) $) 141) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-368)))) (-2789 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1838 (($ (-570) |#2|) 10)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 159 (|has| |#1| (-368)))) (-2898 (($ $) 228 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 233 (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-2438 (($) NIL (-12 (|has| |#2| (-1161)) (|has| |#1| (-368))) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2564 (($ $) NIL (-12 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-3665 ((|#2| $) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2431 (($ $ (-570)) 138)) (-2547 (((-3 $ "failed") $ $) 128 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-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))))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ (-570)) 103) (($ $ $) 90 (|has| (-570) (-1121))) (($ $ |#2|) NIL (-12 (|has| |#2| (-290 |#2| |#2|)) (|has| |#1| (-368))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3547 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2892 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 149 (-2892 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2892 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2892 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2892 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) 153 (-2892 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2978 (($ $) NIL (|has| |#1| (-368)))) (-4413 ((|#2| $) 166 (|has| |#1| (-368)))) (-2130 (((-570) $) 12)) (-4117 (($ $) 212 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 188 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 184 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 180 (|has| |#1| (-38 (-413 (-570)))))) (-1425 (((-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))))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916)) (|has| |#1| (-368))))) (-2853 (($ $) 136)) (-3799 (((-868) $) 266) (($ (-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)))) (-2249 ((|#1| $ (-570)) 85)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#2| (-916)) (|has| |#1| (-368))) (-12 (|has| |#2| (-146)) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-3499 (((-777)) 155 T CONST)) (-2288 ((|#1| $) 102)) (-1313 ((|#2| $) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) 218 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 194 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 214 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 190 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 222 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-570)) 134 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 224 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 220 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 196 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 216 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 192 (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1861 (($) 13 T CONST)) (-1875 (($) 18 T CONST)) (-2942 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2892 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2892 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2892 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2892 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2892 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-3072 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3052 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3022 (((-112) $ $) 72)) (-3062 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3042 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 163 (|has| |#1| (-368))) (($ |#2| |#2|) 164 (|has| |#1| (-368)))) (-3111 (($ $) 227) (($ $ $) 78)) (-3101 (($ $ $) 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)))))))
+((-3079 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1268 *3)) (-5 *2 (-570)))) (-1839 (*1 *1 *2 *3) (-12 (-5 *2 (-570)) (-4 *4 (-1058)) (-4 *1 (-1239 *4 *3)) (-4 *3 (-1268 *4)))) (-2569 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))) (-1907 (*1 *1 *1) (-12 (-4 *1 (-1239 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1268 *2)))) (-1907 (*1 *1 *2 *1) (-12 (-5 *2 (-570)) (-4 *1 (-1239 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1268 *3)))) (-1822 (*1 *2 *1) (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))) (-4193 (*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 -1839 ($ (-570) |t#2|)) (-15 -3079 ((-570) $)) (-15 -2569 (|t#2| $)) (-15 -1907 ($ $)) (-15 -1907 ($ (-570) $)) (-15 -1822 (|t#2| $)) (-15 -4193 ((-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))) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 |#2|) |has| |#1| (-368)) ((-38 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 |#2| |#2|) |has| |#1| (-368)) ((-111 $ $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) -2895 (-12 (|has| |#1| (-368)) (|has| |#2| (-146))) (|has| |#1| (-146))) ((-148) -2895 (-12 (|has| |#1| (-368)) (|has| |#2| (-148))) (|has| |#1| (-148))) ((-622 #1#) -2895 (|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 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2895 (|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) -2895 (-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) -2895 (|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) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 |#2|) |has| |#1| (-368)) ((-652 $) . T) ((-654 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 |#2|) |has| |#1| (-368)) ((-654 $) . T) ((-646 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 |#2|) |has| |#1| (-368)) ((-646 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-645 (-570)) -12 (|has| |#1| (-368)) (|has| |#2| (-645 (-570)))) ((-645 |#2|) |has| |#1| (-368)) ((-723 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 |#2|) |has| |#1| (-368)) ((-723 $) -2895 (|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) -2895 (-12 (|has| |#1| (-368)) (|has| |#2| (-856))) (-12 (|has| |#1| (-368)) (|has| |#2| (-826)))) ((-907 (-1186)) -2895 (-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#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 |#2|) |has| |#1| (-368)) ((-1060 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 |#2|) |has| |#1| (-368)) ((-1065 $) -2895 (|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))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 81)) (-3472 ((|#2| $) NIL (-12 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 100)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1622 (($ $ (-570)) 109) (($ $ (-570) (-570)) 111)) (-3257 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) 51)) (-2569 ((|#2| $) 11)) (-4193 (((-3 |#2| "failed") $) 35)) (-1822 ((|#2| $) 36)) (-2890 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 182 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2869 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 178 (|has| |#1| (-38 (-413 (-570)))))) (-3408 (((-570) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3421 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) 59)) (-4109 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 186 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 ((|#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))))) (-1907 (($ $) 65) (($ (-570) $) 28)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) NIL)) (-2179 (((-695 |#2|) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2990 (-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))))) (-1929 (((-3 $ "failed") $) 88)) (-1987 (((-413 (-959 |#1|)) $ (-570)) 124 (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) 126 (|has| |#1| (-562)))) (-3449 (($) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-2346 (((-112) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-2646 (((-112) $) 74)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1557 (((-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))))) (-3941 (((-570) $) 105) (((-570) $ (-570)) 107)) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL (|has| |#1| (-368)))) (-4402 ((|#2| $) 165 (|has| |#1| (-368)))) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4369 (((-3 $ "failed") $) NIL (-12 (|has| |#2| (-1161)) (|has| |#1| (-368))))) (-2788 (((-112) $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-3660 (($ $ (-928)) 148)) (-3240 (($ (-1 |#1| (-570)) $) 144)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-570)) 20) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3469 (($ $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-2472 (($ $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-1357 (($ (-1 |#1| |#1|) $) 141) (($ (-1 |#2| |#2|) $) NIL (|has| |#1| (-368)))) (-2792 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1839 (($ (-570) |#2|) 10)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 159 (|has| |#1| (-368)))) (-2023 (($ $) 228 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 233 (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-2439 (($) NIL (-12 (|has| |#2| (-1161)) (|has| |#1| (-368))) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3889 (($ $) NIL (-12 (|has| |#2| (-311)) (|has| |#1| (-368))))) (-1920 ((|#2| $) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| |#2| (-916)) (|has| |#1| (-368))))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3152 (($ $ (-570)) 138)) (-2548 (((-3 $ "failed") $ $) 128 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4389 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-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))))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ (-570)) 103) (($ $ $) 90 (|has| (-570) (-1121))) (($ $ |#2|) NIL (-12 (|has| |#2| (-290 |#2| |#2|)) (|has| |#1| (-368))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-3550 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2895 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 149 (-2895 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2895 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2895 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2895 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) 153 (-2895 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-1526 (($ $) NIL (|has| |#1| (-368)))) (-4416 ((|#2| $) 166 (|has| |#1| (-368)))) (-3079 (((-570) $) 12)) (-4120 (($ $) 212 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 188 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 184 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 180 (|has| |#1| (-38 (-413 (-570)))))) (-1426 (((-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))))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916)) (|has| |#1| (-368))))) (-1682 (($ $) 136)) (-3802 (((-868) $) 266) (($ (-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)))) (-1864 ((|#1| $ (-570)) 85)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#2| (-916)) (|has| |#1| (-368))) (-12 (|has| |#2| (-146)) (|has| |#1| (-368))) (|has| |#1| (-146))))) (-2851 (((-777)) 155 T CONST)) (-2289 ((|#1| $) 102)) (-1918 ((|#2| $) NIL (-12 (|has| |#2| (-551)) (|has| |#1| (-368))))) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) 218 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 194 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 214 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 190 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 222 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-570)) 134 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 224 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 220 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 196 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 216 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 192 (|has| |#1| (-38 (-413 (-570)))))) (-3231 (($ $) NIL (-12 (|has| |#2| (-826)) (|has| |#1| (-368))))) (-1862 (($) 13 T CONST)) (-1876 (($) 18 T CONST)) (-2945 (($ $ (-1 |#2| |#2|)) NIL (|has| |#1| (-368))) (($ $ (-1 |#2| |#2|) (-777)) NIL (|has| |#1| (-368))) (($ $ (-777)) NIL (-2895 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2895 (-12 (|has| |#2| (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2895 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186) (-777)) NIL (-2895 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-650 (-1186))) NIL (-2895 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| |#2| (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-3075 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3055 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3025 (((-112) $ $) 72)) (-3065 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3045 (((-112) $ $) NIL (-12 (|has| |#2| (-856)) (|has| |#1| (-368))))) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 163 (|has| |#1| (-368))) (($ |#2| |#2|) 164 (|has| |#1| (-368)))) (-3114 (($ $) 227) (($ $ $) 78)) (-3104 (($ $ $) 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|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1733 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 10)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3074 (($ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3475 (((-112) $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1447 (($ $ (-570)) NIL) (($ $ (-570) (-570)) NIL)) (-3416 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) NIL)) (-2489 (((-1269 |#1| |#2| |#3|) $) NIL)) (-2600 (((-3 (-1269 |#1| |#2| |#3|) "failed") $) NIL)) (-1825 (((-1269 |#1| |#2| |#3|) $) NIL)) (-2887 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2866 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4395 (((-570) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3418 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) NIL)) (-4107 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-4380 (((-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))))) (-3216 (((-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))))) (-1964 (($ $) NIL) (($ (-570) $) NIL)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-1269 |#1| |#2| |#3|)) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2415 (-695 (-1269 |#1| |#2| |#3|))) (|:| |vec| (-1277 (-1269 |#1| |#2| |#3|)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2415 (-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))))) (-2875 (((-3 $ "failed") $) NIL)) (-3208 (((-413 (-959 |#1|)) $ (-570)) NIL (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) NIL (|has| |#1| (-562)))) (-3446 (($) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-3903 (((-112) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-2379 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2842 (((-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))))) (-4323 (((-570) $) NIL) (((-570) $ (-570)) NIL)) (-4346 (((-112) $) NIL)) (-1330 (($ $) NIL (|has| |#1| (-368)))) (-4399 (((-1269 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368)))) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2619 (((-3 $ "failed") $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))))) (-1479 (((-112) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-2362 (($ $ (-928)) NIL)) (-1712 (($ (-1 |#1| (-570)) $) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-570)) 18) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3466 (($ $ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2800 (($ $ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-368)))) (-2789 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1838 (($ (-570) (-1269 |#1| |#2| |#3|)) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2898 (($ $) 27 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-2438 (($) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))) CONST)) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2564 (($ $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-3665 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2431 (($ $ (-570)) NIL)) (-2547 (((-3 $ "failed") $ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-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))))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#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))))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3547 (($ $ (-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 (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 25 (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2892 (-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 (-2892 (-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 (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-2978 (($ $) NIL (|has| |#1| (-368)))) (-4413 (((-1269 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368)))) (-2130 (((-570) $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1425 (((-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))))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-2853 (($ $) NIL)) (-3799 (((-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 (-2892 (-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 (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))) (|has| |#1| (-38 (-413 (-570))))))) (-2249 ((|#1| $ (-570)) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-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))))) (-3499 (((-777)) NIL T CONST)) (-2288 ((|#1| $) 11)) (-1313 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2622 (($ $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1861 (($) 20 T CONST)) (-1875 (($) 15 T CONST)) (-2942 (($ $ (-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 (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2892 (-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 (-2892 (-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 (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-3072 (((-112) $ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3052 (((-112) $ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3022 (((-112) $ $) NIL)) (-3062 (((-112) $ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3042 (((-112) $ $) NIL (-2892 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368))) (($ (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3799 ($ (-1273 |#2|))) (-15 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1241))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2898 (*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 -3799 ($ (-1273 |#2|))) (-15 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|)))
-((-4166 (((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112)) 13)) (-3361 (((-424 |#1|) |#1|) 26)) (-3801 (((-424 |#1|) |#1|) 24)))
-(((-1242 |#1|) (-10 -7 (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3361 ((-424 |#1|) |#1|)) (-15 -4166 ((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112)))) (-1253 (-570))) (T -1242))
-((-4166 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| *3) (|:| -3563 (-570))))))) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))) (-3361 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))) (-3801 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
-(-10 -7 (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3361 ((-424 |#1|) |#1|)) (-15 -4166 ((-2 (|:| |contp| (-570)) (|:| -3477 (-650 (-2 (|:| |irr| |#1|) (|:| -3563 (-570)))))) |#1| (-112))))
-((-1356 (((-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 -1356 ((-1244 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) (IF (|has| |#1| (-854)) (-15 -1356 ((-1166 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) |%noBranch|)) (-1227) (-1227)) (T -1243))
-((-1356 (*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)))) (-1356 (*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 -1356 ((-1244 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) (IF (|has| |#1| (-854)) (-15 -1356 ((-1166 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) |%noBranch|))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2934 (($ |#1| |#1|) 11) (($ |#1|) 10)) (-1356 (((-1166 |#1|) (-1 |#1| |#1|) $) 44 (|has| |#1| (-854)))) (-2762 ((|#1| $) 15)) (-1514 ((|#1| $) 12)) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1528 (((-570) $) 19)) (-1458 ((|#1| $) 18)) (-1870 ((|#1| $) 13)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-2865 (((-112) $) 17)) (-1392 (((-1166 |#1|) $) 41 (|has| |#1| (-854))) (((-1166 |#1|) (-650 $)) 40 (|has| |#1| (-854)))) (-1425 (($ |#1|) 26)) (-3799 (($ (-1103 |#1|)) 25) (((-868) $) 37 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3668 (($ |#1| |#1|) 21) (($ |#1|) 20)) (-2812 (($ $ (-570)) 14)) (-3022 (((-112) $ $) 30 (|has| |#1| (-1109)))))
-(((-1244 |#1|) (-13 (-1102 |#1|) (-10 -8 (-15 -3668 ($ |#1|)) (-15 -2934 ($ |#1|)) (-15 -3799 ($ (-1103 |#1|))) (-15 -2865 ((-112) $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-1166 |#1|))) |%noBranch|))) (-1227)) (T -1244))
-((-3668 (*1 *1 *2) (-12 (-5 *1 (-1244 *2)) (-4 *2 (-1227)))) (-2934 (*1 *1 *2) (-12 (-5 *1 (-1244 *2)) (-4 *2 (-1227)))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-1103 *3)) (-4 *3 (-1227)) (-5 *1 (-1244 *3)))) (-2865 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1244 *3)) (-4 *3 (-1227)))))
-(-13 (-1102 |#1|) (-10 -8 (-15 -3668 ($ |#1|)) (-15 -2934 ($ |#1|)) (-15 -3799 ($ (-1103 |#1|))) (-15 -2865 ((-112) $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-1166 |#1|))) |%noBranch|)))
-((-1356 (((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|)) 15)))
-(((-1245 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 ((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|)))) (-1186) (-1058) (-1186) (-1058)) (T -1245))
-((-1356 (*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 -1356 ((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|))))
-((-3644 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-2171 ((|#1| |#3|) 13)) (-1916 ((|#3| |#3|) 19)))
-(((-1246 |#1| |#2| |#3|) (-10 -7 (-15 -2171 (|#1| |#3|)) (-15 -1916 (|#3| |#3|)) (-15 -3644 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-562) (-1001 |#1|) (-1253 |#2|)) (T -1246))
-((-3644 (*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)))) (-1916 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-1246 *3 *4 *2)) (-4 *2 (-1253 *4)))) (-2171 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-1246 *2 *4 *3)) (-4 *3 (-1253 *4)))))
-(-10 -7 (-15 -2171 (|#1| |#3|)) (-15 -1916 (|#3| |#3|)) (-15 -3644 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
-((-3228 (((-3 |#2| "failed") |#2| (-777) |#1|) 35)) (-3727 (((-3 |#2| "failed") |#2| (-777)) 36)) (-2736 (((-3 (-2 (|:| -4397 |#2|) (|:| -4410 |#2|)) "failed") |#2|) 50)) (-1890 (((-650 |#2|) |#2|) 52)) (-1700 (((-3 |#2| "failed") |#2| |#2|) 46)))
-(((-1247 |#1| |#2|) (-10 -7 (-15 -3727 ((-3 |#2| "failed") |#2| (-777))) (-15 -3228 ((-3 |#2| "failed") |#2| (-777) |#1|)) (-15 -1700 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2736 ((-3 (-2 (|:| -4397 |#2|) (|:| -4410 |#2|)) "failed") |#2|)) (-15 -1890 ((-650 |#2|) |#2|))) (-13 (-562) (-148)) (-1253 |#1|)) (T -1247))
-((-1890 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-650 *3)) (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))) (-2736 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-2 (|:| -4397 *3) (|:| -4410 *3))) (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))) (-1700 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1247 *3 *2)) (-4 *2 (-1253 *3)))) (-3228 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1247 *4 *2)) (-4 *2 (-1253 *4)))) (-3727 (*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 -3727 ((-3 |#2| "failed") |#2| (-777))) (-15 -3228 ((-3 |#2| "failed") |#2| (-777) |#1|)) (-15 -1700 ((-3 |#2| "failed") |#2| |#2|)) (-15 -2736 ((-3 (-2 (|:| -4397 |#2|) (|:| -4410 |#2|)) "failed") |#2|)) (-15 -1890 ((-650 |#2|) |#2|)))
-((-2040 (((-3 (-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) "failed") |#2| |#2|) 30)))
-(((-1248 |#1| |#2|) (-10 -7 (-15 -2040 ((-3 (-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) "failed") |#2| |#2|))) (-562) (-1253 |#1|)) (T -1248))
-((-2040 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-1248 *4 *3)) (-4 *3 (-1253 *4)))))
-(-10 -7 (-15 -2040 ((-3 (-2 (|:| -2573 |#2|) (|:| -3691 |#2|)) "failed") |#2| |#2|)))
-((-2301 ((|#2| |#2| |#2|) 22)) (-2916 ((|#2| |#2| |#2|) 36)) (-2322 ((|#2| |#2| |#2| (-777) (-777)) 44)))
-(((-1249 |#1| |#2|) (-10 -7 (-15 -2301 (|#2| |#2| |#2|)) (-15 -2916 (|#2| |#2| |#2|)) (-15 -2322 (|#2| |#2| |#2| (-777) (-777)))) (-1058) (-1253 |#1|)) (T -1249))
-((-2322 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-1249 *4 *2)) (-4 *2 (-1253 *4)))) (-2916 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))) (-2301 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))))
-(-10 -7 (-15 -2301 (|#2| |#2| |#2|)) (-15 -2916 (|#2| |#2| |#2|)) (-15 -2322 (|#2| |#2| |#2| (-777) (-777))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-2277 (((-1277 |#2|) $ (-777)) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-3985 (($ (-1182 |#2|)) NIL)) (-3775 (((-1182 $) $ (-1091)) NIL) (((-1182 |#2|) $) NIL)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-3074 (($ $) NIL (|has| |#2| (-562)))) (-3475 (((-112) $) NIL (|has| |#2| (-562)))) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-2022 (($ $ $) NIL (|has| |#2| (-562)))) (-3924 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4364 (($ $) NIL (|has| |#2| (-458)))) (-1652 (((-424 $) $) NIL (|has| |#2| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3473 (((-112) $ $) NIL (|has| |#2| (-368)))) (-1576 (($ $ (-777)) NIL)) (-2347 (($ $ (-777)) NIL)) (-4425 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-458)))) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-1091) $) NIL)) (-4322 (($ $ $ (-1091)) NIL (|has| |#2| (-174))) ((|#2| $ $) NIL (|has| |#2| (-174)))) (-2506 (($ $ $) NIL (|has| |#2| (-368)))) (-1956 (($ $) NIL)) (-4196 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-2518 (($ $ $) NIL (|has| |#2| (-368)))) (-3239 (($ $ $) NIL)) (-2677 (($ $ $) NIL (|has| |#2| (-562)))) (-3640 (((-2 (|:| -1452 |#2|) (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#2| (-562)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#2| (-368)))) (-3988 (($ $) NIL (|has| |#2| (-458))) (($ $ (-1091)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-3618 (((-112) $) NIL (|has| |#2| (-916)))) (-3720 (($ $ |#2| (-777) $) NIL)) (-2842 (((-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)))))) (-4323 (((-777) $ $) NIL (|has| |#2| (-562)))) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-2619 (((-3 $ "failed") $) NIL (|has| |#2| (-1161)))) (-1742 (($ (-1182 |#2|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-2362 (($ $ (-777)) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3912 (($ |#2| (-777)) 18) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-1091)) NIL) (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL)) (-2575 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1918 (($ (-1 (-777) (-777)) $) NIL)) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-3900 (((-1182 |#2|) $) NIL)) (-3362 (((-3 (-1091) "failed") $) NIL)) (-1915 (($ $) NIL)) (-1927 ((|#2| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1988 (((-1168) $) NIL)) (-3213 (((-2 (|:| -2573 $) (|:| -3691 $)) $ (-777)) NIL)) (-2209 (((-3 (-650 $) "failed") $) NIL)) (-3654 (((-3 (-650 $) "failed") $) NIL)) (-1895 (((-3 (-2 (|:| |var| (-1091)) (|:| -3357 (-777))) "failed") $) NIL)) (-2898 (($ $) NIL (|has| |#2| (-38 (-413 (-570)))))) (-2438 (($) NIL (|has| |#2| (-1161)) CONST)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 ((|#2| $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1942 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1319 (($ $ (-777) |#2| $) NIL)) (-1659 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3801 (((-424 $) $) NIL (|has| |#2| (-916)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#2| (-368)))) (-2547 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1770 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#2|) NIL) (($ $ (-650 (-1091)) (-650 |#2|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2142 (((-777) $) NIL (|has| |#2| (-368)))) (-1941 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#2| (-562))) ((|#2| (-413 $) |#2|) NIL (|has| |#2| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#2| (-562)))) (-2527 (((-3 $ "failed") $ (-777)) NIL)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#2| (-368)))) (-3570 (($ $ (-1091)) NIL (|has| |#2| (-174))) ((|#2| $) NIL (|has| |#2| (-174)))) (-3547 (($ $ (-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)) (-2130 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1425 (((-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)))))) (-1848 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-1091)) NIL (|has| |#2| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-2105 (((-3 $ "failed") $ $) NIL (|has| |#2| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#2| (-562)))) (-3799 (((-868) $) 13) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-1091)) NIL) (($ (-1273 |#1|)) 20) (($ (-413 (-570))) NIL (-2892 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3532 (((-3 $ "failed") $) NIL (-2892 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1861 (($) NIL T CONST)) (-1875 (($) 14 T CONST)) (-2942 (($ $ (-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)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1319 ($ $ (-777) |#2| $)))) (-1186) (-1058)) (T -1250))
-((-1319 (*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 -1319 ($ $ (-777) |#2| $))))
-((-1356 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
-(((-1251 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#4| (-1 |#3| |#1|) |#2|))) (-1058) (-1253 |#1|) (-1058) (-1253 |#3|)) (T -1251))
-((-1356 (*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 -1356 (|#4| (-1 |#3| |#1|) |#2|)))
-((-2277 (((-1277 |#2|) $ (-777)) 129)) (-1755 (((-650 (-1091)) $) 16)) (-3985 (($ (-1182 |#2|)) 80)) (-3415 (((-777) $) NIL) (((-777) $ (-650 (-1091))) 21)) (-3924 (((-424 (-1182 $)) (-1182 $)) 204)) (-4364 (($ $) 194)) (-1652 (((-424 $) $) 192)) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 95)) (-1576 (($ $ (-777)) 84)) (-2347 (($ $ (-777)) 86)) (-4425 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 145)) (-4380 (((-3 |#2| "failed") $) 132) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-1091) "failed") $) NIL)) (-3216 ((|#2| $) 130) (((-413 (-570)) $) NIL) (((-570) $) NIL) (((-1091) $) NIL)) (-2677 (($ $ $) 170)) (-3640 (((-2 (|:| -1452 |#2|) (|:| -2573 $) (|:| -3691 $)) $ $) 172)) (-4323 (((-777) $ $) 189)) (-2619 (((-3 $ "failed") $) 138)) (-3912 (($ |#2| (-777)) NIL) (($ $ (-1091) (-777)) 59) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-2575 (((-777) $) NIL) (((-777) $ (-1091)) 54) (((-650 (-777)) $ (-650 (-1091))) 55)) (-3900 (((-1182 |#2|) $) 72)) (-3362 (((-3 (-1091) "failed") $) 52)) (-3213 (((-2 (|:| -2573 $) (|:| -3691 $)) $ (-777)) 83)) (-2898 (($ $) 219)) (-2438 (($) 134)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 201)) (-1659 (((-424 (-1182 $)) (-1182 $)) 101)) (-2224 (((-424 (-1182 $)) (-1182 $)) 99)) (-3801 (((-424 $) $) 120)) (-1770 (($ $ (-650 (-298 $))) 51) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#2|) 39) (($ $ (-650 (-1091)) (-650 |#2|)) 36) (($ $ (-1091) $) 32) (($ $ (-650 (-1091)) (-650 $)) 30)) (-2142 (((-777) $) 207)) (-1941 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) 164) ((|#2| (-413 $) |#2|) 206) (((-413 $) $ (-413 $)) 188)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 212)) (-3547 (($ $ (-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)) (-2130 (((-777) $) NIL) (((-777) $ (-1091)) 17) (((-650 (-777)) $ (-650 (-1091))) 23)) (-1848 ((|#2| $) NIL) (($ $ (-1091)) 140)) (-2105 (((-3 $ "failed") $ $) 180) (((-3 (-413 $) "failed") (-413 $) $) 176)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-1091)) 64) (($ (-413 (-570))) NIL) (($ $) NIL)))
-(((-1252 |#1| |#2|) (-10 -8 (-15 -3799 (|#1| |#1|)) (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -4364 (|#1| |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -2438 (|#1|)) (-15 -2619 ((-3 |#1| "failed") |#1|)) (-15 -1941 ((-413 |#1|) |#1| (-413 |#1|))) (-15 -2142 ((-777) |#1|)) (-15 -2384 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2898 (|#1| |#1|)) (-15 -1941 (|#2| (-413 |#1|) |#2|)) (-15 -4425 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3640 ((-2 (|:| -1452 |#2|) (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2677 (|#1| |#1| |#1|)) (-15 -2105 ((-3 (-413 |#1|) "failed") (-413 |#1|) |#1|)) (-15 -2105 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4323 ((-777) |#1| |#1|)) (-15 -1941 ((-413 |#1|) (-413 |#1|) (-413 |#1|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2347 (|#1| |#1| (-777))) (-15 -1576 (|#1| |#1| (-777))) (-15 -3213 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| (-777))) (-15 -3985 (|#1| (-1182 |#2|))) (-15 -3900 ((-1182 |#2|) |#1|)) (-15 -2277 ((-1277 |#2|) |#1| (-777))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -1941 (|#1| |#1| |#1|)) (-15 -1941 (|#2| |#1| |#2|)) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3924 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2224 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2355 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -1848 (|#1| |#1| (-1091))) (-15 -1755 ((-650 (-1091)) |#1|)) (-15 -3415 ((-777) |#1| (-650 (-1091)))) (-15 -3415 ((-777) |#1|)) (-15 -3912 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3912 (|#1| |#1| (-1091) (-777))) (-15 -2575 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -2575 ((-777) |#1| (-1091))) (-15 -3362 ((-3 (-1091) "failed") |#1|)) (-15 -2130 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -2130 ((-777) |#1| (-1091))) (-15 -3799 (|#1| (-1091))) (-15 -4380 ((-3 (-1091) "failed") |#1|)) (-15 -3216 ((-1091) |#1|)) (-15 -1770 (|#1| |#1| (-650 (-1091)) (-650 |#1|))) (-15 -1770 (|#1| |#1| (-1091) |#1|)) (-15 -1770 (|#1| |#1| (-650 (-1091)) (-650 |#2|))) (-15 -1770 (|#1| |#1| (-1091) |#2|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -2130 ((-777) |#1|)) (-15 -3912 (|#1| |#2| (-777))) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -2575 ((-777) |#1|)) (-15 -1848 (|#2| |#1|)) (-15 -3547 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1091) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1091)))) (-15 -3547 (|#1| |#1| (-1091))) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|))) (-1253 |#2|) (-1058)) (T -1252))
-NIL
-(-10 -8 (-15 -3799 (|#1| |#1|)) (-15 -4217 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -1652 ((-424 |#1|) |#1|)) (-15 -4364 (|#1| |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -2438 (|#1|)) (-15 -2619 ((-3 |#1| "failed") |#1|)) (-15 -1941 ((-413 |#1|) |#1| (-413 |#1|))) (-15 -2142 ((-777) |#1|)) (-15 -2384 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2898 (|#1| |#1|)) (-15 -1941 (|#2| (-413 |#1|) |#2|)) (-15 -4425 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -3640 ((-2 (|:| -1452 |#2|) (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| |#1|)) (-15 -2677 (|#1| |#1| |#1|)) (-15 -2105 ((-3 (-413 |#1|) "failed") (-413 |#1|) |#1|)) (-15 -2105 ((-3 |#1| "failed") |#1| |#1|)) (-15 -4323 ((-777) |#1| |#1|)) (-15 -1941 ((-413 |#1|) (-413 |#1|) (-413 |#1|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -2347 (|#1| |#1| (-777))) (-15 -1576 (|#1| |#1| (-777))) (-15 -3213 ((-2 (|:| -2573 |#1|) (|:| -3691 |#1|)) |#1| (-777))) (-15 -3985 (|#1| (-1182 |#2|))) (-15 -3900 ((-1182 |#2|) |#1|)) (-15 -2277 ((-1277 |#2|) |#1| (-777))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3547 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1186) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1186)))) (-15 -3547 (|#1| |#1| (-1186))) (-15 -3547 (|#1| |#1|)) (-15 -3547 (|#1| |#1| (-777))) (-15 -1941 (|#1| |#1| |#1|)) (-15 -1941 (|#2| |#1| |#2|)) (-15 -3801 ((-424 |#1|) |#1|)) (-15 -3924 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2224 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1659 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -2355 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -1848 (|#1| |#1| (-1091))) (-15 -1755 ((-650 (-1091)) |#1|)) (-15 -3415 ((-777) |#1| (-650 (-1091)))) (-15 -3415 ((-777) |#1|)) (-15 -3912 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3912 (|#1| |#1| (-1091) (-777))) (-15 -2575 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -2575 ((-777) |#1| (-1091))) (-15 -3362 ((-3 (-1091) "failed") |#1|)) (-15 -2130 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -2130 ((-777) |#1| (-1091))) (-15 -3799 (|#1| (-1091))) (-15 -4380 ((-3 (-1091) "failed") |#1|)) (-15 -3216 ((-1091) |#1|)) (-15 -1770 (|#1| |#1| (-650 (-1091)) (-650 |#1|))) (-15 -1770 (|#1| |#1| (-1091) |#1|)) (-15 -1770 (|#1| |#1| (-650 (-1091)) (-650 |#2|))) (-15 -1770 (|#1| |#1| (-1091) |#2|)) (-15 -1770 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1770 (|#1| |#1| |#1| |#1|)) (-15 -1770 (|#1| |#1| (-298 |#1|))) (-15 -1770 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -2130 ((-777) |#1|)) (-15 -3912 (|#1| |#2| (-777))) (-15 -4380 ((-3 (-570) "failed") |#1|)) (-15 -3216 ((-570) |#1|)) (-15 -4380 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3216 ((-413 (-570)) |#1|)) (-15 -3216 (|#2| |#1|)) (-15 -4380 ((-3 |#2| "failed") |#1|)) (-15 -3799 (|#1| |#2|)) (-15 -2575 ((-777) |#1|)) (-15 -1848 (|#2| |#1|)) (-15 -3547 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3547 (|#1| |#1| (-1091) (-777))) (-15 -3547 (|#1| |#1| (-650 (-1091)))) (-15 -3547 (|#1| |#1| (-1091))) (-15 -3799 (|#1| (-570))) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2277 (((-1277 |#1|) $ (-777)) 240)) (-1755 (((-650 (-1091)) $) 112)) (-3985 (($ (-1182 |#1|)) 238)) (-3775 (((-1182 $) $ (-1091)) 127) (((-1182 |#1|) $) 126)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-3074 (($ $) 90 (|has| |#1| (-562)))) (-3475 (((-112) $) 92 (|has| |#1| (-562)))) (-3415 (((-777) $) 114) (((-777) $ (-650 (-1091))) 113)) (-3990 (((-3 $ "failed") $ $) 20)) (-2022 (($ $ $) 225 (|has| |#1| (-562)))) (-3924 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-4364 (($ $) 100 (|has| |#1| (-458)))) (-1652 (((-424 $) $) 99 (|has| |#1| (-458)))) (-2355 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-3473 (((-112) $ $) 210 (|has| |#1| (-368)))) (-1576 (($ $ (-777)) 233)) (-2347 (($ $ (-777)) 232)) (-4425 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 220 (|has| |#1| (-458)))) (-1705 (($) 18 T CONST)) (-4380 (((-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)) (-3216 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) (((-1091) $) 139)) (-4322 (($ $ $ (-1091)) 110 (|has| |#1| (-174))) ((|#1| $ $) 228 (|has| |#1| (-174)))) (-2506 (($ $ $) 214 (|has| |#1| (-368)))) (-1956 (($ $) 156)) (-4196 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2415 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 213 (|has| |#1| (-368)))) (-3239 (($ $ $) 231)) (-2677 (($ $ $) 222 (|has| |#1| (-562)))) (-3640 (((-2 (|:| -1452 |#1|) (|:| -2573 $) (|:| -3691 $)) $ $) 221 (|has| |#1| (-562)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 208 (|has| |#1| (-368)))) (-3988 (($ $) 178 (|has| |#1| (-458))) (($ $ (-1091)) 107 (|has| |#1| (-458)))) (-1938 (((-650 $) $) 111)) (-3618 (((-112) $) 98 (|has| |#1| (-916)))) (-3720 (($ $ |#1| (-777) $) 174)) (-2842 (((-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)))))) (-4323 (((-777) $ $) 226 (|has| |#1| (-562)))) (-4346 (((-112) $) 35)) (-3173 (((-777) $) 171)) (-2619 (((-3 $ "failed") $) 206 (|has| |#1| (-1161)))) (-1742 (($ (-1182 |#1|) (-1091)) 119) (($ (-1182 $) (-1091)) 118)) (-2362 (($ $ (-777)) 237)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 217 (|has| |#1| (-368)))) (-4008 (((-650 $) $) 128)) (-2359 (((-112) $) 154)) (-3912 (($ |#1| (-777)) 155) (($ $ (-1091) (-777)) 121) (($ $ (-650 (-1091)) (-650 (-777))) 120)) (-2631 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $ (-1091)) 122) (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 235)) (-2575 (((-777) $) 172) (((-777) $ (-1091)) 124) (((-650 (-777)) $ (-650 (-1091))) 123)) (-1918 (($ (-1 (-777) (-777)) $) 173)) (-1356 (($ (-1 |#1| |#1|) $) 153)) (-3900 (((-1182 |#1|) $) 239)) (-3362 (((-3 (-1091) "failed") $) 125)) (-1915 (($ $) 151)) (-1927 ((|#1| $) 150)) (-1899 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-1988 (((-1168) $) 10)) (-3213 (((-2 (|:| -2573 $) (|:| -3691 $)) $ (-777)) 234)) (-2209 (((-3 (-650 $) "failed") $) 116)) (-3654 (((-3 (-650 $) "failed") $) 117)) (-1895 (((-3 (-2 (|:| |var| (-1091)) (|:| -3357 (-777))) "failed") $) 115)) (-2898 (($ $) 218 (|has| |#1| (-38 (-413 (-570)))))) (-2438 (($) 205 (|has| |#1| (-1161)) CONST)) (-3577 (((-1129) $) 11)) (-1886 (((-112) $) 168)) (-1898 ((|#1| $) 169)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1942 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-1659 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-2224 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3801 (((-424 $) $) 101 (|has| |#1| (-916)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 216 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 215 (|has| |#1| (-368)))) (-2547 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 209 (|has| |#1| (-368)))) (-1770 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ (-1091) |#1|) 143) (($ $ (-650 (-1091)) (-650 |#1|)) 142) (($ $ (-1091) $) 141) (($ $ (-650 (-1091)) (-650 $)) 140)) (-2142 (((-777) $) 211 (|has| |#1| (-368)))) (-1941 ((|#1| $ |#1|) 258) (($ $ $) 257) (((-413 $) (-413 $) (-413 $)) 227 (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) 219 (|has| |#1| (-368))) (((-413 $) $ (-413 $)) 207 (|has| |#1| (-562)))) (-2527 (((-3 $ "failed") $ (-777)) 236)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 212 (|has| |#1| (-368)))) (-3570 (($ $ (-1091)) 109 (|has| |#1| (-174))) ((|#1| $) 229 (|has| |#1| (-174)))) (-3547 (($ $ (-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)) (-2130 (((-777) $) 152) (((-777) $ (-1091)) 132) (((-650 (-777)) $ (-650 (-1091))) 131)) (-1425 (((-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)))))) (-1848 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ (-1091)) 108 (|has| |#1| (-458)))) (-4428 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1809 (|has| $ (-146)) (|has| |#1| (-916))))) (-2105 (((-3 $ "failed") $ $) 224 (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) 223 (|has| |#1| (-562)))) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ (-1091)) 137) (($ (-413 (-570))) 80 (-2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-2186 (((-650 |#1|) $) 170)) (-2249 ((|#1| $ (-777)) 157) (($ $ (-1091) (-777)) 130) (($ $ (-650 (-1091)) (-650 (-777))) 129)) (-3532 (((-3 $ "failed") $) 81 (-2892 (-1809 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-3499 (((-777)) 32 T CONST)) (-4247 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3472 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 10)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4306 (($ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-2617 (((-112) $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-1622 (($ $ (-570)) NIL) (($ $ (-570) (-570)) NIL)) (-3257 (((-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|))) $) NIL)) (-2569 (((-1269 |#1| |#2| |#3|) $) NIL)) (-4193 (((-3 (-1269 |#1| |#2| |#3|) "failed") $) NIL)) (-1822 (((-1269 |#1| |#2| |#3|) $) NIL)) (-2890 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2869 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3408 (((-570) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3421 (($ (-1166 (-2 (|:| |k| (-570)) (|:| |c| |#1|)))) NIL)) (-4109 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-4383 (((-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))))) (-3220 (((-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))))) (-1907 (($ $) NIL) (($ (-570) $) NIL)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-1269 |#1| |#2| |#3|)) (-695 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2990 (-695 (-1269 |#1| |#2| |#3|))) (|:| |vec| (-1277 (-1269 |#1| |#2| |#3|)))) (-695 $) (-1277 $)) NIL (|has| |#1| (-368))) (((-2 (|:| -2990 (-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))))) (-1929 (((-3 $ "failed") $) NIL)) (-1987 (((-413 (-959 |#1|)) $ (-570)) NIL (|has| |#1| (-562))) (((-413 (-959 |#1|)) $ (-570) (-570)) NIL (|has| |#1| (-562)))) (-3449 (($) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-2346 (((-112) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-2646 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1557 (((-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))))) (-3941 (((-570) $) NIL) (((-570) $ (-570)) NIL)) (-4139 (((-112) $) NIL)) (-1834 (($ $) NIL (|has| |#1| (-368)))) (-4402 (((-1269 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368)))) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4369 (((-3 $ "failed") $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))))) (-2788 (((-112) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-3660 (($ $ (-928)) NIL)) (-3240 (($ (-1 |#1| (-570)) $) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-570)) 18) (($ $ (-1091) (-570)) NIL) (($ $ (-650 (-1091)) (-650 (-570))) NIL)) (-3469 (($ $ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-2472 (($ $ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) $) NIL (|has| |#1| (-368)))) (-2792 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1839 (($ (-570) (-1269 |#1| |#2| |#3|)) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2023 (($ $) 27 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-2439 (($) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-1161)) (|has| |#1| (-368))) CONST)) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3889 (($ $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-311)) (|has| |#1| (-368))))) (-1920 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3152 (($ $ (-570)) NIL)) (-2548 (((-3 $ "failed") $ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4389 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-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))))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#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))))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-3550 (($ $ (-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 (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) 25 (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2895 (-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 (-2895 (-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 (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-1526 (($ $) NIL (|has| |#1| (-368)))) (-4416 (((-1269 |#1| |#2| |#3|) $) NIL (|has| |#1| (-368)))) (-3079 (((-570) $) NIL)) (-4120 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1426 (((-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))))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))))) (-1682 (($ $) NIL)) (-3802 (((-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 (-2895 (-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 (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-1047 (-570))) (|has| |#1| (-368))) (|has| |#1| (-38 (-413 (-570))))))) (-1864 ((|#1| $ (-570)) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-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))))) (-2851 (((-777)) NIL T CONST)) (-2289 ((|#1| $) 11)) (-1918 (((-1269 |#1| |#2| |#3|) $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-551)) (|has| |#1| (-368))))) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-916)) (|has| |#1| (-368))) (|has| |#1| (-562))))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-570)) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-570)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3231 (($ $) NIL (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))))) (-1862 (($) 20 T CONST)) (-1876 (($) 15 T CONST)) (-2945 (($ $ (-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 (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-235)) (|has| |#1| (-368))) (|has| |#1| (-15 * (|#1| (-570) |#1|))))) (($ $ (-650 (-1186)) (-650 (-777))) NIL (-2895 (-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 (-2895 (-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 (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186)))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-907 (-1186))) (|has| |#1| (-368))) (-12 (|has| |#1| (-15 * (|#1| (-570) |#1|))) (|has| |#1| (-907 (-1186))))))) (-3075 (((-112) $ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3055 (((-112) $ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3025 (((-112) $ $) NIL)) (-3065 (((-112) $ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3045 (((-112) $ $) NIL (-2895 (-12 (|has| (-1269 |#1| |#2| |#3|) (-826)) (|has| |#1| (-368))) (-12 (|has| (-1269 |#1| |#2| |#3|) (-856)) (|has| |#1| (-368)))))) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368))) (($ (-1269 |#1| |#2| |#3|) (-1269 |#1| |#2| |#3|)) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3802 ($ (-1273 |#2|))) (-15 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1241))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1241 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2023 (*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 -3802 ($ (-1273 |#2|))) (-15 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-3066 (((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112)) 13)) (-4014 (((-424 |#1|) |#1|) 26)) (-3804 (((-424 |#1|) |#1|) 24)))
+(((-1242 |#1|) (-10 -7 (-15 -3804 ((-424 |#1|) |#1|)) (-15 -4014 ((-424 |#1|) |#1|)) (-15 -3066 ((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112)))) (-1253 (-570))) (T -1242))
+((-3066 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-5 *2 (-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| *3) (|:| -2199 (-570))))))) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))) (-4014 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))) (-3804 (*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
+(-10 -7 (-15 -3804 ((-424 |#1|) |#1|)) (-15 -4014 ((-424 |#1|) |#1|)) (-15 -3066 ((-2 (|:| |contp| (-570)) (|:| -2638 (-650 (-2 (|:| |irr| |#1|) (|:| -2199 (-570)))))) |#1| (-112))))
+((-1357 (((-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 -1357 ((-1244 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) (IF (|has| |#1| (-854)) (-15 -1357 ((-1166 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) |%noBranch|)) (-1227) (-1227)) (T -1243))
+((-1357 (*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)))) (-1357 (*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 -1357 ((-1244 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) (IF (|has| |#1| (-854)) (-15 -1357 ((-1166 |#2|) (-1 |#2| |#1|) (-1244 |#1|))) |%noBranch|))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-2936 (($ |#1| |#1|) 11) (($ |#1|) 10)) (-1357 (((-1166 |#1|) (-1 |#1| |#1|) $) 44 (|has| |#1| (-854)))) (-2153 ((|#1| $) 15)) (-1515 ((|#1| $) 12)) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-1529 (((-570) $) 19)) (-2583 ((|#1| $) 18)) (-1870 ((|#1| $) 13)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-1812 (((-112) $) 17)) (-1393 (((-1166 |#1|) $) 41 (|has| |#1| (-854))) (((-1166 |#1|) (-650 $)) 40 (|has| |#1| (-854)))) (-1426 (($ |#1|) 26)) (-3802 (($ (-1103 |#1|)) 25) (((-868) $) 37 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3670 (($ |#1| |#1|) 21) (($ |#1|) 20)) (-2815 (($ $ (-570)) 14)) (-3025 (((-112) $ $) 30 (|has| |#1| (-1109)))))
+(((-1244 |#1|) (-13 (-1102 |#1|) (-10 -8 (-15 -3670 ($ |#1|)) (-15 -2936 ($ |#1|)) (-15 -3802 ($ (-1103 |#1|))) (-15 -1812 ((-112) $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-1166 |#1|))) |%noBranch|))) (-1227)) (T -1244))
+((-3670 (*1 *1 *2) (-12 (-5 *1 (-1244 *2)) (-4 *2 (-1227)))) (-2936 (*1 *1 *2) (-12 (-5 *1 (-1244 *2)) (-4 *2 (-1227)))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-1103 *3)) (-4 *3 (-1227)) (-5 *1 (-1244 *3)))) (-1812 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1244 *3)) (-4 *3 (-1227)))))
+(-13 (-1102 |#1|) (-10 -8 (-15 -3670 ($ |#1|)) (-15 -2936 ($ |#1|)) (-15 -3802 ($ (-1103 |#1|))) (-15 -1812 ((-112) $)) (IF (|has| |#1| (-1109)) (-6 (-1109)) |%noBranch|) (IF (|has| |#1| (-854)) (-6 (-1104 |#1| (-1166 |#1|))) |%noBranch|)))
+((-1357 (((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|)) 15)))
+(((-1245 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 ((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|)))) (-1186) (-1058) (-1186) (-1058)) (T -1245))
+((-1357 (*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 -1357 ((-1250 |#3| |#4|) (-1 |#4| |#2|) (-1250 |#1| |#2|))))
+((-1650 (((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|) 21)) (-2302 ((|#1| |#3|) 13)) (-1391 ((|#3| |#3|) 19)))
+(((-1246 |#1| |#2| |#3|) (-10 -7 (-15 -2302 (|#1| |#3|)) (-15 -1391 (|#3| |#3|)) (-15 -1650 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|))) (-562) (-1001 |#1|) (-1253 |#2|)) (T -1246))
+((-1650 (*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)))) (-1391 (*1 *2 *2) (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-1246 *3 *4 *2)) (-4 *2 (-1253 *4)))) (-2302 (*1 *2 *3) (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-1246 *2 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -2302 (|#1| |#3|)) (-15 -1391 (|#3| |#3|)) (-15 -1650 ((-2 (|:| |num| |#3|) (|:| |den| |#1|)) |#3|)))
+((-2162 (((-3 |#2| "failed") |#2| (-777) |#1|) 35)) (-4309 (((-3 |#2| "failed") |#2| (-777)) 36)) (-3090 (((-3 (-2 (|:| -4400 |#2|) (|:| -4413 |#2|)) "failed") |#2|) 50)) (-2453 (((-650 |#2|) |#2|) 52)) (-3150 (((-3 |#2| "failed") |#2| |#2|) 46)))
+(((-1247 |#1| |#2|) (-10 -7 (-15 -4309 ((-3 |#2| "failed") |#2| (-777))) (-15 -2162 ((-3 |#2| "failed") |#2| (-777) |#1|)) (-15 -3150 ((-3 |#2| "failed") |#2| |#2|)) (-15 -3090 ((-3 (-2 (|:| -4400 |#2|) (|:| -4413 |#2|)) "failed") |#2|)) (-15 -2453 ((-650 |#2|) |#2|))) (-13 (-562) (-148)) (-1253 |#1|)) (T -1247))
+((-2453 (*1 *2 *3) (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-650 *3)) (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))) (-3090 (*1 *2 *3) (|partial| -12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-2 (|:| -4400 *3) (|:| -4413 *3))) (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))) (-3150 (*1 *2 *2 *2) (|partial| -12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1247 *3 *2)) (-4 *2 (-1253 *3)))) (-2162 (*1 *2 *2 *3 *4) (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148))) (-5 *1 (-1247 *4 *2)) (-4 *2 (-1253 *4)))) (-4309 (*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 -4309 ((-3 |#2| "failed") |#2| (-777))) (-15 -2162 ((-3 |#2| "failed") |#2| (-777) |#1|)) (-15 -3150 ((-3 |#2| "failed") |#2| |#2|)) (-15 -3090 ((-3 (-2 (|:| -4400 |#2|) (|:| -4413 |#2|)) "failed") |#2|)) (-15 -2453 ((-650 |#2|) |#2|)))
+((-3331 (((-3 (-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) "failed") |#2| |#2|) 30)))
+(((-1248 |#1| |#2|) (-10 -7 (-15 -3331 ((-3 (-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) "failed") |#2| |#2|))) (-562) (-1253 |#1|)) (T -1248))
+((-3331 (*1 *2 *3 *3) (|partial| -12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-1248 *4 *3)) (-4 *3 (-1253 *4)))))
+(-10 -7 (-15 -3331 ((-3 (-2 (|:| -3959 |#2|) (|:| -3971 |#2|)) "failed") |#2| |#2|)))
+((-4198 ((|#2| |#2| |#2|) 22)) (-2187 ((|#2| |#2| |#2|) 36)) (-3234 ((|#2| |#2| |#2| (-777) (-777)) 44)))
+(((-1249 |#1| |#2|) (-10 -7 (-15 -4198 (|#2| |#2| |#2|)) (-15 -2187 (|#2| |#2| |#2|)) (-15 -3234 (|#2| |#2| |#2| (-777) (-777)))) (-1058) (-1253 |#1|)) (T -1249))
+((-3234 (*1 *2 *2 *2 *3 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-1249 *4 *2)) (-4 *2 (-1253 *4)))) (-2187 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))) (-4198 (*1 *2 *2 *2) (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))))
+(-10 -7 (-15 -4198 (|#2| |#2| |#2|)) (-15 -2187 (|#2| |#2| |#2|)) (-15 -3234 (|#2| |#2| |#2| (-777) (-777))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3975 (((-1277 |#2|) $ (-777)) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-1904 (($ (-1182 |#2|)) NIL)) (-3778 (((-1182 $) $ (-1091)) NIL) (((-1182 |#2|) $) NIL)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#2| (-562)))) (-4306 (($ $) NIL (|has| |#2| (-562)))) (-2617 (((-112) $) NIL (|has| |#2| (-562)))) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-1091))) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3162 (($ $ $) NIL (|has| |#2| (-562)))) (-2536 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-4310 (($ $) NIL (|has| |#2| (-458)))) (-3871 (((-424 $) $) NIL (|has| |#2| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3765 (((-112) $ $) NIL (|has| |#2| (-368)))) (-4323 (($ $ (-777)) NIL)) (-3495 (($ $ (-777)) NIL)) (-3657 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) NIL (|has| |#2| (-458)))) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 ((|#2| $) NIL) (((-413 (-570)) $) NIL (|has| |#2| (-1047 (-413 (-570))))) (((-570) $) NIL (|has| |#2| (-1047 (-570)))) (((-1091) $) NIL)) (-3930 (($ $ $ (-1091)) NIL (|has| |#2| (-174))) ((|#2| $ $) NIL (|has| |#2| (-174)))) (-2504 (($ $ $) NIL (|has| |#2| (-368)))) (-1954 (($ $) NIL)) (-2179 (((-695 (-570)) (-695 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) NIL (|has| |#2| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#2|)) (|:| |vec| (-1277 |#2|))) (-695 $) (-1277 $)) NIL) (((-695 |#2|) (-695 $)) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2519 (($ $ $) NIL (|has| |#2| (-368)))) (-2280 (($ $ $) NIL)) (-3746 (($ $ $) NIL (|has| |#2| (-562)))) (-1601 (((-2 (|:| -1453 |#2|) (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#2| (-562)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#2| (-368)))) (-1944 (($ $) NIL (|has| |#2| (-458))) (($ $ (-1091)) NIL (|has| |#2| (-458)))) (-1938 (((-650 $) $) NIL)) (-1336 (((-112) $) NIL (|has| |#2| (-916)))) (-4243 (($ $ |#2| (-777) $) NIL)) (-1557 (((-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)))))) (-3941 (((-777) $ $) NIL (|has| |#2| (-562)))) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-4369 (((-3 $ "failed") $) NIL (|has| |#2| (-1161)))) (-1744 (($ (-1182 |#2|) (-1091)) NIL) (($ (-1182 $) (-1091)) NIL)) (-3660 (($ $ (-777)) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3915 (($ |#2| (-777)) 18) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-1091)) NIL) (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL)) (-3970 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1414 (($ (-1 (-777) (-777)) $) NIL)) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-2315 (((-1182 |#2|) $) NIL)) (-4023 (((-3 (-1091) "failed") $) NIL)) (-1914 (($ $) NIL)) (-1928 ((|#2| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-3989 (((-1168) $) NIL)) (-2041 (((-2 (|:| -3959 $) (|:| -3971 $)) $ (-777)) NIL)) (-1369 (((-3 (-650 $) "failed") $) NIL)) (-1777 (((-3 (-650 $) "failed") $) NIL)) (-2505 (((-3 (-2 (|:| |var| (-1091)) (|:| -3994 (-777))) "failed") $) NIL)) (-2023 (($ $) NIL (|has| |#2| (-38 (-413 (-570)))))) (-2439 (($) NIL (|has| |#2| (-1161)) CONST)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 ((|#2| $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#2| (-458)))) (-1939 (($ (-650 $)) NIL (|has| |#2| (-458))) (($ $ $) NIL (|has| |#2| (-458)))) (-1701 (($ $ (-777) |#2| $) NIL)) (-3933 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) NIL (|has| |#2| (-916)))) (-3804 (((-424 $) $) NIL (|has| |#2| (-916)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#2| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#2| (-368)))) (-2548 (((-3 $ "failed") $ |#2|) NIL (|has| |#2| (-562))) (((-3 $ "failed") $ $) NIL (|has| |#2| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#2| (-368)))) (-1771 (($ $ (-650 (-298 $))) NIL) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#2|) NIL) (($ $ (-650 (-1091)) (-650 |#2|)) NIL) (($ $ (-1091) $) NIL) (($ $ (-650 (-1091)) (-650 $)) NIL)) (-2006 (((-777) $) NIL (|has| |#2| (-368)))) (-1942 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) NIL (|has| |#2| (-562))) ((|#2| (-413 $) |#2|) NIL (|has| |#2| (-368))) (((-413 $) $ (-413 $)) NIL (|has| |#2| (-562)))) (-1662 (((-3 $ "failed") $ (-777)) NIL)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#2| (-368)))) (-2265 (($ $ (-1091)) NIL (|has| |#2| (-174))) ((|#2| $) NIL (|has| |#2| (-174)))) (-3550 (($ $ (-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)) (-3079 (((-777) $) NIL) (((-777) $ (-1091)) NIL) (((-650 (-777)) $ (-650 (-1091))) NIL)) (-1426 (((-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)))))) (-2077 ((|#2| $) NIL (|has| |#2| (-458))) (($ $ (-1091)) NIL (|has| |#2| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) NIL (-12 (|has| $ (-146)) (|has| |#2| (-916))))) (-2846 (((-3 $ "failed") $ $) NIL (|has| |#2| (-562))) (((-3 (-413 $) "failed") (-413 $) $) NIL (|has| |#2| (-562)))) (-3802 (((-868) $) 13) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-1091)) NIL) (($ (-1273 |#1|)) 20) (($ (-413 (-570))) NIL (-2895 (|has| |#2| (-38 (-413 (-570)))) (|has| |#2| (-1047 (-413 (-570)))))) (($ $) NIL (|has| |#2| (-562)))) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ (-777)) NIL) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3132 (((-3 $ "failed") $) NIL (-2895 (-12 (|has| $ (-146)) (|has| |#2| (-916))) (|has| |#2| (-146))))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| |#2| (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL (|has| |#2| (-562)))) (-1862 (($) NIL T CONST)) (-1876 (($) 14 T CONST)) (-2945 (($ $ (-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)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#2|) NIL (|has| |#2| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1701 ($ $ (-777) |#2| $)))) (-1186) (-1058)) (T -1250))
+((-1701 (*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 -1701 ($ $ (-777) |#2| $))))
+((-1357 ((|#4| (-1 |#3| |#1|) |#2|) 22)))
+(((-1251 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#4| (-1 |#3| |#1|) |#2|))) (-1058) (-1253 |#1|) (-1058) (-1253 |#3|)) (T -1251))
+((-1357 (*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 -1357 (|#4| (-1 |#3| |#1|) |#2|)))
+((-3975 (((-1277 |#2|) $ (-777)) 129)) (-1755 (((-650 (-1091)) $) 16)) (-1904 (($ (-1182 |#2|)) 80)) (-3249 (((-777) $) NIL) (((-777) $ (-650 (-1091))) 21)) (-2536 (((-424 (-1182 $)) (-1182 $)) 204)) (-4310 (($ $) 194)) (-3871 (((-424 $) $) 192)) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 95)) (-4323 (($ $ (-777)) 84)) (-3495 (($ $ (-777)) 86)) (-3657 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 145)) (-4383 (((-3 |#2| "failed") $) 132) (((-3 (-413 (-570)) "failed") $) NIL) (((-3 (-570) "failed") $) NIL) (((-3 (-1091) "failed") $) NIL)) (-3220 ((|#2| $) 130) (((-413 (-570)) $) NIL) (((-570) $) NIL) (((-1091) $) NIL)) (-3746 (($ $ $) 170)) (-1601 (((-2 (|:| -1453 |#2|) (|:| -3959 $) (|:| -3971 $)) $ $) 172)) (-3941 (((-777) $ $) 189)) (-4369 (((-3 $ "failed") $) 138)) (-3915 (($ |#2| (-777)) NIL) (($ $ (-1091) (-777)) 59) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-3970 (((-777) $) NIL) (((-777) $ (-1091)) 54) (((-650 (-777)) $ (-650 (-1091))) 55)) (-2315 (((-1182 |#2|) $) 72)) (-4023 (((-3 (-1091) "failed") $) 52)) (-2041 (((-2 (|:| -3959 $) (|:| -3971 $)) $ (-777)) 83)) (-2023 (($ $) 219)) (-2439 (($) 134)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 201)) (-3933 (((-424 (-1182 $)) (-1182 $)) 101)) (-1558 (((-424 (-1182 $)) (-1182 $)) 99)) (-3804 (((-424 $) $) 120)) (-1771 (($ $ (-650 (-298 $))) 51) (($ $ (-298 $)) NIL) (($ $ $ $) NIL) (($ $ (-650 $) (-650 $)) NIL) (($ $ (-1091) |#2|) 39) (($ $ (-650 (-1091)) (-650 |#2|)) 36) (($ $ (-1091) $) 32) (($ $ (-650 (-1091)) (-650 $)) 30)) (-2006 (((-777) $) 207)) (-1942 ((|#2| $ |#2|) NIL) (($ $ $) NIL) (((-413 $) (-413 $) (-413 $)) 164) ((|#2| (-413 $) |#2|) 206) (((-413 $) $ (-413 $)) 188)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 212)) (-3550 (($ $ (-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)) (-3079 (((-777) $) NIL) (((-777) $ (-1091)) 17) (((-650 (-777)) $ (-650 (-1091))) 23)) (-2077 ((|#2| $) NIL) (($ $ (-1091)) 140)) (-2846 (((-3 $ "failed") $ $) 180) (((-3 (-413 $) "failed") (-413 $) $) 176)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#2|) NIL) (($ (-1091)) 64) (($ (-413 (-570))) NIL) (($ $) NIL)))
+(((-1252 |#1| |#2|) (-10 -8 (-15 -3802 (|#1| |#1|)) (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -4310 (|#1| |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -2439 (|#1|)) (-15 -4369 ((-3 |#1| "failed") |#1|)) (-15 -1942 ((-413 |#1|) |#1| (-413 |#1|))) (-15 -2006 ((-777) |#1|)) (-15 -2696 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2023 (|#1| |#1|)) (-15 -1942 (|#2| (-413 |#1|) |#2|)) (-15 -3657 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -1601 ((-2 (|:| -1453 |#2|) (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -3746 (|#1| |#1| |#1|)) (-15 -2846 ((-3 (-413 |#1|) "failed") (-413 |#1|) |#1|)) (-15 -2846 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3941 ((-777) |#1| |#1|)) (-15 -1942 ((-413 |#1|) (-413 |#1|) (-413 |#1|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3495 (|#1| |#1| (-777))) (-15 -4323 (|#1| |#1| (-777))) (-15 -2041 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| (-777))) (-15 -1904 (|#1| (-1182 |#2|))) (-15 -2315 ((-1182 |#2|) |#1|)) (-15 -3975 ((-1277 |#2|) |#1| (-777))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -1942 (|#1| |#1| |#1|)) (-15 -1942 (|#2| |#1| |#2|)) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -2536 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1558 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3933 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3585 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2077 (|#1| |#1| (-1091))) (-15 -1755 ((-650 (-1091)) |#1|)) (-15 -3249 ((-777) |#1| (-650 (-1091)))) (-15 -3249 ((-777) |#1|)) (-15 -3915 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3915 (|#1| |#1| (-1091) (-777))) (-15 -3970 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -3970 ((-777) |#1| (-1091))) (-15 -4023 ((-3 (-1091) "failed") |#1|)) (-15 -3079 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -3079 ((-777) |#1| (-1091))) (-15 -3802 (|#1| (-1091))) (-15 -4383 ((-3 (-1091) "failed") |#1|)) (-15 -3220 ((-1091) |#1|)) (-15 -1771 (|#1| |#1| (-650 (-1091)) (-650 |#1|))) (-15 -1771 (|#1| |#1| (-1091) |#1|)) (-15 -1771 (|#1| |#1| (-650 (-1091)) (-650 |#2|))) (-15 -1771 (|#1| |#1| (-1091) |#2|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3079 ((-777) |#1|)) (-15 -3915 (|#1| |#2| (-777))) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -3970 ((-777) |#1|)) (-15 -2077 (|#2| |#1|)) (-15 -3550 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1091) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1091)))) (-15 -3550 (|#1| |#1| (-1091))) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|))) (-1253 |#2|) (-1058)) (T -1252))
+NIL
+(-10 -8 (-15 -3802 (|#1| |#1|)) (-15 -2361 ((-1182 |#1|) (-1182 |#1|) (-1182 |#1|))) (-15 -3871 ((-424 |#1|) |#1|)) (-15 -4310 (|#1| |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -2439 (|#1|)) (-15 -4369 ((-3 |#1| "failed") |#1|)) (-15 -1942 ((-413 |#1|) |#1| (-413 |#1|))) (-15 -2006 ((-777) |#1|)) (-15 -2696 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -2023 (|#1| |#1|)) (-15 -1942 (|#2| (-413 |#1|) |#2|)) (-15 -3657 ((-2 (|:| |primePart| |#1|) (|:| |commonPart| |#1|)) |#1| |#1|)) (-15 -1601 ((-2 (|:| -1453 |#2|) (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| |#1|)) (-15 -3746 (|#1| |#1| |#1|)) (-15 -2846 ((-3 (-413 |#1|) "failed") (-413 |#1|) |#1|)) (-15 -2846 ((-3 |#1| "failed") |#1| |#1|)) (-15 -3941 ((-777) |#1| |#1|)) (-15 -1942 ((-413 |#1|) (-413 |#1|) (-413 |#1|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) |#1|)) (-15 -3495 (|#1| |#1| (-777))) (-15 -4323 (|#1| |#1| (-777))) (-15 -2041 ((-2 (|:| -3959 |#1|) (|:| -3971 |#1|)) |#1| (-777))) (-15 -1904 (|#1| (-1182 |#2|))) (-15 -2315 ((-1182 |#2|) |#1|)) (-15 -3975 ((-1277 |#2|) |#1| (-777))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|))) (-15 -3550 (|#1| |#1| (-1 |#2| |#2|) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1186) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1186)))) (-15 -3550 (|#1| |#1| (-1186))) (-15 -3550 (|#1| |#1|)) (-15 -3550 (|#1| |#1| (-777))) (-15 -1942 (|#1| |#1| |#1|)) (-15 -1942 (|#2| |#1| |#2|)) (-15 -3804 ((-424 |#1|) |#1|)) (-15 -2536 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -1558 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3933 ((-424 (-1182 |#1|)) (-1182 |#1|))) (-15 -3585 ((-3 (-650 (-1182 |#1|)) "failed") (-650 (-1182 |#1|)) (-1182 |#1|))) (-15 -2077 (|#1| |#1| (-1091))) (-15 -1755 ((-650 (-1091)) |#1|)) (-15 -3249 ((-777) |#1| (-650 (-1091)))) (-15 -3249 ((-777) |#1|)) (-15 -3915 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3915 (|#1| |#1| (-1091) (-777))) (-15 -3970 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -3970 ((-777) |#1| (-1091))) (-15 -4023 ((-3 (-1091) "failed") |#1|)) (-15 -3079 ((-650 (-777)) |#1| (-650 (-1091)))) (-15 -3079 ((-777) |#1| (-1091))) (-15 -3802 (|#1| (-1091))) (-15 -4383 ((-3 (-1091) "failed") |#1|)) (-15 -3220 ((-1091) |#1|)) (-15 -1771 (|#1| |#1| (-650 (-1091)) (-650 |#1|))) (-15 -1771 (|#1| |#1| (-1091) |#1|)) (-15 -1771 (|#1| |#1| (-650 (-1091)) (-650 |#2|))) (-15 -1771 (|#1| |#1| (-1091) |#2|)) (-15 -1771 (|#1| |#1| (-650 |#1|) (-650 |#1|))) (-15 -1771 (|#1| |#1| |#1| |#1|)) (-15 -1771 (|#1| |#1| (-298 |#1|))) (-15 -1771 (|#1| |#1| (-650 (-298 |#1|)))) (-15 -3079 ((-777) |#1|)) (-15 -3915 (|#1| |#2| (-777))) (-15 -4383 ((-3 (-570) "failed") |#1|)) (-15 -3220 ((-570) |#1|)) (-15 -4383 ((-3 (-413 (-570)) "failed") |#1|)) (-15 -3220 ((-413 (-570)) |#1|)) (-15 -3220 (|#2| |#1|)) (-15 -4383 ((-3 |#2| "failed") |#1|)) (-15 -3802 (|#1| |#2|)) (-15 -3970 ((-777) |#1|)) (-15 -2077 (|#2| |#1|)) (-15 -3550 (|#1| |#1| (-650 (-1091)) (-650 (-777)))) (-15 -3550 (|#1| |#1| (-1091) (-777))) (-15 -3550 (|#1| |#1| (-650 (-1091)))) (-15 -3550 (|#1| |#1| (-1091))) (-15 -3802 (|#1| (-570))) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3975 (((-1277 |#1|) $ (-777)) 240)) (-1755 (((-650 (-1091)) $) 112)) (-1904 (($ (-1182 |#1|)) 238)) (-3778 (((-1182 $) $ (-1091)) 127) (((-1182 |#1|) $) 126)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 89 (|has| |#1| (-562)))) (-4306 (($ $) 90 (|has| |#1| (-562)))) (-2617 (((-112) $) 92 (|has| |#1| (-562)))) (-3249 (((-777) $) 114) (((-777) $ (-650 (-1091))) 113)) (-1966 (((-3 $ "failed") $ $) 20)) (-3162 (($ $ $) 225 (|has| |#1| (-562)))) (-2536 (((-424 (-1182 $)) (-1182 $)) 102 (|has| |#1| (-916)))) (-4310 (($ $) 100 (|has| |#1| (-458)))) (-3871 (((-424 $) $) 99 (|has| |#1| (-458)))) (-3585 (((-3 (-650 (-1182 $)) "failed") (-650 (-1182 $)) (-1182 $)) 105 (|has| |#1| (-916)))) (-3765 (((-112) $ $) 210 (|has| |#1| (-368)))) (-4323 (($ $ (-777)) 233)) (-3495 (($ $ (-777)) 232)) (-3657 (((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $) 220 (|has| |#1| (-458)))) (-3195 (($) 18 T CONST)) (-4383 (((-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)) (-3220 ((|#1| $) 165) (((-413 (-570)) $) 164 (|has| |#1| (-1047 (-413 (-570))))) (((-570) $) 162 (|has| |#1| (-1047 (-570)))) (((-1091) $) 139)) (-3930 (($ $ $ (-1091)) 110 (|has| |#1| (-174))) ((|#1| $ $) 228 (|has| |#1| (-174)))) (-2504 (($ $ $) 214 (|has| |#1| (-368)))) (-1954 (($ $) 156)) (-2179 (((-695 (-570)) (-695 $)) 136 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 (-570))) (|:| |vec| (-1277 (-570)))) (-695 $) (-1277 $)) 135 (|has| |#1| (-645 (-570)))) (((-2 (|:| -2990 (-695 |#1|)) (|:| |vec| (-1277 |#1|))) (-695 $) (-1277 $)) 134) (((-695 |#1|) (-695 $)) 133)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 213 (|has| |#1| (-368)))) (-2280 (($ $ $) 231)) (-3746 (($ $ $) 222 (|has| |#1| (-562)))) (-1601 (((-2 (|:| -1453 |#1|) (|:| -3959 $) (|:| -3971 $)) $ $) 221 (|has| |#1| (-562)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 208 (|has| |#1| (-368)))) (-1944 (($ $) 178 (|has| |#1| (-458))) (($ $ (-1091)) 107 (|has| |#1| (-458)))) (-1938 (((-650 $) $) 111)) (-1336 (((-112) $) 98 (|has| |#1| (-916)))) (-4243 (($ $ |#1| (-777) $) 174)) (-1557 (((-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)))))) (-3941 (((-777) $ $) 226 (|has| |#1| (-562)))) (-4139 (((-112) $) 35)) (-2867 (((-777) $) 171)) (-4369 (((-3 $ "failed") $) 206 (|has| |#1| (-1161)))) (-1744 (($ (-1182 |#1|) (-1091)) 119) (($ (-1182 $) (-1091)) 118)) (-3660 (($ $ (-777)) 237)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 217 (|has| |#1| (-368)))) (-3967 (((-650 $) $) 128)) (-3633 (((-112) $) 154)) (-3915 (($ |#1| (-777)) 155) (($ $ (-1091) (-777)) 121) (($ $ (-650 (-1091)) (-650 (-777))) 120)) (-3300 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $ (-1091)) 122) (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 235)) (-3970 (((-777) $) 172) (((-777) $ (-1091)) 124) (((-650 (-777)) $ (-650 (-1091))) 123)) (-1414 (($ (-1 (-777) (-777)) $) 173)) (-1357 (($ (-1 |#1| |#1|) $) 153)) (-2315 (((-1182 |#1|) $) 239)) (-4023 (((-3 (-1091) "failed") $) 125)) (-1914 (($ $) 151)) (-1928 ((|#1| $) 150)) (-1901 (($ (-650 $)) 96 (|has| |#1| (-458))) (($ $ $) 95 (|has| |#1| (-458)))) (-3989 (((-1168) $) 10)) (-2041 (((-2 (|:| -3959 $) (|:| -3971 $)) $ (-777)) 234)) (-1369 (((-3 (-650 $) "failed") $) 116)) (-1777 (((-3 (-650 $) "failed") $) 117)) (-2505 (((-3 (-2 (|:| |var| (-1091)) (|:| -3994 (-777))) "failed") $) 115)) (-2023 (($ $) 218 (|has| |#1| (-38 (-413 (-570)))))) (-2439 (($) 205 (|has| |#1| (-1161)) CONST)) (-3580 (((-1129) $) 11)) (-1887 (((-112) $) 168)) (-1900 ((|#1| $) 169)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 97 (|has| |#1| (-458)))) (-1939 (($ (-650 $)) 94 (|has| |#1| (-458))) (($ $ $) 93 (|has| |#1| (-458)))) (-3933 (((-424 (-1182 $)) (-1182 $)) 104 (|has| |#1| (-916)))) (-1558 (((-424 (-1182 $)) (-1182 $)) 103 (|has| |#1| (-916)))) (-3804 (((-424 $) $) 101 (|has| |#1| (-916)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 216 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 215 (|has| |#1| (-368)))) (-2548 (((-3 $ "failed") $ |#1|) 176 (|has| |#1| (-562))) (((-3 $ "failed") $ $) 88 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 209 (|has| |#1| (-368)))) (-1771 (($ $ (-650 (-298 $))) 147) (($ $ (-298 $)) 146) (($ $ $ $) 145) (($ $ (-650 $) (-650 $)) 144) (($ $ (-1091) |#1|) 143) (($ $ (-650 (-1091)) (-650 |#1|)) 142) (($ $ (-1091) $) 141) (($ $ (-650 (-1091)) (-650 $)) 140)) (-2006 (((-777) $) 211 (|has| |#1| (-368)))) (-1942 ((|#1| $ |#1|) 258) (($ $ $) 257) (((-413 $) (-413 $) (-413 $)) 227 (|has| |#1| (-562))) ((|#1| (-413 $) |#1|) 219 (|has| |#1| (-368))) (((-413 $) $ (-413 $)) 207 (|has| |#1| (-562)))) (-1662 (((-3 $ "failed") $ (-777)) 236)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 212 (|has| |#1| (-368)))) (-2265 (($ $ (-1091)) 109 (|has| |#1| (-174))) ((|#1| $) 229 (|has| |#1| (-174)))) (-3550 (($ $ (-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)) (-3079 (((-777) $) 152) (((-777) $ (-1091)) 132) (((-650 (-777)) $ (-650 (-1091))) 131)) (-1426 (((-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)))))) (-2077 ((|#1| $) 177 (|has| |#1| (-458))) (($ $ (-1091)) 108 (|has| |#1| (-458)))) (-3692 (((-3 (-1277 $) "failed") (-695 $)) 106 (-1810 (|has| $ (-146)) (|has| |#1| (-916))))) (-2846 (((-3 $ "failed") $ $) 224 (|has| |#1| (-562))) (((-3 (-413 $) "failed") (-413 $) $) 223 (|has| |#1| (-562)))) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 167) (($ (-1091)) 137) (($ (-413 (-570))) 80 (-2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570)))))) (($ $) 87 (|has| |#1| (-562)))) (-2459 (((-650 |#1|) $) 170)) (-1864 ((|#1| $ (-777)) 157) (($ $ (-1091) (-777)) 130) (($ $ (-650 (-1091)) (-650 (-777))) 129)) (-3132 (((-3 $ "failed") $) 81 (-2895 (-1810 (|has| $ (-146)) (|has| |#1| (-916))) (|has| |#1| (-146))))) (-2851 (((-777)) 32 T CONST)) (-2648 (($ $ $ (-777)) 175 (|has| |#1| (-174)))) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 91 (|has| |#1| (-562)))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 158 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2277 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1253 *4)) (-4 *4 (-1058)) (-5 *2 (-1277 *4)))) (-3900 (*1 *2 *1) (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-5 *2 (-1182 *3)))) (-3985 (*1 *1 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-1058)) (-4 *1 (-1253 *3)))) (-2362 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-2527 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-2631 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-1253 *3)))) (-3213 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-1253 *4)))) (-1576 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-2347 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-3239 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)))) (-3547 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-3570 (*1 *2 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))) (-4322 (*1 *2 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))) (-1941 (*1 *2 *2 *2) (-12 (-5 *2 (-413 *1)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)))) (-4323 (*1 *2 *1 *1) (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)) (-5 *2 (-777)))) (-2022 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-2105 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-2105 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-413 *1)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)))) (-2677 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-3640 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -1452 *3) (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-1253 *3)))) (-4425 (*1 *2 *1 *1) (-12 (-4 *3 (-458)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1253 *3)))) (-1941 (*1 *2 *3 *2) (-12 (-5 *3 (-413 *1)) (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2898 (*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 -2277 ((-1277 |t#1|) $ (-777))) (-15 -3900 ((-1182 |t#1|) $)) (-15 -3985 ($ (-1182 |t#1|))) (-15 -2362 ($ $ (-777))) (-15 -2527 ((-3 $ "failed") $ (-777))) (-15 -2631 ((-2 (|:| -2573 $) (|:| -3691 $)) $ $)) (-15 -3213 ((-2 (|:| -2573 $) (|:| -3691 $)) $ (-777))) (-15 -1576 ($ $ (-777))) (-15 -2347 ($ $ (-777))) (-15 -3239 ($ $ $)) (-15 -3547 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1161)) (-6 (-1161)) |%noBranch|) (IF (|has| |t#1| (-174)) (PROGN (-15 -3570 (|t#1| $)) (-15 -4322 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-6 (-290 (-413 $) (-413 $))) (-15 -1941 ((-413 $) (-413 $) (-413 $))) (-15 -4323 ((-777) $ $)) (-15 -2022 ($ $ $)) (-15 -2105 ((-3 $ "failed") $ $)) (-15 -2105 ((-3 (-413 $) "failed") (-413 $) $)) (-15 -2677 ($ $ $)) (-15 -3640 ((-2 (|:| -1452 |t#1|) (|:| -2573 $) (|:| -3691 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (-15 -4425 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-6 (-311)) (-6 -4445) (-15 -1941 (|t#1| (-413 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (-15 -2898 ($ $)) |%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 $) -2892 (|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 $ $) -2892 (|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#) -2892 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 #2=(-1091)) . T) ((-622 |#1|) . T) ((-622 $) -2892 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2892 (|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) -2892 (|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) -2892 (|has| |#1| (-916)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-520 #2# |#1|) . T) ((-520 #2# $) . T) ((-520 $ $) . T) ((-562) -2892 (|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 $) -2892 (|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 $) -2892 (|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 $) -2892 (|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 $) -2892 (|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)))
-((-1755 (((-650 (-1091)) $) 34)) (-1956 (($ $) 31)) (-3912 (($ |#2| |#3|) NIL) (($ $ (-1091) |#3|) 28) (($ $ (-650 (-1091)) (-650 |#3|)) 27)) (-1915 (($ $) 14)) (-1927 ((|#2| $) 12)) (-2130 ((|#3| $) 10)))
-(((-1254 |#1| |#2| |#3|) (-10 -8 (-15 -1755 ((-650 (-1091)) |#1|)) (-15 -3912 (|#1| |#1| (-650 (-1091)) (-650 |#3|))) (-15 -3912 (|#1| |#1| (-1091) |#3|)) (-15 -1956 (|#1| |#1|)) (-15 -3912 (|#1| |#2| |#3|)) (-15 -2130 (|#3| |#1|)) (-15 -1915 (|#1| |#1|)) (-15 -1927 (|#2| |#1|))) (-1255 |#2| |#3|) (-1058) (-798)) (T -1254))
-NIL
-(-10 -8 (-15 -1755 ((-650 (-1091)) |#1|)) (-15 -3912 (|#1| |#1| (-650 (-1091)) (-650 |#3|))) (-15 -3912 (|#1| |#1| (-1091) |#3|)) (-15 -1956 (|#1| |#1|)) (-15 -3912 (|#1| |#2| |#3|)) (-15 -2130 (|#3| |#1|)) (-15 -1915 (|#1| |#1|)) (-15 -1927 (|#2| |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2798 (((-1186) $) 115)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-1447 (($ $ |#2|) 110) (($ $ |#2| |#2|) 109)) (-3416 (((-1166 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 117)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1956 (($ $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-2379 (((-112) $) 85)) (-4323 ((|#2| $) 112) ((|#2| $ |#2|) 111)) (-4346 (((-112) $) 35)) (-2362 (($ $ (-928)) 113)) (-2359 (((-112) $) 74)) (-3912 (($ |#1| |#2|) 73) (($ $ (-1091) |#2|) 88) (($ $ (-650 (-1091)) (-650 |#2|)) 87)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2431 (($ $ |#2|) 107)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1770 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-1941 ((|#1| $ |#2|) 116) (($ $ $) 93 (|has| |#2| (-1121)))) (-3547 (($ $ (-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|))))) (-2130 ((|#2| $) 76)) (-2853 (($ $) 84)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-2249 ((|#1| $ |#2|) 71)) (-3532 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2288 ((|#1| $) 114)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-3167 ((|#1| $ |#2|) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))))
+((-3975 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1253 *4)) (-4 *4 (-1058)) (-5 *2 (-1277 *4)))) (-2315 (*1 *2 *1) (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-5 *2 (-1182 *3)))) (-1904 (*1 *1 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-1058)) (-4 *1 (-1253 *3)))) (-3660 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-1662 (*1 *1 *1 *2) (|partial| -12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-3300 (*1 *2 *1 *1) (-12 (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-1253 *3)))) (-2041 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-1253 *4)))) (-4323 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-3495 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-2280 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)))) (-3550 (*1 *1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))) (-2265 (*1 *2 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))) (-3930 (*1 *2 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-174)))) (-1942 (*1 *2 *2 *2) (-12 (-5 *2 (-413 *1)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)))) (-3941 (*1 *2 *1 *1) (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)) (-5 *2 (-777)))) (-3162 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-2846 (*1 *1 *1 *1) (|partial| -12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-2846 (*1 *2 *2 *1) (|partial| -12 (-5 *2 (-413 *1)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-4 *3 (-562)))) (-3746 (*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))) (-1601 (*1 *2 *1 *1) (-12 (-4 *3 (-562)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| -1453 *3) (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-1253 *3)))) (-3657 (*1 *2 *1 *1) (-12 (-4 *3 (-458)) (-4 *3 (-1058)) (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1))) (-4 *1 (-1253 *3)))) (-1942 (*1 *2 *3 *2) (-12 (-5 *3 (-413 *1)) (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))) (-2023 (*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 -3975 ((-1277 |t#1|) $ (-777))) (-15 -2315 ((-1182 |t#1|) $)) (-15 -1904 ($ (-1182 |t#1|))) (-15 -3660 ($ $ (-777))) (-15 -1662 ((-3 $ "failed") $ (-777))) (-15 -3300 ((-2 (|:| -3959 $) (|:| -3971 $)) $ $)) (-15 -2041 ((-2 (|:| -3959 $) (|:| -3971 $)) $ (-777))) (-15 -4323 ($ $ (-777))) (-15 -3495 ($ $ (-777))) (-15 -2280 ($ $ $)) (-15 -3550 ($ $ (-1 |t#1| |t#1|) $)) (IF (|has| |t#1| (-1161)) (-6 (-1161)) |%noBranch|) (IF (|has| |t#1| (-174)) (PROGN (-15 -2265 (|t#1| $)) (-15 -3930 (|t#1| $ $))) |%noBranch|) (IF (|has| |t#1| (-562)) (PROGN (-6 (-290 (-413 $) (-413 $))) (-15 -1942 ((-413 $) (-413 $) (-413 $))) (-15 -3941 ((-777) $ $)) (-15 -3162 ($ $ $)) (-15 -2846 ((-3 $ "failed") $ $)) (-15 -2846 ((-3 (-413 $) "failed") (-413 $) $)) (-15 -3746 ($ $ $)) (-15 -1601 ((-2 (|:| -1453 |t#1|) (|:| -3959 $) (|:| -3971 $)) $ $))) |%noBranch|) (IF (|has| |t#1| (-458)) (-15 -3657 ((-2 (|:| |primePart| $) (|:| |commonPart| $)) $ $)) |%noBranch|) (IF (|has| |t#1| (-368)) (PROGN (-6 (-311)) (-6 -4448) (-15 -1942 (|t#1| (-413 $) |t#1|))) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (-15 -2023 ($ $)) |%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 $) -2895 (|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 $ $) -2895 (|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#) -2895 (|has| |#1| (-1047 (-413 (-570)))) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 #2=(-1091)) . T) ((-622 |#1|) . T) ((-622 $) -2895 (|has| |#1| (-916)) (|has| |#1| (-562)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2895 (|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) -2895 (|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) -2895 (|has| |#1| (-916)) (|has| |#1| (-458)) (|has| |#1| (-368))) ((-520 #2# |#1|) . T) ((-520 #2# $) . T) ((-520 $ $) . T) ((-562) -2895 (|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 $) -2895 (|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 $) -2895 (|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 $) -2895 (|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 $) -2895 (|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)))
+((-1755 (((-650 (-1091)) $) 34)) (-1954 (($ $) 31)) (-3915 (($ |#2| |#3|) NIL) (($ $ (-1091) |#3|) 28) (($ $ (-650 (-1091)) (-650 |#3|)) 27)) (-1914 (($ $) 14)) (-1928 ((|#2| $) 12)) (-3079 ((|#3| $) 10)))
+(((-1254 |#1| |#2| |#3|) (-10 -8 (-15 -1755 ((-650 (-1091)) |#1|)) (-15 -3915 (|#1| |#1| (-650 (-1091)) (-650 |#3|))) (-15 -3915 (|#1| |#1| (-1091) |#3|)) (-15 -1954 (|#1| |#1|)) (-15 -3915 (|#1| |#2| |#3|)) (-15 -3079 (|#3| |#1|)) (-15 -1914 (|#1| |#1|)) (-15 -1928 (|#2| |#1|))) (-1255 |#2| |#3|) (-1058) (-798)) (T -1254))
+NIL
+(-10 -8 (-15 -1755 ((-650 (-1091)) |#1|)) (-15 -3915 (|#1| |#1| (-650 (-1091)) (-650 |#3|))) (-15 -3915 (|#1| |#1| (-1091) |#3|)) (-15 -1954 (|#1| |#1|)) (-15 -3915 (|#1| |#2| |#3|)) (-15 -3079 (|#3| |#1|)) (-15 -1914 (|#1| |#1|)) (-15 -1928 (|#2| |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2800 (((-1186) $) 115)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1622 (($ $ |#2|) 110) (($ $ |#2| |#2|) 109)) (-3257 (((-1166 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) 117)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1954 (($ $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-2646 (((-112) $) 85)) (-3941 ((|#2| $) 112) ((|#2| $ |#2|) 111)) (-4139 (((-112) $) 35)) (-3660 (($ $ (-928)) 113)) (-3633 (((-112) $) 74)) (-3915 (($ |#1| |#2|) 73) (($ $ (-1091) |#2|) 88) (($ $ (-650 (-1091)) (-650 |#2|)) 87)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3152 (($ $ |#2|) 107)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-1771 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| |#2|))))) (-1942 ((|#1| $ |#2|) 116) (($ $ $) 93 (|has| |#2| (-1121)))) (-3550 (($ $ (-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|))))) (-3079 ((|#2| $) 76)) (-1682 (($ $) 84)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-1864 ((|#1| $ |#2|) 71)) (-3132 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-2289 ((|#1| $) 114)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-3170 ((|#1| $ |#2|) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| |#2|))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3416 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-1166 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-1941 (*1 *2 *1 *3) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2798 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-1186)))) (-2288 (*1 *2 *1) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2362 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-4323 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-4323 (*1 *2 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1447 (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1447 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3167 (*1 *2 *1 *3) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3799 (*2 (-1186)))) (-4 *2 (-1058)))) (-2431 (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1770 (*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 -3416 ((-1166 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -1941 (|t#1| $ |t#2|)) (-15 -2798 ((-1186) $)) (-15 -2288 (|t#1| $)) (-15 -2362 ($ $ (-928))) (-15 -4323 (|t#2| $)) (-15 -4323 (|t#2| $ |t#2|)) (-15 -1447 ($ $ |t#2|)) (-15 -1447 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3799 (|t#1| (-1186)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -3167 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -2431 ($ $ |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 -1770 ((-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 $ $) -2892 (|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) -2892 (|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 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
-((-4364 ((|#2| |#2|) 12)) (-1652 (((-424 |#2|) |#2|) 14)) (-4190 (((-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 -1652 ((-424 |#2|) |#2|)) (-15 -4364 (|#2| |#2|)) (-15 -4190 ((-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 -1942 ($ $ $))))) (T -1256))
-((-4190 (*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 -1942 ($ $ $))))) (-4 *3 (-562)) (-5 *1 (-1256 *3 *4)))) (-4364 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-1256 *3 *2)) (-4 *2 (-13 (-1253 *3) (-562) (-10 -8 (-15 -1942 ($ $ $))))))) (-1652 (*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 -1942 ($ $ $))))))))
-(-10 -7 (-15 -1652 ((-424 |#2|) |#2|)) (-15 -4364 (|#2| |#2|)) (-15 -4190 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))))))
-((-1356 (((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|)) 24)))
-(((-1257 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1356 ((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|)))) (-1058) (-1058) (-1186) (-1186) |#1| |#2|) (T -1257))
-((-1356 (*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 -1356 ((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2798 (((-1186) $) 115)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-1447 (($ $ (-413 (-570))) 110) (($ $ (-413 (-570)) (-413 (-570))) 109)) (-3416 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 117)) (-2887 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 174 (|has| |#1| (-368)))) (-1652 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3814 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-3473 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2866 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 183)) (-4107 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) 18 T CONST)) (-2506 (($ $ $) 169 (|has| |#1| (-368)))) (-1956 (($ $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 168 (|has| |#1| (-368)))) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-3618 (((-112) $) 176 (|has| |#1| (-368)))) (-2379 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-413 (-570)) $) 112) (((-413 (-570)) $ (-413 (-570))) 111)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) 113) (($ $ (-413 (-570))) 182)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-2359 (((-112) $) 74)) (-3912 (($ |#1| (-413 (-570))) 73) (($ $ (-1091) (-413 (-570))) 88) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) 87)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-2789 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1899 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1988 (((-1168) $) 10)) (-1877 (($ $) 177 (|has| |#1| (-368)))) (-2898 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2892 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1942 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3801 (((-424 $) $) 173 (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 170 (|has| |#1| (-368)))) (-2431 (($ $ (-413 (-570))) 107)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2142 (((-777) $) 166 (|has| |#1| (-368)))) (-1941 ((|#1| $ (-413 (-570))) 116) (($ $ $) 93 (|has| (-413 (-570)) (-1121)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 167 (|has| |#1| (-368)))) (-3547 (($ $ (-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|))))) (-2130 (((-413 (-570)) $) 76)) (-4117 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 84)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-2249 ((|#1| $ (-413 (-570))) 71)) (-3532 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2288 ((|#1| $) 114)) (-2335 (((-112) $ $) 9)) (-4154 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-413 (-570))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))))
+((-3257 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-1166 (-2 (|:| |k| *4) (|:| |c| *3)))))) (-1942 (*1 *2 *1 *3) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-2800 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)) (-5 *2 (-1186)))) (-2289 (*1 *2 *1) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))) (-3660 (*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798)))) (-3941 (*1 *2 *1) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3941 (*1 *2 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1622 (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1622 (*1 *1 *1 *2 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-3170 (*1 *2 *1 *3) (-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3802 (*2 (-1186)))) (-4 *2 (-1058)))) (-3152 (*1 *1 *1 *2) (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))) (-1771 (*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 -3257 ((-1166 (-2 (|:| |k| |t#2|) (|:| |c| |t#1|))) $)) (-15 -1942 (|t#1| $ |t#2|)) (-15 -2800 ((-1186) $)) (-15 -2289 (|t#1| $)) (-15 -3660 ($ $ (-928))) (-15 -3941 (|t#2| $)) (-15 -3941 (|t#2| $ |t#2|)) (-15 -1622 ($ $ |t#2|)) (-15 -1622 ($ $ |t#2| |t#2|)) (IF (|has| |t#1| (-15 -3802 (|t#1| (-1186)))) (IF (|has| |t#1| (-15 ** (|t#1| |t#1| |t#2|))) (-15 -3170 (|t#1| $ |t#2|)) |%noBranch|) |%noBranch|) (-15 -3152 ($ $ |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 -1771 ((-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 $ $) -2895 (|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) -2895 (|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 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #0#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1058) . T) ((-1067) . T) ((-1121) . T) ((-1109) . T))
+((-4310 ((|#2| |#2|) 12)) (-3871 (((-424 |#2|) |#2|) 14)) (-2125 (((-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 -3871 ((-424 |#2|) |#2|)) (-15 -4310 (|#2| |#2|)) (-15 -2125 ((-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 -1939 ($ $ $))))) (T -1256))
+((-2125 (*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 -1939 ($ $ $))))) (-4 *3 (-562)) (-5 *1 (-1256 *3 *4)))) (-4310 (*1 *2 *2) (-12 (-4 *3 (-562)) (-5 *1 (-1256 *3 *2)) (-4 *2 (-13 (-1253 *3) (-562) (-10 -8 (-15 -1939 ($ $ $))))))) (-3871 (*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 -1939 ($ $ $))))))))
+(-10 -7 (-15 -3871 ((-424 |#2|) |#2|)) (-15 -4310 (|#2| |#2|)) (-15 -2125 ((-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))) (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| |#2|) (|:| |xpnt| (-570))))))
+((-1357 (((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|)) 24)))
+(((-1257 |#1| |#2| |#3| |#4| |#5| |#6|) (-10 -7 (-15 -1357 ((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|)))) (-1058) (-1058) (-1186) (-1186) |#1| |#2|) (T -1257))
+((-1357 (*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 -1357 ((-1262 |#2| |#4| |#6|) (-1 |#2| |#1|) (-1262 |#1| |#3| |#5|))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2800 (((-1186) $) 115)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1622 (($ $ (-413 (-570))) 110) (($ $ (-413 (-570)) (-413 (-570))) 109)) (-3257 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 117)) (-2890 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 174 (|has| |#1| (-368)))) (-3871 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3817 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-3765 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2869 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 183)) (-4109 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) 18 T CONST)) (-2504 (($ $ $) 169 (|has| |#1| (-368)))) (-1954 (($ $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 168 (|has| |#1| (-368)))) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-1336 (((-112) $) 176 (|has| |#1| (-368)))) (-2646 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-413 (-570)) $) 112) (((-413 (-570)) $ (-413 (-570))) 111)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) 113) (($ $ (-413 (-570))) 182)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-3633 (((-112) $) 74)) (-3915 (($ |#1| (-413 (-570))) 73) (($ $ (-1091) (-413 (-570))) 88) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) 87)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-2792 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-1901 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-3989 (((-1168) $) 10)) (-1878 (($ $) 177 (|has| |#1| (-368)))) (-2023 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2895 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1939 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3804 (((-424 $) $) 173 (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 170 (|has| |#1| (-368)))) (-3152 (($ $ (-413 (-570))) 107)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4389 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2006 (((-777) $) 166 (|has| |#1| (-368)))) (-1942 ((|#1| $ (-413 (-570))) 116) (($ $ $) 93 (|has| (-413 (-570)) (-1121)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 167 (|has| |#1| (-368)))) (-3550 (($ $ (-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|))))) (-3079 (((-413 (-570)) $) 76)) (-4120 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 84)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1864 ((|#1| $ (-413 (-570))) 71)) (-3132 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-2289 ((|#1| $) 114)) (-3359 (((-112) $ $) 9)) (-4157 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-413 (-570))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3418 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| *4)))) (-4 *4 (-1058)) (-4 *1 (-1258 *4)))) (-2362 (*1 *1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1258 *3)) (-4 *3 (-1058)))) (-2898 (*1 *1 *1) (-12 (-4 *1 (-1258 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-2898 (*1 *1 *1 *2) (-2892 (-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 -1755 ((-650 *2) *3))) (|has| *3 (-15 -2898 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
-(-13 (-1255 |t#1| (-413 (-570))) (-10 -8 (-15 -3418 ($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |t#1|))))) (-15 -2362 ($ $ (-413 (-570)))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $)) (IF (|has| |t#1| (-15 -2898 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1755 ((-650 (-1186)) |t#1|))) (-15 -2898 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -2898 ($ $ (-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))) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2892 (|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) -2892 (|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) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2892 (|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#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|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))
-((-3467 (((-112) $) 12)) (-4380 (((-3 |#3| "failed") $) 17)) (-3216 ((|#3| $) 14)))
-(((-1259 |#1| |#2| |#3|) (-10 -8 (-15 -4380 ((-3 |#3| "failed") |#1|)) (-15 -3216 (|#3| |#1|)) (-15 -3467 ((-112) |#1|))) (-1260 |#2| |#3|) (-1058) (-1237 |#2|)) (T -1259))
-NIL
-(-10 -8 (-15 -4380 ((-3 |#3| "failed") |#1|)) (-15 -3216 (|#3| |#1|)) (-15 -3467 ((-112) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2798 (((-1186) $) 115)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-1447 (($ $ (-413 (-570))) 110) (($ $ (-413 (-570)) (-413 (-570))) 109)) (-3416 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 117)) (-2887 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 174 (|has| |#1| (-368)))) (-1652 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3814 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-3473 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2866 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 183)) (-4107 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) 18 T CONST)) (-4380 (((-3 |#2| "failed") $) 194)) (-3216 ((|#2| $) 195)) (-2506 (($ $ $) 169 (|has| |#1| (-368)))) (-1956 (($ $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-1457 (((-413 (-570)) $) 191)) (-2518 (($ $ $) 168 (|has| |#1| (-368)))) (-1852 (($ (-413 (-570)) |#2|) 192)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-3618 (((-112) $) 176 (|has| |#1| (-368)))) (-2379 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-413 (-570)) $) 112) (((-413 (-570)) $ (-413 (-570))) 111)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) 113) (($ $ (-413 (-570))) 182)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-2359 (((-112) $) 74)) (-3912 (($ |#1| (-413 (-570))) 73) (($ $ (-1091) (-413 (-570))) 88) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) 87)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-2789 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1899 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-2247 ((|#2| $) 190)) (-1547 (((-3 |#2| "failed") $) 188)) (-1838 ((|#2| $) 189)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 177 (|has| |#1| (-368)))) (-2898 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2892 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1942 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3801 (((-424 $) $) 173 (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 170 (|has| |#1| (-368)))) (-2431 (($ $ (-413 (-570))) 107)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2142 (((-777) $) 166 (|has| |#1| (-368)))) (-1941 ((|#1| $ (-413 (-570))) 116) (($ $ $) 93 (|has| (-413 (-570)) (-1121)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 167 (|has| |#1| (-368)))) (-3547 (($ $ (-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|))))) (-2130 (((-413 (-570)) $) 76)) (-4117 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 84)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ |#2|) 193) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-2249 ((|#1| $ (-413 (-570))) 71)) (-3532 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2288 ((|#1| $) 114)) (-2335 (((-112) $ $) 9)) (-4154 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-413 (-570))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))))
+((-3421 (*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| *4)))) (-4 *4 (-1058)) (-4 *1 (-1258 *4)))) (-3660 (*1 *1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-4 *1 (-1258 *3)) (-4 *3 (-1058)))) (-2023 (*1 *1 *1) (-12 (-4 *1 (-1258 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-2023 (*1 *1 *1 *2) (-2895 (-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 -1755 ((-650 *2) *3))) (|has| *3 (-15 -2023 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
+(-13 (-1255 |t#1| (-413 (-570))) (-10 -8 (-15 -3421 ($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |t#1|))))) (-15 -3660 ($ $ (-413 (-570)))) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $)) (IF (|has| |t#1| (-15 -2023 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1755 ((-650 (-1186)) |t#1|))) (-15 -2023 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -2023 ($ $ (-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))) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2895 (|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) -2895 (|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) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2895 (|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#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|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))
+((-3721 (((-112) $) 12)) (-4383 (((-3 |#3| "failed") $) 17)) (-3220 ((|#3| $) 14)))
+(((-1259 |#1| |#2| |#3|) (-10 -8 (-15 -4383 ((-3 |#3| "failed") |#1|)) (-15 -3220 (|#3| |#1|)) (-15 -3721 ((-112) |#1|))) (-1260 |#2| |#3|) (-1058) (-1237 |#2|)) (T -1259))
+NIL
+(-10 -8 (-15 -4383 ((-3 |#3| "failed") |#1|)) (-15 -3220 (|#3| |#1|)) (-15 -3721 ((-112) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2800 (((-1186) $) 115)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1622 (($ $ (-413 (-570))) 110) (($ $ (-413 (-570)) (-413 (-570))) 109)) (-3257 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 117)) (-2890 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 174 (|has| |#1| (-368)))) (-3871 (((-424 $) $) 175 (|has| |#1| (-368)))) (-3817 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-3765 (((-112) $ $) 165 (|has| |#1| (-368)))) (-2869 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 183)) (-4109 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) 18 T CONST)) (-4383 (((-3 |#2| "failed") $) 194)) (-3220 ((|#2| $) 195)) (-2504 (($ $ $) 169 (|has| |#1| (-368)))) (-1954 (($ $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-2573 (((-413 (-570)) $) 191)) (-2519 (($ $ $) 168 (|has| |#1| (-368)))) (-1853 (($ (-413 (-570)) |#2|) 192)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 163 (|has| |#1| (-368)))) (-1336 (((-112) $) 176 (|has| |#1| (-368)))) (-2646 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-413 (-570)) $) 112) (((-413 (-570)) $ (-413 (-570))) 111)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) 113) (($ $ (-413 (-570))) 182)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 172 (|has| |#1| (-368)))) (-3633 (((-112) $) 74)) (-3915 (($ |#1| (-413 (-570))) 73) (($ $ (-1091) (-413 (-570))) 88) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) 87)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-2792 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-1901 (($ (-650 $)) 161 (|has| |#1| (-368))) (($ $ $) 160 (|has| |#1| (-368)))) (-1838 ((|#2| $) 190)) (-2224 (((-3 |#2| "failed") $) 188)) (-1839 ((|#2| $) 189)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 177 (|has| |#1| (-368)))) (-2023 (($ $) 181 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 180 (-2895 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 162 (|has| |#1| (-368)))) (-1939 (($ (-650 $)) 159 (|has| |#1| (-368))) (($ $ $) 158 (|has| |#1| (-368)))) (-3804 (((-424 $) $) 173 (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 171 (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 170 (|has| |#1| (-368)))) (-3152 (($ $ (-413 (-570))) 107)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 164 (|has| |#1| (-368)))) (-4389 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2006 (((-777) $) 166 (|has| |#1| (-368)))) (-1942 ((|#1| $ (-413 (-570))) 116) (($ $ $) 93 (|has| (-413 (-570)) (-1121)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 167 (|has| |#1| (-368)))) (-3550 (($ $ (-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|))))) (-3079 (((-413 (-570)) $) 76)) (-4120 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 84)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 59 (|has| |#1| (-174))) (($ |#2|) 193) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562)))) (-1864 ((|#1| $ (-413 (-570))) 71)) (-3132 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-2289 ((|#1| $) 114)) (-3359 (((-112) $ $) 9)) (-4157 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-413 (-570))) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368))) (($ $ $) 179 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2130 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3)) (-5 *2 (-413 (-570))))) (-1852 (*1 *1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-4 *4 (-1058)) (-4 *1 (-1260 *4 *3)) (-4 *3 (-1237 *4)))) (-1457 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3)) (-5 *2 (-413 (-570))))) (-2247 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))) (-1838 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))) (-1547 (*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 -1852 ($ (-413 (-570)) |t#2|)) (-15 -1457 ((-413 (-570)) $)) (-15 -2247 (|t#2| $)) (-15 -2130 ((-413 (-570)) $)) (-15 -1838 (|t#2| $)) (-15 -1547 ((-3 |t#2| "failed") $))))
-(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-413 (-570))) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 |#2|) . T) ((-622 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2892 (|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) -2892 (|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) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2892 (|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#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2892 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 104)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-1447 (($ $ (-413 (-570))) 116) (($ $ (-413 (-570)) (-413 (-570))) 118)) (-3416 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 54)) (-2887 (($ $) 192 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 168 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2866 (($ $) 188 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 164 (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 65)) (-4107 (($ $) 196 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 172 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#2| "failed") $) NIL)) (-3216 ((|#2| $) NIL)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) 85)) (-1457 (((-413 (-570)) $) 13)) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-1852 (($ (-413 (-570)) |#2|) 11)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-2379 (((-112) $) 74)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-413 (-570)) $) 113) (((-413 (-570)) $ (-413 (-570))) 114)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) 130) (($ $ (-413 (-570))) 128)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-413 (-570))) 33) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) 125)) (-2789 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2247 ((|#2| $) 12)) (-1547 (((-3 |#2| "failed") $) 44)) (-1838 ((|#2| $) 45)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) 101 (|has| |#1| (-368)))) (-2898 (($ $) 146 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 151 (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2431 (($ $ (-413 (-570))) 122)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) 98 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ (-413 (-570))) 108) (($ $ $) 94 (|has| (-413 (-570)) (-1121)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3547 (($ $ (-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|))))) (-2130 (((-413 (-570)) $) 16)) (-4117 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 194 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 170 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 190 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 166 (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 120)) (-3799 (((-868) $) NIL) (($ (-570)) 37) (($ |#1|) 27 (|has| |#1| (-174))) (($ |#2|) 34) (($ (-413 (-570))) 139 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-2249 ((|#1| $ (-413 (-570))) 107)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) 127 T CONST)) (-2288 ((|#1| $) 106)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 180 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 184 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 186 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 182 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 178 (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 21 T CONST)) (-1875 (($) 17 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) 72)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 100 (|has| |#1| (-368)))) (-3111 (($ $) 142) (($ $ $) 78)) (-3101 (($ $ $) 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)))))))
+((-3079 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3)) (-5 *2 (-413 (-570))))) (-1853 (*1 *1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-4 *4 (-1058)) (-4 *1 (-1260 *4 *3)) (-4 *3 (-1237 *4)))) (-2573 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3)) (-5 *2 (-413 (-570))))) (-1838 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))) (-1839 (*1 *2 *1) (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))) (-2224 (*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 -1853 ($ (-413 (-570)) |t#2|)) (-15 -2573 ((-413 (-570)) $)) (-15 -1838 (|t#2| $)) (-15 -3079 ((-413 (-570)) $)) (-15 -1839 (|t#2| $)) (-15 -2224 ((-3 |t#2| "failed") $))))
+(((-21) . T) ((-23) . T) ((-47 |#1| #0=(-413 (-570))) . T) ((-25) . T) ((-38 #1=(-413 (-570))) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-38 |#1|) |has| |#1| (-174)) ((-38 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-35) |has| |#1| (-38 (-413 (-570)))) ((-95) |has| |#1| (-38 (-413 (-570)))) ((-102) . T) ((-111 #1# #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-111 |#1| |#1|) . T) ((-111 $ $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-132) . T) ((-146) |has| |#1| (-146)) ((-148) |has| |#1| (-148)) ((-622 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-622 (-570)) . T) ((-622 |#1|) |has| |#1| (-174)) ((-622 |#2|) . T) ((-622 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-619 (-868)) . T) ((-174) -2895 (|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) -2895 (|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) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-652 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-652 (-570)) . T) ((-652 |#1|) . T) ((-652 $) . T) ((-654 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-654 |#1|) . T) ((-654 $) . T) ((-646 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-646 |#1|) |has| |#1| (-174)) ((-646 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368))) ((-723 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-723 |#1|) |has| |#1| (-174)) ((-723 $) -2895 (|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#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1060 |#1|) . T) ((-1060 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-368)) (|has| |#1| (-174))) ((-1065 #1#) -2895 (|has| |#1| (-368)) (|has| |#1| (-38 (-413 (-570))))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|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))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 104)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1622 (($ $ (-413 (-570))) 116) (($ $ (-413 (-570)) (-413 (-570))) 118)) (-3257 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) 54)) (-2890 (($ $) 192 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 168 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2869 (($ $) 188 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 164 (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) 65)) (-4109 (($ $) 196 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 172 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#2| "failed") $) NIL)) (-3220 ((|#2| $) NIL)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) 85)) (-2573 (((-413 (-570)) $) 13)) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-1853 (($ (-413 (-570)) |#2|) 11)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-2646 (((-112) $) 74)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-413 (-570)) $) 113) (((-413 (-570)) $ (-413 (-570))) 114)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) 130) (($ $ (-413 (-570))) 128)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-413 (-570))) 33) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) 125)) (-2792 (($ $) 162 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1838 ((|#2| $) 12)) (-2224 (((-3 |#2| "failed") $) 44)) (-1839 ((|#2| $) 45)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) 101 (|has| |#1| (-368)))) (-2023 (($ $) 146 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 151 (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-38 (-413 (-570)))) (|has| |#1| (-966)) (|has| |#1| (-1212)))))) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3152 (($ $ (-413 (-570))) 122)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4389 (($ $) 160 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) 98 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ (-413 (-570))) 108) (($ $ $) 94 (|has| (-413 (-570)) (-1121)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-3550 (($ $ (-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|))))) (-3079 (((-413 (-570)) $) 16)) (-4120 (($ $) 198 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 174 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 194 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 170 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 190 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 166 (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 120)) (-3802 (((-868) $) NIL) (($ (-570)) 37) (($ |#1|) 27 (|has| |#1| (-174))) (($ |#2|) 34) (($ (-413 (-570))) 139 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562)))) (-1864 ((|#1| $ (-413 (-570))) 107)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) 127 T CONST)) (-2289 ((|#1| $) 106)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) 204 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 180 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) 200 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 176 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 208 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 184 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-413 (-570))) NIL (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 210 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 186 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 206 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 182 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 202 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 178 (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 21 T CONST)) (-1876 (($) 17 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) 72)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) 100 (|has| |#1| (-368)))) (-3114 (($ $) 142) (($ $ $) 78)) (-3104 (($ $ $) 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|)
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 11)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) NIL (|has| |#1| (-562)))) (-1447 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3416 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2887 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-4364 (($ $) NIL (|has| |#1| (-368)))) (-1652 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3473 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2866 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4107 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-4380 (((-3 (-1241 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1269 |#1| |#2| |#3|) "failed") $) 22)) (-3216 (((-1241 |#1| |#2| |#3|) $) NIL) (((-1269 |#1| |#2| |#3|) $) NIL)) (-2506 (($ $ $) NIL (|has| |#1| (-368)))) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-1457 (((-413 (-570)) $) 69)) (-2518 (($ $ $) NIL (|has| |#1| (-368)))) (-1852 (($ (-413 (-570)) (-1241 |#1| |#2| |#3|)) NIL)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-3618 (((-112) $) NIL (|has| |#1| (-368)))) (-2379 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4346 (((-112) $) NIL)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-413 (-570))) 30) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-2789 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1899 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-2247 (((-1241 |#1| |#2| |#3|) $) 72)) (-1547 (((-3 (-1241 |#1| |#2| |#3|) "failed") $) NIL)) (-1838 (((-1241 |#1| |#2| |#3|) $) NIL)) (-1988 (((-1168) $) NIL)) (-1877 (($ $) NIL (|has| |#1| (-368)))) (-2898 (($ $) 39 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-3577 (((-1129) $) NIL)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1942 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3801 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1590 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) NIL (|has| |#1| (-368)))) (-2431 (($ $ (-413 (-570))) NIL)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3132 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2142 (((-777) $) NIL (|has| |#1| (-368)))) (-1941 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) NIL (|has| |#1| (-368)))) (-3547 (($ $ (-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)) (-2130 (((-413 (-570)) $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) NIL)) (-3799 (((-868) $) 107) (($ (-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)))) (-2249 ((|#1| $ (-413 (-570))) NIL)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2288 ((|#1| $) 12)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-413 (-570))) 74 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 32 T CONST)) (-1875 (($) 26 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1262))
-((-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1262 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2898 (*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 -3547 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 37)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL)) (-3074 (($ $) NIL)) (-3475 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-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)) (-3216 (((-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)) (-1956 (($ $) 41)) (-2875 (((-3 $ "failed") $) 27)) (-3988 (($ $) NIL (|has| (-1262 |#2| |#3| |#4|) (-458)))) (-3720 (($ $ (-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|) $) NIL)) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) 11)) (-2359 (((-112) $) NIL)) (-3912 (($ (-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) 25)) (-2575 (((-323 |#2| |#3| |#4|) $) NIL)) (-1918 (($ (-1 (-323 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) $) NIL)) (-1356 (($ (-1 (-1262 |#2| |#3| |#4|) (-1262 |#2| |#3| |#4|)) $) NIL)) (-1901 (((-3 (-849 |#2|) "failed") $) 90)) (-1915 (($ $) NIL)) (-1927 (((-1262 |#2| |#3| |#4|) $) 20)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1886 (((-112) $) NIL)) (-1898 (((-1262 |#2| |#3| |#4|) $) NIL)) (-2547 (((-3 $ "failed") $ (-1262 |#2| |#3| |#4|)) NIL (|has| (-1262 |#2| |#3| |#4|) (-562))) (((-3 $ "failed") $ $) NIL)) (-2688 (((-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)) (-2130 (((-323 |#2| |#3| |#4|) $) 17)) (-1848 (((-1262 |#2| |#3| |#4|) $) NIL (|has| (-1262 |#2| |#3| |#4|) (-458)))) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ (-1262 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL (-2892 (|has| (-1262 |#2| |#3| |#4|) (-38 (-413 (-570)))) (|has| (-1262 |#2| |#3| |#4|) (-1047 (-413 (-570))))))) (-2186 (((-650 (-1262 |#2| |#3| |#4|)) $) NIL)) (-2249 (((-1262 |#2| |#3| |#4|) $ (-323 |#2| |#3| |#4|)) NIL)) (-3532 (((-3 $ "failed") $) NIL (|has| (-1262 |#2| |#3| |#4|) (-146)))) (-3499 (((-777)) NIL T CONST)) (-4247 (($ $ $ (-777)) NIL (|has| (-1262 |#2| |#3| |#4|) (-174)))) (-2335 (((-112) $ $) NIL)) (-2029 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ (-1262 |#2| |#3| |#4|)) NIL (|has| (-1262 |#2| |#3| |#4|) (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1901 ((-3 (-849 |#2|) "failed") $)) (-15 -2688 ((-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))
-((-1901 (*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))) (-2688 (*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 -1901 ((-3 (-849 |#2|) "failed") $)) (-15 -2688 ((-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") $))))
-((-2308 ((|#2| $) 34)) (-2698 ((|#2| $) 18)) (-1602 (($ $) 50)) (-4014 (($ $ (-570)) 82)) (-4302 (((-112) $ (-777)) 46)) (-2988 ((|#2| $ |#2|) 79)) (-2363 ((|#2| $ |#2|) 75)) (-3932 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 68) (($ $ "rest" $) 72) ((|#2| $ "last" |#2|) 70)) (-2162 (($ $ (-650 $)) 78)) (-2686 ((|#2| $) 17)) (-3555 (($ $) NIL) (($ $ (-777)) 56)) (-3880 (((-650 $) $) 31)) (-2439 (((-112) $ $) 66)) (-2929 (((-112) $ (-777)) 45)) (-3231 (((-112) $ (-777)) 43)) (-2606 (((-112) $) 33)) (-1769 ((|#2| $) 25) (($ $ (-777)) 61)) (-1941 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-3817 (((-112) $) 23)) (-4366 (($ $) 53)) (-4063 (($ $) 83)) (-2264 (((-777) $) 55)) (-1839 (($ $) 54)) (-2584 (($ $ $) 74) (($ |#2| $) NIL)) (-3397 (((-650 $) $) 32)) (-3022 (((-112) $ $) 64)) (-2569 (((-777) $) 49)))
-(((-1264 |#1| |#2|) (-10 -8 (-15 -4014 (|#1| |#1| (-570))) (-15 -3932 (|#2| |#1| "last" |#2|)) (-15 -2363 (|#2| |#1| |#2|)) (-15 -3932 (|#1| |#1| "rest" |#1|)) (-15 -3932 (|#2| |#1| "first" |#2|)) (-15 -4063 (|#1| |#1|)) (-15 -4366 (|#1| |#1|)) (-15 -2264 ((-777) |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -2698 (|#2| |#1|)) (-15 -2686 (|#2| |#1|)) (-15 -1602 (|#1| |#1|)) (-15 -1769 (|#1| |#1| (-777))) (-15 -1941 (|#2| |#1| "last")) (-15 -1769 (|#2| |#1|)) (-15 -3555 (|#1| |#1| (-777))) (-15 -1941 (|#1| |#1| "rest")) (-15 -3555 (|#1| |#1|)) (-15 -1941 (|#2| |#1| "first")) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#1|)) (-15 -2988 (|#2| |#1| |#2|)) (-15 -3932 (|#2| |#1| "value" |#2|)) (-15 -2162 (|#1| |#1| (-650 |#1|))) (-15 -2439 ((-112) |#1| |#1|)) (-15 -3817 ((-112) |#1|)) (-15 -1941 (|#2| |#1| "value")) (-15 -2308 (|#2| |#1|)) (-15 -2606 ((-112) |#1|)) (-15 -3880 ((-650 |#1|) |#1|)) (-15 -3397 ((-650 |#1|) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -2569 ((-777) |#1|)) (-15 -4302 ((-112) |#1| (-777))) (-15 -2929 ((-112) |#1| (-777))) (-15 -3231 ((-112) |#1| (-777)))) (-1265 |#2|) (-1227)) (T -1264))
-NIL
-(-10 -8 (-15 -4014 (|#1| |#1| (-570))) (-15 -3932 (|#2| |#1| "last" |#2|)) (-15 -2363 (|#2| |#1| |#2|)) (-15 -3932 (|#1| |#1| "rest" |#1|)) (-15 -3932 (|#2| |#1| "first" |#2|)) (-15 -4063 (|#1| |#1|)) (-15 -4366 (|#1| |#1|)) (-15 -2264 ((-777) |#1|)) (-15 -1839 (|#1| |#1|)) (-15 -2698 (|#2| |#1|)) (-15 -2686 (|#2| |#1|)) (-15 -1602 (|#1| |#1|)) (-15 -1769 (|#1| |#1| (-777))) (-15 -1941 (|#2| |#1| "last")) (-15 -1769 (|#2| |#1|)) (-15 -3555 (|#1| |#1| (-777))) (-15 -1941 (|#1| |#1| "rest")) (-15 -3555 (|#1| |#1|)) (-15 -1941 (|#2| |#1| "first")) (-15 -2584 (|#1| |#2| |#1|)) (-15 -2584 (|#1| |#1| |#1|)) (-15 -2988 (|#2| |#1| |#2|)) (-15 -3932 (|#2| |#1| "value" |#2|)) (-15 -2162 (|#1| |#1| (-650 |#1|))) (-15 -2439 ((-112) |#1| |#1|)) (-15 -3817 ((-112) |#1|)) (-15 -1941 (|#2| |#1| "value")) (-15 -2308 (|#2| |#1|)) (-15 -2606 ((-112) |#1|)) (-15 -3880 ((-650 |#1|) |#1|)) (-15 -3397 ((-650 |#1|) |#1|)) (-15 -3022 ((-112) |#1| |#1|)) (-15 -2569 ((-777) |#1|)) (-15 -4302 ((-112) |#1| (-777))) (-15 -2929 ((-112) |#1| (-777))) (-15 -3231 ((-112) |#1| (-777))))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-2698 ((|#1| $) 66)) (-1602 (($ $) 68)) (-4014 (($ $ (-570)) 53 (|has| $ (-6 -4450)))) (-4302 (((-112) $ (-777)) 8)) (-2988 ((|#1| $ |#1|) 40 (|has| $ (-6 -4450)))) (-3986 (($ $ $) 57 (|has| $ (-6 -4450)))) (-2363 ((|#1| $ |#1|) 55 (|has| $ (-6 -4450)))) (-2869 ((|#1| $ |#1|) 59 (|has| $ (-6 -4450)))) (-3932 ((|#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)))) (-2162 (($ $ (-650 $)) 42 (|has| $ (-6 -4450)))) (-2686 ((|#1| $) 67)) (-1705 (($) 7 T CONST)) (-3555 (($ $) 74) (($ $ (-777)) 72)) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-3880 (((-650 $) $) 51)) (-2439 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2929 (((-112) $ (-777)) 9)) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36)) (-3231 (((-112) $ (-777)) 10)) (-2403 (((-650 |#1|) $) 46)) (-2606 (((-112) $) 50)) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1769 ((|#1| $) 71) (($ $ (-777)) 69)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 77) (($ $ (-777)) 75)) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70)) (-2738 (((-570) $ $) 45)) (-3817 (((-112) $) 47)) (-4366 (($ $) 63)) (-4063 (($ $) 60 (|has| $ (-6 -4450)))) (-2264 (((-777) $) 64)) (-1839 (($ $) 65)) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-3951 (($ $) 13)) (-3276 (($ $ $) 62 (|has| $ (-6 -4450))) (($ $ |#1|) 61 (|has| $ (-6 -4450)))) (-2584 (($ $ $) 79) (($ |#1| $) 78)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3397 (((-650 $) $) 52)) (-3746 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 11)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) NIL (|has| |#1| (-562)))) (-1622 (($ $ (-413 (-570))) NIL) (($ $ (-413 (-570)) (-413 (-570))) NIL)) (-3257 (((-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|))) $) NIL)) (-2890 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-4310 (($ $) NIL (|has| |#1| (-368)))) (-3871 (((-424 $) $) NIL (|has| |#1| (-368)))) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3765 (((-112) $ $) NIL (|has| |#1| (-368)))) (-2869 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-777) (-1166 (-2 (|:| |k| (-413 (-570))) (|:| |c| |#1|)))) NIL)) (-4109 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-4383 (((-3 (-1241 |#1| |#2| |#3|) "failed") $) 19) (((-3 (-1269 |#1| |#2| |#3|) "failed") $) 22)) (-3220 (((-1241 |#1| |#2| |#3|) $) NIL) (((-1269 |#1| |#2| |#3|) $) NIL)) (-2504 (($ $ $) NIL (|has| |#1| (-368)))) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2573 (((-413 (-570)) $) 69)) (-2519 (($ $ $) NIL (|has| |#1| (-368)))) (-1853 (($ (-413 (-570)) (-1241 |#1| |#2| |#3|)) NIL)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) NIL (|has| |#1| (-368)))) (-1336 (((-112) $) NIL (|has| |#1| (-368)))) (-2646 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-413 (-570)) $) NIL) (((-413 (-570)) $ (-413 (-570))) NIL)) (-4139 (((-112) $) NIL)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) NIL) (($ $ (-413 (-570))) NIL)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-413 (-570))) 30) (($ $ (-1091) (-413 (-570))) NIL) (($ $ (-650 (-1091)) (-650 (-413 (-570)))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2792 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-1901 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-1838 (((-1241 |#1| |#2| |#3|) $) 72)) (-2224 (((-3 (-1241 |#1| |#2| |#3|) "failed") $) NIL)) (-1839 (((-1241 |#1| |#2| |#3|) $) NIL)) (-3989 (((-1168) $) NIL)) (-1878 (($ $) NIL (|has| |#1| (-368)))) (-2023 (($ $) 39 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) NIL (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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)))))) (-3580 (((-1129) $) NIL)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) NIL (|has| |#1| (-368)))) (-1939 (($ (-650 $)) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3804 (((-424 $) $) NIL (|has| |#1| (-368)))) (-1339 (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) NIL (|has| |#1| (-368))) (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) NIL (|has| |#1| (-368)))) (-3152 (($ $ (-413 (-570))) NIL)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-3677 (((-3 (-650 $) "failed") (-650 $) $) NIL (|has| |#1| (-368)))) (-4389 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) NIL (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))))) (-2006 (((-777) $) NIL (|has| |#1| (-368)))) (-1942 ((|#1| $ (-413 (-570))) NIL) (($ $ $) NIL (|has| (-413 (-570)) (-1121)))) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) NIL (|has| |#1| (-368)))) (-3550 (($ $ (-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)) (-3079 (((-413 (-570)) $) NIL)) (-4120 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) NIL)) (-3802 (((-868) $) 107) (($ (-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)))) (-1864 ((|#1| $ (-413 (-570))) NIL)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-2289 ((|#1| $) 12)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-413 (-570))) 74 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-413 (-570))))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 32 T CONST)) (-1876 (($) 26 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368))) (($ $ $) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1262))
+((-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1262 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-2023 (*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 -3550 ($ $ (-1273 |#2|))) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 37)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL)) (-4306 (($ $) NIL)) (-2617 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-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)) (-3220 (((-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)) (-1954 (($ $) 41)) (-1929 (((-3 $ "failed") $) 27)) (-1944 (($ $) NIL (|has| (-1262 |#2| |#3| |#4|) (-458)))) (-4243 (($ $ (-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|) $) NIL)) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) 11)) (-3633 (((-112) $) NIL)) (-3915 (($ (-1262 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) 25)) (-3970 (((-323 |#2| |#3| |#4|) $) NIL)) (-1414 (($ (-1 (-323 |#2| |#3| |#4|) (-323 |#2| |#3| |#4|)) $) NIL)) (-1357 (($ (-1 (-1262 |#2| |#3| |#4|) (-1262 |#2| |#3| |#4|)) $) NIL)) (-4349 (((-3 (-849 |#2|) "failed") $) 90)) (-1914 (($ $) NIL)) (-1928 (((-1262 |#2| |#3| |#4|) $) 20)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1887 (((-112) $) NIL)) (-1900 (((-1262 |#2| |#3| |#4|) $) NIL)) (-2548 (((-3 $ "failed") $ (-1262 |#2| |#3| |#4|)) NIL (|has| (-1262 |#2| |#3| |#4|) (-562))) (((-3 $ "failed") $ $) NIL)) (-2674 (((-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)) (-3079 (((-323 |#2| |#3| |#4|) $) 17)) (-2077 (((-1262 |#2| |#3| |#4|) $) NIL (|has| (-1262 |#2| |#3| |#4|) (-458)))) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ (-1262 |#2| |#3| |#4|)) NIL) (($ $) NIL) (($ (-413 (-570))) NIL (-2895 (|has| (-1262 |#2| |#3| |#4|) (-38 (-413 (-570)))) (|has| (-1262 |#2| |#3| |#4|) (-1047 (-413 (-570))))))) (-2459 (((-650 (-1262 |#2| |#3| |#4|)) $) NIL)) (-1864 (((-1262 |#2| |#3| |#4|) $ (-323 |#2| |#3| |#4|)) NIL)) (-3132 (((-3 $ "failed") $) NIL (|has| (-1262 |#2| |#3| |#4|) (-146)))) (-2851 (((-777)) NIL T CONST)) (-2648 (($ $ $ (-777)) NIL (|has| (-1262 |#2| |#3| |#4|) (-174)))) (-3359 (((-112) $ $) NIL)) (-3228 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ (-1262 |#2| |#3| |#4|)) NIL (|has| (-1262 |#2| |#3| |#4|) (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -4349 ((-3 (-849 |#2|) "failed") $)) (-15 -2674 ((-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))
+((-4349 (*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))) (-2674 (*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 -4349 ((-3 (-849 |#2|) "failed") $)) (-15 -2674 ((-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") $))))
+((-2308 ((|#2| $) 34)) (-2701 ((|#2| $) 18)) (-1603 (($ $) 50)) (-4025 (($ $ (-570)) 82)) (-1932 (((-112) $ (-777)) 46)) (-1647 ((|#2| $ |#2|) 79)) (-3671 ((|#2| $ |#2|) 75)) (-3935 ((|#2| $ "value" |#2|) NIL) ((|#2| $ "first" |#2|) 68) (($ $ "rest" $) 72) ((|#2| $ "last" |#2|) 70)) (-2204 (($ $ (-650 $)) 78)) (-2688 ((|#2| $) 17)) (-3558 (($ $) NIL) (($ $ (-777)) 56)) (-2119 (((-650 $) $) 31)) (-2045 (((-112) $ $) 66)) (-2317 (((-112) $ (-777)) 45)) (-2193 (((-112) $ (-777)) 43)) (-4244 (((-112) $) 33)) (-1770 ((|#2| $) 25) (($ $ (-777)) 61)) (-1942 ((|#2| $ "value") NIL) ((|#2| $ "first") 10) (($ $ "rest") 16) ((|#2| $ "last") 13)) (-2759 (((-112) $) 23)) (-4332 (($ $) 53)) (-3305 (($ $) 83)) (-3853 (((-777) $) 55)) (-1991 (($ $) 54)) (-2585 (($ $ $) 74) (($ |#2| $) NIL)) (-4259 (((-650 $) $) 32)) (-3025 (((-112) $ $) 64)) (-2570 (((-777) $) 49)))
+(((-1264 |#1| |#2|) (-10 -8 (-15 -4025 (|#1| |#1| (-570))) (-15 -3935 (|#2| |#1| "last" |#2|)) (-15 -3671 (|#2| |#1| |#2|)) (-15 -3935 (|#1| |#1| "rest" |#1|)) (-15 -3935 (|#2| |#1| "first" |#2|)) (-15 -3305 (|#1| |#1|)) (-15 -4332 (|#1| |#1|)) (-15 -3853 ((-777) |#1|)) (-15 -1991 (|#1| |#1|)) (-15 -2701 (|#2| |#1|)) (-15 -2688 (|#2| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -1770 (|#1| |#1| (-777))) (-15 -1942 (|#2| |#1| "last")) (-15 -1770 (|#2| |#1|)) (-15 -3558 (|#1| |#1| (-777))) (-15 -1942 (|#1| |#1| "rest")) (-15 -3558 (|#1| |#1|)) (-15 -1942 (|#2| |#1| "first")) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#1|)) (-15 -1647 (|#2| |#1| |#2|)) (-15 -3935 (|#2| |#1| "value" |#2|)) (-15 -2204 (|#1| |#1| (-650 |#1|))) (-15 -2045 ((-112) |#1| |#1|)) (-15 -2759 ((-112) |#1|)) (-15 -1942 (|#2| |#1| "value")) (-15 -2308 (|#2| |#1|)) (-15 -4244 ((-112) |#1|)) (-15 -2119 ((-650 |#1|) |#1|)) (-15 -4259 ((-650 |#1|) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -2570 ((-777) |#1|)) (-15 -1932 ((-112) |#1| (-777))) (-15 -2317 ((-112) |#1| (-777))) (-15 -2193 ((-112) |#1| (-777)))) (-1265 |#2|) (-1227)) (T -1264))
+NIL
+(-10 -8 (-15 -4025 (|#1| |#1| (-570))) (-15 -3935 (|#2| |#1| "last" |#2|)) (-15 -3671 (|#2| |#1| |#2|)) (-15 -3935 (|#1| |#1| "rest" |#1|)) (-15 -3935 (|#2| |#1| "first" |#2|)) (-15 -3305 (|#1| |#1|)) (-15 -4332 (|#1| |#1|)) (-15 -3853 ((-777) |#1|)) (-15 -1991 (|#1| |#1|)) (-15 -2701 (|#2| |#1|)) (-15 -2688 (|#2| |#1|)) (-15 -1603 (|#1| |#1|)) (-15 -1770 (|#1| |#1| (-777))) (-15 -1942 (|#2| |#1| "last")) (-15 -1770 (|#2| |#1|)) (-15 -3558 (|#1| |#1| (-777))) (-15 -1942 (|#1| |#1| "rest")) (-15 -3558 (|#1| |#1|)) (-15 -1942 (|#2| |#1| "first")) (-15 -2585 (|#1| |#2| |#1|)) (-15 -2585 (|#1| |#1| |#1|)) (-15 -1647 (|#2| |#1| |#2|)) (-15 -3935 (|#2| |#1| "value" |#2|)) (-15 -2204 (|#1| |#1| (-650 |#1|))) (-15 -2045 ((-112) |#1| |#1|)) (-15 -2759 ((-112) |#1|)) (-15 -1942 (|#2| |#1| "value")) (-15 -2308 (|#2| |#1|)) (-15 -4244 ((-112) |#1|)) (-15 -2119 ((-650 |#1|) |#1|)) (-15 -4259 ((-650 |#1|) |#1|)) (-15 -3025 ((-112) |#1| |#1|)) (-15 -2570 ((-777) |#1|)) (-15 -1932 ((-112) |#1| (-777))) (-15 -2317 ((-112) |#1| (-777))) (-15 -2193 ((-112) |#1| (-777))))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-2308 ((|#1| $) 49)) (-2701 ((|#1| $) 66)) (-1603 (($ $) 68)) (-4025 (($ $ (-570)) 53 (|has| $ (-6 -4453)))) (-1932 (((-112) $ (-777)) 8)) (-1647 ((|#1| $ |#1|) 40 (|has| $ (-6 -4453)))) (-1917 (($ $ $) 57 (|has| $ (-6 -4453)))) (-3671 ((|#1| $ |#1|) 55 (|has| $ (-6 -4453)))) (-1854 ((|#1| $ |#1|) 59 (|has| $ (-6 -4453)))) (-3935 ((|#1| $ "value" |#1|) 41 (|has| $ (-6 -4453))) ((|#1| $ "first" |#1|) 58 (|has| $ (-6 -4453))) (($ $ "rest" $) 56 (|has| $ (-6 -4453))) ((|#1| $ "last" |#1|) 54 (|has| $ (-6 -4453)))) (-2204 (($ $ (-650 $)) 42 (|has| $ (-6 -4453)))) (-2688 ((|#1| $) 67)) (-3195 (($) 7 T CONST)) (-3558 (($ $) 74) (($ $ (-777)) 72)) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-2119 (((-650 $) $) 51)) (-2045 (((-112) $ $) 43 (|has| |#1| (-1109)))) (-2317 (((-112) $ (-777)) 9)) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36)) (-2193 (((-112) $ (-777)) 10)) (-2404 (((-650 |#1|) $) 46)) (-4244 (((-112) $) 50)) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-1770 ((|#1| $) 71) (($ $ (-777)) 69)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 77) (($ $ (-777)) 75)) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ "value") 48) ((|#1| $ "first") 76) (($ $ "rest") 73) ((|#1| $ "last") 70)) (-3108 (((-570) $ $) 45)) (-2759 (((-112) $) 47)) (-4332 (($ $) 63)) (-3305 (($ $) 60 (|has| $ (-6 -4453)))) (-3853 (((-777) $) 64)) (-1991 (($ $) 65)) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-3954 (($ $) 13)) (-1319 (($ $ $) 62 (|has| $ (-6 -4453))) (($ $ |#1|) 61 (|has| $ (-6 -4453)))) (-2585 (($ $ $) 79) (($ |#1| $) 78)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-4259 (((-650 $) $) 52)) (-3290 (((-112) $ $) 44 (|has| |#1| (-1109)))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1265 |#1|) (-141) (-1227)) (T -1265))
-((-2584 (*1 *1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2584 (*1 *1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3543 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3543 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-3555 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1941 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-3555 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-1769 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1941 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1769 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-1602 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2686 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2698 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1839 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2264 (*1 *2 *1) (-12 (-4 *1 (-1265 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-4366 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3276 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3276 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-4063 (*1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2869 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3932 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3986 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3932 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-2363 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3932 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-4014 (*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 -2584 ($ $ $)) (-15 -2584 ($ |t#1| $)) (-15 -3543 (|t#1| $)) (-15 -1941 (|t#1| $ "first")) (-15 -3543 ($ $ (-777))) (-15 -3555 ($ $)) (-15 -1941 ($ $ "rest")) (-15 -3555 ($ $ (-777))) (-15 -1769 (|t#1| $)) (-15 -1941 (|t#1| $ "last")) (-15 -1769 ($ $ (-777))) (-15 -1602 ($ $)) (-15 -2686 (|t#1| $)) (-15 -2698 (|t#1| $)) (-15 -1839 ($ $)) (-15 -2264 ((-777) $)) (-15 -4366 ($ $)) (IF (|has| $ (-6 -4450)) (PROGN (-15 -3276 ($ $ $)) (-15 -3276 ($ $ |t#1|)) (-15 -4063 ($ $)) (-15 -2869 (|t#1| $ |t#1|)) (-15 -3932 (|t#1| $ "first" |t#1|)) (-15 -3986 ($ $ $)) (-15 -3932 ($ $ "rest" $)) (-15 -2363 (|t#1| $ |t#1|)) (-15 -3932 (|t#1| $ "last" |t#1|)) (-15 -4014 ($ $ (-570)))) |%noBranch|)))
-(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2892 (|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))
-((-1356 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
-(((-1266 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1356 (|#4| (-1 |#2| |#1|) |#3|))) (-1058) (-1058) (-1268 |#1|) (-1268 |#2|)) (T -1266))
-((-1356 (*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 -1356 (|#4| (-1 |#2| |#1|) |#3|)))
-((-3467 (((-112) $) 17)) (-2887 (($ $) 104)) (-2751 (($ $) 80)) (-2866 (($ $) 100)) (-2733 (($ $) 76)) (-4107 (($ $) 108)) (-2774 (($ $) 84)) (-2789 (($ $) 74)) (-4387 (($ $) 72)) (-4117 (($ $) 110)) (-2788 (($ $) 86)) (-2899 (($ $) 106)) (-2766 (($ $) 82)) (-2876 (($ $) 102)) (-2740 (($ $) 78)) (-3799 (((-868) $) 60) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-4154 (($ $) 116)) (-2825 (($ $) 92)) (-4129 (($ $) 112)) (-2801 (($ $) 88)) (-4176 (($ $) 120)) (-2845 (($ $) 96)) (-1578 (($ $) 122)) (-2855 (($ $) 98)) (-4163 (($ $) 118)) (-2835 (($ $) 94)) (-4140 (($ $) 114)) (-2814 (($ $) 90)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#2|) 64) (($ $ $) 67) (($ $ (-413 (-570))) 70)))
-(((-1267 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2751 (|#1| |#1|)) (-15 -2733 (|#1| |#1|)) (-15 -2774 (|#1| |#1|)) (-15 -2788 (|#1| |#1|)) (-15 -2766 (|#1| |#1|)) (-15 -2740 (|#1| |#1|)) (-15 -2814 (|#1| |#1|)) (-15 -2835 (|#1| |#1|)) (-15 -2855 (|#1| |#1|)) (-15 -2845 (|#1| |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)) (-15 -2876 (|#1| |#1|)) (-15 -2899 (|#1| |#1|)) (-15 -4117 (|#1| |#1|)) (-15 -4107 (|#1| |#1|)) (-15 -2866 (|#1| |#1|)) (-15 -2887 (|#1| |#1|)) (-15 -4140 (|#1| |#1|)) (-15 -4163 (|#1| |#1|)) (-15 -1578 (|#1| |#1|)) (-15 -4176 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4154 (|#1| |#1|)) (-15 -2789 (|#1| |#1|)) (-15 -4387 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3467 ((-112) |#1|)) (-15 -3799 ((-868) |#1|))) (-1268 |#2|) (-1058)) (T -1267))
-NIL
-(-10 -8 (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2751 (|#1| |#1|)) (-15 -2733 (|#1| |#1|)) (-15 -2774 (|#1| |#1|)) (-15 -2788 (|#1| |#1|)) (-15 -2766 (|#1| |#1|)) (-15 -2740 (|#1| |#1|)) (-15 -2814 (|#1| |#1|)) (-15 -2835 (|#1| |#1|)) (-15 -2855 (|#1| |#1|)) (-15 -2845 (|#1| |#1|)) (-15 -2801 (|#1| |#1|)) (-15 -2825 (|#1| |#1|)) (-15 -2876 (|#1| |#1|)) (-15 -2899 (|#1| |#1|)) (-15 -4117 (|#1| |#1|)) (-15 -4107 (|#1| |#1|)) (-15 -2866 (|#1| |#1|)) (-15 -2887 (|#1| |#1|)) (-15 -4140 (|#1| |#1|)) (-15 -4163 (|#1| |#1|)) (-15 -1578 (|#1| |#1|)) (-15 -4176 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4154 (|#1| |#1|)) (-15 -2789 (|#1| |#1|)) (-15 -4387 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3799 (|#1| |#2|)) (-15 -3799 (|#1| |#1|)) (-15 -3799 (|#1| (-413 (-570)))) (-15 -3799 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3467 ((-112) |#1|)) (-15 -3799 ((-868) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2798 (((-1186) $) 115)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-3074 (($ $) 64 (|has| |#1| (-562)))) (-3475 (((-112) $) 66 (|has| |#1| (-562)))) (-1447 (($ $ (-777)) 110) (($ $ (-777) (-777)) 109)) (-3416 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 117)) (-2887 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) 20)) (-3814 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2866 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 167) (($ (-1166 |#1|)) 165)) (-4107 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) 18 T CONST)) (-1956 (($ $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-3914 (($ $) 164)) (-3372 (((-959 |#1|) $ (-777)) 162) (((-959 |#1|) $ (-777) (-777)) 161)) (-2379 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-777) $) 112) (((-777) $ (-777)) 111)) (-4346 (((-112) $) 35)) (-2923 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-2362 (($ $ (-928)) 113)) (-1712 (($ (-1 |#1| (-570)) $) 163)) (-2359 (((-112) $) 74)) (-3912 (($ |#1| (-777)) 73) (($ $ (-1091) (-777)) 88) (($ $ (-650 (-1091)) (-650 (-777))) 87)) (-1356 (($ (-1 |#1| |#1|) $) 75)) (-2789 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) 77)) (-1927 ((|#1| $) 78)) (-1988 (((-1168) $) 10)) (-2898 (($ $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 158 (-2892 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3577 (((-1129) $) 11)) (-2431 (($ $ (-777)) 107)) (-2547 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-4387 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1770 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1941 ((|#1| $ (-777)) 116) (($ $ $) 93 (|has| (-777) (-1121)))) (-3547 (($ $ (-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|))))) (-2130 (((-777) $) 76)) (-4117 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 84)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-2186 (((-1166 |#1|) $) 166)) (-2249 ((|#1| $ (-777)) 71)) (-3532 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-3499 (((-777)) 32 T CONST)) (-2288 ((|#1| $) 114)) (-2335 (((-112) $ $) 9)) (-4154 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-777)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 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)))))))
+((-2585 (*1 *1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2585 (*1 *1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3546 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 "first") (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3546 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-3558 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1942 (*1 *1 *1 *2) (-12 (-5 *2 "rest") (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-3558 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-1770 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1942 (*1 *2 *1 *3) (-12 (-5 *3 "last") (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1770 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-1603 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2688 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-2701 (*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1991 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3853 (*1 *2 *1) (-12 (-4 *1 (-1265 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))) (-4332 (*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1319 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1319 (*1 *1 *1 *2) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3305 (*1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1854 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3935 (*1 *2 *1 *3 *2) (-12 (-5 *3 "first") (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-1917 (*1 *1 *1 *1) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3935 (*1 *1 *1 *2 *1) (-12 (-5 *2 "rest") (|has| *1 (-6 -4453)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))) (-3671 (*1 *2 *1 *2) (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-3935 (*1 *2 *1 *3 *2) (-12 (-5 *3 "last") (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))) (-4025 (*1 *1 *1 *2) (-12 (-5 *2 (-570)) (|has| *1 (-6 -4453)) (-4 *1 (-1265 *3)) (-4 *3 (-1227)))))
+(-13 (-1019 |t#1|) (-10 -8 (-15 -2585 ($ $ $)) (-15 -2585 ($ |t#1| $)) (-15 -3546 (|t#1| $)) (-15 -1942 (|t#1| $ "first")) (-15 -3546 ($ $ (-777))) (-15 -3558 ($ $)) (-15 -1942 ($ $ "rest")) (-15 -3558 ($ $ (-777))) (-15 -1770 (|t#1| $)) (-15 -1942 (|t#1| $ "last")) (-15 -1770 ($ $ (-777))) (-15 -1603 ($ $)) (-15 -2688 (|t#1| $)) (-15 -2701 (|t#1| $)) (-15 -1991 ($ $)) (-15 -3853 ((-777) $)) (-15 -4332 ($ $)) (IF (|has| $ (-6 -4453)) (PROGN (-15 -1319 ($ $ $)) (-15 -1319 ($ $ |t#1|)) (-15 -3305 ($ $)) (-15 -1854 (|t#1| $ |t#1|)) (-15 -3935 (|t#1| $ "first" |t#1|)) (-15 -1917 ($ $ $)) (-15 -3935 ($ $ "rest" $)) (-15 -3671 (|t#1| $ |t#1|)) (-15 -3935 (|t#1| $ "last" |t#1|)) (-15 -4025 ($ $ (-570)))) |%noBranch|)))
+(((-34) . T) ((-102) |has| |#1| (-1109)) ((-619 (-868)) -2895 (|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))
+((-1357 ((|#4| (-1 |#2| |#1|) |#3|) 17)))
+(((-1266 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -1357 (|#4| (-1 |#2| |#1|) |#3|))) (-1058) (-1058) (-1268 |#1|) (-1268 |#2|)) (T -1266))
+((-1357 (*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 -1357 (|#4| (-1 |#2| |#1|) |#3|)))
+((-3721 (((-112) $) 17)) (-2890 (($ $) 104)) (-2755 (($ $) 80)) (-2869 (($ $) 100)) (-2736 (($ $) 76)) (-4109 (($ $) 108)) (-2777 (($ $) 84)) (-2792 (($ $) 74)) (-4389 (($ $) 72)) (-4120 (($ $) 110)) (-2791 (($ $) 86)) (-2902 (($ $) 106)) (-2768 (($ $) 82)) (-2879 (($ $) 102)) (-2743 (($ $) 78)) (-3802 (((-868) $) 60) (($ (-570)) NIL) (($ (-413 (-570))) NIL) (($ $) NIL) (($ |#2|) NIL)) (-4157 (($ $) 116)) (-2828 (($ $) 92)) (-4129 (($ $) 112)) (-2804 (($ $) 88)) (-4179 (($ $) 120)) (-2848 (($ $) 96)) (-1579 (($ $) 122)) (-2858 (($ $) 98)) (-4166 (($ $) 118)) (-2838 (($ $) 94)) (-4144 (($ $) 114)) (-2817 (($ $) 90)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#2|) 64) (($ $ $) 67) (($ $ (-413 (-570))) 70)))
+(((-1267 |#1| |#2|) (-10 -8 (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2755 (|#1| |#1|)) (-15 -2736 (|#1| |#1|)) (-15 -2777 (|#1| |#1|)) (-15 -2791 (|#1| |#1|)) (-15 -2768 (|#1| |#1|)) (-15 -2743 (|#1| |#1|)) (-15 -2817 (|#1| |#1|)) (-15 -2838 (|#1| |#1|)) (-15 -2858 (|#1| |#1|)) (-15 -2848 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2828 (|#1| |#1|)) (-15 -2879 (|#1| |#1|)) (-15 -2902 (|#1| |#1|)) (-15 -4120 (|#1| |#1|)) (-15 -4109 (|#1| |#1|)) (-15 -2869 (|#1| |#1|)) (-15 -2890 (|#1| |#1|)) (-15 -4144 (|#1| |#1|)) (-15 -4166 (|#1| |#1|)) (-15 -1579 (|#1| |#1|)) (-15 -4179 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4157 (|#1| |#1|)) (-15 -2792 (|#1| |#1|)) (-15 -4389 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3721 ((-112) |#1|)) (-15 -3802 ((-868) |#1|))) (-1268 |#2|) (-1058)) (T -1267))
+NIL
+(-10 -8 (-15 ** (|#1| |#1| (-413 (-570)))) (-15 -2755 (|#1| |#1|)) (-15 -2736 (|#1| |#1|)) (-15 -2777 (|#1| |#1|)) (-15 -2791 (|#1| |#1|)) (-15 -2768 (|#1| |#1|)) (-15 -2743 (|#1| |#1|)) (-15 -2817 (|#1| |#1|)) (-15 -2838 (|#1| |#1|)) (-15 -2858 (|#1| |#1|)) (-15 -2848 (|#1| |#1|)) (-15 -2804 (|#1| |#1|)) (-15 -2828 (|#1| |#1|)) (-15 -2879 (|#1| |#1|)) (-15 -2902 (|#1| |#1|)) (-15 -4120 (|#1| |#1|)) (-15 -4109 (|#1| |#1|)) (-15 -2869 (|#1| |#1|)) (-15 -2890 (|#1| |#1|)) (-15 -4144 (|#1| |#1|)) (-15 -4166 (|#1| |#1|)) (-15 -1579 (|#1| |#1|)) (-15 -4179 (|#1| |#1|)) (-15 -4129 (|#1| |#1|)) (-15 -4157 (|#1| |#1|)) (-15 -2792 (|#1| |#1|)) (-15 -4389 (|#1| |#1|)) (-15 ** (|#1| |#1| |#1|)) (-15 ** (|#1| |#1| |#2|)) (-15 -3802 (|#1| |#2|)) (-15 -3802 (|#1| |#1|)) (-15 -3802 (|#1| (-413 (-570)))) (-15 -3802 (|#1| (-570))) (-15 ** (|#1| |#1| (-777))) (-15 ** (|#1| |#1| (-928))) (-15 -3721 ((-112) |#1|)) (-15 -3802 ((-868) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1755 (((-650 (-1091)) $) 86)) (-2800 (((-1186) $) 115)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 63 (|has| |#1| (-562)))) (-4306 (($ $) 64 (|has| |#1| (-562)))) (-2617 (((-112) $) 66 (|has| |#1| (-562)))) (-1622 (($ $ (-777)) 110) (($ $ (-777) (-777)) 109)) (-3257 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 117)) (-2890 (($ $) 147 (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) 130 (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) 20)) (-3817 (($ $) 129 (|has| |#1| (-38 (-413 (-570)))))) (-2869 (($ $) 146 (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) 131 (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 167) (($ (-1166 |#1|)) 165)) (-4109 (($ $) 145 (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) 132 (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) 18 T CONST)) (-1954 (($ $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-2441 (($ $) 164)) (-3375 (((-959 |#1|) $ (-777)) 162) (((-959 |#1|) $ (-777) (-777)) 161)) (-2646 (((-112) $) 85)) (-1315 (($) 157 (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-777) $) 112) (((-777) $ (-777)) 111)) (-4139 (((-112) $) 35)) (-2252 (($ $ (-570)) 128 (|has| |#1| (-38 (-413 (-570)))))) (-3660 (($ $ (-928)) 113)) (-3240 (($ (-1 |#1| (-570)) $) 163)) (-3633 (((-112) $) 74)) (-3915 (($ |#1| (-777)) 73) (($ $ (-1091) (-777)) 88) (($ $ (-650 (-1091)) (-650 (-777))) 87)) (-1357 (($ (-1 |#1| |#1|) $) 75)) (-2792 (($ $) 154 (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) 77)) (-1928 ((|#1| $) 78)) (-3989 (((-1168) $) 10)) (-2023 (($ $) 159 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 158 (-2895 (-12 (|has| |#1| (-29 (-570))) (|has| |#1| (-966)) (|has| |#1| (-1212)) (|has| |#1| (-38 (-413 (-570))))) (-12 (|has| |#1| (-15 -1755 ((-650 (-1186)) |#1|))) (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-38 (-413 (-570)))))))) (-3580 (((-1129) $) 11)) (-3152 (($ $ (-777)) 107)) (-2548 (((-3 $ "failed") $ $) 62 (|has| |#1| (-562)))) (-4389 (($ $) 155 (|has| |#1| (-38 (-413 (-570)))))) (-1771 (((-1166 |#1|) $ |#1|) 106 (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1942 ((|#1| $ (-777)) 116) (($ $ $) 93 (|has| (-777) (-1121)))) (-3550 (($ $ (-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|))))) (-3079 (((-777) $) 76)) (-4120 (($ $) 144 (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) 133 (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) 143 (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) 134 (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) 142 (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) 135 (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 84)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ (-413 (-570))) 69 (|has| |#1| (-38 (-413 (-570))))) (($ $) 61 (|has| |#1| (-562))) (($ |#1|) 59 (|has| |#1| (-174)))) (-2459 (((-1166 |#1|) $) 166)) (-1864 ((|#1| $ (-777)) 71)) (-3132 (((-3 $ "failed") $) 60 (|has| |#1| (-146)))) (-2851 (((-777)) 32 T CONST)) (-2289 ((|#1| $) 114)) (-3359 (((-112) $ $) 9)) (-4157 (($ $) 153 (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) 141 (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) 65 (|has| |#1| (-562)))) (-4129 (($ $) 152 (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) 140 (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) 151 (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) 139 (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-777)) 108 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) 150 (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) 138 (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) 149 (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) 137 (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) 148 (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) 136 (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 70 (|has| |#1| (-368)))) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-3418 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-777)) (|:| |c| *3)))) (-4 *3 (-1058)) (-4 *1 (-1268 *3)))) (-2186 (*1 *2 *1) (-12 (-4 *1 (-1268 *3)) (-4 *3 (-1058)) (-5 *2 (-1166 *3)))) (-3418 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-4 *1 (-1268 *3)))) (-3914 (*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)))) (-1712 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1268 *3)) (-4 *3 (-1058)))) (-3372 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1268 *4)) (-4 *4 (-1058)) (-5 *2 (-959 *4)))) (-3372 (*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)))) (-2898 (*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-2898 (*1 *1 *1 *2) (-2892 (-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 -1755 ((-650 *2) *3))) (|has| *3 (-15 -2898 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
-(-13 (-1255 |t#1| (-777)) (-10 -8 (-15 -3418 ($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |t#1|))))) (-15 -2186 ((-1166 |t#1|) $)) (-15 -3418 ($ (-1166 |t#1|))) (-15 -3914 ($ $)) (-15 -1712 ($ (-1 |t#1| (-570)) $)) (-15 -3372 ((-959 |t#1|) $ (-777))) (-15 -3372 ((-959 |t#1|) $ (-777) (-777))) (IF (|has| |t#1| (-368)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -2898 ($ $)) (IF (|has| |t#1| (-15 -2898 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1755 ((-650 (-1186)) |t#1|))) (-15 -2898 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -2898 ($ $ (-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 $ $) -2892 (|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) -2892 (|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 $) -2892 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2892 (|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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2798 (((-1186) $) 90)) (-3568 (((-1250 |#2| |#1|) $ (-777)) 73)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-3074 (($ $) NIL (|has| |#1| (-562)))) (-3475 (((-112) $) 142 (|has| |#1| (-562)))) (-1447 (($ $ (-777)) 127) (($ $ (-777) (-777)) 130)) (-3416 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 43)) (-2887 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2751 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3990 (((-3 $ "failed") $ $) NIL)) (-3814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2866 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2733 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3418 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 52) (($ (-1166 |#1|)) NIL)) (-4107 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2774 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1705 (($) NIL T CONST)) (-2214 (($ $) 134)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3914 (($ $) 140)) (-3372 (((-959 |#1|) $ (-777)) 63) (((-959 |#1|) $ (-777) (-777)) 65)) (-2379 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4323 (((-777) $) NIL) (((-777) $ (-777)) NIL)) (-4346 (((-112) $) NIL)) (-2269 (($ $) 117)) (-2923 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3162 (($ (-570) (-570) $) 136)) (-2362 (($ $ (-928)) 139)) (-1712 (($ (-1 |#1| (-570)) $) 111)) (-2359 (((-112) $) NIL)) (-3912 (($ |#1| (-777)) 16) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1356 (($ (-1 |#1| |#1|) $) 98)) (-2789 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1915 (($ $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-2227 (($ $) 115)) (-1822 (($ $) 113)) (-3363 (($ (-570) (-570) $) 138)) (-2898 (($ $) 150 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 156 (-2892 (-12 (|has| |#1| (-15 -2898 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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|)) 151 (|has| |#1| (-38 (-413 (-570)))))) (-3577 (((-1129) $) NIL)) (-4193 (($ $ (-570) (-570)) 121)) (-2431 (($ $ (-777)) 123)) (-2547 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4387 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3877 (($ $) 119)) (-1770 (((-1166 |#1|) $ |#1|) 100 (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1941 ((|#1| $ (-777)) 95) (($ $ $) 132 (|has| (-777) (-1121)))) (-3547 (($ $ (-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)) 108 (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 102 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $ (-1273 |#2|)) 103)) (-2130 (((-777) $) NIL)) (-4117 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2788 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2899 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2766 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2876 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2740 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2853 (($ $) 125)) (-3799 (((-868) $) NIL) (($ (-570)) 26) (($ (-413 (-570))) 148 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 25 (|has| |#1| (-174))) (($ (-1250 |#2| |#1|)) 81) (($ (-1273 |#2|)) 22)) (-2186 (((-1166 |#1|) $) NIL)) (-2249 ((|#1| $ (-777)) 94)) (-3532 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-3499 (((-777)) NIL T CONST)) (-2288 ((|#1| $) 91)) (-2335 (((-112) $ $) NIL)) (-4154 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2825 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2029 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2801 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4176 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2845 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3167 ((|#1| $ (-777)) 89 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3799 (|#1| (-1186))))))) (-1578 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2855 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4163 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2835 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4140 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2814 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1861 (($) 18 T CONST)) (-1875 (($) 13 T CONST)) (-2942 (($ $ (-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|))))) (-3022 (((-112) $ $) NIL)) (-3122 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) 107)) (-3101 (($ $ $) 20)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#1|) 145 (|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| $) 106) (($ (-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 -3799 ($ (-1250 |#2| |#1|))) (-15 -3568 ((-1250 |#2| |#1|) $ (-777))) (-15 -3799 ($ (-1273 |#2|))) (-15 -3547 ($ $ (-1273 |#2|))) (-15 -1822 ($ $)) (-15 -2227 ($ $)) (-15 -2269 ($ $)) (-15 -3877 ($ $)) (-15 -4193 ($ $ (-570) (-570))) (-15 -2214 ($ $)) (-15 -3162 ($ (-570) (-570) $)) (-15 -3363 ($ (-570) (-570) $)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1269))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-1250 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-1269 *3 *4 *5)))) (-3568 (*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))) (-3799 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3547 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-1822 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-2227 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-2269 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-3877 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-4193 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-2214 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-3162 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-3363 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-2898 (*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 -3799 ($ (-1250 |#2| |#1|))) (-15 -3568 ((-1250 |#2| |#1|) $ (-777))) (-15 -3799 ($ (-1273 |#2|))) (-15 -3547 ($ $ (-1273 |#2|))) (-15 -1822 ($ $)) (-15 -2227 ($ $)) (-15 -2269 ($ $)) (-15 -3877 ($ $)) (-15 -4193 ($ $ (-570) (-570))) (-15 -2214 ($ $)) (-15 -3162 ($ (-570) (-570) $)) (-15 -3363 ($ (-570) (-570) $)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2898 ($ $ (-1273 |#2|))) |%noBranch|)))
-((-4103 (((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|))) 24)) (-3255 (((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-3950 (((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|)) 13)) (-3797 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-3605 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-1631 ((|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|)) 60)) (-1753 (((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|)))) 66)) (-3566 ((|#2| |#2| |#2|) 43)))
-(((-1270 |#1| |#2|) (-10 -7 (-15 -3950 ((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|))) (-15 -3255 ((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -4103 ((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|)))) (-15 -3566 (|#2| |#2| |#2|)) (-15 -3605 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3797 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1631 (|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|))) (-15 -1753 ((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|)))))) (-38 (-413 (-570))) (-1268 |#1|)) (T -1270))
-((-1753 (*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)))) (-1631 (*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)))) (-3797 (*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)))))) (-3605 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2)) (-4 *4 (-38 (-413 (-570)))))) (-3566 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1270 *3 *2)) (-4 *2 (-1268 *3)))) (-4103 (*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)))) (-3255 (*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)))) (-3950 (*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 -3950 ((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|))) (-15 -3255 ((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -4103 ((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|)))) (-15 -3566 (|#2| |#2| |#2|)) (-15 -3605 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3797 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1631 (|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|))) (-15 -1753 ((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|))))))
-((-2776 ((|#2| |#4| (-777)) 31)) (-2318 ((|#4| |#2|) 26)) (-3291 ((|#4| (-413 |#2|)) 49 (|has| |#1| (-562)))) (-3705 (((-1 |#4| (-650 |#4|)) |#3|) 43)))
-(((-1271 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2318 (|#4| |#2|)) (-15 -2776 (|#2| |#4| (-777))) (-15 -3705 ((-1 |#4| (-650 |#4|)) |#3|)) (IF (|has| |#1| (-562)) (-15 -3291 (|#4| (-413 |#2|))) |%noBranch|)) (-1058) (-1253 |#1|) (-662 |#2|) (-1268 |#1|)) (T -1271))
-((-3291 (*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)))) (-3705 (*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)))) (-2776 (*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)))) (-2318 (*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 -2318 (|#4| |#2|)) (-15 -2776 (|#2| |#4| (-777))) (-15 -3705 ((-1 |#4| (-650 |#4|)) |#3|)) (IF (|has| |#1| (-562)) (-15 -3291 (|#4| (-413 |#2|))) |%noBranch|))
+((-3421 (*1 *1 *2) (-12 (-5 *2 (-1166 (-2 (|:| |k| (-777)) (|:| |c| *3)))) (-4 *3 (-1058)) (-4 *1 (-1268 *3)))) (-2459 (*1 *2 *1) (-12 (-4 *1 (-1268 *3)) (-4 *3 (-1058)) (-5 *2 (-1166 *3)))) (-3421 (*1 *1 *2) (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-4 *1 (-1268 *3)))) (-2441 (*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)))) (-3240 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 (-570))) (-4 *1 (-1268 *3)) (-4 *3 (-1058)))) (-3375 (*1 *2 *1 *3) (-12 (-5 *3 (-777)) (-4 *1 (-1268 *4)) (-4 *4 (-1058)) (-5 *2 (-959 *4)))) (-3375 (*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)))) (-2023 (*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)) (-4 *2 (-38 (-413 (-570)))))) (-2023 (*1 *1 *1 *2) (-2895 (-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 -1755 ((-650 *2) *3))) (|has| *3 (-15 -2023 (*3 *3 *2))) (-4 *3 (-38 (-413 (-570)))))))))
+(-13 (-1255 |t#1| (-777)) (-10 -8 (-15 -3421 ($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |t#1|))))) (-15 -2459 ((-1166 |t#1|) $)) (-15 -3421 ($ (-1166 |t#1|))) (-15 -2441 ($ $)) (-15 -3240 ($ (-1 |t#1| (-570)) $)) (-15 -3375 ((-959 |t#1|) $ (-777))) (-15 -3375 ((-959 |t#1|) $ (-777) (-777))) (IF (|has| |t#1| (-368)) (-15 ** ($ $ |t#1|)) |%noBranch|) (IF (|has| |t#1| (-38 (-413 (-570)))) (PROGN (-15 -2023 ($ $)) (IF (|has| |t#1| (-15 -2023 (|t#1| |t#1| (-1186)))) (IF (|has| |t#1| (-15 -1755 ((-650 (-1186)) |t#1|))) (-15 -2023 ($ $ (-1186))) |%noBranch|) |%noBranch|) (IF (|has| |t#1| (-1212)) (IF (|has| |t#1| (-966)) (IF (|has| |t#1| (-29 (-570))) (-15 -2023 ($ $ (-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 $ $) -2895 (|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) -2895 (|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 $) -2895 (|has| |#1| (-562)) (|has| |#1| (-174))) ((-1065 #1#) |has| |#1| (-38 (-413 (-570)))) ((-1065 |#1|) . T) ((-1065 $) -2895 (|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))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1755 (((-650 (-1091)) $) NIL)) (-2800 (((-1186) $) 90)) (-2244 (((-1250 |#2| |#1|) $ (-777)) 73)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) NIL (|has| |#1| (-562)))) (-4306 (($ $) NIL (|has| |#1| (-562)))) (-2617 (((-112) $) 142 (|has| |#1| (-562)))) (-1622 (($ $ (-777)) 127) (($ $ (-777) (-777)) 130)) (-3257 (((-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|))) $) 43)) (-2890 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2755 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1966 (((-3 $ "failed") $ $) NIL)) (-3817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2869 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2736 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3421 (($ (-1166 (-2 (|:| |k| (-777)) (|:| |c| |#1|)))) 52) (($ (-1166 |#1|)) NIL)) (-4109 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2777 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3195 (($) NIL T CONST)) (-1425 (($ $) 134)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-2441 (($ $) 140)) (-3375 (((-959 |#1|) $ (-777)) 63) (((-959 |#1|) $ (-777) (-777)) 65)) (-2646 (((-112) $) NIL)) (-1315 (($) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3941 (((-777) $) NIL) (((-777) $ (-777)) NIL)) (-4139 (((-112) $) NIL)) (-3893 (($ $) 117)) (-2252 (($ $ (-570)) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2757 (($ (-570) (-570) $) 136)) (-3660 (($ $ (-928)) 139)) (-3240 (($ (-1 |#1| (-570)) $) 111)) (-3633 (((-112) $) NIL)) (-3915 (($ |#1| (-777)) 16) (($ $ (-1091) (-777)) NIL) (($ $ (-650 (-1091)) (-650 (-777))) NIL)) (-1357 (($ (-1 |#1| |#1|) $) 98)) (-2792 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1914 (($ $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-1583 (($ $) 115)) (-3042 (($ $) 113)) (-4034 (($ (-570) (-570) $) 138)) (-2023 (($ $) 150 (|has| |#1| (-38 (-413 (-570))))) (($ $ (-1186)) 156 (-2895 (-12 (|has| |#1| (-15 -2023 (|#1| |#1| (-1186)))) (|has| |#1| (-15 -1755 ((-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|)) 151 (|has| |#1| (-38 (-413 (-570)))))) (-3580 (((-1129) $) NIL)) (-2147 (($ $ (-570) (-570)) 121)) (-3152 (($ $ (-777)) 123)) (-2548 (((-3 $ "failed") $ $) NIL (|has| |#1| (-562)))) (-4389 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2086 (($ $) 119)) (-1771 (((-1166 |#1|) $ |#1|) 100 (|has| |#1| (-15 ** (|#1| |#1| (-777)))))) (-1942 ((|#1| $ (-777)) 95) (($ $ $) 132 (|has| (-777) (-1121)))) (-3550 (($ $ (-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)) 108 (-12 (|has| |#1| (-15 * (|#1| (-777) |#1|))) (|has| |#1| (-907 (-1186))))) (($ $ (-777)) NIL (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $) 102 (|has| |#1| (-15 * (|#1| (-777) |#1|)))) (($ $ (-1273 |#2|)) 103)) (-3079 (((-777) $) NIL)) (-4120 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2791 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2902 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2768 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2879 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2743 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1682 (($ $) 125)) (-3802 (((-868) $) NIL) (($ (-570)) 26) (($ (-413 (-570))) 148 (|has| |#1| (-38 (-413 (-570))))) (($ $) NIL (|has| |#1| (-562))) (($ |#1|) 25 (|has| |#1| (-174))) (($ (-1250 |#2| |#1|)) 81) (($ (-1273 |#2|)) 22)) (-2459 (((-1166 |#1|) $) NIL)) (-1864 ((|#1| $ (-777)) 94)) (-3132 (((-3 $ "failed") $) NIL (|has| |#1| (-146)))) (-2851 (((-777)) NIL T CONST)) (-2289 ((|#1| $) 91)) (-3359 (((-112) $ $) NIL)) (-4157 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2828 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3228 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4129 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2804 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4179 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2848 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-3170 ((|#1| $ (-777)) 89 (-12 (|has| |#1| (-15 ** (|#1| |#1| (-777)))) (|has| |#1| (-15 -3802 (|#1| (-1186))))))) (-1579 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2858 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4166 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2838 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-4144 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-2817 (($ $) NIL (|has| |#1| (-38 (-413 (-570)))))) (-1862 (($) 18 T CONST)) (-1876 (($) 13 T CONST)) (-2945 (($ $ (-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|))))) (-3025 (((-112) $ $) NIL)) (-3125 (($ $ |#1|) NIL (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) 107)) (-3104 (($ $ $) 20)) (** (($ $ (-928)) NIL) (($ $ (-777)) NIL) (($ $ |#1|) 145 (|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| $) 106) (($ (-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 -3802 ($ (-1250 |#2| |#1|))) (-15 -2244 ((-1250 |#2| |#1|) $ (-777))) (-15 -3802 ($ (-1273 |#2|))) (-15 -3550 ($ $ (-1273 |#2|))) (-15 -3042 ($ $)) (-15 -1583 ($ $)) (-15 -3893 ($ $)) (-15 -2086 ($ $)) (-15 -2147 ($ $ (-570) (-570))) (-15 -1425 ($ $)) (-15 -2757 ($ (-570) (-570) $)) (-15 -4034 ($ (-570) (-570) $)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|))) (-1058) (-1186) |#1|) (T -1269))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-1250 *4 *3)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3) (-5 *1 (-1269 *3 *4 *5)))) (-2244 (*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))) (-3802 (*1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3550 (*1 *1 *1 *2) (-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *5 *3))) (-3042 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-1583 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-3893 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-2086 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-2147 (*1 *1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-1425 (*1 *1 *1) (-12 (-5 *1 (-1269 *2 *3 *4)) (-4 *2 (-1058)) (-14 *3 (-1186)) (-14 *4 *2))) (-2757 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-4034 (*1 *1 *2 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1269 *3 *4 *5)) (-4 *3 (-1058)) (-14 *4 (-1186)) (-14 *5 *3))) (-2023 (*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 -3802 ($ (-1250 |#2| |#1|))) (-15 -2244 ((-1250 |#2| |#1|) $ (-777))) (-15 -3802 ($ (-1273 |#2|))) (-15 -3550 ($ $ (-1273 |#2|))) (-15 -3042 ($ $)) (-15 -1583 ($ $)) (-15 -3893 ($ $)) (-15 -2086 ($ $)) (-15 -2147 ($ $ (-570) (-570))) (-15 -1425 ($ $)) (-15 -2757 ($ (-570) (-570) $)) (-15 -4034 ($ (-570) (-570) $)) (IF (|has| |#1| (-38 (-413 (-570)))) (-15 -2023 ($ $ (-1273 |#2|))) |%noBranch|)))
+((-3740 (((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|))) 24)) (-2449 (((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|)) 16)) (-1509 (((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|)) 13)) (-3783 ((|#2| (-1 |#2| |#2| |#2|) |#1| |#1|) 48)) (-2549 ((|#2| (-1 |#2| |#2|) |#1|) 46)) (-1808 ((|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|)) 60)) (-3649 (((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|)))) 66)) (-2233 ((|#2| |#2| |#2|) 43)))
+(((-1270 |#1| |#2|) (-10 -7 (-15 -1509 ((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|))) (-15 -2449 ((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -3740 ((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|)))) (-15 -2233 (|#2| |#2| |#2|)) (-15 -2549 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3783 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1808 (|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|))) (-15 -3649 ((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|)))))) (-38 (-413 (-570))) (-1268 |#1|)) (T -1270))
+((-3649 (*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)))) (-1808 (*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)))) (-3783 (*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)))))) (-2549 (*1 *2 *3 *4) (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2)) (-4 *4 (-38 (-413 (-570)))))) (-2233 (*1 *2 *2 *2) (-12 (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1270 *3 *2)) (-4 *2 (-1268 *3)))) (-3740 (*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)))) (-2449 (*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)))) (-1509 (*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 -1509 ((-1 (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2|))) (-15 -2449 ((-1 (-1166 |#1|) (-1166 |#1|) (-1166 |#1|)) (-1 |#2| |#2| |#2|))) (-15 -3740 ((-1 (-1166 |#1|) (-650 (-1166 |#1|))) (-1 |#2| (-650 |#2|)))) (-15 -2233 (|#2| |#2| |#2|)) (-15 -2549 (|#2| (-1 |#2| |#2|) |#1|)) (-15 -3783 (|#2| (-1 |#2| |#2| |#2|) |#1| |#1|)) (-15 -1808 (|#2| (-1 |#2| (-650 |#2|)) (-650 |#1|))) (-15 -3649 ((-650 |#2|) (-650 |#1|) (-650 (-1 |#2| (-650 |#2|))))))
+((-2282 ((|#2| |#4| (-777)) 31)) (-3196 ((|#4| |#2|) 26)) (-1507 ((|#4| (-413 |#2|)) 49 (|has| |#1| (-562)))) (-4095 (((-1 |#4| (-650 |#4|)) |#3|) 43)))
+(((-1271 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3196 (|#4| |#2|)) (-15 -2282 (|#2| |#4| (-777))) (-15 -4095 ((-1 |#4| (-650 |#4|)) |#3|)) (IF (|has| |#1| (-562)) (-15 -1507 (|#4| (-413 |#2|))) |%noBranch|)) (-1058) (-1253 |#1|) (-662 |#2|) (-1268 |#1|)) (T -1271))
+((-1507 (*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)))) (-4095 (*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)))) (-2282 (*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)))) (-3196 (*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 -3196 (|#4| |#2|)) (-15 -2282 (|#2| |#4| (-777))) (-15 -4095 ((-1 |#4| (-650 |#4|)) |#3|)) (IF (|has| |#1| (-562)) (-15 -1507 (|#4| (-413 |#2|))) |%noBranch|))
NIL
(((-1272) (-141)) (T -1272))
NIL
-(-13 (-10 -7 (-6 -3139)))
-((-2558 (((-112) $ $) NIL)) (-2798 (((-1186)) 12)) (-1988 (((-1168) $) 18)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 11) (((-1186) $) 8)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) 15)))
-(((-1273 |#1|) (-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -3799 ((-1186) $)) (-15 -2798 ((-1186))))) (-1186)) (T -1273))
-((-3799 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2))) (-2798 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2))))
-(-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -3799 ((-1186) $)) (-15 -2798 ((-1186)))))
-((-3504 (($ (-777)) 19)) (-1378 (((-695 |#2|) $ $) 41)) (-4202 ((|#2| $) 51)) (-1355 ((|#2| $) 50)) (-2609 ((|#2| $ $) 36)) (-3432 (($ $ $) 47)) (-3111 (($ $) 23) (($ $ $) 29)) (-3101 (($ $ $) 15)) (* (($ (-570) $) 26) (($ |#2| $) 32) (($ $ |#2|) 31)))
-(((-1274 |#1| |#2|) (-10 -8 (-15 -4202 (|#2| |#1|)) (-15 -1355 (|#2| |#1|)) (-15 -3432 (|#1| |#1| |#1|)) (-15 -1378 ((-695 |#2|) |#1| |#1|)) (-15 -2609 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 -3504 (|#1| (-777))) (-15 -3101 (|#1| |#1| |#1|))) (-1275 |#2|) (-1227)) (T -1274))
+(-13 (-10 -7 (-6 -3141)))
+((-2560 (((-112) $ $) NIL)) (-2800 (((-1186)) 12)) (-3989 (((-1168) $) 18)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 11) (((-1186) $) 8)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 15)))
+(((-1273 |#1|) (-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -3802 ((-1186) $)) (-15 -2800 ((-1186))))) (-1186)) (T -1273))
+((-3802 (*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2))) (-2800 (*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2))))
+(-13 (-1109) (-619 (-1186)) (-10 -8 (-15 -3802 ((-1186) $)) (-15 -2800 ((-1186)))))
+((-3507 (($ (-777)) 19)) (-1379 (((-695 |#2|) $ $) 41)) (-2234 ((|#2| $) 51)) (-1356 ((|#2| $) 50)) (-4266 ((|#2| $ $) 36)) (-3385 (($ $ $) 47)) (-3114 (($ $) 23) (($ $ $) 29)) (-3104 (($ $ $) 15)) (* (($ (-570) $) 26) (($ |#2| $) 32) (($ $ |#2|) 31)))
+(((-1274 |#1| |#2|) (-10 -8 (-15 -2234 (|#2| |#1|)) (-15 -1356 (|#2| |#1|)) (-15 -3385 (|#1| |#1| |#1|)) (-15 -1379 ((-695 |#2|) |#1| |#1|)) (-15 -4266 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 -3507 (|#1| (-777))) (-15 -3104 (|#1| |#1| |#1|))) (-1275 |#2|) (-1227)) (T -1274))
NIL
-(-10 -8 (-15 -4202 (|#2| |#1|)) (-15 -1355 (|#2| |#1|)) (-15 -3432 (|#1| |#1| |#1|)) (-15 -1378 ((-695 |#2|) |#1| |#1|)) (-15 -2609 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -3111 (|#1| |#1| |#1|)) (-15 -3111 (|#1| |#1|)) (-15 -3504 (|#1| (-777))) (-15 -3101 (|#1| |#1| |#1|)))
-((-2558 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3504 (($ (-777)) 113 (|has| |#1| (-23)))) (-3851 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4450))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4450))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) 8)) (-3932 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4449)))) (-1705 (($) 7 T CONST)) (-2844 (($ $) 91 (|has| $ (-6 -4450)))) (-2377 (($ $) 101)) (-3579 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1741 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) 52)) (-4027 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3627 (((-650 |#1|) $) 31 (|has| $ (-6 -4449)))) (-1378 (((-695 |#1|) $ $) 106 (|has| |#1| (-1058)))) (-4291 (($ (-777) |#1|) 70)) (-2929 (((-112) $ (-777)) 9)) (-2383 (((-570) $) 44 (|has| (-570) (-856)))) (-3466 (($ $ $) 88 (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) 30 (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-1460 (((-570) $) 45 (|has| (-570) (-856)))) (-2800 (($ $ $) 87 (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-4202 ((|#1| $) 103 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-3231 (((-112) $ (-777)) 10)) (-1355 ((|#1| $) 104 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-1988 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-1805 (((-650 (-570)) $) 47)) (-3939 (((-112) (-570) $) 48)) (-3577 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3543 ((|#1| $) 43 (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2147 (($ $ |#1|) 42 (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) 14)) (-1868 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) 49)) (-2017 (((-112) $) 11)) (-2380 (($) 12)) (-1941 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-2609 ((|#1| $ $) 107 (|has| |#1| (-1058)))) (-4326 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3432 (($ $ $) 105 (|has| |#1| (-1058)))) (-3584 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4449))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4449))))) (-2906 (($ $ $ (-570)) 92 (|has| $ (-6 -4450)))) (-3951 (($ $) 13)) (-1425 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 71)) (-2584 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3799 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) 85 (|has| |#1| (-856)))) (-3052 (((-112) $ $) 84 (|has| |#1| (-856)))) (-3022 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3062 (((-112) $ $) 86 (|has| |#1| (-856)))) (-3042 (((-112) $ $) 83 (|has| |#1| (-856)))) (-3111 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-3101 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-570) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-732))) (($ $ |#1|) 108 (|has| |#1| (-732)))) (-2569 (((-777) $) 6 (|has| $ (-6 -4449)))))
+(-10 -8 (-15 -2234 (|#2| |#1|)) (-15 -1356 (|#2| |#1|)) (-15 -3385 (|#1| |#1| |#1|)) (-15 -1379 ((-695 |#2|) |#1| |#1|)) (-15 -4266 (|#2| |#1| |#1|)) (-15 * (|#1| |#1| |#2|)) (-15 * (|#1| |#2| |#1|)) (-15 * (|#1| (-570) |#1|)) (-15 -3114 (|#1| |#1| |#1|)) (-15 -3114 (|#1| |#1|)) (-15 -3507 (|#1| (-777))) (-15 -3104 (|#1| |#1| |#1|)))
+((-2560 (((-112) $ $) 19 (|has| |#1| (-1109)))) (-3507 (($ (-777)) 113 (|has| |#1| (-23)))) (-3040 (((-1282) $ (-570) (-570)) 41 (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) 99) (((-112) $) 93 (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) 90 (|has| $ (-6 -4453))) (($ $) 89 (-12 (|has| |#1| (-856)) (|has| $ (-6 -4453))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) 100) (($ $) 94 (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) 8)) (-3935 ((|#1| $ (-570) |#1|) 53 (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) 59 (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) 76 (|has| $ (-6 -4452)))) (-3195 (($) 7 T CONST)) (-1582 (($ $) 91 (|has| $ (-6 -4453)))) (-2380 (($ $) 101)) (-3582 (($ $) 79 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-1742 (($ |#1| $) 78 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) (($ (-1 (-112) |#1|) $) 75 (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) 77 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) 74 (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) 73 (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) 54 (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) 52)) (-4029 (((-570) (-1 (-112) |#1|) $) 98) (((-570) |#1| $) 97 (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) 96 (|has| |#1| (-1109)))) (-3630 (((-650 |#1|) $) 31 (|has| $ (-6 -4452)))) (-1379 (((-695 |#1|) $ $) 106 (|has| |#1| (-1058)))) (-4294 (($ (-777) |#1|) 70)) (-2317 (((-112) $ (-777)) 9)) (-2685 (((-570) $) 44 (|has| (-570) (-856)))) (-3469 (($ $ $) 88 (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) 102) (($ $ $) 95 (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) 30 (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) 28 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2602 (((-570) $) 45 (|has| (-570) (-856)))) (-2472 (($ $ $) 87 (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) 35 (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) 36) (($ (-1 |#1| |#1| |#1|) $ $) 65)) (-2234 ((|#1| $) 103 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-2193 (((-112) $ (-777)) 10)) (-1356 ((|#1| $) 104 (-12 (|has| |#1| (-1058)) (|has| |#1| (-1011))))) (-3989 (((-1168) $) 22 (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) 61) (($ $ $ (-570)) 60)) (-2903 (((-650 (-570)) $) 47)) (-1358 (((-112) (-570) $) 48)) (-3580 (((-1129) $) 21 (|has| |#1| (-1109)))) (-3546 ((|#1| $) 43 (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) 72)) (-2061 (($ $ |#1|) 42 (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) 33 (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) 14)) (-2262 (((-112) |#1| $) 46 (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) 49)) (-4283 (((-112) $) 11)) (-2656 (($) 12)) (-1942 ((|#1| $ (-570) |#1|) 51) ((|#1| $ (-570)) 50) (($ $ (-1244 (-570))) 64)) (-4266 ((|#1| $ $) 107 (|has| |#1| (-1058)))) (-4330 (($ $ (-570)) 63) (($ $ (-1244 (-570))) 62)) (-3385 (($ $ $) 105 (|has| |#1| (-1058)))) (-3587 (((-777) (-1 (-112) |#1|) $) 32 (|has| $ (-6 -4452))) (((-777) |#1| $) 29 (-12 (|has| |#1| (-1109)) (|has| $ (-6 -4452))))) (-2087 (($ $ $ (-570)) 92 (|has| $ (-6 -4453)))) (-3954 (($ $) 13)) (-1426 (((-542) $) 80 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 71)) (-2585 (($ $ |#1|) 69) (($ |#1| $) 68) (($ $ $) 67) (($ (-650 $)) 66)) (-3802 (((-868) $) 18 (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) 23 (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) 34 (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) 85 (|has| |#1| (-856)))) (-3055 (((-112) $ $) 84 (|has| |#1| (-856)))) (-3025 (((-112) $ $) 20 (|has| |#1| (-1109)))) (-3065 (((-112) $ $) 86 (|has| |#1| (-856)))) (-3045 (((-112) $ $) 83 (|has| |#1| (-856)))) (-3114 (($ $) 112 (|has| |#1| (-21))) (($ $ $) 111 (|has| |#1| (-21)))) (-3104 (($ $ $) 114 (|has| |#1| (-25)))) (* (($ (-570) $) 110 (|has| |#1| (-21))) (($ |#1| $) 109 (|has| |#1| (-732))) (($ $ |#1|) 108 (|has| |#1| (-732)))) (-2570 (((-777) $) 6 (|has| $ (-6 -4452)))))
(((-1275 |#1|) (-141) (-1227)) (T -1275))
-((-3101 (*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-25)))) (-3504 (*1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1275 *3)) (-4 *3 (-23)) (-4 *3 (-1227)))) (-3111 (*1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-21)))) (-3111 (*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)))) (-2609 (*1 *2 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))) (-1378 (*1 *2 *1 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-1227)) (-4 *3 (-1058)) (-5 *2 (-695 *3)))) (-3432 (*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))) (-1355 (*1 *2 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011)) (-4 *2 (-1058)))) (-4202 (*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 -3101 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3504 ($ (-777))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -3111 ($ $)) (-15 -3111 ($ $ $)) (-15 * ($ (-570) $))) |%noBranch|) (IF (|has| |t#1| (-732)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1058)) (PROGN (-15 -2609 (|t#1| $ $)) (-15 -1378 ((-695 |t#1|) $ $)) (-15 -3432 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-1011)) (IF (|has| |t#1| (-1058)) (PROGN (-15 -1355 (|t#1| $)) (-15 -4202 (|t#1| $))) |%noBranch|) |%noBranch|)))
-(((-34) . T) ((-102) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2892 (|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) -2892 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
-((-3482 (((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|) 13)) (-3624 ((|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|) 15)) (-1356 (((-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 -3482 ((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -3624 (|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -1356 ((-1277 |#2|) (-1 |#2| |#1|) (-1277 |#1|))) (-15 -1356 ((-3 (-1277 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1277 |#1|)))) (-1227) (-1227)) (T -1276))
-((-1356 (*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)))) (-1356 (*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)))) (-3624 (*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)))) (-3482 (*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 -3482 ((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -3624 (|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -1356 ((-1277 |#2|) (-1 |#2| |#1|) (-1277 |#1|))) (-15 -1356 ((-3 (-1277 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1277 |#1|))))
-((-2558 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3504 (($ (-777)) NIL (|has| |#1| (-23)))) (-3535 (($ (-650 |#1|)) 11)) (-3851 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4450)))) (-4374 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-4004 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4450))) (($ $) NIL (-12 (|has| $ (-6 -4450)) (|has| |#1| (-856))))) (-3393 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-4302 (((-112) $ (-777)) NIL)) (-3932 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4450)))) (-1431 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1705 (($) NIL T CONST)) (-2844 (($ $) NIL (|has| $ (-6 -4450)))) (-2377 (($ $) NIL)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1741 (($ |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3624 ((|#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)))) (-1517 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4450)))) (-3820 ((|#1| $ (-570)) NIL)) (-4027 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3627 (((-650 |#1|) $) 16 (|has| $ (-6 -4449)))) (-1378 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4291 (($ (-777) |#1|) NIL)) (-2929 (((-112) $ (-777)) NIL)) (-2383 (((-570) $) NIL (|has| (-570) (-856)))) (-3466 (($ $ $) NIL (|has| |#1| (-856)))) (-2024 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2752 (((-650 |#1|) $) NIL (|has| $ (-6 -4449)))) (-4108 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-1460 (((-570) $) 12 (|has| (-570) (-856)))) (-2800 (($ $ $) NIL (|has| |#1| (-856)))) (-1502 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-4202 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3231 (((-112) $ (-777)) NIL)) (-1355 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-1988 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4290 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-1805 (((-650 (-570)) $) NIL)) (-3939 (((-112) (-570) $) NIL)) (-3577 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3543 ((|#1| $) NIL (|has| (-570) (-856)))) (-1790 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2147 (($ $ |#1|) NIL (|has| $ (-6 -4450)))) (-3642 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-1868 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-3700 (((-650 |#1|) $) NIL)) (-2017 (((-112) $) NIL)) (-2380 (($) NIL)) (-1941 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-2609 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4326 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3432 (($ $ $) NIL (|has| |#1| (-1058)))) (-3584 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#1| (-1109))))) (-2906 (($ $ $ (-570)) NIL (|has| $ (-6 -4450)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) 20 (|has| |#1| (-620 (-542))))) (-3811 (($ (-650 |#1|)) 10)) (-2584 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3799 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-2335 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4371 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4449)))) (-3072 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3052 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3022 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3062 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3042 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3111 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3101 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1277 |#1|) (-13 (-1275 |#1|) (-10 -8 (-15 -3535 ($ (-650 |#1|))))) (-1227)) (T -1277))
-((-3535 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1277 *3)))))
-(-13 (-1275 |#1|) (-10 -8 (-15 -3535 ($ (-650 |#1|)))))
-((-2558 (((-112) $ $) NIL)) (-1799 (((-1168) $ (-1168)) 107) (((-1168) $ (-1168) (-1168)) 105) (((-1168) $ (-1168) (-650 (-1168))) 104)) (-3237 (($) 69)) (-3977 (((-1282) $ (-474) (-928)) 54)) (-3222 (((-1282) $ (-928) (-1168)) 89) (((-1282) $ (-928) (-880)) 90)) (-3017 (((-1282) $ (-928) (-384) (-384)) 57)) (-3369 (((-1282) $ (-1168)) 84)) (-3188 (((-1282) $ (-928) (-1168)) 94)) (-2548 (((-1282) $ (-928) (-384) (-384)) 58)) (-2913 (((-1282) $ (-928) (-928)) 55)) (-1772 (((-1282) $) 85)) (-1333 (((-1282) $ (-928) (-1168)) 93)) (-2062 (((-1282) $ (-474) (-928)) 41)) (-1981 (((-1282) $ (-928) (-1168)) 92)) (-3386 (((-650 (-266)) $) 29) (($ $ (-650 (-266))) 30)) (-4055 (((-1282) $ (-777) (-777)) 52)) (-2055 (($ $) 70) (($ (-474) (-650 (-266))) 71)) (-1988 (((-1168) $) NIL)) (-2106 (((-570) $) 48)) (-3577 (((-1129) $) NIL)) (-3404 (((-1277 (-3 (-474) "undefined")) $) 47)) (-2782 (((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1981 (-570)) (|:| -4130 (-570)) (|:| |spline| (-570)) (|:| -1643 (-570)) (|:| |axesColor| (-880)) (|:| -3222 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $) 46)) (-2625 (((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570)) 83)) (-1632 (((-650 (-950 (-227))) $) NIL)) (-3508 (((-474) $ (-928)) 43)) (-3193 (((-1282) $ (-777) (-777) (-928) (-928)) 50)) (-3821 (((-1282) $ (-1168)) 95)) (-4130 (((-1282) $ (-928) (-1168)) 91)) (-3799 (((-868) $) 102)) (-4122 (((-1282) $) 96)) (-2335 (((-112) $ $) NIL)) (-1643 (((-1282) $ (-928) (-1168)) 87) (((-1282) $ (-928) (-880)) 88)) (-3022 (((-112) $ $) NIL)))
-(((-1278) (-13 (-1109) (-10 -8 (-15 -1632 ((-650 (-950 (-227))) $)) (-15 -3237 ($)) (-15 -2055 ($ $)) (-15 -3386 ((-650 (-266)) $)) (-15 -3386 ($ $ (-650 (-266)))) (-15 -2055 ($ (-474) (-650 (-266)))) (-15 -2625 ((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570))) (-15 -2782 ((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1981 (-570)) (|:| -4130 (-570)) (|:| |spline| (-570)) (|:| -1643 (-570)) (|:| |axesColor| (-880)) (|:| -3222 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $)) (-15 -3404 ((-1277 (-3 (-474) "undefined")) $)) (-15 -3369 ((-1282) $ (-1168))) (-15 -2062 ((-1282) $ (-474) (-928))) (-15 -3508 ((-474) $ (-928))) (-15 -1643 ((-1282) $ (-928) (-1168))) (-15 -1643 ((-1282) $ (-928) (-880))) (-15 -3222 ((-1282) $ (-928) (-1168))) (-15 -3222 ((-1282) $ (-928) (-880))) (-15 -1981 ((-1282) $ (-928) (-1168))) (-15 -1333 ((-1282) $ (-928) (-1168))) (-15 -4130 ((-1282) $ (-928) (-1168))) (-15 -3821 ((-1282) $ (-1168))) (-15 -4122 ((-1282) $)) (-15 -3193 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -2548 ((-1282) $ (-928) (-384) (-384))) (-15 -3017 ((-1282) $ (-928) (-384) (-384))) (-15 -3188 ((-1282) $ (-928) (-1168))) (-15 -4055 ((-1282) $ (-777) (-777))) (-15 -3977 ((-1282) $ (-474) (-928))) (-15 -2913 ((-1282) $ (-928) (-928))) (-15 -1799 ((-1168) $ (-1168))) (-15 -1799 ((-1168) $ (-1168) (-1168))) (-15 -1799 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -1772 ((-1282) $)) (-15 -2106 ((-570) $)) (-15 -3799 ((-868) $))))) (T -1278))
-((-3799 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1278)))) (-1632 (*1 *2 *1) (-12 (-5 *2 (-650 (-950 (-227)))) (-5 *1 (-1278)))) (-3237 (*1 *1) (-5 *1 (-1278))) (-2055 (*1 *1 *1) (-5 *1 (-1278))) (-3386 (*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))) (-3386 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))) (-2055 (*1 *1 *2 *3) (-12 (-5 *2 (-474)) (-5 *3 (-650 (-266))) (-5 *1 (-1278)))) (-2625 (*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)))) (-2782 (*1 *2 *1) (-12 (-5 *2 (-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1981 (-570)) (|:| -4130 (-570)) (|:| |spline| (-570)) (|:| -1643 (-570)) (|:| |axesColor| (-880)) (|:| -3222 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570))))) (-5 *1 (-1278)))) (-3404 (*1 *2 *1) (-12 (-5 *2 (-1277 (-3 (-474) "undefined"))) (-5 *1 (-1278)))) (-3369 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2062 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3508 (*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-5 *2 (-474)) (-5 *1 (-1278)))) (-1643 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1643 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3222 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3222 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1981 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1333 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-4130 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3821 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-4122 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3193 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2548 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3017 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3188 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-4055 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3977 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2913 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1799 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1799 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1799 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1772 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2106 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1278)))))
-(-13 (-1109) (-10 -8 (-15 -1632 ((-650 (-950 (-227))) $)) (-15 -3237 ($)) (-15 -2055 ($ $)) (-15 -3386 ((-650 (-266)) $)) (-15 -3386 ($ $ (-650 (-266)))) (-15 -2055 ($ (-474) (-650 (-266)))) (-15 -2625 ((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570))) (-15 -2782 ((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1981 (-570)) (|:| -4130 (-570)) (|:| |spline| (-570)) (|:| -1643 (-570)) (|:| |axesColor| (-880)) (|:| -3222 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $)) (-15 -3404 ((-1277 (-3 (-474) "undefined")) $)) (-15 -3369 ((-1282) $ (-1168))) (-15 -2062 ((-1282) $ (-474) (-928))) (-15 -3508 ((-474) $ (-928))) (-15 -1643 ((-1282) $ (-928) (-1168))) (-15 -1643 ((-1282) $ (-928) (-880))) (-15 -3222 ((-1282) $ (-928) (-1168))) (-15 -3222 ((-1282) $ (-928) (-880))) (-15 -1981 ((-1282) $ (-928) (-1168))) (-15 -1333 ((-1282) $ (-928) (-1168))) (-15 -4130 ((-1282) $ (-928) (-1168))) (-15 -3821 ((-1282) $ (-1168))) (-15 -4122 ((-1282) $)) (-15 -3193 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -2548 ((-1282) $ (-928) (-384) (-384))) (-15 -3017 ((-1282) $ (-928) (-384) (-384))) (-15 -3188 ((-1282) $ (-928) (-1168))) (-15 -4055 ((-1282) $ (-777) (-777))) (-15 -3977 ((-1282) $ (-474) (-928))) (-15 -2913 ((-1282) $ (-928) (-928))) (-15 -1799 ((-1168) $ (-1168))) (-15 -1799 ((-1168) $ (-1168) (-1168))) (-15 -1799 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -1772 ((-1282) $)) (-15 -2106 ((-570) $)) (-15 -3799 ((-868) $))))
-((-2558 (((-112) $ $) NIL)) (-2565 (((-1282) $ (-384)) 169) (((-1282) $ (-384) (-384) (-384)) 170)) (-1799 (((-1168) $ (-1168)) 179) (((-1168) $ (-1168) (-1168)) 177) (((-1168) $ (-1168) (-650 (-1168))) 176)) (-3709 (($) 67)) (-2734 (((-1282) $ (-384) (-384) (-384) (-384) (-384)) 141) (((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $) 139) (((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-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)) (-3254 (((-384)) 122) (((-384) (-384)) 123)) (-2297 (((-384)) 117) (((-384) (-384)) 119)) (-2655 (((-384)) 120) (((-384) (-384)) 121)) (-3777 (((-384)) 126) (((-384) (-384)) 127)) (-3616 (((-384)) 124) (((-384) (-384)) 125)) (-3017 (((-1282) $ (-384) (-384)) 171)) (-3369 (((-1282) $ (-1168)) 153)) (-4195 (((-1142 (-227)) $) 68) (($ $ (-1142 (-227))) 69)) (-4284 (((-1282) $ (-1168)) 187)) (-2535 (((-1282) $ (-1168)) 188)) (-2617 (((-1282) $ (-384) (-384)) 151) (((-1282) $ (-570) (-570)) 168)) (-2913 (((-1282) $ (-928) (-928)) 160)) (-1772 (((-1282) $) 137)) (-1558 (((-1282) $ (-1168)) 186)) (-4051 (((-1282) $ (-1168)) 134)) (-3386 (((-650 (-266)) $) 70) (($ $ (-650 (-266))) 71)) (-4055 (((-1282) $ (-777) (-777)) 159)) (-3978 (((-1282) $ (-777) (-950 (-227))) 193)) (-2275 (($ $) 73) (($ (-1142 (-227)) (-1168)) 74) (($ (-1142 (-227)) (-650 (-266))) 75)) (-2935 (((-1282) $ (-384) (-384) (-384)) 131)) (-1988 (((-1168) $) NIL)) (-2106 (((-570) $) 128)) (-2760 (((-1282) $ (-384)) 174)) (-2296 (((-1282) $ (-384)) 191)) (-3577 (((-1129) $) NIL)) (-2554 (((-1282) $ (-384)) 190)) (-4005 (((-1282) $ (-1168)) 136)) (-3193 (((-1282) $ (-777) (-777) (-928) (-928)) 158)) (-2679 (((-1282) $ (-1168)) 133)) (-3821 (((-1282) $ (-1168)) 135)) (-4142 (((-1282) $ (-158) (-158)) 157)) (-3799 (((-868) $) 166)) (-4122 (((-1282) $) 138)) (-2716 (((-1282) $ (-1168)) 189)) (-2335 (((-112) $ $) NIL)) (-1643 (((-1282) $ (-1168)) 132)) (-3022 (((-112) $ $) NIL)))
-(((-1279) (-13 (-1109) (-10 -8 (-15 -2297 ((-384))) (-15 -2297 ((-384) (-384))) (-15 -2655 ((-384))) (-15 -2655 ((-384) (-384))) (-15 -3254 ((-384))) (-15 -3254 ((-384) (-384))) (-15 -3616 ((-384))) (-15 -3616 ((-384) (-384))) (-15 -3777 ((-384))) (-15 -3777 ((-384) (-384))) (-15 -3709 ($)) (-15 -2275 ($ $)) (-15 -2275 ($ (-1142 (-227)) (-1168))) (-15 -2275 ($ (-1142 (-227)) (-650 (-266)))) (-15 -4195 ((-1142 (-227)) $)) (-15 -4195 ($ $ (-1142 (-227)))) (-15 -3978 ((-1282) $ (-777) (-950 (-227)))) (-15 -3386 ((-650 (-266)) $)) (-15 -3386 ($ $ (-650 (-266)))) (-15 -4055 ((-1282) $ (-777) (-777))) (-15 -2913 ((-1282) $ (-928) (-928))) (-15 -3369 ((-1282) $ (-1168))) (-15 -3193 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -2734 ((-1282) $ (-384) (-384) (-384) (-384) (-384))) (-15 -2734 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $)) (-15 -2734 ((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -2734 ((-1282) $ (-570) (-570) (-384) (-384) (-384))) (-15 -2734 ((-1282) $ (-384) (-384))) (-15 -2734 ((-1282) $ (-384) (-384) (-384))) (-15 -3821 ((-1282) $ (-1168))) (-15 -1643 ((-1282) $ (-1168))) (-15 -2679 ((-1282) $ (-1168))) (-15 -4051 ((-1282) $ (-1168))) (-15 -4005 ((-1282) $ (-1168))) (-15 -2617 ((-1282) $ (-384) (-384))) (-15 -2617 ((-1282) $ (-570) (-570))) (-15 -2565 ((-1282) $ (-384))) (-15 -2565 ((-1282) $ (-384) (-384) (-384))) (-15 -3017 ((-1282) $ (-384) (-384))) (-15 -1558 ((-1282) $ (-1168))) (-15 -2554 ((-1282) $ (-384))) (-15 -2296 ((-1282) $ (-384))) (-15 -4284 ((-1282) $ (-1168))) (-15 -2535 ((-1282) $ (-1168))) (-15 -2716 ((-1282) $ (-1168))) (-15 -2935 ((-1282) $ (-384) (-384) (-384))) (-15 -2760 ((-1282) $ (-384))) (-15 -1772 ((-1282) $)) (-15 -4142 ((-1282) $ (-158) (-158))) (-15 -1799 ((-1168) $ (-1168))) (-15 -1799 ((-1168) $ (-1168) (-1168))) (-15 -1799 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -4122 ((-1282) $)) (-15 -2106 ((-570) $))))) (T -1279))
-((-2297 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-2297 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-2655 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-2655 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3254 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3254 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3616 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3616 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3777 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3777 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3709 (*1 *1) (-5 *1 (-1279))) (-2275 (*1 *1 *1) (-5 *1 (-1279))) (-2275 (*1 *1 *2 *3) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1168)) (-5 *1 (-1279)))) (-2275 (*1 *1 *2 *3) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-650 (-266))) (-5 *1 (-1279)))) (-4195 (*1 *2 *1) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279)))) (-4195 (*1 *1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279)))) (-3978 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3386 (*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1279)))) (-3386 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1279)))) (-4055 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2913 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3369 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3193 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2734 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2734 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *1 (-1279)))) (-2734 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2734 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-570)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2734 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2734 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3821 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1643 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2679 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4051 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4005 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2617 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2617 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2565 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2565 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3017 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1558 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2554 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2296 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4284 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2535 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2716 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2935 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2760 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1772 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4142 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-158)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1799 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1279)))) (-1799 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1279)))) (-1799 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1279)))) (-4122 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2106 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1279)))))
-(-13 (-1109) (-10 -8 (-15 -2297 ((-384))) (-15 -2297 ((-384) (-384))) (-15 -2655 ((-384))) (-15 -2655 ((-384) (-384))) (-15 -3254 ((-384))) (-15 -3254 ((-384) (-384))) (-15 -3616 ((-384))) (-15 -3616 ((-384) (-384))) (-15 -3777 ((-384))) (-15 -3777 ((-384) (-384))) (-15 -3709 ($)) (-15 -2275 ($ $)) (-15 -2275 ($ (-1142 (-227)) (-1168))) (-15 -2275 ($ (-1142 (-227)) (-650 (-266)))) (-15 -4195 ((-1142 (-227)) $)) (-15 -4195 ($ $ (-1142 (-227)))) (-15 -3978 ((-1282) $ (-777) (-950 (-227)))) (-15 -3386 ((-650 (-266)) $)) (-15 -3386 ($ $ (-650 (-266)))) (-15 -4055 ((-1282) $ (-777) (-777))) (-15 -2913 ((-1282) $ (-928) (-928))) (-15 -3369 ((-1282) $ (-1168))) (-15 -3193 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -2734 ((-1282) $ (-384) (-384) (-384) (-384) (-384))) (-15 -2734 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $)) (-15 -2734 ((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -2734 ((-1282) $ (-570) (-570) (-384) (-384) (-384))) (-15 -2734 ((-1282) $ (-384) (-384))) (-15 -2734 ((-1282) $ (-384) (-384) (-384))) (-15 -3821 ((-1282) $ (-1168))) (-15 -1643 ((-1282) $ (-1168))) (-15 -2679 ((-1282) $ (-1168))) (-15 -4051 ((-1282) $ (-1168))) (-15 -4005 ((-1282) $ (-1168))) (-15 -2617 ((-1282) $ (-384) (-384))) (-15 -2617 ((-1282) $ (-570) (-570))) (-15 -2565 ((-1282) $ (-384))) (-15 -2565 ((-1282) $ (-384) (-384) (-384))) (-15 -3017 ((-1282) $ (-384) (-384))) (-15 -1558 ((-1282) $ (-1168))) (-15 -2554 ((-1282) $ (-384))) (-15 -2296 ((-1282) $ (-384))) (-15 -4284 ((-1282) $ (-1168))) (-15 -2535 ((-1282) $ (-1168))) (-15 -2716 ((-1282) $ (-1168))) (-15 -2935 ((-1282) $ (-384) (-384) (-384))) (-15 -2760 ((-1282) $ (-384))) (-15 -1772 ((-1282) $)) (-15 -4142 ((-1282) $ (-158) (-158))) (-15 -1799 ((-1168) $ (-1168))) (-15 -1799 ((-1168) $ (-1168) (-1168))) (-15 -1799 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -4122 ((-1282) $)) (-15 -2106 ((-570) $))))
-((-4418 (((-650 (-1168)) (-650 (-1168))) 104) (((-650 (-1168))) 96)) (-1433 (((-650 (-1168))) 94)) (-4069 (((-650 (-928)) (-650 (-928))) 69) (((-650 (-928))) 64)) (-3033 (((-650 (-777)) (-650 (-777))) 61) (((-650 (-777))) 55)) (-3297 (((-1282)) 71)) (-1968 (((-928) (-928)) 87) (((-928)) 86)) (-4281 (((-928) (-928)) 85) (((-928)) 84)) (-1526 (((-880) (-880)) 81) (((-880)) 80)) (-1476 (((-227)) 91) (((-227) (-384)) 93)) (-4241 (((-928)) 88) (((-928) (-928)) 89)) (-1863 (((-928) (-928)) 83) (((-928)) 82)) (-3323 (((-880) (-880)) 75) (((-880)) 73)) (-3127 (((-880) (-880)) 77) (((-880)) 76)) (-2719 (((-880) (-880)) 79) (((-880)) 78)))
-(((-1280) (-10 -7 (-15 -3323 ((-880))) (-15 -3323 ((-880) (-880))) (-15 -3127 ((-880))) (-15 -3127 ((-880) (-880))) (-15 -2719 ((-880))) (-15 -2719 ((-880) (-880))) (-15 -1526 ((-880))) (-15 -1526 ((-880) (-880))) (-15 -1863 ((-928))) (-15 -1863 ((-928) (-928))) (-15 -3033 ((-650 (-777)))) (-15 -3033 ((-650 (-777)) (-650 (-777)))) (-15 -4069 ((-650 (-928)))) (-15 -4069 ((-650 (-928)) (-650 (-928)))) (-15 -3297 ((-1282))) (-15 -4418 ((-650 (-1168)))) (-15 -4418 ((-650 (-1168)) (-650 (-1168)))) (-15 -1433 ((-650 (-1168)))) (-15 -4281 ((-928))) (-15 -1968 ((-928))) (-15 -4281 ((-928) (-928))) (-15 -1968 ((-928) (-928))) (-15 -4241 ((-928) (-928))) (-15 -4241 ((-928))) (-15 -1476 ((-227) (-384))) (-15 -1476 ((-227))))) (T -1280))
-((-1476 (*1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-1280)))) (-1476 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-1280)))) (-4241 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-4241 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1968 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-4281 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1968 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-4281 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1433 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-4418 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-4418 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-3297 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1280)))) (-4069 (*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280)))) (-4069 (*1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280)))) (-3033 (*1 *2 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280)))) (-3033 (*1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280)))) (-1863 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1863 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1526 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-1526 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-2719 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-2719 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-3127 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-3127 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-3323 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-3323 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
-(-10 -7 (-15 -3323 ((-880))) (-15 -3323 ((-880) (-880))) (-15 -3127 ((-880))) (-15 -3127 ((-880) (-880))) (-15 -2719 ((-880))) (-15 -2719 ((-880) (-880))) (-15 -1526 ((-880))) (-15 -1526 ((-880) (-880))) (-15 -1863 ((-928))) (-15 -1863 ((-928) (-928))) (-15 -3033 ((-650 (-777)))) (-15 -3033 ((-650 (-777)) (-650 (-777)))) (-15 -4069 ((-650 (-928)))) (-15 -4069 ((-650 (-928)) (-650 (-928)))) (-15 -3297 ((-1282))) (-15 -4418 ((-650 (-1168)))) (-15 -4418 ((-650 (-1168)) (-650 (-1168)))) (-15 -1433 ((-650 (-1168)))) (-15 -4281 ((-928))) (-15 -1968 ((-928))) (-15 -4281 ((-928) (-928))) (-15 -1968 ((-928) (-928))) (-15 -4241 ((-928) (-928))) (-15 -4241 ((-928))) (-15 -1476 ((-227) (-384))) (-15 -1476 ((-227))))
-((-1647 (((-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)) (-4355 (((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266))) 30) (((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266))) 29)) (-3799 (((-1278) (-474)) 46)))
-(((-1281) (-10 -7 (-15 -1647 ((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -1647 ((-474) (-650 (-650 (-950 (-227)))))) (-15 -1647 ((-474) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -4355 ((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -4355 ((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3799 ((-1278) (-474))))) (T -1281))
-((-3799 (*1 *2 *3) (-12 (-5 *3 (-474)) (-5 *2 (-1278)) (-5 *1 (-1281)))) (-4355 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-1281)))) (-4355 (*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)))) (-1647 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266))) (-5 *2 (-474)) (-5 *1 (-1281)))) (-1647 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-474)) (-5 *1 (-1281)))) (-1647 (*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 -1647 ((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -1647 ((-474) (-650 (-650 (-950 (-227)))))) (-15 -1647 ((-474) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -4355 ((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -4355 ((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3799 ((-1278) (-474))))
-((-2713 (($) 6)) (-3799 (((-868) $) 9)))
-(((-1282) (-13 (-619 (-868)) (-10 -8 (-15 -2713 ($))))) (T -1282))
-((-2713 (*1 *1) (-5 *1 (-1282))))
-(-13 (-619 (-868)) (-10 -8 (-15 -2713 ($))))
-((-3122 (($ $ |#2|) 10)))
-(((-1283 |#1| |#2|) (-10 -8 (-15 -3122 (|#1| |#1| |#2|))) (-1284 |#2|) (-368)) (T -1283))
-NIL
-(-10 -8 (-15 -3122 (|#1| |#1| |#2|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2951 (((-135)) 33)) (-3799 (((-868) $) 12)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-3022 (((-112) $ $) 6)) (-3122 (($ $ |#1|) 34)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
+((-3104 (*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-25)))) (-3507 (*1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1275 *3)) (-4 *3 (-23)) (-4 *3 (-1227)))) (-3114 (*1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-21)))) (-3114 (*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)))) (-4266 (*1 *2 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))) (-1379 (*1 *2 *1 *1) (-12 (-4 *1 (-1275 *3)) (-4 *3 (-1227)) (-4 *3 (-1058)) (-5 *2 (-695 *3)))) (-3385 (*1 *1 *1 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1058)))) (-1356 (*1 *2 *1) (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011)) (-4 *2 (-1058)))) (-2234 (*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 -3104 ($ $ $)) |%noBranch|) (IF (|has| |t#1| (-23)) (-15 -3507 ($ (-777))) |%noBranch|) (IF (|has| |t#1| (-21)) (PROGN (-15 -3114 ($ $)) (-15 -3114 ($ $ $)) (-15 * ($ (-570) $))) |%noBranch|) (IF (|has| |t#1| (-732)) (PROGN (-15 * ($ |t#1| $)) (-15 * ($ $ |t#1|))) |%noBranch|) (IF (|has| |t#1| (-1058)) (PROGN (-15 -4266 (|t#1| $ $)) (-15 -1379 ((-695 |t#1|) $ $)) (-15 -3385 ($ $ $))) |%noBranch|) (IF (|has| |t#1| (-1011)) (IF (|has| |t#1| (-1058)) (PROGN (-15 -1356 (|t#1| $)) (-15 -2234 (|t#1| $))) |%noBranch|) |%noBranch|)))
+(((-34) . T) ((-102) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-619 (-868)) -2895 (|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) -2895 (|has| |#1| (-1109)) (|has| |#1| (-856))) ((-1227) . T))
+((-2677 (((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|) 13)) (-3627 ((|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|) 15)) (-1357 (((-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 -2677 ((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -3627 (|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -1357 ((-1277 |#2|) (-1 |#2| |#1|) (-1277 |#1|))) (-15 -1357 ((-3 (-1277 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1277 |#1|)))) (-1227) (-1227)) (T -1276))
+((-1357 (*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)))) (-1357 (*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)))) (-3627 (*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)))) (-2677 (*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 -2677 ((-1277 |#2|) (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -3627 (|#2| (-1 |#2| |#1| |#2|) (-1277 |#1|) |#2|)) (-15 -1357 ((-1277 |#2|) (-1 |#2| |#1|) (-1277 |#1|))) (-15 -1357 ((-3 (-1277 |#2|) "failed") (-1 (-3 |#2| "failed") |#1|) (-1277 |#1|))))
+((-2560 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3507 (($ (-777)) NIL (|has| |#1| (-23)))) (-3538 (($ (-650 |#1|)) 11)) (-3040 (((-1282) $ (-570) (-570)) NIL (|has| $ (-6 -4453)))) (-4414 (((-112) (-1 (-112) |#1| |#1|) $) NIL) (((-112) $) NIL (|has| |#1| (-856)))) (-3936 (($ (-1 (-112) |#1| |#1|) $) NIL (|has| $ (-6 -4453))) (($ $) NIL (-12 (|has| $ (-6 -4453)) (|has| |#1| (-856))))) (-3396 (($ (-1 (-112) |#1| |#1|) $) NIL) (($ $) NIL (|has| |#1| (-856)))) (-1932 (((-112) $ (-777)) NIL)) (-3935 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453))) ((|#1| $ (-1244 (-570)) |#1|) NIL (|has| $ (-6 -4453)))) (-1434 (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3195 (($) NIL T CONST)) (-1582 (($ $) NIL (|has| $ (-6 -4453)))) (-2380 (($ $) NIL)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-1742 (($ |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) (($ (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3627 ((|#1| (-1 |#1| |#1| |#1|) $ |#1| |#1|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109)))) ((|#1| (-1 |#1| |#1| |#1|) $ |#1|) NIL (|has| $ (-6 -4452))) ((|#1| (-1 |#1| |#1| |#1|) $) NIL (|has| $ (-6 -4452)))) (-1518 ((|#1| $ (-570) |#1|) NIL (|has| $ (-6 -4453)))) (-3824 ((|#1| $ (-570)) NIL)) (-4029 (((-570) (-1 (-112) |#1|) $) NIL) (((-570) |#1| $) NIL (|has| |#1| (-1109))) (((-570) |#1| $ (-570)) NIL (|has| |#1| (-1109)))) (-3630 (((-650 |#1|) $) 16 (|has| $ (-6 -4452)))) (-1379 (((-695 |#1|) $ $) NIL (|has| |#1| (-1058)))) (-4294 (($ (-777) |#1|) NIL)) (-2317 (((-112) $ (-777)) NIL)) (-2685 (((-570) $) NIL (|has| (-570) (-856)))) (-3469 (($ $ $) NIL (|has| |#1| (-856)))) (-3183 (($ (-1 (-112) |#1| |#1|) $ $) NIL) (($ $ $) NIL (|has| |#1| (-856)))) (-2052 (((-650 |#1|) $) NIL (|has| $ (-6 -4452)))) (-3767 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2602 (((-570) $) 12 (|has| (-570) (-856)))) (-2472 (($ $ $) NIL (|has| |#1| (-856)))) (-1503 (($ (-1 |#1| |#1|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#1| |#1|) $) NIL) (($ (-1 |#1| |#1| |#1|) $ $) NIL)) (-2234 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-2193 (((-112) $ (-777)) NIL)) (-1356 ((|#1| $) NIL (-12 (|has| |#1| (-1011)) (|has| |#1| (-1058))))) (-3989 (((-1168) $) NIL (|has| |#1| (-1109)))) (-4293 (($ |#1| $ (-570)) NIL) (($ $ $ (-570)) NIL)) (-2903 (((-650 (-570)) $) NIL)) (-1358 (((-112) (-570) $) NIL)) (-3580 (((-1129) $) NIL (|has| |#1| (-1109)))) (-3546 ((|#1| $) NIL (|has| (-570) (-856)))) (-2770 (((-3 |#1| "failed") (-1 (-112) |#1|) $) NIL)) (-2061 (($ $ |#1|) NIL (|has| $ (-6 -4453)))) (-1627 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-2262 (((-112) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-4049 (((-650 |#1|) $) NIL)) (-4283 (((-112) $) NIL)) (-2656 (($) NIL)) (-1942 ((|#1| $ (-570) |#1|) NIL) ((|#1| $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-4266 ((|#1| $ $) NIL (|has| |#1| (-1058)))) (-4330 (($ $ (-570)) NIL) (($ $ (-1244 (-570))) NIL)) (-3385 (($ $ $) NIL (|has| |#1| (-1058)))) (-3587 (((-777) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452))) (((-777) |#1| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#1| (-1109))))) (-2087 (($ $ $ (-570)) NIL (|has| $ (-6 -4453)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) 20 (|has| |#1| (-620 (-542))))) (-3814 (($ (-650 |#1|)) 10)) (-2585 (($ $ |#1|) NIL) (($ |#1| $) NIL) (($ $ $) NIL) (($ (-650 $)) NIL)) (-3802 (((-868) $) NIL (|has| |#1| (-619 (-868))))) (-3359 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-4379 (((-112) (-1 (-112) |#1|) $) NIL (|has| $ (-6 -4452)))) (-3075 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3055 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3025 (((-112) $ $) NIL (|has| |#1| (-1109)))) (-3065 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3045 (((-112) $ $) NIL (|has| |#1| (-856)))) (-3114 (($ $) NIL (|has| |#1| (-21))) (($ $ $) NIL (|has| |#1| (-21)))) (-3104 (($ $ $) NIL (|has| |#1| (-25)))) (* (($ (-570) $) NIL (|has| |#1| (-21))) (($ |#1| $) NIL (|has| |#1| (-732))) (($ $ |#1|) NIL (|has| |#1| (-732)))) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1277 |#1|) (-13 (-1275 |#1|) (-10 -8 (-15 -3538 ($ (-650 |#1|))))) (-1227)) (T -1277))
+((-3538 (*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1277 *3)))))
+(-13 (-1275 |#1|) (-10 -8 (-15 -3538 ($ (-650 |#1|)))))
+((-2560 (((-112) $ $) NIL)) (-1800 (((-1168) $ (-1168)) 107) (((-1168) $ (-1168) (-1168)) 105) (((-1168) $ (-1168) (-650 (-1168))) 104)) (-2259 (($) 69)) (-3981 (((-1282) $ (-474) (-928)) 54)) (-3225 (((-1282) $ (-928) (-1168)) 89) (((-1282) $ (-928) (-880)) 90)) (-3020 (((-1282) $ (-928) (-384) (-384)) 57)) (-3372 (((-1282) $ (-1168)) 84)) (-3191 (((-1282) $ (-928) (-1168)) 94)) (-1909 (((-1282) $ (-928) (-384) (-384)) 58)) (-2155 (((-1282) $ (-928) (-928)) 55)) (-1773 (((-1282) $) 85)) (-1873 (((-1282) $ (-928) (-1168)) 93)) (-3589 (((-1282) $ (-474) (-928)) 41)) (-3917 (((-1282) $ (-928) (-1168)) 92)) (-3389 (((-650 (-266)) $) 29) (($ $ (-650 (-266))) 30)) (-4421 (((-1282) $ (-777) (-777)) 52)) (-3509 (($ $) 70) (($ (-474) (-650 (-266))) 71)) (-3989 (((-1168) $) NIL)) (-2107 (((-570) $) 48)) (-3580 (((-1129) $) NIL)) (-4325 (((-1277 (-3 (-474) "undefined")) $) 47)) (-2325 (((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3917 (-570)) (|:| -2785 (-570)) (|:| |spline| (-570)) (|:| -3784 (-570)) (|:| |axesColor| (-880)) (|:| -3225 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $) 46)) (-3254 (((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570)) 83)) (-1823 (((-650 (-950 (-227))) $) NIL)) (-2937 (((-474) $ (-928)) 43)) (-3038 (((-1282) $ (-777) (-777) (-928) (-928)) 50)) (-2789 (((-1282) $ (-1168)) 95)) (-2785 (((-1282) $ (-928) (-1168)) 91)) (-3802 (((-868) $) 102)) (-4125 (((-1282) $) 96)) (-3359 (((-112) $ $) NIL)) (-3784 (((-1282) $ (-928) (-1168)) 87) (((-1282) $ (-928) (-880)) 88)) (-3025 (((-112) $ $) NIL)))
+(((-1278) (-13 (-1109) (-10 -8 (-15 -1823 ((-650 (-950 (-227))) $)) (-15 -2259 ($)) (-15 -3509 ($ $)) (-15 -3389 ((-650 (-266)) $)) (-15 -3389 ($ $ (-650 (-266)))) (-15 -3509 ($ (-474) (-650 (-266)))) (-15 -3254 ((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570))) (-15 -2325 ((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3917 (-570)) (|:| -2785 (-570)) (|:| |spline| (-570)) (|:| -3784 (-570)) (|:| |axesColor| (-880)) (|:| -3225 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $)) (-15 -4325 ((-1277 (-3 (-474) "undefined")) $)) (-15 -3372 ((-1282) $ (-1168))) (-15 -3589 ((-1282) $ (-474) (-928))) (-15 -2937 ((-474) $ (-928))) (-15 -3784 ((-1282) $ (-928) (-1168))) (-15 -3784 ((-1282) $ (-928) (-880))) (-15 -3225 ((-1282) $ (-928) (-1168))) (-15 -3225 ((-1282) $ (-928) (-880))) (-15 -3917 ((-1282) $ (-928) (-1168))) (-15 -1873 ((-1282) $ (-928) (-1168))) (-15 -2785 ((-1282) $ (-928) (-1168))) (-15 -2789 ((-1282) $ (-1168))) (-15 -4125 ((-1282) $)) (-15 -3038 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -1909 ((-1282) $ (-928) (-384) (-384))) (-15 -3020 ((-1282) $ (-928) (-384) (-384))) (-15 -3191 ((-1282) $ (-928) (-1168))) (-15 -4421 ((-1282) $ (-777) (-777))) (-15 -3981 ((-1282) $ (-474) (-928))) (-15 -2155 ((-1282) $ (-928) (-928))) (-15 -1800 ((-1168) $ (-1168))) (-15 -1800 ((-1168) $ (-1168) (-1168))) (-15 -1800 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -1773 ((-1282) $)) (-15 -2107 ((-570) $)) (-15 -3802 ((-868) $))))) (T -1278))
+((-3802 (*1 *2 *1) (-12 (-5 *2 (-868)) (-5 *1 (-1278)))) (-1823 (*1 *2 *1) (-12 (-5 *2 (-650 (-950 (-227)))) (-5 *1 (-1278)))) (-2259 (*1 *1) (-5 *1 (-1278))) (-3509 (*1 *1 *1) (-5 *1 (-1278))) (-3389 (*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))) (-3389 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1278)))) (-3509 (*1 *1 *2 *3) (-12 (-5 *2 (-474)) (-5 *3 (-650 (-266))) (-5 *1 (-1278)))) (-3254 (*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)))) (-2325 (*1 *2 *1) (-12 (-5 *2 (-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3917 (-570)) (|:| -2785 (-570)) (|:| |spline| (-570)) (|:| -3784 (-570)) (|:| |axesColor| (-880)) (|:| -3225 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570))))) (-5 *1 (-1278)))) (-4325 (*1 *2 *1) (-12 (-5 *2 (-1277 (-3 (-474) "undefined"))) (-5 *1 (-1278)))) (-3372 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3589 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2937 (*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-5 *2 (-474)) (-5 *1 (-1278)))) (-3784 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3784 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3225 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3225 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-880)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3917 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1873 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2785 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2789 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-4125 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3038 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1909 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3020 (*1 *2 *1 *3 *4 *4) (-12 (-5 *3 (-928)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3191 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-4421 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-3981 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2155 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))) (-1800 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1800 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1800 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1278)))) (-1773 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278)))) (-2107 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1278)))))
+(-13 (-1109) (-10 -8 (-15 -1823 ((-650 (-950 (-227))) $)) (-15 -2259 ($)) (-15 -3509 ($ $)) (-15 -3389 ((-650 (-266)) $)) (-15 -3389 ($ $ (-650 (-266)))) (-15 -3509 ($ (-474) (-650 (-266)))) (-15 -3254 ((-1282) $ (-928) (-227) (-227) (-227) (-227) (-570) (-570) (-570) (-570) (-880) (-570) (-880) (-570))) (-15 -2325 ((-1277 (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3917 (-570)) (|:| -2785 (-570)) (|:| |spline| (-570)) (|:| -3784 (-570)) (|:| |axesColor| (-880)) (|:| -3225 (-570)) (|:| |unitsColor| (-880)) (|:| |showing| (-570)))) $)) (-15 -4325 ((-1277 (-3 (-474) "undefined")) $)) (-15 -3372 ((-1282) $ (-1168))) (-15 -3589 ((-1282) $ (-474) (-928))) (-15 -2937 ((-474) $ (-928))) (-15 -3784 ((-1282) $ (-928) (-1168))) (-15 -3784 ((-1282) $ (-928) (-880))) (-15 -3225 ((-1282) $ (-928) (-1168))) (-15 -3225 ((-1282) $ (-928) (-880))) (-15 -3917 ((-1282) $ (-928) (-1168))) (-15 -1873 ((-1282) $ (-928) (-1168))) (-15 -2785 ((-1282) $ (-928) (-1168))) (-15 -2789 ((-1282) $ (-1168))) (-15 -4125 ((-1282) $)) (-15 -3038 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -1909 ((-1282) $ (-928) (-384) (-384))) (-15 -3020 ((-1282) $ (-928) (-384) (-384))) (-15 -3191 ((-1282) $ (-928) (-1168))) (-15 -4421 ((-1282) $ (-777) (-777))) (-15 -3981 ((-1282) $ (-474) (-928))) (-15 -2155 ((-1282) $ (-928) (-928))) (-15 -1800 ((-1168) $ (-1168))) (-15 -1800 ((-1168) $ (-1168) (-1168))) (-15 -1800 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -1773 ((-1282) $)) (-15 -2107 ((-570) $)) (-15 -3802 ((-868) $))))
+((-2560 (((-112) $ $) NIL)) (-3898 (((-1282) $ (-384)) 169) (((-1282) $ (-384) (-384) (-384)) 170)) (-1800 (((-1168) $ (-1168)) 179) (((-1168) $ (-1168) (-1168)) 177) (((-1168) $ (-1168) (-650 (-1168))) 176)) (-4127 (($) 67)) (-3081 (((-1282) $ (-384) (-384) (-384) (-384) (-384)) 141) (((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $) 139) (((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-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)) (-2438 (((-384)) 122) (((-384) (-384)) 123)) (-4169 (((-384)) 117) (((-384) (-384)) 119)) (-3544 (((-384)) 120) (((-384) (-384)) 121)) (-3591 (((-384)) 126) (((-384) (-384)) 127)) (-1314 (((-384)) 124) (((-384) (-384)) 125)) (-3020 (((-1282) $ (-384) (-384)) 171)) (-3372 (((-1282) $ (-1168)) 153)) (-2169 (((-1142 (-227)) $) 68) (($ $ (-1142 (-227))) 69)) (-1750 (((-1282) $ (-1168)) 187)) (-1762 (((-1282) $ (-1168)) 188)) (-4351 (((-1282) $ (-384) (-384)) 151) (((-1282) $ (-570) (-570)) 168)) (-2155 (((-1282) $ (-928) (-928)) 160)) (-1773 (((-1282) $) 137)) (-2342 (((-1282) $ (-1168)) 186)) (-4374 (((-1282) $ (-1168)) 134)) (-3389 (((-650 (-266)) $) 70) (($ $ (-650 (-266))) 71)) (-4421 (((-1282) $ (-777) (-777)) 159)) (-1827 (((-1282) $ (-777) (-950 (-227))) 193)) (-3955 (($ $) 73) (($ (-1142 (-227)) (-1168)) 74) (($ (-1142 (-227)) (-650 (-266))) 75)) (-2358 (((-1282) $ (-384) (-384) (-384)) 131)) (-3989 (((-1168) $) NIL)) (-2107 (((-570) $) 128)) (-2131 (((-1282) $ (-384)) 174)) (-4158 (((-1282) $ (-384)) 191)) (-3580 (((-1129) $) NIL)) (-1971 (((-1282) $ (-384)) 190)) (-3945 (((-1282) $ (-1168)) 136)) (-3038 (((-1282) $ (-777) (-777) (-928) (-928)) 158)) (-3763 (((-1282) $ (-1168)) 133)) (-2789 (((-1282) $ (-1168)) 135)) (-2896 (((-1282) $ (-158) (-158)) 157)) (-3802 (((-868) $) 166)) (-4125 (((-1282) $) 138)) (-2932 (((-1282) $ (-1168)) 189)) (-3359 (((-112) $ $) NIL)) (-3784 (((-1282) $ (-1168)) 132)) (-3025 (((-112) $ $) NIL)))
+(((-1279) (-13 (-1109) (-10 -8 (-15 -4169 ((-384))) (-15 -4169 ((-384) (-384))) (-15 -3544 ((-384))) (-15 -3544 ((-384) (-384))) (-15 -2438 ((-384))) (-15 -2438 ((-384) (-384))) (-15 -1314 ((-384))) (-15 -1314 ((-384) (-384))) (-15 -3591 ((-384))) (-15 -3591 ((-384) (-384))) (-15 -4127 ($)) (-15 -3955 ($ $)) (-15 -3955 ($ (-1142 (-227)) (-1168))) (-15 -3955 ($ (-1142 (-227)) (-650 (-266)))) (-15 -2169 ((-1142 (-227)) $)) (-15 -2169 ($ $ (-1142 (-227)))) (-15 -1827 ((-1282) $ (-777) (-950 (-227)))) (-15 -3389 ((-650 (-266)) $)) (-15 -3389 ($ $ (-650 (-266)))) (-15 -4421 ((-1282) $ (-777) (-777))) (-15 -2155 ((-1282) $ (-928) (-928))) (-15 -3372 ((-1282) $ (-1168))) (-15 -3038 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -3081 ((-1282) $ (-384) (-384) (-384) (-384) (-384))) (-15 -3081 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $)) (-15 -3081 ((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3081 ((-1282) $ (-570) (-570) (-384) (-384) (-384))) (-15 -3081 ((-1282) $ (-384) (-384))) (-15 -3081 ((-1282) $ (-384) (-384) (-384))) (-15 -2789 ((-1282) $ (-1168))) (-15 -3784 ((-1282) $ (-1168))) (-15 -3763 ((-1282) $ (-1168))) (-15 -4374 ((-1282) $ (-1168))) (-15 -3945 ((-1282) $ (-1168))) (-15 -4351 ((-1282) $ (-384) (-384))) (-15 -4351 ((-1282) $ (-570) (-570))) (-15 -3898 ((-1282) $ (-384))) (-15 -3898 ((-1282) $ (-384) (-384) (-384))) (-15 -3020 ((-1282) $ (-384) (-384))) (-15 -2342 ((-1282) $ (-1168))) (-15 -1971 ((-1282) $ (-384))) (-15 -4158 ((-1282) $ (-384))) (-15 -1750 ((-1282) $ (-1168))) (-15 -1762 ((-1282) $ (-1168))) (-15 -2932 ((-1282) $ (-1168))) (-15 -2358 ((-1282) $ (-384) (-384) (-384))) (-15 -2131 ((-1282) $ (-384))) (-15 -1773 ((-1282) $)) (-15 -2896 ((-1282) $ (-158) (-158))) (-15 -1800 ((-1168) $ (-1168))) (-15 -1800 ((-1168) $ (-1168) (-1168))) (-15 -1800 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -4125 ((-1282) $)) (-15 -2107 ((-570) $))))) (T -1279))
+((-4169 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-4169 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3544 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3544 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-2438 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-2438 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-1314 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-1314 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3591 (*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-3591 (*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))) (-4127 (*1 *1) (-5 *1 (-1279))) (-3955 (*1 *1 *1) (-5 *1 (-1279))) (-3955 (*1 *1 *2 *3) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-1168)) (-5 *1 (-1279)))) (-3955 (*1 *1 *2 *3) (-12 (-5 *2 (-1142 (-227))) (-5 *3 (-650 (-266))) (-5 *1 (-1279)))) (-2169 (*1 *2 *1) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279)))) (-2169 (*1 *1 *1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279)))) (-1827 (*1 *2 *1 *3 *4) (-12 (-5 *3 (-777)) (-5 *4 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3389 (*1 *2 *1) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1279)))) (-3389 (*1 *1 *1 *2) (-12 (-5 *2 (-650 (-266))) (-5 *1 (-1279)))) (-4421 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2155 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3372 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3038 (*1 *2 *1 *3 *3 *4 *4) (-12 (-5 *3 (-777)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3081 (*1 *2 *1 *3 *3 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3081 (*1 *2 *1) (-12 (-5 *2 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *1 (-1279)))) (-3081 (*1 *2 *1 *3) (-12 (-5 *3 (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227)))) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3081 (*1 *2 *1 *3 *3 *4 *4 *4) (-12 (-5 *3 (-570)) (-5 *4 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3081 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3081 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2789 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3784 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3763 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4374 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3945 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4351 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4351 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3898 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3898 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-3020 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2342 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1971 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-4158 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1750 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1762 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2932 (*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2358 (*1 *2 *1 *3 *3 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2131 (*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1773 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2896 (*1 *2 *1 *3 *3) (-12 (-5 *3 (-158)) (-5 *2 (-1282)) (-5 *1 (-1279)))) (-1800 (*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1279)))) (-1800 (*1 *2 *1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1279)))) (-1800 (*1 *2 *1 *2 *3) (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-1168)) (-5 *1 (-1279)))) (-4125 (*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))) (-2107 (*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-1279)))))
+(-13 (-1109) (-10 -8 (-15 -4169 ((-384))) (-15 -4169 ((-384) (-384))) (-15 -3544 ((-384))) (-15 -3544 ((-384) (-384))) (-15 -2438 ((-384))) (-15 -2438 ((-384) (-384))) (-15 -1314 ((-384))) (-15 -1314 ((-384) (-384))) (-15 -3591 ((-384))) (-15 -3591 ((-384) (-384))) (-15 -4127 ($)) (-15 -3955 ($ $)) (-15 -3955 ($ (-1142 (-227)) (-1168))) (-15 -3955 ($ (-1142 (-227)) (-650 (-266)))) (-15 -2169 ((-1142 (-227)) $)) (-15 -2169 ($ $ (-1142 (-227)))) (-15 -1827 ((-1282) $ (-777) (-950 (-227)))) (-15 -3389 ((-650 (-266)) $)) (-15 -3389 ($ $ (-650 (-266)))) (-15 -4421 ((-1282) $ (-777) (-777))) (-15 -2155 ((-1282) $ (-928) (-928))) (-15 -3372 ((-1282) $ (-1168))) (-15 -3038 ((-1282) $ (-777) (-777) (-928) (-928))) (-15 -3081 ((-1282) $ (-384) (-384) (-384) (-384) (-384))) (-15 -3081 ((-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))) $)) (-15 -3081 ((-1282) $ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227)) (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227)) (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))) (-15 -3081 ((-1282) $ (-570) (-570) (-384) (-384) (-384))) (-15 -3081 ((-1282) $ (-384) (-384))) (-15 -3081 ((-1282) $ (-384) (-384) (-384))) (-15 -2789 ((-1282) $ (-1168))) (-15 -3784 ((-1282) $ (-1168))) (-15 -3763 ((-1282) $ (-1168))) (-15 -4374 ((-1282) $ (-1168))) (-15 -3945 ((-1282) $ (-1168))) (-15 -4351 ((-1282) $ (-384) (-384))) (-15 -4351 ((-1282) $ (-570) (-570))) (-15 -3898 ((-1282) $ (-384))) (-15 -3898 ((-1282) $ (-384) (-384) (-384))) (-15 -3020 ((-1282) $ (-384) (-384))) (-15 -2342 ((-1282) $ (-1168))) (-15 -1971 ((-1282) $ (-384))) (-15 -4158 ((-1282) $ (-384))) (-15 -1750 ((-1282) $ (-1168))) (-15 -1762 ((-1282) $ (-1168))) (-15 -2932 ((-1282) $ (-1168))) (-15 -2358 ((-1282) $ (-384) (-384) (-384))) (-15 -2131 ((-1282) $ (-384))) (-15 -1773 ((-1282) $)) (-15 -2896 ((-1282) $ (-158) (-158))) (-15 -1800 ((-1168) $ (-1168))) (-15 -1800 ((-1168) $ (-1168) (-1168))) (-15 -1800 ((-1168) $ (-1168) (-650 (-1168)))) (-15 -4125 ((-1282) $)) (-15 -2107 ((-570) $))))
+((-3592 (((-650 (-1168)) (-650 (-1168))) 104) (((-650 (-1168))) 96)) (-1484 (((-650 (-1168))) 94)) (-3374 (((-650 (-928)) (-650 (-928))) 69) (((-650 (-928))) 64)) (-3938 (((-650 (-777)) (-650 (-777))) 61) (((-650 (-777))) 55)) (-1570 (((-1282)) 71)) (-3788 (((-928) (-928)) 87) (((-928)) 86)) (-1713 (((-928) (-928)) 85) (((-928)) 84)) (-2027 (((-880) (-880)) 81) (((-880)) 80)) (-2765 (((-227)) 91) (((-227) (-384)) 93)) (-2601 (((-928)) 88) (((-928) (-928)) 89)) (-2208 (((-928) (-928)) 83) (((-928)) 82)) (-1852 (((-880) (-880)) 75) (((-880)) 73)) (-3626 (((-880) (-880)) 77) (((-880)) 76)) (-2962 (((-880) (-880)) 79) (((-880)) 78)))
+(((-1280) (-10 -7 (-15 -1852 ((-880))) (-15 -1852 ((-880) (-880))) (-15 -3626 ((-880))) (-15 -3626 ((-880) (-880))) (-15 -2962 ((-880))) (-15 -2962 ((-880) (-880))) (-15 -2027 ((-880))) (-15 -2027 ((-880) (-880))) (-15 -2208 ((-928))) (-15 -2208 ((-928) (-928))) (-15 -3938 ((-650 (-777)))) (-15 -3938 ((-650 (-777)) (-650 (-777)))) (-15 -3374 ((-650 (-928)))) (-15 -3374 ((-650 (-928)) (-650 (-928)))) (-15 -1570 ((-1282))) (-15 -3592 ((-650 (-1168)))) (-15 -3592 ((-650 (-1168)) (-650 (-1168)))) (-15 -1484 ((-650 (-1168)))) (-15 -1713 ((-928))) (-15 -3788 ((-928))) (-15 -1713 ((-928) (-928))) (-15 -3788 ((-928) (-928))) (-15 -2601 ((-928) (-928))) (-15 -2601 ((-928))) (-15 -2765 ((-227) (-384))) (-15 -2765 ((-227))))) (T -1280))
+((-2765 (*1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-1280)))) (-2765 (*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-1280)))) (-2601 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-2601 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-3788 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1713 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-3788 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1713 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-1484 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-3592 (*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-3592 (*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))) (-1570 (*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1280)))) (-3374 (*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280)))) (-3374 (*1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280)))) (-3938 (*1 *2 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280)))) (-3938 (*1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280)))) (-2208 (*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-2208 (*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))) (-2027 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-2027 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-2962 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-2962 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-3626 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-3626 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-1852 (*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))) (-1852 (*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
+(-10 -7 (-15 -1852 ((-880))) (-15 -1852 ((-880) (-880))) (-15 -3626 ((-880))) (-15 -3626 ((-880) (-880))) (-15 -2962 ((-880))) (-15 -2962 ((-880) (-880))) (-15 -2027 ((-880))) (-15 -2027 ((-880) (-880))) (-15 -2208 ((-928))) (-15 -2208 ((-928) (-928))) (-15 -3938 ((-650 (-777)))) (-15 -3938 ((-650 (-777)) (-650 (-777)))) (-15 -3374 ((-650 (-928)))) (-15 -3374 ((-650 (-928)) (-650 (-928)))) (-15 -1570 ((-1282))) (-15 -3592 ((-650 (-1168)))) (-15 -3592 ((-650 (-1168)) (-650 (-1168)))) (-15 -1484 ((-650 (-1168)))) (-15 -1713 ((-928))) (-15 -3788 ((-928))) (-15 -1713 ((-928) (-928))) (-15 -3788 ((-928) (-928))) (-15 -2601 ((-928) (-928))) (-15 -2601 ((-928))) (-15 -2765 ((-227) (-384))) (-15 -2765 ((-227))))
+((-3820 (((-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)) (-4235 (((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266))) 30) (((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266))) 29)) (-3802 (((-1278) (-474)) 46)))
+(((-1281) (-10 -7 (-15 -3820 ((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -3820 ((-474) (-650 (-650 (-950 (-227)))))) (-15 -3820 ((-474) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -4235 ((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -4235 ((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3802 ((-1278) (-474))))) (T -1281))
+((-3802 (*1 *2 *3) (-12 (-5 *3 (-474)) (-5 *2 (-1278)) (-5 *1 (-1281)))) (-4235 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266))) (-5 *2 (-1278)) (-5 *1 (-1281)))) (-4235 (*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)))) (-3820 (*1 *2 *3 *4) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266))) (-5 *2 (-474)) (-5 *1 (-1281)))) (-3820 (*1 *2 *3) (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-474)) (-5 *1 (-1281)))) (-3820 (*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 -3820 ((-474) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -3820 ((-474) (-650 (-650 (-950 (-227)))))) (-15 -3820 ((-474) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -4235 ((-1278) (-650 (-650 (-950 (-227)))) (-880) (-880) (-928) (-650 (-266)))) (-15 -4235 ((-1278) (-650 (-650 (-950 (-227)))) (-650 (-266)))) (-15 -3802 ((-1278) (-474))))
+((-2716 (($) 6)) (-3802 (((-868) $) 9)))
+(((-1282) (-13 (-619 (-868)) (-10 -8 (-15 -2716 ($))))) (T -1282))
+((-2716 (*1 *1) (-5 *1 (-1282))))
+(-13 (-619 (-868)) (-10 -8 (-15 -2716 ($))))
+((-3125 (($ $ |#2|) 10)))
+(((-1283 |#1| |#2|) (-10 -8 (-15 -3125 (|#1| |#1| |#2|))) (-1284 |#2|) (-368)) (T -1283))
+NIL
+(-10 -8 (-15 -3125 (|#1| |#1| |#2|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2517 (((-135)) 33)) (-3802 (((-868) $) 12)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-3025 (((-112) $ $) 6)) (-3125 (($ $ |#1|) 34)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 15)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ |#1| $) 27) (($ $ |#1|) 31)))
(((-1284 |#1|) (-141) (-368)) (T -1284))
-((-3122 (*1 *1 *1 *2) (-12 (-4 *1 (-1284 *2)) (-4 *2 (-368)))) (-2951 (*1 *2) (-12 (-4 *1 (-1284 *3)) (-4 *3 (-368)) (-5 *2 (-135)))))
-(-13 (-723 |t#1|) (-10 -8 (-15 -3122 ($ $ |t#1|)) (-15 -2951 ((-135)))))
+((-3125 (*1 *1 *1 *2) (-12 (-4 *1 (-1284 *2)) (-4 *2 (-368)))) (-2517 (*1 *2) (-12 (-4 *1 (-1284 *3)) (-4 *3 (-368)) (-5 *2 (-135)))))
+(-13 (-723 |t#1|) (-10 -8 (-15 -3125 ($ $ |t#1|)) (-15 -2517 ((-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))
-((-4376 (((-650 (-1221 |#1|)) (-1186) (-1221 |#1|)) 83)) (-1456 (((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|))) 63)) (-2324 (((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|))) 74)) (-1406 (((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777)) 65)) (-1376 (((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186)) 32)) (-2623 (((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777)) 64)))
-(((-1285 |#1|) (-10 -7 (-15 -1406 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -2623 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -1456 ((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|)))) (-15 -1376 ((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186))) (-15 -4376 ((-650 (-1221 |#1|)) (-1186) (-1221 |#1|))) (-15 -2324 ((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|))))) (-368)) (T -1285))
-((-2324 (*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)))) (-4376 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-650 (-1221 *5))) (-5 *1 (-1285 *5)) (-5 *4 (-1221 *5)))) (-1376 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1 (-1182 (-959 *4)) (-959 *4))) (-5 *1 (-1285 *4)) (-4 *4 (-368)))) (-1456 (*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))))) (-2623 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4)))) (-5 *1 (-1285 *4)) (-4 *4 (-368)))) (-1406 (*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 -1406 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -2623 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -1456 ((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|)))) (-15 -1376 ((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186))) (-15 -4376 ((-650 (-1221 |#1|)) (-1186) (-1221 |#1|))) (-15 -2324 ((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|)))))
-((-4396 (((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|) 80)) (-2673 (((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) 79)))
-(((-1286 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -2673 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -4396 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|))) (-354) (-1253 |#1|) (-1253 |#2|) (-415 |#2| |#3|)) (T -1286))
-((-4396 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 *3)) (-5 *2 (-2 (|:| -1972 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-1286 *4 *3 *5 *6)) (-4 *6 (-415 *3 *5)))) (-2673 (*1 *2) (-12 (-4 *3 (-354)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -1972 (-695 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-695 *4)))) (-5 *1 (-1286 *3 *4 *5 *6)) (-4 *6 (-415 *4 *5)))))
-(-10 -7 (-15 -2673 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -4396 ((-2 (|:| -1972 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)))
-((-2558 (((-112) $ $) NIL)) (-1390 (((-1144) $) 11)) (-1619 (((-1144) $) 9)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1287) (-13 (-1092) (-10 -8 (-15 -1619 ((-1144) $)) (-15 -1390 ((-1144) $))))) (T -1287))
-((-1619 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))) (-1390 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
-(-13 (-1092) (-10 -8 (-15 -1619 ((-1144) $)) (-15 -1390 ((-1144) $))))
-((-2558 (((-112) $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2525 (((-1144) $) 9)) (-3799 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-2335 (((-112) $ $) NIL)) (-3022 (((-112) $ $) NIL)))
-(((-1288) (-13 (-1092) (-10 -8 (-15 -2525 ((-1144) $))))) (T -1288))
-((-2525 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1288)))))
-(-13 (-1092) (-10 -8 (-15 -2525 ((-1144) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 58)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) NIL)) (-4346 (((-112) $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3799 (((-868) $) 81) (($ (-570)) NIL) (($ |#4|) 65) ((|#4| $) 70) (($ |#1|) NIL (|has| |#1| (-174)))) (-3499 (((-777)) NIL T CONST)) (-1654 (((-1282) (-777)) 16)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 37 T CONST)) (-1875 (($) 84 T CONST)) (-3022 (((-112) $ $) 87)) (-3122 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3111 (($ $) 89) (($ $ $) NIL)) (-3101 (($ $ $) 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 -3122 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1654 ((-1282) (-777))))) (-1058) (-856) (-799) (-956 |#1| |#3| |#2|) (-650 |#2|) (-650 (-777)) (-777)) (T -1289))
-((-3122 (*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)))) (-1654 (*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 -3122 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -1654 ((-1282) (-777)))))
-((-2558 (((-112) $ $) NIL)) (-3835 (((-650 (-2 (|:| -4122 $) (|:| -1762 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1515 (((-650 $) (-650 |#4|)) 96)) (-1755 (((-650 |#3|) $) NIL)) (-3051 (((-112) $) NIL)) (-1416 (((-112) $) NIL (|has| |#1| (-562)))) (-2986 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3484 ((|#4| |#4| $) NIL)) (-3393 (((-2 (|:| |under| $) (|:| -3665 $) (|:| |upper| $)) $ |#3|) NIL)) (-4302 (((-112) $ (-777)) NIL)) (-1431 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449))) (((-3 |#4| "failed") $ |#3|) NIL)) (-1705 (($) NIL T CONST)) (-3737 (((-112) $) NIL (|has| |#1| (-562)))) (-2467 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4047 (((-112) $ $) NIL (|has| |#1| (-562)))) (-1876 (((-112) $) NIL (|has| |#1| (-562)))) (-3868 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 31)) (-2450 (((-650 |#4|) (-650 |#4|) $) 28 (|has| |#1| (-562)))) (-4059 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4380 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3216 (($ (-650 |#4|)) NIL)) (-3555 (((-3 $ "failed") $) 78)) (-2128 ((|#4| |#4| $) 83)) (-3579 (($ $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1741 (($ |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3691 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-2862 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-1544 ((|#4| |#4| $) NIL)) (-3624 ((|#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)) (-4334 (((-2 (|:| -4122 (-650 |#4|)) (|:| -1762 (-650 |#4|))) $) NIL)) (-3627 (((-650 |#4|) $) NIL (|has| $ (-6 -4449)))) (-3586 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1724 ((|#3| $) 84)) (-2929 (((-112) $ (-777)) NIL)) (-2752 (((-650 |#4|) $) 32 (|has| $ (-6 -4449)))) (-4108 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109))))) (-1878 (((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 35) (((-3 $ "failed") (-650 |#4|)) 38)) (-1502 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4450)))) (-1356 (($ (-1 |#4| |#4|) $) NIL)) (-1423 (((-650 |#3|) $) NIL)) (-3907 (((-112) |#3| $) NIL)) (-3231 (((-112) $ (-777)) NIL)) (-1988 (((-1168) $) NIL)) (-1769 (((-3 |#4| "failed") $) NIL)) (-3534 (((-650 |#4|) $) 54)) (-1491 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2520 ((|#4| |#4| $) 82)) (-2971 (((-112) $ $) 93)) (-4375 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-2035 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-4201 ((|#4| |#4| $) NIL)) (-3577 (((-1129) $) NIL)) (-3543 (((-3 |#4| "failed") $) 77)) (-1790 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-1690 (((-3 $ "failed") $ |#4|) NIL)) (-2431 (($ $ |#4|) NIL)) (-3642 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-1770 (($ $ (-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))))) (-2643 (((-112) $ $) NIL)) (-2017 (((-112) $) 75)) (-2380 (($) 46)) (-2130 (((-777) $) NIL)) (-3584 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4449)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3951 (($ $) NIL)) (-1425 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3811 (($ (-650 |#4|)) NIL)) (-3710 (($ $ |#3|) NIL)) (-4224 (($ $ |#3|) NIL)) (-4085 (($ $) NIL)) (-1615 (($ $ |#3|) NIL)) (-3799 (((-868) $) NIL) (((-650 |#4|) $) 63)) (-4392 (((-777) $) NIL (|has| |#3| (-373)))) (-2555 (((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 44) (((-3 $ "failed") (-650 |#4|)) 45)) (-2064 (((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 73) (((-650 $) (-650 |#4|)) 74)) (-2335 (((-112) $ $) NIL)) (-1405 (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 27) (((-3 (-2 (|:| |bas| $) (|:| -3353 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4148 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-4371 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4449)))) (-3716 (((-650 |#3|) $) NIL)) (-2561 (((-112) |#3| $) NIL)) (-3022 (((-112) $ $) NIL)) (-2569 (((-777) $) NIL (|has| $ (-6 -4449)))))
-(((-1290 |#1| |#2| |#3| |#4|) (-13 (-1220 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -1878 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1878 ((-3 $ "failed") (-650 |#4|))) (-15 -2555 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2555 ((-3 $ "failed") (-650 |#4|))) (-15 -2064 ((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2064 ((-650 $) (-650 |#4|))))) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1290))
-((-1878 (*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)))) (-1878 (*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)))) (-2555 (*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)))) (-2555 (*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)))) (-2064 (*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)))) (-2064 (*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 -1878 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1878 ((-3 $ "failed") (-650 |#4|))) (-15 -2555 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2555 ((-3 $ "failed") (-650 |#4|))) (-15 -2064 ((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2064 ((-650 $) (-650 |#4|)))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3990 (((-3 $ "failed") $ $) 20)) (-1705 (($) 18 T CONST)) (-2875 (((-3 $ "failed") $) 37)) (-4346 (((-112) $) 35)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 45)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ |#1|) 47) (($ |#1| $) 46)))
+((-1316 (((-650 (-1221 |#1|)) (-1186) (-1221 |#1|)) 83)) (-2562 (((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|))) 63)) (-3250 (((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|))) 74)) (-3878 (((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777)) 65)) (-3418 (((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186)) 32)) (-3239 (((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777)) 64)))
+(((-1285 |#1|) (-10 -7 (-15 -3878 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -3239 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -2562 ((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|)))) (-15 -3418 ((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186))) (-15 -1316 ((-650 (-1221 |#1|)) (-1186) (-1221 |#1|))) (-15 -3250 ((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|))))) (-368)) (T -1285))
+((-3250 (*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)))) (-1316 (*1 *2 *3 *4) (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-650 (-1221 *5))) (-5 *1 (-1285 *5)) (-5 *4 (-1221 *5)))) (-3418 (*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1 (-1182 (-959 *4)) (-959 *4))) (-5 *1 (-1285 *4)) (-4 *4 (-368)))) (-2562 (*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))))) (-3239 (*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4)))) (-5 *1 (-1285 *4)) (-4 *4 (-368)))) (-3878 (*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 -3878 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -3239 ((-1 (-1166 (-959 |#1|)) (-1166 (-959 |#1|))) (-777))) (-15 -2562 ((-1166 (-1166 (-959 |#1|))) (-1186) (-1166 (-959 |#1|)))) (-15 -3418 ((-1 (-1182 (-959 |#1|)) (-959 |#1|)) (-1186))) (-15 -1316 ((-650 (-1221 |#1|)) (-1186) (-1221 |#1|))) (-15 -3250 ((-1 (-1166 (-1221 |#1|)) (-1166 (-1221 |#1|))) (-777) (-1221 |#1|) (-1166 (-1221 |#1|)))))
+((-3422 (((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|) 80)) (-3710 (((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|)))) 79)))
+(((-1286 |#1| |#2| |#3| |#4|) (-10 -7 (-15 -3710 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -3422 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|))) (-354) (-1253 |#1|) (-1253 |#2|) (-415 |#2| |#3|)) (T -1286))
+((-3422 (*1 *2 *3) (-12 (-4 *4 (-354)) (-4 *3 (-1253 *4)) (-4 *5 (-1253 *3)) (-5 *2 (-2 (|:| -3827 (-695 *3)) (|:| |basisDen| *3) (|:| |basisInv| (-695 *3)))) (-5 *1 (-1286 *4 *3 *5 *6)) (-4 *6 (-415 *3 *5)))) (-3710 (*1 *2) (-12 (-4 *3 (-354)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 *4)) (-5 *2 (-2 (|:| -3827 (-695 *4)) (|:| |basisDen| *4) (|:| |basisInv| (-695 *4)))) (-5 *1 (-1286 *3 *4 *5 *6)) (-4 *6 (-415 *4 *5)))))
+(-10 -7 (-15 -3710 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))))) (-15 -3422 ((-2 (|:| -3827 (-695 |#2|)) (|:| |basisDen| |#2|) (|:| |basisInv| (-695 |#2|))) |#2|)))
+((-2560 (((-112) $ $) NIL)) (-3419 (((-1144) $) 11)) (-1679 (((-1144) $) 9)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 17) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1287) (-13 (-1092) (-10 -8 (-15 -1679 ((-1144) $)) (-15 -3419 ((-1144) $))))) (T -1287))
+((-1679 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))) (-3419 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
+(-13 (-1092) (-10 -8 (-15 -1679 ((-1144) $)) (-15 -3419 ((-1144) $))))
+((-2560 (((-112) $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2526 (((-1144) $) 9)) (-3802 (((-868) $) 15) (($ (-1191)) NIL) (((-1191) $) NIL)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) NIL)))
+(((-1288) (-13 (-1092) (-10 -8 (-15 -2526 ((-1144) $))))) (T -1288))
+((-2526 (*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1288)))))
+(-13 (-1092) (-10 -8 (-15 -2526 ((-1144) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 58)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) NIL)) (-4139 (((-112) $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 81) (($ (-570)) NIL) (($ |#4|) 65) ((|#4| $) 70) (($ |#1|) NIL (|has| |#1| (-174)))) (-2851 (((-777)) NIL T CONST)) (-3891 (((-1282) (-777)) 16)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 37 T CONST)) (-1876 (($) 84 T CONST)) (-3025 (((-112) $ $) 87)) (-3125 (((-3 $ "failed") $ $) NIL (|has| |#1| (-368)))) (-3114 (($ $) 89) (($ $ $) NIL)) (-3104 (($ $ $) 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 -3125 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3891 ((-1282) (-777))))) (-1058) (-856) (-799) (-956 |#1| |#3| |#2|) (-650 |#2|) (-650 (-777)) (-777)) (T -1289))
+((-3125 (*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)))) (-3891 (*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 -3125 ((-3 $ "failed") $ $)) |%noBranch|) (-15 -3891 ((-1282) (-777)))))
+((-2560 (((-112) $ $) NIL)) (-2901 (((-650 (-2 (|:| -4125 $) (|:| -1765 (-650 |#4|)))) (-650 |#4|)) NIL)) (-1911 (((-650 $) (-650 |#4|)) 96)) (-1755 (((-650 |#3|) $) NIL)) (-4092 (((-112) $) NIL)) (-1320 (((-112) $) NIL (|has| |#1| (-562)))) (-1625 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2698 ((|#4| |#4| $) NIL)) (-3396 (((-2 (|:| |under| $) (|:| -1920 $) (|:| |upper| $)) $ |#3|) NIL)) (-1932 (((-112) $ (-777)) NIL)) (-1434 (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452))) (((-3 |#4| "failed") $ |#3|) NIL)) (-3195 (($) NIL T CONST)) (-3230 (((-112) $) NIL (|has| |#1| (-562)))) (-2339 (((-112) $ $) NIL (|has| |#1| (-562)))) (-4337 (((-112) $ $) NIL (|has| |#1| (-562)))) (-2327 (((-112) $) NIL (|has| |#1| (-562)))) (-3175 (((-650 |#4|) (-650 |#4|) $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) 31)) (-2167 (((-650 |#4|) (-650 |#4|) $) 28 (|has| |#1| (-562)))) (-3276 (((-650 |#4|) (-650 |#4|) $) NIL (|has| |#1| (-562)))) (-4383 (((-3 $ "failed") (-650 |#4|)) NIL)) (-3220 (($ (-650 |#4|)) NIL)) (-3558 (((-3 $ "failed") $) 78)) (-3059 ((|#4| |#4| $) 83)) (-3582 (($ $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-1742 (($ |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (($ (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3971 (((-2 (|:| |rnum| |#1|) (|:| |polnum| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-1772 (((-112) |#4| $ (-1 (-112) |#4| |#4|)) NIL)) (-2191 ((|#4| |#4| $) NIL)) (-3627 ((|#4| (-1 |#4| |#4| |#4|) $ |#4| |#4|) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) ((|#4| (-1 |#4| |#4| |#4|) $ |#4|) NIL (|has| $ (-6 -4452))) ((|#4| (-1 |#4| |#4| |#4|) $) NIL (|has| $ (-6 -4452))) ((|#4| |#4| $ (-1 |#4| |#4| |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-4031 (((-2 (|:| -4125 (-650 |#4|)) (|:| -1765 (-650 |#4|))) $) NIL)) (-3630 (((-650 |#4|) $) NIL (|has| $ (-6 -4452)))) (-2391 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-3357 ((|#3| $) 84)) (-2317 (((-112) $ (-777)) NIL)) (-2052 (((-650 |#4|) $) 32 (|has| $ (-6 -4452)))) (-3767 (((-112) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109))))) (-2337 (((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 35) (((-3 $ "failed") (-650 |#4|)) 38)) (-1503 (($ (-1 |#4| |#4|) $) NIL (|has| $ (-6 -4453)))) (-1357 (($ (-1 |#4| |#4|) $) NIL)) (-1388 (((-650 |#3|) $) NIL)) (-2387 (((-112) |#3| $) NIL)) (-2193 (((-112) $ (-777)) NIL)) (-3989 (((-1168) $) NIL)) (-1770 (((-3 |#4| "failed") $) NIL)) (-3151 (((-650 |#4|) $) 54)) (-2898 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-1590 ((|#4| |#4| $) 82)) (-1433 (((-112) $ $) 93)) (-4427 (((-2 (|:| |num| |#4|) (|:| |den| |#1|)) |#4| $) NIL (|has| |#1| (-562)))) (-3279 (((-112) |#4| $) NIL) (((-112) $) NIL)) (-2222 ((|#4| |#4| $) NIL)) (-3580 (((-1129) $) NIL)) (-3546 (((-3 |#4| "failed") $) 77)) (-2770 (((-3 |#4| "failed") (-1 (-112) |#4|) $) NIL)) (-4207 (((-3 $ "failed") $ |#4|) NIL)) (-3152 (($ $ |#4|) NIL)) (-1627 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-1771 (($ $ (-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))))) (-3415 (((-112) $ $) NIL)) (-4283 (((-112) $) 75)) (-2656 (($) 46)) (-3079 (((-777) $) NIL)) (-3587 (((-777) |#4| $) NIL (-12 (|has| $ (-6 -4452)) (|has| |#4| (-1109)))) (((-777) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-3954 (($ $) NIL)) (-1426 (((-542) $) NIL (|has| |#4| (-620 (-542))))) (-3814 (($ (-650 |#4|)) NIL)) (-4138 (($ $ |#3|) NIL)) (-2435 (($ $ |#3|) NIL)) (-3563 (($ $) NIL)) (-1631 (($ $ |#3|) NIL)) (-3802 (((-868) $) NIL) (((-650 |#4|) $) 63)) (-3394 (((-777) $) NIL (|has| |#3| (-373)))) (-1982 (((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 44) (((-3 $ "failed") (-650 |#4|)) 45)) (-3614 (((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|)) 73) (((-650 $) (-650 |#4|)) 74)) (-3359 (((-112) $ $) NIL)) (-4336 (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4| |#4|)) 27) (((-3 (-2 (|:| |bas| $) (|:| -3356 (-650 |#4|))) "failed") (-650 |#4|) (-1 (-112) |#4|) (-1 (-112) |#4| |#4|)) NIL)) (-2938 (((-112) $ (-1 (-112) |#4| (-650 |#4|))) NIL)) (-4379 (((-112) (-1 (-112) |#4|) $) NIL (|has| $ (-6 -4452)))) (-4204 (((-650 |#3|) $) NIL)) (-3857 (((-112) |#3| $) NIL)) (-3025 (((-112) $ $) NIL)) (-2570 (((-777) $) NIL (|has| $ (-6 -4452)))))
+(((-1290 |#1| |#2| |#3| |#4|) (-13 (-1220 |#1| |#2| |#3| |#4|) (-10 -8 (-15 -2337 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2337 ((-3 $ "failed") (-650 |#4|))) (-15 -1982 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1982 ((-3 $ "failed") (-650 |#4|))) (-15 -3614 ((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3614 ((-650 $) (-650 |#4|))))) (-562) (-799) (-856) (-1074 |#1| |#2| |#3|)) (T -1290))
+((-2337 (*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)))) (-2337 (*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)))) (-1982 (*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)))) (-1982 (*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)))) (-3614 (*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)))) (-3614 (*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 -2337 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -2337 ((-3 $ "failed") (-650 |#4|))) (-15 -1982 ((-3 $ "failed") (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -1982 ((-3 $ "failed") (-650 |#4|))) (-15 -3614 ((-650 $) (-650 |#4|) (-1 (-112) |#4| |#4|) (-1 |#4| |#4| |#4|))) (-15 -3614 ((-650 $) (-650 |#4|)))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-1966 (((-3 $ "failed") $ $) 20)) (-3195 (($) 18 T CONST)) (-1929 (((-3 $ "failed") $) 37)) (-4139 (((-112) $) 35)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#1|) 45)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2558 (((-112) $ $) 67)) (-3467 (((-112) $) NIL)) (-3179 (((-650 |#1|) $) 52)) (-4065 (($ $ (-777)) 46)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3032 (($ $ (-777)) 24 (|has| |#2| (-174))) (($ $ $) 25 (|has| |#2| (-174)))) (-1705 (($) NIL T CONST)) (-1745 (($ $ $) 70) (($ $ (-825 |#1|)) 56) (($ $ |#1|) 60)) (-4380 (((-3 (-825 |#1|) "failed") $) NIL)) (-3216 (((-825 |#1|) $) NIL)) (-1956 (($ $) 39)) (-2875 (((-3 $ "failed") $) NIL)) (-3078 (((-112) $) NIL)) (-3741 (($ $) NIL)) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3384 (($ (-825 |#1|) |#2|) 38)) (-3264 (($ $) 40)) (-1999 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 12)) (-3966 (((-825 |#1|) $) NIL)) (-1427 (((-825 |#1|) $) 41)) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-1761 (($ $ $) 69) (($ $ (-825 |#1|)) 58) (($ $ |#1|) 62)) (-2492 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1915 (((-825 |#1|) $) 35)) (-1927 ((|#2| $) 37)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-2130 (((-777) $) 43)) (-3935 (((-112) $) 47)) (-3725 ((|#2| $) NIL)) (-3799 (((-868) $) NIL) (($ (-825 |#1|)) 30) (($ |#1|) 31) (($ |#2|) NIL) (($ (-570)) NIL)) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ (-825 |#1|)) NIL)) (-1452 ((|#2| $ $) 76) ((|#2| $ (-825 |#1|)) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 13 T CONST)) (-1875 (($) 19 T CONST)) (-4141 (((-650 (-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3022 (((-112) $ $) 44)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 28)) (** (($ $ (-777)) NIL) (($ $ (-928)) NIL)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ |#2| $) 27) (($ $ |#2|) 68) (($ |#2| (-825 |#1|)) NIL) (($ |#1| $) 33) (($ $ $) NIL)))
+((-2560 (((-112) $ $) 67)) (-3721 (((-112) $) NIL)) (-3182 (((-650 |#1|) $) 52)) (-3327 (($ $ (-777)) 46)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3927 (($ $ (-777)) 24 (|has| |#2| (-174))) (($ $ $) 25 (|has| |#2| (-174)))) (-3195 (($) NIL T CONST)) (-3571 (($ $ $) 70) (($ $ (-825 |#1|)) 56) (($ $ |#1|) 60)) (-4383 (((-3 (-825 |#1|) "failed") $) NIL)) (-3220 (((-825 |#1|) $) NIL)) (-1954 (($ $) 39)) (-1929 (((-3 $ "failed") $) NIL)) (-3184 (((-112) $) NIL)) (-3247 (($ $) NIL)) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3387 (($ (-825 |#1|) |#2|) 38)) (-2523 (($ $) 40)) (-4093 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 12)) (-1683 (((-825 |#1|) $) NIL)) (-1428 (((-825 |#1|) $) 41)) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-3712 (($ $ $) 69) (($ $ (-825 |#1|)) 58) (($ $ |#1|) 62)) (-2598 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1914 (((-825 |#1|) $) 35)) (-1928 ((|#2| $) 37)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3079 (((-777) $) 43)) (-2624 (((-112) $) 47)) (-3728 ((|#2| $) NIL)) (-3802 (((-868) $) NIL) (($ (-825 |#1|)) 30) (($ |#1|) 31) (($ |#2|) NIL) (($ (-570)) NIL)) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ (-825 |#1|)) NIL)) (-1453 ((|#2| $ $) 76) ((|#2| $ (-825 |#1|)) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 13 T CONST)) (-1876 (($) 19 T CONST)) (-2884 (((-650 (-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|))) $) NIL)) (-3025 (((-112) $ $) 44)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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|))
-((-2789 ((|#3| |#3| (-777)) 28)) (-4387 ((|#3| |#3| (-777)) 34)) (-2969 ((|#3| |#3| |#3| (-777)) 35)))
-(((-1293 |#1| |#2| |#3|) (-10 -7 (-15 -4387 (|#3| |#3| (-777))) (-15 -2789 (|#3| |#3| (-777))) (-15 -2969 (|#3| |#3| |#3| (-777)))) (-13 (-1058) (-723 (-413 (-570)))) (-856) (-1298 |#2| |#1|)) (T -1293))
-((-2969 (*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)))) (-2789 (*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)))) (-4387 (*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 -4387 (|#3| |#3| (-777))) (-15 -2789 (|#3| |#3| (-777))) (-15 -2969 (|#3| |#3| |#3| (-777))))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3179 (((-650 |#1|) $) 47)) (-3990 (((-3 $ "failed") $ $) 20)) (-3032 (($ $ $) 50 (|has| |#2| (-174))) (($ $ (-777)) 49 (|has| |#2| (-174)))) (-1705 (($) 18 T CONST)) (-1745 (($ $ |#1|) 61) (($ $ (-825 |#1|)) 60) (($ $ $) 59)) (-4380 (((-3 (-825 |#1|) "failed") $) 71)) (-3216 (((-825 |#1|) $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-3078 (((-112) $) 52)) (-3741 (($ $) 51)) (-4346 (((-112) $) 35)) (-2359 (((-112) $) 57)) (-3384 (($ (-825 |#1|) |#2|) 58)) (-3264 (($ $) 56)) (-1999 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 67)) (-3966 (((-825 |#1|) $) 68)) (-1356 (($ (-1 |#2| |#2|) $) 48)) (-1761 (($ $ |#1|) 64) (($ $ (-825 |#1|)) 63) (($ $ $) 62)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-3935 (((-112) $) 54)) (-3725 ((|#2| $) 53)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#2|) 75) (($ (-825 |#1|)) 70) (($ |#1|) 55)) (-1452 ((|#2| $ (-825 |#1|)) 66) ((|#2| $ $) 65)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
+((-2792 ((|#3| |#3| (-777)) 28)) (-4389 ((|#3| |#3| (-777)) 34)) (-1404 ((|#3| |#3| |#3| (-777)) 35)))
+(((-1293 |#1| |#2| |#3|) (-10 -7 (-15 -4389 (|#3| |#3| (-777))) (-15 -2792 (|#3| |#3| (-777))) (-15 -1404 (|#3| |#3| |#3| (-777)))) (-13 (-1058) (-723 (-413 (-570)))) (-856) (-1298 |#2| |#1|)) (T -1293))
+((-1404 (*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)))) (-2792 (*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)))) (-4389 (*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 -4389 (|#3| |#3| (-777))) (-15 -2792 (|#3| |#3| (-777))) (-15 -1404 (|#3| |#3| |#3| (-777))))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3182 (((-650 |#1|) $) 47)) (-1966 (((-3 $ "failed") $ $) 20)) (-3927 (($ $ $) 50 (|has| |#2| (-174))) (($ $ (-777)) 49 (|has| |#2| (-174)))) (-3195 (($) 18 T CONST)) (-3571 (($ $ |#1|) 61) (($ $ (-825 |#1|)) 60) (($ $ $) 59)) (-4383 (((-3 (-825 |#1|) "failed") $) 71)) (-3220 (((-825 |#1|) $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-3184 (((-112) $) 52)) (-3247 (($ $) 51)) (-4139 (((-112) $) 35)) (-3633 (((-112) $) 57)) (-3387 (($ (-825 |#1|) |#2|) 58)) (-2523 (($ $) 56)) (-4093 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 67)) (-1683 (((-825 |#1|) $) 68)) (-1357 (($ (-1 |#2| |#2|) $) 48)) (-3712 (($ $ |#1|) 64) (($ $ (-825 |#1|)) 63) (($ $ $) 62)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-2624 (((-112) $) 54)) (-3728 ((|#2| $) 53)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#2|) 75) (($ (-825 |#1|)) 70) (($ |#1|) 55)) (-1453 ((|#2| $ (-825 |#1|)) 66) ((|#2| $ $) 65)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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)))) (-3966 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-825 *3)))) (-1999 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-2 (|:| |k| (-825 *3)) (|:| |c| *4))))) (-1452 (*1 *2 *1 *3) (-12 (-5 *3 (-825 *4)) (-4 *1 (-1294 *4 *2)) (-4 *4 (-856)) (-4 *2 (-1058)))) (-1452 (*1 *2 *1 *1) (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (-1761 (*1 *1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-1761 (*1 *1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-1761 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-1745 (*1 *1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-1745 (*1 *1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-1745 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3384 (*1 *1 *2 *3) (-12 (-5 *2 (-825 *4)) (-4 *4 (-856)) (-4 *1 (-1294 *4 *3)) (-4 *3 (-1058)))) (-2359 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-3264 (*1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3799 (*1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3935 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-3725 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (-3078 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-3741 (*1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3032 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)) (-4 *3 (-174)))) (-3032 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-4 *4 (-174)))) (-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3179 (*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 -3966 ((-825 |t#1|) $)) (-15 -1999 ((-2 (|:| |k| (-825 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -1452 (|t#2| $ (-825 |t#1|))) (-15 -1452 (|t#2| $ $)) (-15 -1761 ($ $ |t#1|)) (-15 -1761 ($ $ (-825 |t#1|))) (-15 -1761 ($ $ $)) (-15 -1745 ($ $ |t#1|)) (-15 -1745 ($ $ (-825 |t#1|))) (-15 -1745 ($ $ $)) (-15 -3384 ($ (-825 |t#1|) |t#2|)) (-15 -2359 ((-112) $)) (-15 -3264 ($ $)) (-15 -3799 ($ |t#1|)) (-15 -3935 ((-112) $)) (-15 -3725 (|t#2| $)) (-15 -3078 ((-112) $)) (-15 -3741 ($ $)) (IF (|has| |t#2| (-174)) (PROGN (-15 -3032 ($ $ $)) (-15 -3032 ($ $ (-777)))) |%noBranch|) (-15 -1356 ($ (-1 |t#2| |t#2|) $)) (-15 -3179 ((-650 |t#1|) $)) (IF (|has| |t#2| (-6 -4442)) (-6 -4442) |%noBranch|)))
+((* (*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)))) (-1683 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-825 *3)))) (-4093 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-2 (|:| |k| (-825 *3)) (|:| |c| *4))))) (-1453 (*1 *2 *1 *3) (-12 (-5 *3 (-825 *4)) (-4 *1 (-1294 *4 *2)) (-4 *4 (-856)) (-4 *2 (-1058)))) (-1453 (*1 *2 *1 *1) (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (-3712 (*1 *1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3712 (*1 *1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3712 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3571 (*1 *1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3571 (*1 *1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3571 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3387 (*1 *1 *2 *3) (-12 (-5 *2 (-825 *4)) (-4 *4 (-856)) (-4 *1 (-1294 *4 *3)) (-4 *3 (-1058)))) (-3633 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-2523 (*1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3802 (*1 *1 *2) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-2624 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-3728 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058)))) (-3184 (*1 *2 *1) (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-112)))) (-3247 (*1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))) (-3927 (*1 *1 *1 *1) (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)) (-4 *3 (-174)))) (-3927 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-4 *4 (-174)))) (-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-3182 (*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 -1683 ((-825 |t#1|) $)) (-15 -4093 ((-2 (|:| |k| (-825 |t#1|)) (|:| |c| |t#2|)) $)) (-15 -1453 (|t#2| $ (-825 |t#1|))) (-15 -1453 (|t#2| $ $)) (-15 -3712 ($ $ |t#1|)) (-15 -3712 ($ $ (-825 |t#1|))) (-15 -3712 ($ $ $)) (-15 -3571 ($ $ |t#1|)) (-15 -3571 ($ $ (-825 |t#1|))) (-15 -3571 ($ $ $)) (-15 -3387 ($ (-825 |t#1|) |t#2|)) (-15 -3633 ((-112) $)) (-15 -2523 ($ $)) (-15 -3802 ($ |t#1|)) (-15 -2624 ((-112) $)) (-15 -3728 (|t#2| $)) (-15 -3184 ((-112) $)) (-15 -3247 ($ $)) (IF (|has| |t#2| (-174)) (PROGN (-15 -3927 ($ $ $)) (-15 -3927 ($ $ (-777)))) |%noBranch|) (-15 -1357 ($ (-1 |t#2| |t#2|) $)) (-15 -3182 ((-650 |t#1|) $)) (IF (|has| |t#2| (-6 -4445)) (-6 -4445) |%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))
-((-1787 (((-112) $) 15)) (-2561 (((-112) $) 14)) (-3944 (($ $) 19) (($ $ (-777)) 21)))
-(((-1295 |#1| |#2|) (-10 -8 (-15 -3944 (|#1| |#1| (-777))) (-15 -3944 (|#1| |#1|)) (-15 -1787 ((-112) |#1|)) (-15 -2561 ((-112) |#1|))) (-1296 |#2|) (-368)) (T -1295))
+((-2739 (((-112) $) 15)) (-3857 (((-112) $) 14)) (-1427 (($ $) 19) (($ $ (-777)) 21)))
+(((-1295 |#1| |#2|) (-10 -8 (-15 -1427 (|#1| |#1| (-777))) (-15 -1427 (|#1| |#1|)) (-15 -2739 ((-112) |#1|)) (-15 -3857 ((-112) |#1|))) (-1296 |#2|) (-368)) (T -1295))
NIL
-(-10 -8 (-15 -3944 (|#1| |#1| (-777))) (-15 -3944 (|#1| |#1|)) (-15 -1787 ((-112) |#1|)) (-15 -2561 ((-112) |#1|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-2034 (((-2 (|:| -3128 $) (|:| -4436 $) (|:| |associate| $)) $) 47)) (-3074 (($ $) 46)) (-3475 (((-112) $) 44)) (-1787 (((-112) $) 104)) (-2509 (((-777)) 100)) (-3990 (((-3 $ "failed") $ $) 20)) (-4364 (($ $) 81)) (-1652 (((-424 $) $) 80)) (-3473 (((-112) $ $) 65)) (-1705 (($) 18 T CONST)) (-4380 (((-3 |#1| "failed") $) 111)) (-3216 ((|#1| $) 112)) (-2506 (($ $ $) 61)) (-2875 (((-3 $ "failed") $) 37)) (-2518 (($ $ $) 62)) (-3035 (((-2 (|:| -1452 (-650 $)) (|:| -2466 $)) (-650 $)) 57)) (-2063 (($ $ (-777)) 97 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) 96 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3618 (((-112) $) 79)) (-4323 (((-839 (-928)) $) 94 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4346 (((-112) $) 35)) (-1641 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1899 (($ $ $) 52) (($ (-650 $)) 51)) (-1988 (((-1168) $) 10)) (-1877 (($ $) 78)) (-4064 (((-112) $) 103)) (-3577 (((-1129) $) 11)) (-4217 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1942 (($ $ $) 54) (($ (-650 $)) 53)) (-3801 (((-424 $) $) 82)) (-2587 (((-839 (-928))) 101)) (-1590 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2466 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2547 (((-3 $ "failed") $ $) 48)) (-3132 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2142 (((-777) $) 64)) (-2384 (((-2 (|:| -2573 $) (|:| -3691 $)) $ $) 63)) (-2289 (((-3 (-777) "failed") $ $) 95 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2951 (((-135)) 109)) (-2130 (((-839 (-928)) $) 102)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 110)) (-3532 (((-3 $ "failed") $) 93 (-2892 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-2029 (((-112) $ $) 45)) (-2561 (((-112) $) 105)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3944 (($ $) 99 (|has| |#1| (-373))) (($ $ (-777)) 98 (|has| |#1| (-373)))) (-3022 (((-112) $ $) 6)) (-3122 (($ $ $) 73) (($ $ |#1|) 108)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36) (($ $ (-570)) 77)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ $ (-413 (-570))) 76) (($ (-413 (-570)) $) 75) (($ $ |#1|) 107) (($ |#1| $) 106)))
+(-10 -8 (-15 -1427 (|#1| |#1| (-777))) (-15 -1427 (|#1| |#1|)) (-15 -2739 ((-112) |#1|)) (-15 -3857 ((-112) |#1|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3270 (((-2 (|:| -3635 $) (|:| -4439 $) (|:| |associate| $)) $) 47)) (-4306 (($ $) 46)) (-2617 (((-112) $) 44)) (-2739 (((-112) $) 104)) (-1463 (((-777)) 100)) (-1966 (((-3 $ "failed") $ $) 20)) (-4310 (($ $) 81)) (-3871 (((-424 $) $) 80)) (-3765 (((-112) $ $) 65)) (-3195 (($) 18 T CONST)) (-4383 (((-3 |#1| "failed") $) 111)) (-3220 ((|#1| $) 112)) (-2504 (($ $ $) 61)) (-1929 (((-3 $ "failed") $) 37)) (-2519 (($ $ $) 62)) (-3958 (((-2 (|:| -1453 (-650 $)) (|:| -2467 $)) (-650 $)) 57)) (-3599 (($ $ (-777)) 97 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373)))) (($ $) 96 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-1336 (((-112) $) 79)) (-3941 (((-839 (-928)) $) 94 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-4139 (((-112) $) 35)) (-3764 (((-3 (-650 $) "failed") (-650 $) $) 58)) (-1901 (($ $ $) 52) (($ (-650 $)) 51)) (-3989 (((-1168) $) 10)) (-1878 (($ $) 78)) (-3315 (((-112) $) 103)) (-3580 (((-1129) $) 11)) (-2361 (((-1182 $) (-1182 $) (-1182 $)) 50)) (-1939 (($ $ $) 54) (($ (-650 $)) 53)) (-3804 (((-424 $) $) 82)) (-4068 (((-839 (-928))) 101)) (-1339 (((-2 (|:| |coef1| $) (|:| |coef2| $) (|:| -2467 $)) $ $) 60) (((-3 (-2 (|:| |coef1| $) (|:| |coef2| $)) "failed") $ $ $) 59)) (-2548 (((-3 $ "failed") $ $) 48)) (-3677 (((-3 (-650 $) "failed") (-650 $) $) 56)) (-2006 (((-777) $) 64)) (-2696 (((-2 (|:| -3959 $) (|:| -3971 $)) $ $) 63)) (-4080 (((-3 (-777) "failed") $ $) 95 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2517 (((-135)) 109)) (-3079 (((-839 (-928)) $) 102)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ $) 49) (($ (-413 (-570))) 74) (($ |#1|) 110)) (-3132 (((-3 $ "failed") $) 93 (-2895 (|has| |#1| (-146)) (|has| |#1| (-373))))) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-3228 (((-112) $ $) 45)) (-3857 (((-112) $) 105)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-1427 (($ $) 99 (|has| |#1| (-373))) (($ $ (-777)) 98 (|has| |#1| (-373)))) (-3025 (((-112) $ $) 6)) (-3125 (($ $ $) 73) (($ $ |#1|) 108)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-2561 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-1787 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-4064 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-2130 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))) (-2587 (*1 *2) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))) (-2509 (*1 *2) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-777)))) (-3944 (*1 *1 *1) (-12 (-4 *1 (-1296 *2)) (-4 *2 (-368)) (-4 *2 (-373)))) (-3944 (*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 -2561 ((-112) $)) (-15 -1787 ((-112) $)) (-15 -4064 ((-112) $)) (-15 -2130 ((-839 (-928)) $)) (-15 -2587 ((-839 (-928)))) (-15 -2509 ((-777))) (IF (|has| |t#1| (-373)) (PROGN (-6 (-408)) (-15 -3944 ($ $)) (-15 -3944 ($ $ (-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) -2892 (|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) -2892 (|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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3179 (((-650 |#1|) $) 98)) (-4065 (($ $ (-777)) 102)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3032 (($ $ $) NIL (|has| |#2| (-174))) (($ $ (-777)) NIL (|has| |#2| (-174)))) (-1705 (($) NIL T CONST)) (-1745 (($ $ |#1|) NIL) (($ $ (-825 |#1|)) NIL) (($ $ $) NIL)) (-4380 (((-3 (-825 |#1|) "failed") $) NIL) (((-3 (-900 |#1|) "failed") $) NIL)) (-3216 (((-825 |#1|) $) NIL) (((-900 |#1|) $) NIL)) (-1956 (($ $) 101)) (-2875 (((-3 $ "failed") $) NIL)) (-3078 (((-112) $) 90)) (-3741 (($ $) 93)) (-4057 (($ $ $ (-777)) 103)) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3384 (($ (-825 |#1|) |#2|) NIL) (($ (-900 |#1|) |#2|) 29)) (-3264 (($ $) 119)) (-1999 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3966 (((-825 |#1|) $) NIL)) (-1427 (((-825 |#1|) $) NIL)) (-1356 (($ (-1 |#2| |#2|) $) NIL)) (-1761 (($ $ |#1|) NIL) (($ $ (-825 |#1|)) NIL) (($ $ $) NIL)) (-2789 (($ $ (-777)) 112 (|has| |#2| (-723 (-413 (-570)))))) (-2492 (((-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1915 (((-900 |#1|) $) 83)) (-1927 ((|#2| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-4387 (($ $ (-777)) 109 (|has| |#2| (-723 (-413 (-570)))))) (-2130 (((-777) $) 99)) (-3935 (((-112) $) 84)) (-3725 ((|#2| $) 88)) (-3799 (((-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)) (-2186 (((-650 |#2|) $) NIL)) (-2249 ((|#2| $ (-900 |#1|)) NIL)) (-1452 ((|#2| $ (-825 |#1|)) NIL) ((|#2| $ $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 21 T CONST)) (-1875 (($) 28 T CONST)) (-4141 (((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $) NIL)) (-4343 (((-3 (-670 |#1| |#2|) "failed") $) 118)) (-3022 (((-112) $ $) 77)) (-3111 (($ $) 111) (($ $ $) 110)) (-3101 (($ $ $) 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 -3799 ($ (-670 |#1| |#2|))) (-15 -3799 ((-1292 |#1| |#2|) $)) (-15 -3799 ((-1301 |#1| |#2|) $)) (-15 -4343 ((-3 (-670 |#1| |#2|) "failed") $)) (-15 -4057 ($ $ $ (-777))) (IF (|has| |#2| (-723 (-413 (-570)))) (PROGN (-15 -4387 ($ $ (-777))) (-15 -2789 ($ $ (-777)))) |%noBranch|))) (-856) (-174)) (T -1297))
-((-3799 (*1 *1 *2) (-12 (-5 *2 (-670 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *1 (-1297 *3 *4)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3799 (*1 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-4343 (*1 *2 *1) (|partial| -12 (-5 *2 (-670 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-4057 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-4387 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4)) (-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))) (-2789 (*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 -3799 ($ (-670 |#1| |#2|))) (-15 -3799 ((-1292 |#1| |#2|) $)) (-15 -3799 ((-1301 |#1| |#2|) $)) (-15 -4343 ((-3 (-670 |#1| |#2|) "failed") $)) (-15 -4057 ($ $ $ (-777))) (IF (|has| |#2| (-723 (-413 (-570)))) (PROGN (-15 -4387 ($ $ (-777))) (-15 -2789 ($ $ (-777)))) |%noBranch|)))
-((-2558 (((-112) $ $) 7)) (-3467 (((-112) $) 17)) (-3179 (((-650 |#1|) $) 47)) (-4065 (($ $ (-777)) 80)) (-3990 (((-3 $ "failed") $ $) 20)) (-3032 (($ $ $) 50 (|has| |#2| (-174))) (($ $ (-777)) 49 (|has| |#2| (-174)))) (-1705 (($) 18 T CONST)) (-1745 (($ $ |#1|) 61) (($ $ (-825 |#1|)) 60) (($ $ $) 59)) (-4380 (((-3 (-825 |#1|) "failed") $) 71)) (-3216 (((-825 |#1|) $) 72)) (-2875 (((-3 $ "failed") $) 37)) (-3078 (((-112) $) 52)) (-3741 (($ $) 51)) (-4346 (((-112) $) 35)) (-2359 (((-112) $) 57)) (-3384 (($ (-825 |#1|) |#2|) 58)) (-3264 (($ $) 56)) (-1999 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 67)) (-3966 (((-825 |#1|) $) 68)) (-1427 (((-825 |#1|) $) 82)) (-1356 (($ (-1 |#2| |#2|) $) 48)) (-1761 (($ $ |#1|) 64) (($ $ (-825 |#1|)) 63) (($ $ $) 62)) (-1988 (((-1168) $) 10)) (-3577 (((-1129) $) 11)) (-2130 (((-777) $) 81)) (-3935 (((-112) $) 54)) (-3725 ((|#2| $) 53)) (-3799 (((-868) $) 12) (($ (-570)) 33) (($ |#2|) 75) (($ (-825 |#1|)) 70) (($ |#1|) 55)) (-1452 ((|#2| $ (-825 |#1|)) 66) ((|#2| $ $) 65)) (-3499 (((-777)) 32 T CONST)) (-2335 (((-112) $ $) 9)) (-1861 (($) 19 T CONST)) (-1875 (($) 34 T CONST)) (-3022 (((-112) $ $) 6)) (-3111 (($ $) 23) (($ $ $) 22)) (-3101 (($ $ $) 15)) (** (($ $ (-928)) 28) (($ $ (-777)) 36)) (* (($ (-928) $) 14) (($ (-777) $) 16) (($ (-570) $) 24) (($ $ $) 27) (($ |#2| $) 74) (($ $ |#2|) 73) (($ |#1| $) 69)))
+((-3857 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-2739 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-3315 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))) (-3079 (*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))) (-4068 (*1 *2) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-839 (-928))))) (-1463 (*1 *2) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-777)))) (-1427 (*1 *1 *1) (-12 (-4 *1 (-1296 *2)) (-4 *2 (-368)) (-4 *2 (-373)))) (-1427 (*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 -3857 ((-112) $)) (-15 -2739 ((-112) $)) (-15 -3315 ((-112) $)) (-15 -3079 ((-839 (-928)) $)) (-15 -4068 ((-839 (-928)))) (-15 -1463 ((-777))) (IF (|has| |t#1| (-373)) (PROGN (-6 (-408)) (-15 -1427 ($ $)) (-15 -1427 ($ $ (-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) -2895 (|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) -2895 (|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))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3182 (((-650 |#1|) $) 98)) (-3327 (($ $ (-777)) 102)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3927 (($ $ $) NIL (|has| |#2| (-174))) (($ $ (-777)) NIL (|has| |#2| (-174)))) (-3195 (($) NIL T CONST)) (-3571 (($ $ |#1|) NIL) (($ $ (-825 |#1|)) NIL) (($ $ $) NIL)) (-4383 (((-3 (-825 |#1|) "failed") $) NIL) (((-3 (-900 |#1|) "failed") $) NIL)) (-3220 (((-825 |#1|) $) NIL) (((-900 |#1|) $) NIL)) (-1954 (($ $) 101)) (-1929 (((-3 $ "failed") $) NIL)) (-3184 (((-112) $) 90)) (-3247 (($ $) 93)) (-3258 (($ $ $ (-777)) 103)) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3387 (($ (-825 |#1|) |#2|) NIL) (($ (-900 |#1|) |#2|) 29)) (-2523 (($ $) 119)) (-4093 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1683 (((-825 |#1|) $) NIL)) (-1428 (((-825 |#1|) $) NIL)) (-1357 (($ (-1 |#2| |#2|) $) NIL)) (-3712 (($ $ |#1|) NIL) (($ $ (-825 |#1|)) NIL) (($ $ $) NIL)) (-2792 (($ $ (-777)) 112 (|has| |#2| (-723 (-413 (-570)))))) (-2598 (((-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1914 (((-900 |#1|) $) 83)) (-1928 ((|#2| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-4389 (($ $ (-777)) 109 (|has| |#2| (-723 (-413 (-570)))))) (-3079 (((-777) $) 99)) (-2624 (((-112) $) 84)) (-3728 ((|#2| $) 88)) (-3802 (((-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)) (-2459 (((-650 |#2|) $) NIL)) (-1864 ((|#2| $ (-900 |#1|)) NIL)) (-1453 ((|#2| $ (-825 |#1|)) NIL) ((|#2| $ $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 21 T CONST)) (-1876 (($) 28 T CONST)) (-2884 (((-650 (-2 (|:| |k| (-900 |#1|)) (|:| |c| |#2|))) $) NIL)) (-4106 (((-3 (-670 |#1| |#2|) "failed") $) 118)) (-3025 (((-112) $ $) 77)) (-3114 (($ $) 111) (($ $ $) 110)) (-3104 (($ $ $) 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 -3802 ($ (-670 |#1| |#2|))) (-15 -3802 ((-1292 |#1| |#2|) $)) (-15 -3802 ((-1301 |#1| |#2|) $)) (-15 -4106 ((-3 (-670 |#1| |#2|) "failed") $)) (-15 -3258 ($ $ $ (-777))) (IF (|has| |#2| (-723 (-413 (-570)))) (PROGN (-15 -4389 ($ $ (-777))) (-15 -2792 ($ $ (-777)))) |%noBranch|))) (-856) (-174)) (T -1297))
+((-3802 (*1 *1 *2) (-12 (-5 *2 (-670 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)) (-5 *1 (-1297 *3 *4)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3802 (*1 *2 *1) (-12 (-5 *2 (-1301 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-4106 (*1 *2 *1) (|partial| -12 (-5 *2 (-670 *3 *4)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-3258 (*1 *1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174)))) (-4389 (*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4)) (-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))) (-2792 (*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 -3802 ($ (-670 |#1| |#2|))) (-15 -3802 ((-1292 |#1| |#2|) $)) (-15 -3802 ((-1301 |#1| |#2|) $)) (-15 -4106 ((-3 (-670 |#1| |#2|) "failed") $)) (-15 -3258 ($ $ $ (-777))) (IF (|has| |#2| (-723 (-413 (-570)))) (PROGN (-15 -4389 ($ $ (-777))) (-15 -2792 ($ $ (-777)))) |%noBranch|)))
+((-2560 (((-112) $ $) 7)) (-3721 (((-112) $) 17)) (-3182 (((-650 |#1|) $) 47)) (-3327 (($ $ (-777)) 80)) (-1966 (((-3 $ "failed") $ $) 20)) (-3927 (($ $ $) 50 (|has| |#2| (-174))) (($ $ (-777)) 49 (|has| |#2| (-174)))) (-3195 (($) 18 T CONST)) (-3571 (($ $ |#1|) 61) (($ $ (-825 |#1|)) 60) (($ $ $) 59)) (-4383 (((-3 (-825 |#1|) "failed") $) 71)) (-3220 (((-825 |#1|) $) 72)) (-1929 (((-3 $ "failed") $) 37)) (-3184 (((-112) $) 52)) (-3247 (($ $) 51)) (-4139 (((-112) $) 35)) (-3633 (((-112) $) 57)) (-3387 (($ (-825 |#1|) |#2|) 58)) (-2523 (($ $) 56)) (-4093 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) 67)) (-1683 (((-825 |#1|) $) 68)) (-1428 (((-825 |#1|) $) 82)) (-1357 (($ (-1 |#2| |#2|) $) 48)) (-3712 (($ $ |#1|) 64) (($ $ (-825 |#1|)) 63) (($ $ $) 62)) (-3989 (((-1168) $) 10)) (-3580 (((-1129) $) 11)) (-3079 (((-777) $) 81)) (-2624 (((-112) $) 54)) (-3728 ((|#2| $) 53)) (-3802 (((-868) $) 12) (($ (-570)) 33) (($ |#2|) 75) (($ (-825 |#1|)) 70) (($ |#1|) 55)) (-1453 ((|#2| $ (-825 |#1|)) 66) ((|#2| $ $) 65)) (-2851 (((-777)) 32 T CONST)) (-3359 (((-112) $ $) 9)) (-1862 (($) 19 T CONST)) (-1876 (($) 34 T CONST)) (-3025 (((-112) $ $) 6)) (-3114 (($ $) 23) (($ $ $) 22)) (-3104 (($ $ $) 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))
-((-1427 (*1 *2 *1) (-12 (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-825 *3)))) (-2130 (*1 *2 *1) (-12 (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-777)))) (-4065 (*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 -1427 ((-825 |t#1|) $)) (-15 -2130 ((-777) $)) (-15 -4065 ($ $ (-777)))))
+((-1428 (*1 *2 *1) (-12 (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-825 *3)))) (-3079 (*1 *2 *1) (-12 (-4 *1 (-1298 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *2 (-777)))) (-3327 (*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 -1428 ((-825 |t#1|) $)) (-15 -3079 ((-777) $)) (-15 -3327 ($ $ (-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))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3179 (((-650 (-1186)) $) NIL)) (-2885 (($ (-1292 (-1186) |#1|)) NIL)) (-4065 (($ $ (-777)) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3032 (($ $ $) NIL (|has| |#1| (-174))) (($ $ (-777)) NIL (|has| |#1| (-174)))) (-1705 (($) NIL T CONST)) (-1745 (($ $ (-1186)) NIL) (($ $ (-825 (-1186))) NIL) (($ $ $) NIL)) (-4380 (((-3 (-825 (-1186)) "failed") $) NIL)) (-3216 (((-825 (-1186)) $) NIL)) (-2875 (((-3 $ "failed") $) NIL)) (-3078 (((-112) $) NIL)) (-3741 (($ $) NIL)) (-4346 (((-112) $) NIL)) (-2359 (((-112) $) NIL)) (-3384 (($ (-825 (-1186)) |#1|) NIL)) (-3264 (($ $) NIL)) (-1999 (((-2 (|:| |k| (-825 (-1186))) (|:| |c| |#1|)) $) NIL)) (-3966 (((-825 (-1186)) $) NIL)) (-1427 (((-825 (-1186)) $) NIL)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-1761 (($ $ (-1186)) NIL) (($ $ (-825 (-1186))) NIL) (($ $ $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1392 (((-1292 (-1186) |#1|) $) NIL)) (-2130 (((-777) $) NIL)) (-3935 (((-112) $) NIL)) (-3725 ((|#1| $) NIL)) (-3799 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-825 (-1186))) NIL) (($ (-1186)) NIL)) (-1452 ((|#1| $ (-825 (-1186))) NIL) ((|#1| $ $) NIL)) (-3499 (((-777)) NIL T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) NIL T CONST)) (-2786 (((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $) NIL)) (-1875 (($) NIL T CONST)) (-3022 (((-112) $ $) NIL)) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 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 -1392 ((-1292 (-1186) |#1|) $)) (-15 -2885 ($ (-1292 (-1186) |#1|))) (-15 -2786 ((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $)))) (-1058)) (T -1299))
-((-1392 (*1 *2 *1) (-12 (-5 *2 (-1292 (-1186) *3)) (-5 *1 (-1299 *3)) (-4 *3 (-1058)))) (-2885 (*1 *1 *2) (-12 (-5 *2 (-1292 (-1186) *3)) (-4 *3 (-1058)) (-5 *1 (-1299 *3)))) (-2786 (*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 -1392 ((-1292 (-1186) |#1|) $)) (-15 -2885 ($ (-1292 (-1186) |#1|))) (-15 -2786 ((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $))))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) NIL)) (-3990 (((-3 $ "failed") $ $) NIL)) (-1705 (($) NIL T CONST)) (-4380 (((-3 |#2| "failed") $) NIL)) (-3216 ((|#2| $) NIL)) (-1956 (($ $) NIL)) (-2875 (((-3 $ "failed") $) 42)) (-3078 (((-112) $) 35)) (-3741 (($ $) 37)) (-4346 (((-112) $) NIL)) (-3173 (((-777) $) NIL)) (-4008 (((-650 $) $) NIL)) (-2359 (((-112) $) NIL)) (-3384 (($ |#2| |#1|) NIL)) (-3966 ((|#2| $) 24)) (-1427 ((|#2| $) 22)) (-1356 (($ (-1 |#1| |#1|) $) NIL)) (-2492 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-1915 ((|#2| $) NIL)) (-1927 ((|#1| $) NIL)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-3935 (((-112) $) 32)) (-3725 ((|#1| $) 33)) (-3799 (((-868) $) 65) (($ (-570)) 46) (($ |#1|) 41) (($ |#2|) NIL)) (-2186 (((-650 |#1|) $) NIL)) (-2249 ((|#1| $ |#2|) NIL)) (-1452 ((|#1| $ |#2|) 28)) (-3499 (((-777)) 14 T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 29 T CONST)) (-1875 (($) 11 T CONST)) (-4141 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-3022 (((-112) $ $) 30)) (-3122 (($ $ |#1|) 67 (|has| |#1| (-368)))) (-3111 (($ $) NIL) (($ $ $) NIL)) (-3101 (($ $ $) 50)) (** (($ $ (-928)) NIL) (($ $ (-777)) 52)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 51) (($ |#1| $) 47) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-2569 (((-777) $) 16)))
-(((-1300 |#1| |#2|) (-13 (-1058) (-1291 |#1|) (-387 |#1| |#2|) (-622 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -2569 ((-777) $)) (-15 -1427 (|#2| $)) (-15 -3966 (|#2| $)) (-15 -1956 ($ $)) (-15 -1452 (|#1| $ |#2|)) (-15 -3935 ((-112) $)) (-15 -3725 (|#1| $)) (-15 -3078 ((-112) $)) (-15 -3741 ($ $)) (-15 -1356 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-368)) (-15 -3122 ($ $ |#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)))) (-1956 (*1 *1 *1) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-1356 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-1300 *3 *4)) (-4 *4 (-852)))) (-2569 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-1427 (*1 *2 *1) (-12 (-4 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))) (-3966 (*1 *2 *1) (-12 (-4 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))) (-1452 (*1 *2 *1 *3) (-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))) (-3935 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-3725 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))) (-3078 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-3741 (*1 *1 *1) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-3122 (*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 -2569 ((-777) $)) (-15 -1427 (|#2| $)) (-15 -3966 (|#2| $)) (-15 -1956 ($ $)) (-15 -1452 (|#1| $ |#2|)) (-15 -3935 ((-112) $)) (-15 -3725 (|#1| $)) (-15 -3078 ((-112) $)) (-15 -3741 ($ $)) (-15 -1356 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-368)) (-15 -3122 ($ $ |#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|)))
-((-2558 (((-112) $ $) 27)) (-3467 (((-112) $) NIL)) (-3179 (((-650 |#1|) $) 132)) (-2885 (($ (-1292 |#1| |#2|)) 50)) (-4065 (($ $ (-777)) 38)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3032 (($ $ $) 54 (|has| |#2| (-174))) (($ $ (-777)) 52 (|has| |#2| (-174)))) (-1705 (($) NIL T CONST)) (-1745 (($ $ |#1|) 114) (($ $ (-825 |#1|)) 115) (($ $ $) 26)) (-4380 (((-3 (-825 |#1|) "failed") $) NIL)) (-3216 (((-825 |#1|) $) NIL)) (-2875 (((-3 $ "failed") $) 122)) (-3078 (((-112) $) 117)) (-3741 (($ $) 118)) (-4346 (((-112) $) NIL)) (-2359 (((-112) $) NIL)) (-3384 (($ (-825 |#1|) |#2|) 20)) (-3264 (($ $) NIL)) (-1999 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-3966 (((-825 |#1|) $) 123)) (-1427 (((-825 |#1|) $) 126)) (-1356 (($ (-1 |#2| |#2|) $) 131)) (-1761 (($ $ |#1|) 112) (($ $ (-825 |#1|)) 113) (($ $ $) 62)) (-1988 (((-1168) $) NIL)) (-3577 (((-1129) $) NIL)) (-1392 (((-1292 |#1| |#2|) $) 94)) (-2130 (((-777) $) 129)) (-3935 (((-112) $) 81)) (-3725 ((|#2| $) 32)) (-3799 (((-868) $) 73) (($ (-570)) 87) (($ |#2|) 85) (($ (-825 |#1|)) 18) (($ |#1|) 84)) (-1452 ((|#2| $ (-825 |#1|)) 116) ((|#2| $ $) 28)) (-3499 (((-777)) 120 T CONST)) (-2335 (((-112) $ $) NIL)) (-1861 (($) 15 T CONST)) (-2786 (((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 59)) (-1875 (($) 33 T CONST)) (-3022 (((-112) $ $) 14)) (-3111 (($ $) 98) (($ $ $) 101)) (-3101 (($ $ $) 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 -1392 ((-1292 |#1| |#2|) $)) (-15 -2885 ($ (-1292 |#1| |#2|))) (-15 -2786 ((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-856) (-1058)) (T -1301))
-((-1392 (*1 *2 *1) (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1301 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-2885 (*1 *1 *2) (-12 (-5 *2 (-1292 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *1 (-1301 *3 *4)))) (-2786 (*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 -1392 ((-1292 |#1| |#2|) $)) (-15 -2885 ($ (-1292 |#1| |#2|))) (-15 -2786 ((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
-((-1571 (((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570)) 16) (((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|))) 13)))
-(((-1302 |#1|) (-10 -7 (-15 -1571 ((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|)))) (-15 -1571 ((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570)))) (-1227)) (T -1302))
-((-1571 (*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)))) (-1571 (*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 -1571 ((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|)))) (-15 -1571 ((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570))))
-((-3785 (((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|))) 174) (((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112)) 173) (((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)) 172) (((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112)) 171) (((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-1055 |#1| |#2|)) 156)) (-2621 (((-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)) (-1652 (((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|)) 73)) (-1450 (((-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)) (-1911 (((-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)) (-1425 (((-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 -2621 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2621 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112))) (-15 -2621 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-1055 |#1| |#2|))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1911 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1911 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1911 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1911 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1652 ((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|))) (-15 -1425 ((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|)))) (-15 -1425 ((-959 (-1033 (-413 |#1|))) (-959 |#1|))) (-15 -1425 ((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|)))) (-15 -1425 ((-1182 (-1033 (-413 |#1|))) (-1182 |#1|))) (-15 -1425 ((-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))
-((-1425 (*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))))) (-1425 (*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))))) (-1425 (*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))))) (-1425 (*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))))) (-1425 (*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))))) (-1652 (*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))))) (-1911 (*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))))) (-1911 (*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))))) (-1911 (*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))))) (-1911 (*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))))) (-1450 (*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))))) (-1450 (*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))))) (-1450 (*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))))) (-1450 (*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))))) (-1450 (*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))))) (-3785 (*1 *2 *3) (-12 (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3205 (-1182 *4)) (|:| -3424 (-650 (-959 *4)))))) (-5 *1 (-1303 *4 *5 *6)) (-5 *3 (-650 (-959 *4))) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-3785 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3205 (-1182 *5)) (|:| -3424 (-650 (-959 *5)))))) (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3785 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3205 (-1182 *5)) (|:| -3424 (-650 (-959 *5)))))) (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3785 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3205 (-1182 *5)) (|:| -3424 (-650 (-959 *5)))))) (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3785 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-2 (|:| -3205 (-1182 *4)) (|:| -3424 (-650 (-959 *4)))))) (-5 *1 (-1303 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-2621 (*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))))) (-2621 (*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))))) (-2621 (*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 -2621 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2621 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112))) (-15 -2621 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-1055 |#1| |#2|))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -3785 ((-650 (-2 (|:| -3205 (-1182 |#1|)) (|:| -3424 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1450 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1911 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1911 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1911 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1911 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1652 ((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|))) (-15 -1425 ((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|)))) (-15 -1425 ((-959 (-1033 (-413 |#1|))) (-959 |#1|))) (-15 -1425 ((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|)))) (-15 -1425 ((-1182 (-1033 (-413 |#1|))) (-1182 |#1|))) (-15 -1425 ((-650 (-786 |#1| (-870 |#3|))) (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|))))))
-((-4304 (((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|) 21)) (-3946 (((-112) (-1277 |#1|)) 12)) (-1995 (((-3 (-1277 (-570)) "failed") (-1277 |#1|)) 16)))
-(((-1304 |#1|) (-10 -7 (-15 -3946 ((-112) (-1277 |#1|))) (-15 -1995 ((-3 (-1277 (-570)) "failed") (-1277 |#1|))) (-15 -4304 ((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|))) (-645 (-570))) (T -1304))
-((-4304 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-1277 (-413 (-570)))) (-5 *1 (-1304 *4)))) (-1995 (*1 *2 *3) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-1277 (-570))) (-5 *1 (-1304 *4)))) (-3946 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-112)) (-5 *1 (-1304 *4)))))
-(-10 -7 (-15 -3946 ((-112) (-1277 |#1|))) (-15 -1995 ((-3 (-1277 (-570)) "failed") (-1277 |#1|))) (-15 -4304 ((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|)))
-((-2558 (((-112) $ $) NIL)) (-3467 (((-112) $) 11)) (-3990 (((-3 $ "failed") $ $) NIL)) (-3510 (((-777)) 8)) (-1705 (($) NIL T CONST)) (-2875 (((-3 $ "failed") $) 58)) (-3446 (($) 49)) (-4346 (((-112) $) 57)) (-2619 (((-3 $ "failed") $) 40)) (-1884 (((-928) $) 15)) (-1988 (((-1168) $) NIL)) (-2438 (($) 32 T CONST)) (-2268 (($ (-928)) 50)) (-3577 (((-1129) $) NIL)) (-1425 (((-570) $) 13)) (-3799 (((-868) $) 27) (($ (-570)) 24)) (-3499 (((-777)) 9 T CONST)) (-2335 (((-112) $ $) 60)) (-1861 (($) 29 T CONST)) (-1875 (($) 31 T CONST)) (-3022 (((-112) $ $) 38)) (-3111 (($ $) 52) (($ $ $) 47)) (-3101 (($ $ $) 35)) (** (($ $ (-928)) NIL) (($ $ (-777)) 54)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 44) (($ $ $) 43)))
-(((-1305 |#1|) (-13 (-174) (-373) (-620 (-570)) (-1161)) (-928)) (T -1305))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-3182 (((-650 (-1186)) $) NIL)) (-2021 (($ (-1292 (-1186) |#1|)) NIL)) (-3327 (($ $ (-777)) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3927 (($ $ $) NIL (|has| |#1| (-174))) (($ $ (-777)) NIL (|has| |#1| (-174)))) (-3195 (($) NIL T CONST)) (-3571 (($ $ (-1186)) NIL) (($ $ (-825 (-1186))) NIL) (($ $ $) NIL)) (-4383 (((-3 (-825 (-1186)) "failed") $) NIL)) (-3220 (((-825 (-1186)) $) NIL)) (-1929 (((-3 $ "failed") $) NIL)) (-3184 (((-112) $) NIL)) (-3247 (($ $) NIL)) (-4139 (((-112) $) NIL)) (-3633 (((-112) $) NIL)) (-3387 (($ (-825 (-1186)) |#1|) NIL)) (-2523 (($ $) NIL)) (-4093 (((-2 (|:| |k| (-825 (-1186))) (|:| |c| |#1|)) $) NIL)) (-1683 (((-825 (-1186)) $) NIL)) (-1428 (((-825 (-1186)) $) NIL)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-3712 (($ $ (-1186)) NIL) (($ $ (-825 (-1186))) NIL) (($ $ $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1393 (((-1292 (-1186) |#1|) $) NIL)) (-3079 (((-777) $) NIL)) (-2624 (((-112) $) NIL)) (-3728 ((|#1| $) NIL)) (-3802 (((-868) $) NIL) (($ (-570)) NIL) (($ |#1|) NIL) (($ (-825 (-1186))) NIL) (($ (-1186)) NIL)) (-1453 ((|#1| $ (-825 (-1186))) NIL) ((|#1| $ $) NIL)) (-2851 (((-777)) NIL T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) NIL T CONST)) (-2366 (((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $) NIL)) (-1876 (($) NIL T CONST)) (-3025 (((-112) $ $) NIL)) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 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 -1393 ((-1292 (-1186) |#1|) $)) (-15 -2021 ($ (-1292 (-1186) |#1|))) (-15 -2366 ((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $)))) (-1058)) (T -1299))
+((-1393 (*1 *2 *1) (-12 (-5 *2 (-1292 (-1186) *3)) (-5 *1 (-1299 *3)) (-4 *3 (-1058)))) (-2021 (*1 *1 *2) (-12 (-5 *2 (-1292 (-1186) *3)) (-4 *3 (-1058)) (-5 *1 (-1299 *3)))) (-2366 (*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 -1393 ((-1292 (-1186) |#1|) $)) (-15 -2021 ($ (-1292 (-1186) |#1|))) (-15 -2366 ((-650 (-2 (|:| |k| (-1186)) (|:| |c| $))) $))))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) NIL)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3195 (($) NIL T CONST)) (-4383 (((-3 |#2| "failed") $) NIL)) (-3220 ((|#2| $) NIL)) (-1954 (($ $) NIL)) (-1929 (((-3 $ "failed") $) 42)) (-3184 (((-112) $) 35)) (-3247 (($ $) 37)) (-4139 (((-112) $) NIL)) (-2867 (((-777) $) NIL)) (-3967 (((-650 $) $) NIL)) (-3633 (((-112) $) NIL)) (-3387 (($ |#2| |#1|) NIL)) (-1683 ((|#2| $) 24)) (-1428 ((|#2| $) 22)) (-1357 (($ (-1 |#1| |#1|) $) NIL)) (-2598 (((-2 (|:| |k| |#2|) (|:| |c| |#1|)) $) NIL)) (-1914 ((|#2| $) NIL)) (-1928 ((|#1| $) NIL)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-2624 (((-112) $) 32)) (-3728 ((|#1| $) 33)) (-3802 (((-868) $) 65) (($ (-570)) 46) (($ |#1|) 41) (($ |#2|) NIL)) (-2459 (((-650 |#1|) $) NIL)) (-1864 ((|#1| $ |#2|) NIL)) (-1453 ((|#1| $ |#2|) 28)) (-2851 (((-777)) 14 T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 29 T CONST)) (-1876 (($) 11 T CONST)) (-2884 (((-650 (-2 (|:| |k| |#2|) (|:| |c| |#1|))) $) NIL)) (-3025 (((-112) $ $) 30)) (-3125 (($ $ |#1|) 67 (|has| |#1| (-368)))) (-3114 (($ $) NIL) (($ $ $) NIL)) (-3104 (($ $ $) 50)) (** (($ $ (-928)) NIL) (($ $ (-777)) 52)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) NIL) (($ $ $) 51) (($ |#1| $) 47) (($ $ |#1|) NIL) (($ |#1| |#2|) NIL)) (-2570 (((-777) $) 16)))
+(((-1300 |#1| |#2|) (-13 (-1058) (-1291 |#1|) (-387 |#1| |#2|) (-622 |#2|) (-10 -8 (-15 * ($ $ |#1|)) (-15 -2570 ((-777) $)) (-15 -1428 (|#2| $)) (-15 -1683 (|#2| $)) (-15 -1954 ($ $)) (-15 -1453 (|#1| $ |#2|)) (-15 -2624 ((-112) $)) (-15 -3728 (|#1| $)) (-15 -3184 ((-112) $)) (-15 -3247 ($ $)) (-15 -1357 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-368)) (-15 -3125 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4445)) (-6 -4445) |%noBranch|) (IF (|has| |#1| (-6 -4449)) (-6 -4449) |%noBranch|) (IF (|has| |#1| (-6 -4450)) (-6 -4450) |%noBranch|))) (-1058) (-852)) (T -1300))
+((* (*1 *1 *1 *2) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-1954 (*1 *1 *1) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-1357 (*1 *1 *2 *1) (-12 (-5 *2 (-1 *3 *3)) (-4 *3 (-1058)) (-5 *1 (-1300 *3 *4)) (-4 *4 (-852)))) (-2570 (*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-1428 (*1 *2 *1) (-12 (-4 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))) (-1683 (*1 *2 *1) (-12 (-4 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))) (-1453 (*1 *2 *1 *3) (-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))) (-2624 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-3728 (*1 *2 *1) (-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))) (-3184 (*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-852)))) (-3247 (*1 *1 *1) (-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))) (-3125 (*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 -2570 ((-777) $)) (-15 -1428 (|#2| $)) (-15 -1683 (|#2| $)) (-15 -1954 ($ $)) (-15 -1453 (|#1| $ |#2|)) (-15 -2624 ((-112) $)) (-15 -3728 (|#1| $)) (-15 -3184 ((-112) $)) (-15 -3247 ($ $)) (-15 -1357 ($ (-1 |#1| |#1|) $)) (IF (|has| |#1| (-368)) (-15 -3125 ($ $ |#1|)) |%noBranch|) (IF (|has| |#1| (-6 -4445)) (-6 -4445) |%noBranch|) (IF (|has| |#1| (-6 -4449)) (-6 -4449) |%noBranch|) (IF (|has| |#1| (-6 -4450)) (-6 -4450) |%noBranch|)))
+((-2560 (((-112) $ $) 27)) (-3721 (((-112) $) NIL)) (-3182 (((-650 |#1|) $) 132)) (-2021 (($ (-1292 |#1| |#2|)) 50)) (-3327 (($ $ (-777)) 38)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3927 (($ $ $) 54 (|has| |#2| (-174))) (($ $ (-777)) 52 (|has| |#2| (-174)))) (-3195 (($) NIL T CONST)) (-3571 (($ $ |#1|) 114) (($ $ (-825 |#1|)) 115) (($ $ $) 26)) (-4383 (((-3 (-825 |#1|) "failed") $) NIL)) (-3220 (((-825 |#1|) $) NIL)) (-1929 (((-3 $ "failed") $) 122)) (-3184 (((-112) $) 117)) (-3247 (($ $) 118)) (-4139 (((-112) $) NIL)) (-3633 (((-112) $) NIL)) (-3387 (($ (-825 |#1|) |#2|) 20)) (-2523 (($ $) NIL)) (-4093 (((-2 (|:| |k| (-825 |#1|)) (|:| |c| |#2|)) $) NIL)) (-1683 (((-825 |#1|) $) 123)) (-1428 (((-825 |#1|) $) 126)) (-1357 (($ (-1 |#2| |#2|) $) 131)) (-3712 (($ $ |#1|) 112) (($ $ (-825 |#1|)) 113) (($ $ $) 62)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-1393 (((-1292 |#1| |#2|) $) 94)) (-3079 (((-777) $) 129)) (-2624 (((-112) $) 81)) (-3728 ((|#2| $) 32)) (-3802 (((-868) $) 73) (($ (-570)) 87) (($ |#2|) 85) (($ (-825 |#1|)) 18) (($ |#1|) 84)) (-1453 ((|#2| $ (-825 |#1|)) 116) ((|#2| $ $) 28)) (-2851 (((-777)) 120 T CONST)) (-3359 (((-112) $ $) NIL)) (-1862 (($) 15 T CONST)) (-2366 (((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $) 59)) (-1876 (($) 33 T CONST)) (-3025 (((-112) $ $) 14)) (-3114 (($ $) 98) (($ $ $) 101)) (-3104 (($ $ $) 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 -1393 ((-1292 |#1| |#2|) $)) (-15 -2021 ($ (-1292 |#1| |#2|))) (-15 -2366 ((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $)))) (-856) (-1058)) (T -1301))
+((-1393 (*1 *2 *1) (-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1301 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))) (-2021 (*1 *1 *2) (-12 (-5 *2 (-1292 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)) (-5 *1 (-1301 *3 *4)))) (-2366 (*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 -1393 ((-1292 |#1| |#2|) $)) (-15 -2021 ($ (-1292 |#1| |#2|))) (-15 -2366 ((-650 (-2 (|:| |k| |#1|) (|:| |c| $))) $))))
+((-2560 (((-112) $ $) NIL)) (-2686 (($ (-650 (-928))) 10)) (-2699 (((-980) $) 12)) (-3989 (((-1168) $) NIL)) (-3580 (((-1129) $) NIL)) (-3802 (((-868) $) 25) (($ (-980)) 14) (((-980) $) 13)) (-3359 (((-112) $ $) NIL)) (-3025 (((-112) $ $) 17)))
+(((-1302) (-13 (-1109) (-496 (-980)) (-10 -8 (-15 -2686 ($ (-650 (-928)))) (-15 -2699 ((-980) $))))) (T -1302))
+((-2686 (*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1302)))) (-2699 (*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-1302)))))
+(-13 (-1109) (-496 (-980)) (-10 -8 (-15 -2686 ($ (-650 (-928)))) (-15 -2699 ((-980) $))))
+((-1572 (((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570)) 16) (((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|))) 13)))
+(((-1303 |#1|) (-10 -7 (-15 -1572 ((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|)))) (-15 -1572 ((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570)))) (-1227)) (T -1303))
+((-1572 (*1 *2 *3 *4) (-12 (-5 *3 (-1 (-650 (-1166 *5)) (-650 (-1166 *5)))) (-5 *4 (-570)) (-5 *2 (-650 (-1166 *5))) (-5 *1 (-1303 *5)) (-4 *5 (-1227)))) (-1572 (*1 *2 *3) (-12 (-5 *3 (-1 (-1166 *4) (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1303 *4)) (-4 *4 (-1227)))))
+(-10 -7 (-15 -1572 ((-1166 |#1|) (-1 (-1166 |#1|) (-1166 |#1|)))) (-15 -1572 ((-650 (-1166 |#1|)) (-1 (-650 (-1166 |#1|)) (-650 (-1166 |#1|))) (-570))))
+((-3666 (((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|))) 174) (((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112)) 173) (((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112)) 172) (((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112)) 171) (((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-1055 |#1| |#2|)) 156)) (-4390 (((-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)) (-3871 (((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|)) 73)) (-2510 (((-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)) (-1334 (((-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)) (-1426 (((-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)))
+(((-1304 |#1| |#2| |#3|) (-10 -7 (-15 -4390 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112))) (-15 -4390 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112))) (-15 -4390 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-1055 |#1| |#2|))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1334 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1334 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1334 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1334 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -3871 ((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|))) (-15 -1426 ((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|)))) (-15 -1426 ((-959 (-1033 (-413 |#1|))) (-959 |#1|))) (-15 -1426 ((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|)))) (-15 -1426 ((-1182 (-1033 (-413 |#1|))) (-1182 |#1|))) (-15 -1426 ((-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 -1304))
+((-1426 (*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 (-1304 *4 *5 *6)) (-14 *5 (-650 (-1186))))) (-1426 (*1 *2 *3) (-12 (-5 *3 (-1182 *4)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-1182 (-1033 (-413 *4)))) (-5 *1 (-1304 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1426 (*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 (-1304 *4 *5 *6)) (-14 *5 (-650 (-1186))))) (-1426 (*1 *2 *3) (-12 (-5 *3 (-959 *4)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1304 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1426 (*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 (-1304 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-3871 (*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 (-1304 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-1334 (*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 (-1304 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-1334 (*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 (-1304 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-1334 (*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 (-1304 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-1334 (*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 (-1304 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-2510 (*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 (-1304 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-2510 (*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 (-1304 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2510 (*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 (-1304 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2510 (*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 (-1304 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-2510 (*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 (-1304 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-3666 (*1 *2 *3) (-12 (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3145 (-1182 *4)) (|:| -3314 (-650 (-959 *4)))))) (-5 *1 (-1304 *4 *5 *6)) (-5 *3 (-650 (-959 *4))) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-3666 (*1 *2 *3 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5)))))) (-5 *1 (-1304 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3666 (*1 *2 *3 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5)))))) (-5 *1 (-1304 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3666 (*1 *2 *3 *4 *4 *4) (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-2 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5)))))) (-5 *1 (-1304 *5 *6 *7)) (-5 *3 (-650 (-959 *5))) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-3666 (*1 *2 *3) (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-14 *5 (-650 (-1186))) (-5 *2 (-650 (-2 (|:| -3145 (-1182 *4)) (|:| -3314 (-650 (-959 *4)))))) (-5 *1 (-1304 *4 *5 *6)) (-14 *6 (-650 (-1186))))) (-4390 (*1 *2 *3) (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-13 (-854) (-311) (-148) (-1031))) (-5 *2 (-650 (-1055 *4 *5))) (-5 *1 (-1304 *4 *5 *6)) (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))) (-4390 (*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 (-1304 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))) (-4390 (*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 (-1304 *5 *6 *7)) (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186))))))
+(-10 -7 (-15 -4390 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112) (-112))) (-15 -4390 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)) (-112))) (-15 -4390 ((-650 (-1055 |#1| |#2|)) (-650 (-959 |#1|)))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-1055 |#1| |#2|))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)) (-112))) (-15 -3666 ((-650 (-2 (|:| -3145 (-1182 |#1|)) (|:| -3314 (-650 (-959 |#1|))))) (-650 (-959 |#1|)))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112) (-112))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -2510 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -1334 ((-650 (-650 (-1033 (-413 |#1|)))) (-1055 |#1| |#2|))) (-15 -1334 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112) (-112))) (-15 -1334 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)) (-112))) (-15 -1334 ((-650 (-650 (-1033 (-413 |#1|)))) (-650 (-959 |#1|)))) (-15 -3871 ((-650 (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|)))) (-1055 |#1| |#2|))) (-15 -1426 ((-786 |#1| (-870 |#3|)) (-786 |#1| (-870 |#2|)))) (-15 -1426 ((-959 (-1033 (-413 |#1|))) (-959 |#1|))) (-15 -1426 ((-959 (-1033 (-413 |#1|))) (-786 |#1| (-870 |#3|)))) (-15 -1426 ((-1182 (-1033 (-413 |#1|))) (-1182 |#1|))) (-15 -1426 ((-650 (-786 |#1| (-870 |#3|))) (-1155 |#1| (-537 (-870 |#3|)) (-870 |#3|) (-786 |#1| (-870 |#3|))))))
+((-1963 (((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|) 21)) (-1458 (((-112) (-1277 |#1|)) 12)) (-4056 (((-3 (-1277 (-570)) "failed") (-1277 |#1|)) 16)))
+(((-1305 |#1|) (-10 -7 (-15 -1458 ((-112) (-1277 |#1|))) (-15 -4056 ((-3 (-1277 (-570)) "failed") (-1277 |#1|))) (-15 -1963 ((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|))) (-645 (-570))) (T -1305))
+((-1963 (*1 *2 *3 *4) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-1277 (-413 (-570)))) (-5 *1 (-1305 *4)))) (-4056 (*1 *2 *3) (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-1277 (-570))) (-5 *1 (-1305 *4)))) (-1458 (*1 *2 *3) (-12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-112)) (-5 *1 (-1305 *4)))))
+(-10 -7 (-15 -1458 ((-112) (-1277 |#1|))) (-15 -4056 ((-3 (-1277 (-570)) "failed") (-1277 |#1|))) (-15 -1963 ((-3 (-1277 (-413 (-570))) "failed") (-1277 |#1|) |#1|)))
+((-2560 (((-112) $ $) NIL)) (-3721 (((-112) $) 11)) (-1966 (((-3 $ "failed") $ $) NIL)) (-3513 (((-777)) 8)) (-3195 (($) NIL T CONST)) (-1929 (((-3 $ "failed") $) 58)) (-3449 (($) 49)) (-4139 (((-112) $) 57)) (-4369 (((-3 $ "failed") $) 40)) (-2400 (((-928) $) 15)) (-3989 (((-1168) $) NIL)) (-2439 (($) 32 T CONST)) (-2267 (($ (-928)) 50)) (-3580 (((-1129) $) NIL)) (-1426 (((-570) $) 13)) (-3802 (((-868) $) 27) (($ (-570)) 24)) (-2851 (((-777)) 9 T CONST)) (-3359 (((-112) $ $) 60)) (-1862 (($) 29 T CONST)) (-1876 (($) 31 T CONST)) (-3025 (((-112) $ $) 38)) (-3114 (($ $) 52) (($ $ $) 47)) (-3104 (($ $ $) 35)) (** (($ $ (-928)) NIL) (($ $ (-777)) 54)) (* (($ (-928) $) NIL) (($ (-777) $) NIL) (($ (-570) $) 44) (($ $ $) 43)))
+(((-1306 |#1|) (-13 (-174) (-373) (-620 (-570)) (-1161)) (-928)) (T -1306))
NIL
(-13 (-174) (-373) (-620 (-570)) (-1161))
NIL
@@ -5383,4 +5387,4 @@ NIL
NIL
NIL
NIL
-((-3 3228552 3228557 3228562 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3228537 3228542 3228547 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3228522 3228527 3228532 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3228507 3228512 3228517 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1305 3227650 3228382 3228459 "ZMOD" 3228464 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1304 3226760 3226924 3227133 "ZLINDEP" 3227482 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1303 3216060 3217828 3219800 "ZDSOLVE" 3224890 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1302 3215306 3215447 3215636 "YSTREAM" 3215906 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1301 3213080 3214607 3214811 "XRPOLY" 3215149 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1300 3209633 3210951 3211526 "XPR" 3212552 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1299 3207354 3208964 3209168 "XPOLY" 3209464 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1298 3205007 3206375 3206430 "XPOLYC" 3206718 NIL XPOLYC (NIL T T) -9 NIL 3206831 NIL) (-1297 3201383 3203524 3203912 "XPBWPOLY" 3204665 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1296 3197078 3199373 3199415 "XF" 3200036 NIL XF (NIL T) -9 NIL 3200436 NIL) (-1295 3196699 3196787 3196956 "XF-" 3196961 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1294 3191895 3193184 3193239 "XFALG" 3195411 NIL XFALG (NIL T T) -9 NIL 3196200 NIL) (-1293 3191028 3191132 3191337 "XEXPPKG" 3191787 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1292 3189137 3190878 3190974 "XDPOLY" 3190979 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1291 3187944 3188544 3188587 "XALG" 3188592 NIL XALG (NIL T) -9 NIL 3188703 NIL) (-1290 3181386 3185921 3186415 "WUTSET" 3187536 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1289 3179642 3180438 3180761 "WP" 3181197 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1288 3179244 3179464 3179534 "WHILEAST" 3179594 T WHILEAST (NIL) -8 NIL NIL NIL) (-1287 3178716 3178961 3179055 "WHEREAST" 3179172 T WHEREAST (NIL) -8 NIL NIL NIL) (-1286 3177602 3177800 3178095 "WFFINTBS" 3178513 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1285 3175506 3175933 3176395 "WEIER" 3177174 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1284 3174552 3175002 3175044 "VSPACE" 3175180 NIL VSPACE (NIL T) -9 NIL 3175254 NIL) (-1283 3174390 3174417 3174508 "VSPACE-" 3174513 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1282 3174199 3174241 3174309 "VOID" 3174344 T VOID (NIL) -8 NIL NIL NIL) (-1281 3172335 3172694 3173100 "VIEW" 3173815 T VIEW (NIL) -7 NIL NIL NIL) (-1280 3168759 3169398 3170135 "VIEWDEF" 3171620 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1279 3158063 3160307 3162480 "VIEW3D" 3166608 T VIEW3D (NIL) -8 NIL NIL NIL) (-1278 3150314 3151974 3153553 "VIEW2D" 3156506 T VIEW2D (NIL) -8 NIL NIL NIL) (-1277 3145667 3150084 3150176 "VECTOR" 3150257 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1276 3144244 3144503 3144821 "VECTOR2" 3145397 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1275 3137718 3142025 3142068 "VECTCAT" 3143063 NIL VECTCAT (NIL T) -9 NIL 3143650 NIL) (-1274 3136732 3136986 3137376 "VECTCAT-" 3137381 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1273 3136186 3136383 3136503 "VARIABLE" 3136647 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1272 3136119 3136124 3136154 "UTYPE" 3136159 T UTYPE (NIL) -9 NIL NIL NIL) (-1271 3134949 3135103 3135365 "UTSODETL" 3135945 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1270 3132389 3132849 3133373 "UTSODE" 3134490 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1269 3124227 3130015 3130504 "UTS" 3131958 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1268 3115101 3120468 3120511 "UTSCAT" 3121623 NIL UTSCAT (NIL T) -9 NIL 3122381 NIL) (-1267 3112449 3113171 3114160 "UTSCAT-" 3114165 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1266 3112076 3112119 3112252 "UTS2" 3112400 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1265 3106302 3108914 3108957 "URAGG" 3111027 NIL URAGG (NIL T) -9 NIL 3111750 NIL) (-1264 3103241 3104104 3105227 "URAGG-" 3105232 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1263 3098950 3101876 3102341 "UPXSSING" 3102905 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1262 3091016 3098197 3098470 "UPXS" 3098735 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1261 3084089 3090920 3090992 "UPXSCONS" 3090997 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1260 3073834 3080627 3080689 "UPXSCCA" 3081263 NIL UPXSCCA (NIL T T) -9 NIL 3081496 NIL) (-1259 3073472 3073557 3073731 "UPXSCCA-" 3073736 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1258 3063069 3069635 3069678 "UPXSCAT" 3070326 NIL UPXSCAT (NIL T) -9 NIL 3070935 NIL) (-1257 3062499 3062578 3062757 "UPXS2" 3062984 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1256 3061153 3061406 3061757 "UPSQFREE" 3062242 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1255 3054574 3057631 3057686 "UPSCAT" 3058847 NIL UPSCAT (NIL T T) -9 NIL 3059621 NIL) (-1254 3053778 3053985 3054312 "UPSCAT-" 3054317 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1253 3039433 3047201 3047244 "UPOLYC" 3049345 NIL UPOLYC (NIL T) -9 NIL 3050566 NIL) (-1252 3030761 3033187 3036334 "UPOLYC-" 3036339 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1251 3030388 3030431 3030564 "UPOLYC2" 3030712 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1250 3022199 3030071 3030200 "UP" 3030307 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1249 3021538 3021645 3021809 "UPMP" 3022088 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1248 3021091 3021172 3021311 "UPDIVP" 3021451 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1247 3019659 3019908 3020224 "UPDECOMP" 3020840 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1246 3018890 3019002 3019188 "UPCDEN" 3019543 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1245 3018409 3018478 3018627 "UP2" 3018815 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1244 3016876 3017613 3017890 "UNISEG" 3018167 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1243 3016091 3016218 3016423 "UNISEG2" 3016719 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1242 3015151 3015331 3015557 "UNIFACT" 3015907 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1241 2999083 3014328 3014579 "ULS" 3014958 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1240 2987081 2998987 2999059 "ULSCONS" 2999064 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1239 2969098 2981083 2981145 "ULSCCAT" 2981783 NIL ULSCCAT (NIL T T) -9 NIL 2982072 NIL) (-1238 2968148 2968393 2968781 "ULSCCAT-" 2968786 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1237 2957522 2964002 2964045 "ULSCAT" 2964908 NIL ULSCAT (NIL T) -9 NIL 2965639 NIL) (-1236 2956952 2957031 2957210 "ULS2" 2957437 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1235 2956079 2956589 2956696 "UINT8" 2956807 T UINT8 (NIL) -8 NIL NIL 2956892) (-1234 2955205 2955715 2955822 "UINT64" 2955933 T UINT64 (NIL) -8 NIL NIL 2956018) (-1233 2954331 2954841 2954948 "UINT32" 2955059 T UINT32 (NIL) -8 NIL NIL 2955144) (-1232 2953457 2953967 2954074 "UINT16" 2954185 T UINT16 (NIL) -8 NIL NIL 2954270) (-1231 2951760 2952717 2952747 "UFD" 2952959 T UFD (NIL) -9 NIL 2953073 NIL) (-1230 2951554 2951600 2951695 "UFD-" 2951700 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1229 2950636 2950819 2951035 "UDVO" 2951360 T UDVO (NIL) -7 NIL NIL NIL) (-1228 2948452 2948861 2949332 "UDPO" 2950200 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1227 2948385 2948390 2948420 "TYPE" 2948425 T TYPE (NIL) -9 NIL NIL NIL) (-1226 2948145 2948340 2948371 "TYPEAST" 2948376 T TYPEAST (NIL) -8 NIL NIL NIL) (-1225 2947116 2947318 2947558 "TWOFACT" 2947939 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1224 2946139 2946525 2946760 "TUPLE" 2946916 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1223 2943830 2944349 2944888 "TUBETOOL" 2945622 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1222 2942679 2942884 2943125 "TUBE" 2943623 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1221 2937408 2941651 2941934 "TS" 2942431 NIL TS (NIL T) -8 NIL NIL NIL) (-1220 2926048 2930167 2930264 "TSETCAT" 2935533 NIL TSETCAT (NIL T T T T) -9 NIL 2937064 NIL) (-1219 2920780 2922380 2924271 "TSETCAT-" 2924276 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1218 2915419 2916266 2917195 "TRMANIP" 2919916 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1217 2914860 2914923 2915086 "TRIMAT" 2915351 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1216 2912726 2912963 2913320 "TRIGMNIP" 2914609 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1215 2912246 2912359 2912389 "TRIGCAT" 2912602 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1214 2911915 2911994 2912135 "TRIGCAT-" 2912140 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1213 2908760 2910773 2911054 "TREE" 2911669 NIL TREE (NIL T) -8 NIL NIL NIL) (-1212 2908034 2908562 2908592 "TRANFUN" 2908627 T TRANFUN (NIL) -9 NIL 2908693 NIL) (-1211 2907313 2907504 2907784 "TRANFUN-" 2907789 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1210 2907117 2907149 2907210 "TOPSP" 2907274 T TOPSP (NIL) -7 NIL NIL NIL) (-1209 2906465 2906580 2906734 "TOOLSIGN" 2906998 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1208 2905099 2905642 2905881 "TEXTFILE" 2906248 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1207 2903011 2903552 2903981 "TEX" 2904692 T TEX (NIL) -8 NIL NIL NIL) (-1206 2902792 2902823 2902895 "TEX1" 2902974 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1205 2902440 2902503 2902593 "TEMUTL" 2902724 T TEMUTL (NIL) -7 NIL NIL NIL) (-1204 2900594 2900874 2901199 "TBCMPPK" 2902163 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1203 2892371 2898754 2898810 "TBAGG" 2899210 NIL TBAGG (NIL T T) -9 NIL 2899421 NIL) (-1202 2887441 2888929 2890683 "TBAGG-" 2890688 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1201 2886825 2886932 2887077 "TANEXP" 2887330 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1200 2886336 2886600 2886690 "TALGOP" 2886770 NIL TALGOP (NIL T) -8 NIL NIL NIL) (-1199 2879726 2886193 2886286 "TABLE" 2886291 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1198 2879138 2879237 2879375 "TABLEAU" 2879623 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1197 2873746 2874966 2876214 "TABLBUMP" 2877924 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1196 2872968 2873115 2873296 "SYSTEM" 2873587 T SYSTEM (NIL) -8 NIL NIL NIL) (-1195 2869427 2870126 2870909 "SYSSOLP" 2872219 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1194 2869225 2869382 2869413 "SYSPTR" 2869418 T SYSPTR (NIL) -8 NIL NIL NIL) (-1193 2868269 2868774 2868893 "SYSNNI" 2869079 NIL SYSNNI (NIL NIL) -8 NIL NIL 2869164) (-1192 2867576 2868035 2868114 "SYSINT" 2868174 NIL SYSINT (NIL NIL) -8 NIL NIL 2868219) (-1191 2863908 2864854 2865564 "SYNTAX" 2866888 T SYNTAX (NIL) -8 NIL NIL NIL) (-1190 2861066 2861668 2862300 "SYMTAB" 2863298 T SYMTAB (NIL) -8 NIL NIL NIL) (-1189 2856315 2857217 2858200 "SYMS" 2860105 T SYMS (NIL) -8 NIL NIL NIL) (-1188 2853550 2855773 2856003 "SYMPOLY" 2856120 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1187 2853067 2853142 2853265 "SYMFUNC" 2853462 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1186 2849087 2850379 2851192 "SYMBOL" 2852276 T SYMBOL (NIL) -8 NIL NIL NIL) (-1185 2842626 2844315 2846035 "SWITCH" 2847389 T SWITCH (NIL) -8 NIL NIL NIL) (-1184 2835860 2841447 2841750 "SUTS" 2842381 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1183 2827926 2835107 2835380 "SUPXS" 2835645 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1182 2819685 2827544 2827670 "SUP" 2827835 NIL SUP (NIL T) -8 NIL NIL NIL) (-1181 2818844 2818971 2819188 "SUPFRACF" 2819553 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1180 2818465 2818524 2818637 "SUP2" 2818779 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1179 2816913 2817187 2817543 "SUMRF" 2818164 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1178 2816248 2816314 2816506 "SUMFS" 2816834 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1177 2800215 2815425 2815676 "SULS" 2816055 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1176 2799817 2800037 2800107 "SUCHTAST" 2800167 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1175 2799112 2799342 2799482 "SUCH" 2799725 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1174 2792979 2794018 2794977 "SUBSPACE" 2798200 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1173 2792409 2792499 2792663 "SUBRESP" 2792867 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1172 2785777 2787074 2788385 "STTF" 2791145 NIL STTF (NIL T) -7 NIL NIL NIL) (-1171 2779950 2781070 2782217 "STTFNC" 2784677 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1170 2771263 2773132 2774926 "STTAYLOR" 2778191 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1169 2764393 2771127 2771210 "STRTBL" 2771215 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1168 2759757 2764348 2764379 "STRING" 2764384 T STRING (NIL) -8 NIL NIL NIL) (-1167 2754618 2759130 2759160 "STRICAT" 2759219 T STRICAT (NIL) -9 NIL 2759281 NIL) (-1166 2747371 2752237 2752848 "STREAM" 2754042 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1165 2746881 2746958 2747102 "STREAM3" 2747288 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1164 2745863 2746046 2746281 "STREAM2" 2746694 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1163 2745551 2745603 2745696 "STREAM1" 2745805 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1162 2744567 2744748 2744979 "STINPROD" 2745367 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1161 2744119 2744329 2744359 "STEP" 2744439 T STEP (NIL) -9 NIL 2744517 NIL) (-1160 2743306 2743608 2743756 "STEPAST" 2743993 T STEPAST (NIL) -8 NIL NIL NIL) (-1159 2736738 2743205 2743282 "STBL" 2743287 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1158 2731864 2735959 2736002 "STAGG" 2736155 NIL STAGG (NIL T) -9 NIL 2736244 NIL) (-1157 2729566 2730168 2731040 "STAGG-" 2731045 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1156 2727713 2729336 2729428 "STACK" 2729509 NIL STACK (NIL T) -8 NIL NIL NIL) (-1155 2720408 2725854 2726310 "SREGSET" 2727343 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1154 2712833 2714202 2715715 "SRDCMPK" 2719014 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1153 2705750 2710273 2710303 "SRAGG" 2711606 T SRAGG (NIL) -9 NIL 2712214 NIL) (-1152 2704767 2705022 2705401 "SRAGG-" 2705406 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1151 2699227 2703714 2704135 "SQMATRIX" 2704393 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1150 2692912 2695945 2696672 "SPLTREE" 2698572 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1149 2688875 2689568 2690214 "SPLNODE" 2692338 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1148 2687922 2688155 2688185 "SPFCAT" 2688629 T SPFCAT (NIL) -9 NIL NIL NIL) (-1147 2686659 2686869 2687133 "SPECOUT" 2687680 T SPECOUT (NIL) -7 NIL NIL NIL) (-1146 2677769 2679641 2679671 "SPADXPT" 2684347 T SPADXPT (NIL) -9 NIL 2686511 NIL) (-1145 2677530 2677570 2677639 "SPADPRSR" 2677722 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1144 2675579 2677485 2677516 "SPADAST" 2677521 T SPADAST (NIL) -8 NIL NIL NIL) (-1143 2667524 2669297 2669340 "SPACEC" 2673713 NIL SPACEC (NIL T) -9 NIL 2675529 NIL) (-1142 2665654 2667456 2667505 "SPACE3" 2667510 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1141 2664406 2664577 2664868 "SORTPAK" 2665459 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1140 2662498 2662801 2663213 "SOLVETRA" 2664070 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1139 2661548 2661770 2662031 "SOLVESER" 2662271 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1138 2656852 2657740 2658735 "SOLVERAD" 2660600 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1137 2652667 2653276 2654005 "SOLVEFOR" 2656219 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1136 2646937 2652016 2652113 "SNTSCAT" 2652118 NIL SNTSCAT (NIL T T T T) -9 NIL 2652188 NIL) (-1135 2641043 2645260 2645651 "SMTS" 2646627 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1134 2635728 2640931 2641008 "SMP" 2641013 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1133 2633887 2634188 2634586 "SMITH" 2635425 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1132 2626600 2630796 2630899 "SMATCAT" 2632250 NIL SMATCAT (NIL NIL T T T) -9 NIL 2632800 NIL) (-1131 2623540 2624363 2625541 "SMATCAT-" 2625546 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1130 2621206 2622776 2622819 "SKAGG" 2623080 NIL SKAGG (NIL T) -9 NIL 2623215 NIL) (-1129 2617532 2620679 2620863 "SINT" 2621015 T SINT (NIL) -8 NIL NIL 2621177) (-1128 2617304 2617342 2617408 "SIMPAN" 2617488 T SIMPAN (NIL) -7 NIL NIL NIL) (-1127 2616583 2616839 2616979 "SIG" 2617186 T SIG (NIL) -8 NIL NIL NIL) (-1126 2615421 2615642 2615917 "SIGNRF" 2616342 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1125 2614254 2614405 2614689 "SIGNEF" 2615250 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1124 2613560 2613837 2613961 "SIGAST" 2614152 T SIGAST (NIL) -8 NIL NIL NIL) (-1123 2611250 2611704 2612210 "SHP" 2613101 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1122 2605102 2611151 2611227 "SHDP" 2611232 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1121 2604675 2604867 2604897 "SGROUP" 2604990 T SGROUP (NIL) -9 NIL 2605052 NIL) (-1120 2604533 2604559 2604632 "SGROUP-" 2604637 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1119 2601324 2602022 2602745 "SGCF" 2603832 T SGCF (NIL) -7 NIL NIL NIL) (-1118 2595692 2600771 2600868 "SFRTCAT" 2600873 NIL SFRTCAT (NIL T T T T) -9 NIL 2600912 NIL) (-1117 2589113 2590131 2591267 "SFRGCD" 2594675 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1116 2582239 2583312 2584498 "SFQCMPK" 2588046 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1115 2581859 2581948 2582059 "SFORT" 2582180 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1114 2580977 2581699 2581820 "SEXOF" 2581825 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1113 2580084 2580858 2580926 "SEX" 2580931 T SEX (NIL) -8 NIL NIL NIL) (-1112 2575597 2576312 2576407 "SEXCAT" 2579344 NIL SEXCAT (NIL T T T T T) -9 NIL 2579922 NIL) (-1111 2572750 2575531 2575579 "SET" 2575584 NIL SET (NIL T) -8 NIL NIL NIL) (-1110 2570974 2571463 2571768 "SETMN" 2572491 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1109 2570470 2570622 2570652 "SETCAT" 2570828 T SETCAT (NIL) -9 NIL 2570938 NIL) (-1108 2570162 2570240 2570370 "SETCAT-" 2570375 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1107 2566523 2568623 2568666 "SETAGG" 2569536 NIL SETAGG (NIL T) -9 NIL 2569876 NIL) (-1106 2565981 2566097 2566334 "SETAGG-" 2566339 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1105 2565424 2565677 2565778 "SEQAST" 2565902 T SEQAST (NIL) -8 NIL NIL NIL) (-1104 2564623 2564917 2564978 "SEGXCAT" 2565264 NIL SEGXCAT (NIL T T) -9 NIL 2565384 NIL) (-1103 2563629 2564289 2564471 "SEG" 2564476 NIL SEG (NIL T) -8 NIL NIL NIL) (-1102 2562608 2562822 2562865 "SEGCAT" 2563387 NIL SEGCAT (NIL T) -9 NIL 2563608 NIL) (-1101 2561540 2561971 2562179 "SEGBIND" 2562435 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1100 2561161 2561220 2561333 "SEGBIND2" 2561475 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1099 2560734 2560962 2561039 "SEGAST" 2561106 T SEGAST (NIL) -8 NIL NIL NIL) (-1098 2559953 2560079 2560283 "SEG2" 2560578 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1097 2559363 2559888 2559935 "SDVAR" 2559940 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1096 2551890 2559133 2559263 "SDPOL" 2559268 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1095 2550483 2550749 2551068 "SCPKG" 2551605 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1094 2549647 2549819 2550011 "SCOPE" 2550313 T SCOPE (NIL) -8 NIL NIL NIL) (-1093 2548867 2549001 2549180 "SCACHE" 2549502 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1092 2548513 2548699 2548729 "SASTCAT" 2548734 T SASTCAT (NIL) -9 NIL 2548747 NIL) (-1091 2548000 2548348 2548424 "SAOS" 2548459 T SAOS (NIL) -8 NIL NIL NIL) (-1090 2547565 2547600 2547773 "SAERFFC" 2547959 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1089 2541504 2547462 2547542 "SAE" 2547547 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1088 2541097 2541132 2541291 "SAEFACT" 2541463 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1087 2539418 2539732 2540133 "RURPK" 2540763 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1086 2538055 2538361 2538666 "RULESET" 2539252 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1085 2535278 2535808 2536266 "RULE" 2537736 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1084 2534890 2535072 2535155 "RULECOLD" 2535230 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1083 2534680 2534708 2534779 "RTVALUE" 2534841 T RTVALUE (NIL) -8 NIL NIL NIL) (-1082 2534151 2534397 2534491 "RSTRCAST" 2534608 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1081 2528999 2529794 2530714 "RSETGCD" 2533350 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1080 2518229 2523308 2523405 "RSETCAT" 2527524 NIL RSETCAT (NIL T T T T) -9 NIL 2528621 NIL) (-1079 2516156 2516695 2517519 "RSETCAT-" 2517524 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1078 2508542 2509918 2511438 "RSDCMPK" 2514755 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1077 2506521 2506988 2507062 "RRCC" 2508148 NIL RRCC (NIL T T) -9 NIL 2508492 NIL) (-1076 2505872 2506046 2506325 "RRCC-" 2506330 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1075 2505315 2505568 2505669 "RPTAST" 2505793 T RPTAST (NIL) -8 NIL NIL NIL) (-1074 2479161 2488520 2488587 "RPOLCAT" 2499253 NIL RPOLCAT (NIL T T T) -9 NIL 2502413 NIL) (-1073 2470659 2472999 2476121 "RPOLCAT-" 2476126 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1072 2461590 2468870 2469352 "ROUTINE" 2470199 T ROUTINE (NIL) -8 NIL NIL NIL) (-1071 2458388 2461216 2461356 "ROMAN" 2461472 T ROMAN (NIL) -8 NIL NIL NIL) (-1070 2456632 2457248 2457508 "ROIRC" 2458193 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1069 2452864 2455148 2455178 "RNS" 2455482 T RNS (NIL) -9 NIL 2455756 NIL) (-1068 2451373 2451756 2452290 "RNS-" 2452365 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1067 2450776 2451184 2451214 "RNG" 2451219 T RNG (NIL) -9 NIL 2451240 NIL) (-1066 2449779 2450141 2450343 "RNGBIND" 2450627 NIL RNGBIND (NIL T T) -8 NIL NIL NIL) (-1065 2449178 2449566 2449609 "RMODULE" 2449614 NIL RMODULE (NIL T) -9 NIL 2449641 NIL) (-1064 2448014 2448108 2448444 "RMCAT2" 2449079 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1063 2444864 2447360 2447657 "RMATRIX" 2447776 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1062 2437691 2439951 2440066 "RMATCAT" 2443425 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2444407 NIL) (-1061 2437066 2437213 2437520 "RMATCAT-" 2437525 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1060 2436467 2436688 2436731 "RLINSET" 2436925 NIL RLINSET (NIL T) -9 NIL 2437016 NIL) (-1059 2436034 2436109 2436237 "RINTERP" 2436386 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1058 2435092 2435646 2435676 "RING" 2435732 T RING (NIL) -9 NIL 2435824 NIL) (-1057 2434884 2434928 2435025 "RING-" 2435030 NIL RING- (NIL T) -8 NIL NIL NIL) (-1056 2433725 2433962 2434220 "RIDIST" 2434648 T RIDIST (NIL) -7 NIL NIL NIL) (-1055 2425014 2433193 2433399 "RGCHAIN" 2433573 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1054 2424364 2424770 2424811 "RGBCSPC" 2424869 NIL RGBCSPC (NIL T) -9 NIL 2424921 NIL) (-1053 2423522 2423903 2423944 "RGBCMDL" 2424176 NIL RGBCMDL (NIL T) -9 NIL 2424290 NIL) (-1052 2420516 2421130 2421800 "RF" 2422886 NIL RF (NIL T) -7 NIL NIL NIL) (-1051 2420162 2420225 2420328 "RFFACTOR" 2420447 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1050 2419887 2419922 2420019 "RFFACT" 2420121 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1049 2418004 2418368 2418750 "RFDIST" 2419527 T RFDIST (NIL) -7 NIL NIL NIL) (-1048 2417457 2417549 2417712 "RETSOL" 2417906 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1047 2417093 2417173 2417216 "RETRACT" 2417349 NIL RETRACT (NIL T) -9 NIL 2417436 NIL) (-1046 2416942 2416967 2417054 "RETRACT-" 2417059 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1045 2416544 2416764 2416834 "RETAST" 2416894 T RETAST (NIL) -8 NIL NIL NIL) (-1044 2409282 2416197 2416324 "RESULT" 2416439 T RESULT (NIL) -8 NIL NIL NIL) (-1043 2407873 2408551 2408750 "RESRING" 2409185 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1042 2407509 2407558 2407656 "RESLATC" 2407810 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1041 2407214 2407249 2407356 "REPSQ" 2407468 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1040 2404636 2405216 2405818 "REP" 2406634 T REP (NIL) -7 NIL NIL NIL) (-1039 2404333 2404368 2404479 "REPDB" 2404595 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1038 2398233 2399622 2400845 "REP2" 2403145 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1037 2394610 2395291 2396099 "REP1" 2397460 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1036 2387306 2392751 2393207 "REGSET" 2394240 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1035 2386071 2386454 2386704 "REF" 2387091 NIL REF (NIL T) -8 NIL NIL NIL) (-1034 2385448 2385551 2385718 "REDORDER" 2385955 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1033 2381416 2384661 2384888 "RECLOS" 2385276 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1032 2380468 2380649 2380864 "REALSOLV" 2381223 T REALSOLV (NIL) -7 NIL NIL NIL) (-1031 2380314 2380355 2380385 "REAL" 2380390 T REAL (NIL) -9 NIL 2380425 NIL) (-1030 2376797 2377599 2378483 "REAL0Q" 2379479 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1029 2372398 2373386 2374447 "REAL0" 2375778 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1028 2371869 2372115 2372209 "RDUCEAST" 2372326 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1027 2371274 2371346 2371553 "RDIV" 2371791 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1026 2370342 2370516 2370729 "RDIST" 2371096 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1025 2368939 2369226 2369598 "RDETRS" 2370050 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1024 2366751 2367205 2367743 "RDETR" 2368481 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1023 2365376 2365654 2366051 "RDEEFS" 2366467 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1022 2363885 2364191 2364616 "RDEEF" 2365064 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1021 2357946 2360866 2360896 "RCFIELD" 2362191 T RCFIELD (NIL) -9 NIL 2362922 NIL) (-1020 2356010 2356514 2357210 "RCFIELD-" 2357285 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1019 2352279 2354111 2354154 "RCAGG" 2355238 NIL RCAGG (NIL T) -9 NIL 2355703 NIL) (-1018 2351907 2352001 2352164 "RCAGG-" 2352169 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1017 2351242 2351354 2351519 "RATRET" 2351791 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1016 2350795 2350862 2350983 "RATFACT" 2351170 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1015 2350103 2350223 2350375 "RANDSRC" 2350665 T RANDSRC (NIL) -7 NIL NIL NIL) (-1014 2349837 2349881 2349954 "RADUTIL" 2350052 T RADUTIL (NIL) -7 NIL NIL NIL) (-1013 2342951 2348668 2348979 "RADIX" 2349560 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-1012 2334570 2342793 2342923 "RADFF" 2342928 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-1011 2334217 2334292 2334322 "RADCAT" 2334482 T RADCAT (NIL) -9 NIL NIL NIL) (-1010 2333999 2334047 2334147 "RADCAT-" 2334152 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-1009 2332097 2333769 2333861 "QUEUE" 2333942 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-1008 2328634 2332030 2332078 "QUAT" 2332083 NIL QUAT (NIL T) -8 NIL NIL NIL) (-1007 2328265 2328308 2328439 "QUATCT2" 2328585 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-1006 2321714 2325059 2325101 "QUATCAT" 2325892 NIL QUATCAT (NIL T) -9 NIL 2326658 NIL) (-1005 2317853 2318890 2320280 "QUATCAT-" 2320376 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-1004 2315318 2316929 2316972 "QUAGG" 2317353 NIL QUAGG (NIL T) -9 NIL 2317528 NIL) (-1003 2314920 2315140 2315210 "QQUTAST" 2315270 T QQUTAST (NIL) -8 NIL NIL NIL) (-1002 2313813 2314313 2314487 "QFORM" 2314792 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-1001 2304806 2310045 2310087 "QFCAT" 2310755 NIL QFCAT (NIL T) -9 NIL 2311756 NIL) (-1000 2300373 2301574 2303168 "QFCAT-" 2303264 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-999 2300007 2300050 2300179 "QFCAT2" 2300324 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-998 2299467 2299577 2299707 "QEQUAT" 2299897 T QEQUAT (NIL) -8 NIL NIL NIL) (-997 2292613 2293686 2294870 "QCMPACK" 2298400 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-996 2290162 2290610 2291038 "QALGSET" 2292268 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-995 2289407 2289581 2289813 "QALGSET2" 2289982 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-994 2288097 2288321 2288638 "PWFFINTB" 2289180 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-993 2286279 2286447 2286801 "PUSHVAR" 2287911 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-992 2282197 2283251 2283292 "PTRANFN" 2285176 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-991 2280599 2280890 2281212 "PTPACK" 2281908 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-990 2280231 2280288 2280397 "PTFUNC2" 2280536 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-989 2274708 2279103 2279144 "PTCAT" 2279440 NIL PTCAT (NIL T) -9 NIL 2279593 NIL) (-988 2274366 2274401 2274525 "PSQFR" 2274667 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-987 2272961 2273259 2273593 "PSEUDLIN" 2274064 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-986 2259724 2262095 2264419 "PSETPK" 2270721 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-985 2252742 2255482 2255578 "PSETCAT" 2258599 NIL PSETCAT (NIL T T T T) -9 NIL 2259413 NIL) (-984 2250578 2251212 2252033 "PSETCAT-" 2252038 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-983 2249927 2250092 2250120 "PSCURVE" 2250388 T PSCURVE (NIL) -9 NIL 2250555 NIL) (-982 2245925 2247441 2247506 "PSCAT" 2248350 NIL PSCAT (NIL T T T) -9 NIL 2248590 NIL) (-981 2244988 2245204 2245604 "PSCAT-" 2245609 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-980 2243797 2244420 2244599 "PRTITION" 2244829 T PRTITION (NIL) -8 NIL NIL NIL) (-979 2243272 2243518 2243610 "PRTDAST" 2243725 T PRTDAST (NIL) -8 NIL NIL NIL) (-978 2232362 2234576 2236764 "PRS" 2241134 NIL PRS (NIL T T) -7 NIL NIL NIL) (-977 2230173 2231712 2231752 "PRQAGG" 2231935 NIL PRQAGG (NIL T) -9 NIL 2232037 NIL) (-976 2229509 2229814 2229842 "PROPLOG" 2229981 T PROPLOG (NIL) -9 NIL 2230096 NIL) (-975 2229113 2229170 2229293 "PROPFUN2" 2229432 NIL PROPFUN2 (NIL T T) -8 NIL NIL NIL) (-974 2228428 2228549 2228721 "PROPFUN1" 2228974 NIL PROPFUN1 (NIL T) -8 NIL NIL NIL) (-973 2226609 2227175 2227472 "PROPFRML" 2228164 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-972 2226078 2226185 2226313 "PROPERTY" 2226501 T PROPERTY (NIL) -8 NIL NIL NIL) (-971 2220136 2224244 2225064 "PRODUCT" 2225304 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-970 2217414 2219594 2219828 "PR" 2219947 NIL PR (NIL T T) -8 NIL NIL NIL) (-969 2217210 2217242 2217301 "PRINT" 2217375 T PRINT (NIL) -7 NIL NIL NIL) (-968 2216550 2216667 2216819 "PRIMES" 2217090 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-967 2214615 2215016 2215482 "PRIMELT" 2216129 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-966 2214344 2214393 2214421 "PRIMCAT" 2214545 T PRIMCAT (NIL) -9 NIL NIL NIL) (-965 2210459 2214282 2214327 "PRIMARR" 2214332 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-964 2209466 2209644 2209872 "PRIMARR2" 2210277 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-963 2209109 2209165 2209276 "PREASSOC" 2209404 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-962 2208584 2208717 2208745 "PPCURVE" 2208950 T PPCURVE (NIL) -9 NIL 2209086 NIL) (-961 2208179 2208379 2208462 "PORTNUM" 2208521 T PORTNUM (NIL) -8 NIL NIL NIL) (-960 2205538 2205937 2206529 "POLYROOT" 2207760 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-959 2199720 2205142 2205302 "POLY" 2205411 NIL POLY (NIL T) -8 NIL NIL NIL) (-958 2199103 2199161 2199395 "POLYLIFT" 2199656 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-957 2195378 2195827 2196456 "POLYCATQ" 2198648 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-956 2182090 2187218 2187283 "POLYCAT" 2190797 NIL POLYCAT (NIL T T T) -9 NIL 2192675 NIL) (-955 2175539 2177401 2179785 "POLYCAT-" 2179790 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-954 2175126 2175194 2175314 "POLY2UP" 2175465 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-953 2174758 2174815 2174924 "POLY2" 2175063 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-952 2173443 2173682 2173958 "POLUTIL" 2174532 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-951 2171798 2172075 2172406 "POLTOPOL" 2173165 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-950 2167263 2171734 2171780 "POINT" 2171785 NIL POINT (NIL T) -8 NIL NIL NIL) (-949 2165450 2165807 2166182 "PNTHEORY" 2166908 T PNTHEORY (NIL) -7 NIL NIL NIL) (-948 2163908 2164205 2164604 "PMTOOLS" 2165148 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-947 2163501 2163579 2163696 "PMSYM" 2163824 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-946 2163009 2163078 2163253 "PMQFCAT" 2163426 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-945 2162364 2162474 2162630 "PMPRED" 2162886 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-944 2161757 2161843 2162005 "PMPREDFS" 2162265 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-943 2160421 2160629 2161007 "PMPLCAT" 2161519 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-942 2159953 2160032 2160184 "PMLSAGG" 2160336 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-941 2159426 2159502 2159684 "PMKERNEL" 2159871 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-940 2159043 2159118 2159231 "PMINS" 2159345 NIL PMINS (NIL T) -7 NIL NIL NIL) (-939 2158485 2158554 2158763 "PMFS" 2158968 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-938 2157713 2157831 2158036 "PMDOWN" 2158362 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-937 2156880 2157038 2157219 "PMASS" 2157552 T PMASS (NIL) -7 NIL NIL NIL) (-936 2156153 2156263 2156426 "PMASSFS" 2156767 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-935 2155808 2155876 2155970 "PLOTTOOL" 2156079 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-934 2150415 2151619 2152767 "PLOT" 2154680 T PLOT (NIL) -8 NIL NIL NIL) (-933 2146219 2147263 2148184 "PLOT3D" 2149514 T PLOT3D (NIL) -8 NIL NIL NIL) (-932 2145131 2145308 2145543 "PLOT1" 2146023 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-931 2120522 2125197 2130048 "PLEQN" 2140397 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-930 2119840 2119962 2120142 "PINTERP" 2120387 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-929 2119533 2119580 2119683 "PINTERPA" 2119787 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-928 2118754 2119302 2119389 "PI" 2119429 T PI (NIL) -8 NIL NIL 2119496) (-927 2117051 2118026 2118054 "PID" 2118236 T PID (NIL) -9 NIL 2118370 NIL) (-926 2116802 2116839 2116914 "PICOERCE" 2117008 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-925 2116122 2116261 2116437 "PGROEB" 2116658 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-924 2111709 2112523 2113428 "PGE" 2115237 T PGE (NIL) -7 NIL NIL NIL) (-923 2109832 2110079 2110445 "PGCD" 2111426 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-922 2109170 2109273 2109434 "PFRPAC" 2109716 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-921 2105810 2107718 2108071 "PFR" 2108849 NIL PFR (NIL T) -8 NIL NIL NIL) (-920 2104199 2104443 2104768 "PFOTOOLS" 2105557 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-919 2102732 2102971 2103322 "PFOQ" 2103956 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-918 2101233 2101445 2101801 "PFO" 2102516 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-917 2097786 2101122 2101191 "PF" 2101196 NIL PF (NIL NIL) -8 NIL NIL NIL) (-916 2095120 2096391 2096419 "PFECAT" 2097004 T PFECAT (NIL) -9 NIL 2097388 NIL) (-915 2094565 2094719 2094933 "PFECAT-" 2094938 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-914 2093168 2093420 2093721 "PFBRU" 2094314 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-913 2091034 2091386 2091818 "PFBR" 2092819 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-912 2086916 2088410 2089086 "PERM" 2090391 NIL PERM (NIL T) -8 NIL NIL NIL) (-911 2082150 2083123 2083993 "PERMGRP" 2086079 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-910 2080256 2081213 2081254 "PERMCAT" 2081700 NIL PERMCAT (NIL T) -9 NIL 2082005 NIL) (-909 2079909 2079950 2080074 "PERMAN" 2080209 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-908 2077397 2079574 2079696 "PENDTREE" 2079820 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-907 2075421 2076189 2076230 "PDRING" 2076887 NIL PDRING (NIL T) -9 NIL 2077173 NIL) (-906 2074524 2074742 2075104 "PDRING-" 2075109 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-905 2071739 2072517 2073185 "PDEPROB" 2073876 T PDEPROB (NIL) -8 NIL NIL NIL) (-904 2069284 2069788 2070343 "PDEPACK" 2071204 T PDEPACK (NIL) -7 NIL NIL NIL) (-903 2068196 2068386 2068637 "PDECOMP" 2069083 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-902 2065775 2066618 2066646 "PDECAT" 2067433 T PDECAT (NIL) -9 NIL 2068146 NIL) (-901 2065526 2065559 2065649 "PCOMP" 2065736 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-900 2063704 2064327 2064624 "PBWLB" 2065255 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-899 2056177 2057777 2059115 "PATTERN" 2062387 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-898 2055809 2055866 2055975 "PATTERN2" 2056114 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-897 2053566 2053954 2054411 "PATTERN1" 2055398 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-896 2050934 2051515 2051996 "PATRES" 2053131 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-895 2050498 2050565 2050697 "PATRES2" 2050861 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-894 2048381 2048786 2049193 "PATMATCH" 2050165 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-893 2047891 2048100 2048141 "PATMAB" 2048248 NIL PATMAB (NIL T) -9 NIL 2048331 NIL) (-892 2046409 2046745 2047003 "PATLRES" 2047696 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-891 2045955 2046078 2046119 "PATAB" 2046124 NIL PATAB (NIL T) -9 NIL 2046296 NIL) (-890 2043436 2043968 2044541 "PARTPERM" 2045402 T PARTPERM (NIL) -7 NIL NIL NIL) (-889 2043057 2043120 2043222 "PARSURF" 2043367 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-888 2042689 2042746 2042855 "PARSU2" 2042994 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-887 2042453 2042493 2042560 "PARSER" 2042642 T PARSER (NIL) -7 NIL NIL NIL) (-886 2042074 2042137 2042239 "PARSCURV" 2042384 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-885 2041706 2041763 2041872 "PARSC2" 2042011 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-884 2041345 2041403 2041500 "PARPCURV" 2041642 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-883 2040977 2041034 2041143 "PARPC2" 2041282 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-882 2040038 2040350 2040532 "PARAMAST" 2040815 T PARAMAST (NIL) -8 NIL NIL NIL) (-881 2039558 2039644 2039763 "PAN2EXPR" 2039939 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-880 2038335 2038679 2038907 "PALETTE" 2039350 T PALETTE (NIL) -8 NIL NIL NIL) (-879 2036728 2037340 2037700 "PAIR" 2038021 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-878 2030596 2035985 2036180 "PADICRC" 2036582 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-877 2023823 2029940 2030125 "PADICRAT" 2030443 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-876 2022138 2023760 2023805 "PADIC" 2023810 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-875 2019248 2020812 2020852 "PADICCT" 2021433 NIL PADICCT (NIL NIL) -9 NIL 2021715 NIL) (-874 2018205 2018405 2018673 "PADEPAC" 2019035 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-873 2017417 2017550 2017756 "PADE" 2018067 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-872 2015804 2016625 2016905 "OWP" 2017221 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-871 2015297 2015510 2015607 "OVERSET" 2015727 T OVERSET (NIL) -8 NIL NIL NIL) (-870 2014343 2014902 2015074 "OVAR" 2015165 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-869 2013607 2013728 2013889 "OUT" 2014202 T OUT (NIL) -7 NIL NIL NIL) (-868 2002479 2004716 2006916 "OUTFORM" 2011427 T OUTFORM (NIL) -8 NIL NIL NIL) (-867 2001815 2002076 2002203 "OUTBFILE" 2002372 T OUTBFILE (NIL) -8 NIL NIL NIL) (-866 2001122 2001287 2001315 "OUTBCON" 2001633 T OUTBCON (NIL) -9 NIL 2001799 NIL) (-865 2000723 2000835 2000992 "OUTBCON-" 2000997 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-864 2000103 2000452 2000541 "OSI" 2000654 T OSI (NIL) -8 NIL NIL NIL) (-863 1999633 1999971 1999999 "OSGROUP" 2000004 T OSGROUP (NIL) -9 NIL 2000026 NIL) (-862 1998378 1998605 1998890 "ORTHPOL" 1999380 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-861 1995929 1998213 1998334 "OREUP" 1998339 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-860 1993332 1995620 1995747 "ORESUP" 1995871 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-859 1990860 1991360 1991921 "OREPCTO" 1992821 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-858 1984546 1986747 1986788 "OREPCAT" 1989136 NIL OREPCAT (NIL T) -9 NIL 1990240 NIL) (-857 1981693 1982475 1983533 "OREPCAT-" 1983538 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-856 1980844 1981142 1981170 "ORDSET" 1981479 T ORDSET (NIL) -9 NIL 1981643 NIL) (-855 1980275 1980423 1980647 "ORDSET-" 1980652 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-854 1978840 1979631 1979659 "ORDRING" 1979861 T ORDRING (NIL) -9 NIL 1979986 NIL) (-853 1978485 1978579 1978723 "ORDRING-" 1978728 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-852 1977865 1978328 1978356 "ORDMON" 1978361 T ORDMON (NIL) -9 NIL 1978382 NIL) (-851 1977027 1977174 1977369 "ORDFUNS" 1977714 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-850 1976365 1976784 1976812 "ORDFIN" 1976877 T ORDFIN (NIL) -9 NIL 1976951 NIL) (-849 1972924 1974951 1975360 "ORDCOMP" 1975989 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-848 1972190 1972317 1972503 "ORDCOMP2" 1972784 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-847 1968771 1969681 1970495 "OPTPROB" 1971396 T OPTPROB (NIL) -8 NIL NIL NIL) (-846 1965573 1966212 1966916 "OPTPACK" 1968087 T OPTPACK (NIL) -7 NIL NIL NIL) (-845 1963260 1964026 1964054 "OPTCAT" 1964873 T OPTCAT (NIL) -9 NIL 1965523 NIL) (-844 1962644 1962937 1963042 "OPSIG" 1963175 T OPSIG (NIL) -8 NIL NIL NIL) (-843 1962412 1962451 1962517 "OPQUERY" 1962598 T OPQUERY (NIL) -7 NIL NIL NIL) (-842 1959543 1960723 1961227 "OP" 1961941 NIL OP (NIL T) -8 NIL NIL NIL) (-841 1958917 1959143 1959184 "OPERCAT" 1959396 NIL OPERCAT (NIL T) -9 NIL 1959493 NIL) (-840 1958672 1958728 1958845 "OPERCAT-" 1958850 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-839 1955485 1957469 1957838 "ONECOMP" 1958336 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-838 1954790 1954905 1955079 "ONECOMP2" 1955357 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-837 1954209 1954315 1954445 "OMSERVER" 1954680 T OMSERVER (NIL) -7 NIL NIL NIL) (-836 1951071 1953649 1953689 "OMSAGG" 1953750 NIL OMSAGG (NIL T) -9 NIL 1953814 NIL) (-835 1949694 1949957 1950239 "OMPKG" 1950809 T OMPKG (NIL) -7 NIL NIL NIL) (-834 1949124 1949227 1949255 "OM" 1949554 T OM (NIL) -9 NIL NIL NIL) (-833 1947671 1948673 1948842 "OMLO" 1949005 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-832 1946631 1946778 1946998 "OMEXPR" 1947497 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-831 1945922 1946177 1946313 "OMERR" 1946515 T OMERR (NIL) -8 NIL NIL NIL) (-830 1945073 1945343 1945503 "OMERRK" 1945782 T OMERRK (NIL) -8 NIL NIL NIL) (-829 1944524 1944750 1944858 "OMENC" 1944985 T OMENC (NIL) -8 NIL NIL NIL) (-828 1938419 1939604 1940775 "OMDEV" 1943373 T OMDEV (NIL) -8 NIL NIL NIL) (-827 1937488 1937659 1937853 "OMCONN" 1938245 T OMCONN (NIL) -8 NIL NIL NIL) (-826 1936009 1936985 1937013 "OINTDOM" 1937018 T OINTDOM (NIL) -9 NIL 1937039 NIL) (-825 1933347 1934697 1935034 "OFMONOID" 1935704 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-824 1932758 1933284 1933329 "ODVAR" 1933334 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-823 1930181 1932503 1932658 "ODR" 1932663 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-822 1922762 1929957 1930083 "ODPOL" 1930088 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-821 1916584 1922634 1922739 "ODP" 1922744 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-820 1915350 1915565 1915840 "ODETOOLS" 1916358 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-819 1912317 1912975 1913691 "ODESYS" 1914683 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-818 1907199 1908107 1909132 "ODERTRIC" 1911392 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-817 1906625 1906707 1906901 "ODERED" 1907111 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-816 1903513 1904061 1904738 "ODERAT" 1906048 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-815 1900472 1900937 1901534 "ODEPRRIC" 1903042 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-814 1898415 1899011 1899497 "ODEPROB" 1900006 T ODEPROB (NIL) -8 NIL NIL NIL) (-813 1894935 1895420 1896067 "ODEPRIM" 1897894 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-812 1894184 1894286 1894546 "ODEPAL" 1894827 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-811 1890346 1891137 1892001 "ODEPACK" 1893340 T ODEPACK (NIL) -7 NIL NIL NIL) (-810 1889407 1889514 1889736 "ODEINT" 1890235 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-809 1883508 1884933 1886380 "ODEIFTBL" 1887980 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-808 1878906 1879692 1880644 "ODEEF" 1882667 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-807 1878255 1878344 1878567 "ODECONST" 1878811 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-806 1876380 1877041 1877069 "ODECAT" 1877674 T ODECAT (NIL) -9 NIL 1878205 NIL) (-805 1873235 1876085 1876207 "OCT" 1876290 NIL OCT (NIL T) -8 NIL NIL NIL) (-804 1872873 1872916 1873043 "OCTCT2" 1873186 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-803 1867522 1869957 1869997 "OC" 1871094 NIL OC (NIL T) -9 NIL 1871952 NIL) (-802 1864749 1865497 1866487 "OC-" 1866581 NIL OC- (NIL T T) -8 NIL NIL NIL) (-801 1864101 1864569 1864597 "OCAMON" 1864602 T OCAMON (NIL) -9 NIL 1864623 NIL) (-800 1863632 1863973 1864001 "OASGP" 1864006 T OASGP (NIL) -9 NIL 1864026 NIL) (-799 1862893 1863382 1863410 "OAMONS" 1863450 T OAMONS (NIL) -9 NIL 1863493 NIL) (-798 1862307 1862740 1862768 "OAMON" 1862773 T OAMON (NIL) -9 NIL 1862793 NIL) (-797 1861565 1862083 1862111 "OAGROUP" 1862116 T OAGROUP (NIL) -9 NIL 1862136 NIL) (-796 1861255 1861305 1861393 "NUMTUBE" 1861509 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-795 1854828 1856346 1857882 "NUMQUAD" 1859739 T NUMQUAD (NIL) -7 NIL NIL NIL) (-794 1850584 1851572 1852597 "NUMODE" 1853823 T NUMODE (NIL) -7 NIL NIL NIL) (-793 1847939 1848819 1848847 "NUMINT" 1849770 T NUMINT (NIL) -9 NIL 1850534 NIL) (-792 1846887 1847084 1847302 "NUMFMT" 1847741 T NUMFMT (NIL) -7 NIL NIL NIL) (-791 1833246 1836191 1838723 "NUMERIC" 1844394 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-790 1827616 1832695 1832790 "NTSCAT" 1832795 NIL NTSCAT (NIL T T T T) -9 NIL 1832834 NIL) (-789 1826810 1826975 1827168 "NTPOLFN" 1827455 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-788 1814887 1823635 1824447 "NSUP" 1826031 NIL NSUP (NIL T) -8 NIL NIL NIL) (-787 1814519 1814576 1814685 "NSUP2" 1814824 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-786 1804745 1814293 1814426 "NSMP" 1814431 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-785 1803177 1803478 1803835 "NREP" 1804433 NIL NREP (NIL T) -7 NIL NIL NIL) (-784 1801768 1802020 1802378 "NPCOEF" 1802920 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-783 1800834 1800949 1801165 "NORMRETR" 1801649 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-782 1798875 1799165 1799574 "NORMPK" 1800542 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-781 1798560 1798588 1798712 "NORMMA" 1798841 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-780 1798360 1798517 1798546 "NONE" 1798551 T NONE (NIL) -8 NIL NIL NIL) (-779 1798149 1798178 1798247 "NONE1" 1798324 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-778 1797646 1797708 1797887 "NODE1" 1798081 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-777 1795931 1796782 1797037 "NNI" 1797384 T NNI (NIL) -8 NIL NIL 1797619) (-776 1794351 1794664 1795028 "NLINSOL" 1795599 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-775 1790592 1791587 1792486 "NIPROB" 1793472 T NIPROB (NIL) -8 NIL NIL NIL) (-774 1789349 1789583 1789885 "NFINTBAS" 1790354 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-773 1788523 1788999 1789040 "NETCLT" 1789212 NIL NETCLT (NIL T) -9 NIL 1789294 NIL) (-772 1787231 1787462 1787743 "NCODIV" 1788291 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-771 1786993 1787030 1787105 "NCNTFRAC" 1787188 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-770 1785173 1785537 1785957 "NCEP" 1786618 NIL NCEP (NIL T) -7 NIL NIL NIL) (-769 1784024 1784797 1784825 "NASRING" 1784935 T NASRING (NIL) -9 NIL 1785015 NIL) (-768 1783819 1783863 1783957 "NASRING-" 1783962 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-767 1782926 1783451 1783479 "NARNG" 1783596 T NARNG (NIL) -9 NIL 1783687 NIL) (-766 1782618 1782685 1782819 "NARNG-" 1782824 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-765 1781497 1781704 1781939 "NAGSP" 1782403 T NAGSP (NIL) -7 NIL NIL NIL) (-764 1772769 1774453 1776126 "NAGS" 1779844 T NAGS (NIL) -7 NIL NIL NIL) (-763 1771317 1771625 1771956 "NAGF07" 1772458 T NAGF07 (NIL) -7 NIL NIL NIL) (-762 1765855 1767146 1768453 "NAGF04" 1770030 T NAGF04 (NIL) -7 NIL NIL NIL) (-761 1758823 1760437 1762070 "NAGF02" 1764242 T NAGF02 (NIL) -7 NIL NIL NIL) (-760 1754047 1755147 1756264 "NAGF01" 1757726 T NAGF01 (NIL) -7 NIL NIL NIL) (-759 1747675 1749241 1750826 "NAGE04" 1752482 T NAGE04 (NIL) -7 NIL NIL NIL) (-758 1738844 1740965 1743095 "NAGE02" 1745565 T NAGE02 (NIL) -7 NIL NIL NIL) (-757 1734797 1735744 1736708 "NAGE01" 1737900 T NAGE01 (NIL) -7 NIL NIL NIL) (-756 1732592 1733126 1733684 "NAGD03" 1734259 T NAGD03 (NIL) -7 NIL NIL NIL) (-755 1724342 1726270 1728224 "NAGD02" 1730658 T NAGD02 (NIL) -7 NIL NIL NIL) (-754 1718153 1719578 1721018 "NAGD01" 1722922 T NAGD01 (NIL) -7 NIL NIL NIL) (-753 1714362 1715184 1716021 "NAGC06" 1717336 T NAGC06 (NIL) -7 NIL NIL NIL) (-752 1712827 1713159 1713515 "NAGC05" 1714026 T NAGC05 (NIL) -7 NIL NIL NIL) (-751 1712203 1712322 1712466 "NAGC02" 1712703 T NAGC02 (NIL) -7 NIL NIL NIL) (-750 1711162 1711745 1711785 "NAALG" 1711864 NIL NAALG (NIL T) -9 NIL 1711925 NIL) (-749 1710997 1711026 1711116 "NAALG-" 1711121 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-748 1704947 1706055 1707242 "MULTSQFR" 1709893 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-747 1704266 1704341 1704525 "MULTFACT" 1704859 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-746 1696990 1700903 1700956 "MTSCAT" 1702026 NIL MTSCAT (NIL T T) -9 NIL 1702541 NIL) (-745 1696702 1696756 1696848 "MTHING" 1696930 NIL MTHING (NIL T) -7 NIL NIL NIL) (-744 1696494 1696527 1696587 "MSYSCMD" 1696662 T MSYSCMD (NIL) -7 NIL NIL NIL) (-743 1692576 1695249 1695569 "MSET" 1696207 NIL MSET (NIL T) -8 NIL NIL NIL) (-742 1689645 1692137 1692178 "MSETAGG" 1692183 NIL MSETAGG (NIL T) -9 NIL 1692217 NIL) (-741 1685487 1687024 1687769 "MRING" 1688945 NIL MRING (NIL T T) -8 NIL NIL NIL) (-740 1685053 1685120 1685251 "MRF2" 1685414 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-739 1684671 1684706 1684850 "MRATFAC" 1685012 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-738 1682283 1682578 1683009 "MPRFF" 1684376 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-737 1676580 1682137 1682234 "MPOLY" 1682239 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-736 1676070 1676105 1676313 "MPCPF" 1676539 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-735 1675584 1675627 1675811 "MPC3" 1676021 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-734 1674779 1674860 1675081 "MPC2" 1675499 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-733 1673080 1673417 1673807 "MONOTOOL" 1674439 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-732 1672305 1672622 1672650 "MONOID" 1672869 T MONOID (NIL) -9 NIL 1673016 NIL) (-731 1671851 1671970 1672151 "MONOID-" 1672156 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-730 1662326 1668277 1668336 "MONOGEN" 1669010 NIL MONOGEN (NIL T T) -9 NIL 1669466 NIL) (-729 1659544 1660279 1661279 "MONOGEN-" 1661398 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-728 1658377 1658823 1658851 "MONADWU" 1659243 T MONADWU (NIL) -9 NIL 1659481 NIL) (-727 1657749 1657908 1658156 "MONADWU-" 1658161 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-726 1657108 1657352 1657380 "MONAD" 1657587 T MONAD (NIL) -9 NIL 1657699 NIL) (-725 1656793 1656871 1657003 "MONAD-" 1657008 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-724 1655082 1655706 1655985 "MOEBIUS" 1656546 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-723 1654360 1654764 1654804 "MODULE" 1654809 NIL MODULE (NIL T) -9 NIL 1654848 NIL) (-722 1653928 1654024 1654214 "MODULE-" 1654219 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-721 1651608 1652292 1652619 "MODRING" 1653752 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-720 1648552 1649713 1650234 "MODOP" 1651137 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-719 1647140 1647619 1647896 "MODMONOM" 1648415 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-718 1637184 1645431 1645845 "MODMON" 1646777 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-717 1634340 1636028 1636304 "MODFIELD" 1637059 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-716 1633317 1633621 1633811 "MMLFORM" 1634170 T MMLFORM (NIL) -8 NIL NIL NIL) (-715 1632843 1632886 1633065 "MMAP" 1633268 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-714 1630922 1631689 1631730 "MLO" 1632153 NIL MLO (NIL T) -9 NIL 1632395 NIL) (-713 1628288 1628804 1629406 "MLIFT" 1630403 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-712 1627679 1627763 1627917 "MKUCFUNC" 1628199 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-711 1627278 1627348 1627471 "MKRECORD" 1627602 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-710 1626325 1626487 1626715 "MKFUNC" 1627089 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-709 1625713 1625817 1625973 "MKFLCFN" 1626208 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-708 1624990 1625092 1625277 "MKBCFUNC" 1625606 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-707 1621697 1624544 1624680 "MINT" 1624874 T MINT (NIL) -8 NIL NIL NIL) (-706 1620509 1620752 1621029 "MHROWRED" 1621452 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-705 1615889 1619044 1619449 "MFLOAT" 1620124 T MFLOAT (NIL) -8 NIL NIL NIL) (-704 1615246 1615322 1615493 "MFINFACT" 1615801 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-703 1611561 1612409 1613293 "MESH" 1614382 T MESH (NIL) -7 NIL NIL NIL) (-702 1609951 1610263 1610616 "MDDFACT" 1611248 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-701 1606746 1609110 1609151 "MDAGG" 1609406 NIL MDAGG (NIL T) -9 NIL 1609549 NIL) (-700 1596486 1606039 1606246 "MCMPLX" 1606559 T MCMPLX (NIL) -8 NIL NIL NIL) (-699 1595623 1595769 1595970 "MCDEN" 1596335 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-698 1593513 1593783 1594163 "MCALCFN" 1595353 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-697 1592438 1592678 1592911 "MAYBE" 1593319 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-696 1590050 1590573 1591135 "MATSTOR" 1591909 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-695 1586007 1589422 1589670 "MATRIX" 1589835 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-694 1581773 1582480 1583216 "MATLIN" 1585364 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-693 1571879 1575065 1575142 "MATCAT" 1580022 NIL MATCAT (NIL T T T) -9 NIL 1581439 NIL) (-692 1568235 1569256 1570612 "MATCAT-" 1570617 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-691 1566829 1566982 1567315 "MATCAT2" 1568070 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-690 1564941 1565265 1565649 "MAPPKG3" 1566504 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-689 1563922 1564095 1564317 "MAPPKG2" 1564765 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-688 1562421 1562705 1563032 "MAPPKG1" 1563628 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-687 1561500 1561827 1562004 "MAPPAST" 1562264 T MAPPAST (NIL) -8 NIL NIL NIL) (-686 1561111 1561169 1561292 "MAPHACK3" 1561436 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-685 1560703 1560764 1560878 "MAPHACK2" 1561043 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-684 1560141 1560244 1560386 "MAPHACK1" 1560594 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-683 1558220 1558841 1559145 "MAGMA" 1559869 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-682 1557699 1557944 1558035 "MACROAST" 1558149 T MACROAST (NIL) -8 NIL NIL NIL) (-681 1554117 1555938 1556399 "M3D" 1557271 NIL M3D (NIL T) -8 NIL NIL NIL) (-680 1548223 1552486 1552527 "LZSTAGG" 1553309 NIL LZSTAGG (NIL T) -9 NIL 1553604 NIL) (-679 1544181 1545354 1546811 "LZSTAGG-" 1546816 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-678 1541268 1542072 1542559 "LWORD" 1543726 NIL LWORD (NIL T) -8 NIL NIL NIL) (-677 1540844 1541072 1541147 "LSTAST" 1541213 T LSTAST (NIL) -8 NIL NIL NIL) (-676 1534010 1540615 1540749 "LSQM" 1540754 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-675 1533234 1533373 1533601 "LSPP" 1533865 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-674 1531046 1531347 1531803 "LSMP" 1532923 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-673 1527825 1528499 1529229 "LSMP1" 1530348 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-672 1521702 1526992 1527033 "LSAGG" 1527095 NIL LSAGG (NIL T) -9 NIL 1527173 NIL) (-671 1518397 1519321 1520534 "LSAGG-" 1520539 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-670 1515996 1517541 1517790 "LPOLY" 1518192 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-669 1515578 1515663 1515786 "LPEFRAC" 1515905 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-668 1513899 1514672 1514925 "LO" 1515410 NIL LO (NIL T T T) -8 NIL NIL NIL) (-667 1513551 1513663 1513691 "LOGIC" 1513802 T LOGIC (NIL) -9 NIL 1513883 NIL) (-666 1513413 1513436 1513507 "LOGIC-" 1513512 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-665 1512606 1512746 1512939 "LODOOPS" 1513269 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-664 1510029 1512522 1512588 "LODO" 1512593 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-663 1508567 1508802 1509155 "LODOF" 1509776 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-662 1504785 1507216 1507257 "LODOCAT" 1507695 NIL LODOCAT (NIL T) -9 NIL 1507906 NIL) (-661 1504518 1504576 1504703 "LODOCAT-" 1504708 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-660 1501838 1504359 1504477 "LODO2" 1504482 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-659 1499273 1501775 1501820 "LODO1" 1501825 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-658 1498154 1498319 1498624 "LODEEF" 1499096 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-657 1493393 1496284 1496325 "LNAGG" 1497272 NIL LNAGG (NIL T) -9 NIL 1497716 NIL) (-656 1492540 1492754 1493096 "LNAGG-" 1493101 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-655 1488676 1489465 1490104 "LMOPS" 1491955 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-654 1488079 1488467 1488508 "LMODULE" 1488513 NIL LMODULE (NIL T) -9 NIL 1488539 NIL) (-653 1485277 1487724 1487847 "LMDICT" 1487989 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-652 1484683 1484904 1484945 "LLINSET" 1485136 NIL LLINSET (NIL T) -9 NIL 1485227 NIL) (-651 1484382 1484591 1484651 "LITERAL" 1484656 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-650 1477545 1483316 1483620 "LIST" 1484111 NIL LIST (NIL T) -8 NIL NIL NIL) (-649 1477070 1477144 1477283 "LIST3" 1477465 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-648 1476077 1476255 1476483 "LIST2" 1476888 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-647 1474211 1474523 1474922 "LIST2MAP" 1475724 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-646 1473807 1474044 1474085 "LINSET" 1474090 NIL LINSET (NIL T) -9 NIL 1474124 NIL) (-645 1472468 1473138 1473179 "LINEXP" 1473434 NIL LINEXP (NIL T) -9 NIL 1473583 NIL) (-644 1471115 1471375 1471672 "LINDEP" 1472220 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-643 1467882 1468601 1469378 "LIMITRF" 1470370 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-642 1466185 1466481 1466890 "LIMITPS" 1467577 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-641 1460613 1465696 1465924 "LIE" 1466006 NIL LIE (NIL T T) -8 NIL NIL NIL) (-640 1459561 1460030 1460070 "LIECAT" 1460210 NIL LIECAT (NIL T) -9 NIL 1460361 NIL) (-639 1459402 1459429 1459517 "LIECAT-" 1459522 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-638 1451898 1458851 1459016 "LIB" 1459257 T LIB (NIL) -8 NIL NIL NIL) (-637 1447533 1448416 1449351 "LGROBP" 1451015 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-636 1445531 1445805 1446155 "LF" 1447254 NIL LF (NIL T T) -7 NIL NIL NIL) (-635 1444371 1445063 1445091 "LFCAT" 1445298 T LFCAT (NIL) -9 NIL 1445437 NIL) (-634 1441273 1441903 1442591 "LEXTRIPK" 1443735 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-633 1438017 1438843 1439346 "LEXP" 1440853 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-632 1437493 1437738 1437830 "LETAST" 1437945 T LETAST (NIL) -8 NIL NIL NIL) (-631 1435891 1436204 1436605 "LEADCDET" 1437175 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-630 1435081 1435155 1435384 "LAZM3PK" 1435812 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-629 1429998 1433158 1433696 "LAUPOL" 1434593 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-628 1429577 1429621 1429782 "LAPLACE" 1429948 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-627 1427516 1428678 1428929 "LA" 1429410 NIL LA (NIL T T T) -8 NIL NIL NIL) (-626 1426510 1427094 1427135 "LALG" 1427197 NIL LALG (NIL T) -9 NIL 1427256 NIL) (-625 1426224 1426283 1426419 "LALG-" 1426424 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-624 1426059 1426083 1426124 "KVTFROM" 1426186 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-623 1424982 1425426 1425611 "KTVLOGIC" 1425894 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-622 1424817 1424841 1424882 "KRCFROM" 1424944 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-621 1423721 1423908 1424207 "KOVACIC" 1424617 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-620 1423556 1423580 1423621 "KONVERT" 1423683 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-619 1423391 1423415 1423456 "KOERCE" 1423518 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-618 1421221 1421984 1422361 "KERNEL" 1423047 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-617 1420717 1420798 1420930 "KERNEL2" 1421135 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-616 1414487 1419256 1419310 "KDAGG" 1419687 NIL KDAGG (NIL T T) -9 NIL 1419893 NIL) (-615 1414016 1414140 1414345 "KDAGG-" 1414350 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-614 1407164 1413677 1413832 "KAFILE" 1413894 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-613 1401592 1406675 1406903 "JORDAN" 1406985 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-612 1400971 1401241 1401362 "JOINAST" 1401491 T JOINAST (NIL) -8 NIL NIL NIL) (-611 1400817 1400876 1400931 "JAVACODE" 1400936 T JAVACODE (NIL) -8 NIL NIL NIL) (-610 1397069 1399022 1399076 "IXAGG" 1400005 NIL IXAGG (NIL T T) -9 NIL 1400464 NIL) (-609 1395988 1396294 1396713 "IXAGG-" 1396718 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-608 1391518 1395910 1395969 "IVECTOR" 1395974 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-607 1390284 1390521 1390787 "ITUPLE" 1391285 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-606 1388786 1388963 1389258 "ITRIGMNP" 1390106 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-605 1387531 1387735 1388018 "ITFUN3" 1388562 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-604 1387163 1387220 1387329 "ITFUN2" 1387468 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-603 1386322 1386643 1386817 "ITFORM" 1387009 T ITFORM (NIL) -8 NIL NIL NIL) (-602 1384283 1385342 1385620 "ITAYLOR" 1386077 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-601 1373228 1378420 1379583 "ISUPS" 1383153 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-600 1372332 1372472 1372708 "ISUMP" 1373075 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-599 1367707 1372277 1372318 "ISTRING" 1372323 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-598 1367183 1367428 1367520 "ISAST" 1367635 T ISAST (NIL) -8 NIL NIL NIL) (-597 1366392 1366474 1366690 "IRURPK" 1367097 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-596 1365328 1365529 1365769 "IRSN" 1366172 T IRSN (NIL) -7 NIL NIL NIL) (-595 1363399 1363754 1364183 "IRRF2F" 1364966 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-594 1363146 1363184 1363260 "IRREDFFX" 1363355 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-593 1361761 1362020 1362319 "IROOT" 1362879 NIL IROOT (NIL T) -7 NIL NIL NIL) (-592 1358365 1359445 1360137 "IR" 1361101 NIL IR (NIL T) -8 NIL NIL NIL) (-591 1357570 1357858 1358009 "IRFORM" 1358234 T IRFORM (NIL) -8 NIL NIL NIL) (-590 1355183 1355678 1356244 "IR2" 1357048 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-589 1354283 1354396 1354610 "IR2F" 1355066 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-588 1354074 1354108 1354168 "IPRNTPK" 1354243 T IPRNTPK (NIL) -7 NIL NIL NIL) (-587 1350655 1353963 1354032 "IPF" 1354037 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-586 1348982 1350580 1350637 "IPADIC" 1350642 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-585 1348294 1348542 1348672 "IP4ADDR" 1348872 T IP4ADDR (NIL) -8 NIL NIL NIL) (-584 1347668 1347923 1348055 "IOMODE" 1348182 T IOMODE (NIL) -8 NIL NIL NIL) (-583 1346741 1347265 1347392 "IOBFILE" 1347561 T IOBFILE (NIL) -8 NIL NIL NIL) (-582 1346229 1346645 1346673 "IOBCON" 1346678 T IOBCON (NIL) -9 NIL 1346699 NIL) (-581 1345740 1345798 1345981 "INVLAPLA" 1346165 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-580 1335388 1337742 1340128 "INTTR" 1343404 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-579 1331723 1332465 1333330 "INTTOOLS" 1334573 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-578 1331309 1331400 1331517 "INTSLPE" 1331626 T INTSLPE (NIL) -7 NIL NIL NIL) (-577 1329262 1331232 1331291 "INTRVL" 1331296 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-576 1326864 1327376 1327951 "INTRF" 1328747 NIL INTRF (NIL T) -7 NIL NIL NIL) (-575 1326275 1326372 1326514 "INTRET" 1326762 NIL INTRET (NIL T) -7 NIL NIL NIL) (-574 1324272 1324661 1325131 "INTRAT" 1325883 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-573 1321535 1322118 1322737 "INTPM" 1323757 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-572 1318280 1318879 1319617 "INTPAF" 1320921 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-571 1313459 1314421 1315472 "INTPACK" 1317249 T INTPACK (NIL) -7 NIL NIL NIL) (-570 1310407 1313256 1313365 "INT" 1313370 T INT (NIL) -8 NIL NIL NIL) (-569 1309659 1309811 1310019 "INTHERTR" 1310249 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-568 1309098 1309178 1309366 "INTHERAL" 1309573 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-567 1306944 1307387 1307844 "INTHEORY" 1308661 T INTHEORY (NIL) -7 NIL NIL NIL) (-566 1298350 1299971 1301743 "INTG0" 1305296 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-565 1278923 1283713 1288523 "INTFTBL" 1293560 T INTFTBL (NIL) -8 NIL NIL NIL) (-564 1278172 1278310 1278483 "INTFACT" 1278782 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-563 1275599 1276045 1276602 "INTEF" 1277726 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-562 1273966 1274705 1274733 "INTDOM" 1275034 T INTDOM (NIL) -9 NIL 1275241 NIL) (-561 1273335 1273509 1273751 "INTDOM-" 1273756 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-560 1269723 1271651 1271705 "INTCAT" 1272504 NIL INTCAT (NIL T) -9 NIL 1272825 NIL) (-559 1269195 1269298 1269426 "INTBIT" 1269615 T INTBIT (NIL) -7 NIL NIL NIL) (-558 1267894 1268048 1268355 "INTALG" 1269040 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-557 1267377 1267467 1267624 "INTAF" 1267798 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-556 1260720 1267187 1267327 "INTABL" 1267332 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-555 1260061 1260527 1260592 "INT8" 1260626 T INT8 (NIL) -8 NIL NIL 1260671) (-554 1259401 1259867 1259932 "INT64" 1259966 T INT64 (NIL) -8 NIL NIL 1260011) (-553 1258741 1259207 1259272 "INT32" 1259306 T INT32 (NIL) -8 NIL NIL 1259351) (-552 1258081 1258547 1258612 "INT16" 1258646 T INT16 (NIL) -8 NIL NIL 1258691) (-551 1252991 1255704 1255732 "INS" 1256666 T INS (NIL) -9 NIL 1257331 NIL) (-550 1250231 1251002 1251976 "INS-" 1252049 NIL INS- (NIL T) -8 NIL NIL NIL) (-549 1249006 1249233 1249531 "INPSIGN" 1249984 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-548 1248124 1248241 1248438 "INPRODPF" 1248886 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-547 1247018 1247135 1247372 "INPRODFF" 1248004 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-546 1246018 1246170 1246430 "INNMFACT" 1246854 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-545 1245215 1245312 1245500 "INMODGCD" 1245917 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-544 1243723 1243968 1244292 "INFSP" 1244960 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-543 1242907 1243024 1243207 "INFPROD0" 1243603 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-542 1239762 1240972 1241487 "INFORM" 1242400 T INFORM (NIL) -8 NIL NIL NIL) (-541 1239372 1239432 1239530 "INFORM1" 1239697 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-540 1238895 1238984 1239098 "INFINITY" 1239278 T INFINITY (NIL) -7 NIL NIL NIL) (-539 1238071 1238615 1238716 "INETCLTS" 1238814 T INETCLTS (NIL) -8 NIL NIL NIL) (-538 1236687 1236937 1237258 "INEP" 1237819 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-537 1235936 1236584 1236649 "INDE" 1236654 NIL INDE (NIL T) -8 NIL NIL NIL) (-536 1235500 1235568 1235685 "INCRMAPS" 1235863 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-535 1234318 1234769 1234975 "INBFILE" 1235314 T INBFILE (NIL) -8 NIL NIL NIL) (-534 1229617 1230554 1231498 "INBFF" 1233406 NIL INBFF (NIL T) -7 NIL NIL NIL) (-533 1228525 1228794 1228822 "INBCON" 1229335 T INBCON (NIL) -9 NIL 1229601 NIL) (-532 1227777 1228000 1228276 "INBCON-" 1228281 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-531 1227256 1227501 1227592 "INAST" 1227706 T INAST (NIL) -8 NIL NIL NIL) (-530 1226683 1226935 1227041 "IMPTAST" 1227170 T IMPTAST (NIL) -8 NIL NIL NIL) (-529 1223129 1226527 1226631 "IMATRIX" 1226636 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-528 1221837 1221960 1222276 "IMATQF" 1222985 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-527 1220057 1220284 1220621 "IMATLIN" 1221593 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-526 1214635 1219981 1220039 "ILIST" 1220044 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-525 1212540 1214495 1214608 "IIARRAY2" 1214613 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-524 1207938 1212451 1212515 "IFF" 1212520 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-523 1207285 1207555 1207671 "IFAST" 1207842 T IFAST (NIL) -8 NIL NIL NIL) (-522 1202280 1206577 1206765 "IFARRAY" 1207142 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-521 1201460 1202184 1202257 "IFAMON" 1202262 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-520 1201044 1201109 1201163 "IEVALAB" 1201370 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-519 1200719 1200787 1200947 "IEVALAB-" 1200952 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-518 1200350 1200633 1200696 "IDPO" 1200701 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-517 1199600 1200239 1200314 "IDPOAMS" 1200319 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-516 1198907 1199489 1199564 "IDPOAM" 1199569 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-515 1197966 1198242 1198295 "IDPC" 1198708 NIL IDPC (NIL T T) -9 NIL 1198857 NIL) (-514 1197435 1197858 1197931 "IDPAM" 1197936 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-513 1196811 1197327 1197400 "IDPAG" 1197405 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-512 1196456 1196647 1196722 "IDENT" 1196756 T IDENT (NIL) -8 NIL NIL NIL) (-511 1192711 1193559 1194454 "IDECOMP" 1195613 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-510 1185549 1186634 1187681 "IDEAL" 1191747 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-509 1184709 1184821 1185021 "ICDEN" 1185433 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-508 1183780 1184189 1184336 "ICARD" 1184582 T ICARD (NIL) -8 NIL NIL NIL) (-507 1181840 1182153 1182558 "IBPTOOLS" 1183457 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-506 1177447 1181460 1181573 "IBITS" 1181759 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-505 1174170 1174746 1175441 "IBATOOL" 1176864 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-504 1171949 1172411 1172944 "IBACHIN" 1173705 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-503 1169778 1171795 1171898 "IARRAY2" 1171903 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-502 1165884 1169704 1169761 "IARRAY1" 1169766 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-501 1159993 1164296 1164777 "IAN" 1165423 T IAN (NIL) -8 NIL NIL NIL) (-500 1159504 1159561 1159734 "IALGFACT" 1159930 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-499 1159032 1159145 1159173 "HYPCAT" 1159380 T HYPCAT (NIL) -9 NIL NIL NIL) (-498 1158570 1158687 1158873 "HYPCAT-" 1158878 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-497 1158165 1158365 1158448 "HOSTNAME" 1158507 T HOSTNAME (NIL) -8 NIL NIL NIL) (-496 1158010 1158047 1158088 "HOMOTOP" 1158093 NIL HOMOTOP (NIL T) -9 NIL 1158126 NIL) (-495 1154642 1156020 1156061 "HOAGG" 1157042 NIL HOAGG (NIL T) -9 NIL 1157721 NIL) (-494 1153236 1153635 1154161 "HOAGG-" 1154166 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-493 1147238 1152829 1152979 "HEXADEC" 1153106 T HEXADEC (NIL) -8 NIL NIL NIL) (-492 1145986 1146208 1146471 "HEUGCD" 1147015 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-491 1145062 1145823 1145953 "HELLFDIV" 1145958 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-490 1143241 1144839 1144927 "HEAP" 1145006 NIL HEAP (NIL T) -8 NIL NIL NIL) (-489 1142504 1142793 1142927 "HEADAST" 1143127 T HEADAST (NIL) -8 NIL NIL NIL) (-488 1136370 1142419 1142481 "HDP" 1142486 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-487 1130358 1136005 1136157 "HDMP" 1136271 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-486 1129682 1129822 1129986 "HB" 1130214 T HB (NIL) -7 NIL NIL NIL) (-485 1123068 1129528 1129632 "HASHTBL" 1129637 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-484 1122544 1122789 1122881 "HASAST" 1122996 T HASAST (NIL) -8 NIL NIL NIL) (-483 1120322 1122166 1122348 "HACKPI" 1122382 T HACKPI (NIL) -8 NIL NIL NIL) (-482 1115990 1120175 1120288 "GTSET" 1120293 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-481 1109405 1115868 1115966 "GSTBL" 1115971 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-480 1101683 1108436 1108701 "GSERIES" 1109196 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-479 1100824 1101241 1101269 "GROUP" 1101472 T GROUP (NIL) -9 NIL 1101606 NIL) (-478 1100190 1100349 1100600 "GROUP-" 1100605 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-477 1098557 1098878 1099265 "GROEBSOL" 1099867 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-476 1097471 1097759 1097810 "GRMOD" 1098339 NIL GRMOD (NIL T T) -9 NIL 1098507 NIL) (-475 1097239 1097275 1097403 "GRMOD-" 1097408 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-474 1092529 1093593 1094593 "GRIMAGE" 1096259 T GRIMAGE (NIL) -8 NIL NIL NIL) (-473 1090995 1091256 1091580 "GRDEF" 1092225 T GRDEF (NIL) -7 NIL NIL NIL) (-472 1090439 1090555 1090696 "GRAY" 1090874 T GRAY (NIL) -7 NIL NIL NIL) (-471 1089626 1090032 1090083 "GRALG" 1090236 NIL GRALG (NIL T T) -9 NIL 1090329 NIL) (-470 1089287 1089360 1089523 "GRALG-" 1089528 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-469 1086064 1088872 1089050 "GPOLSET" 1089194 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-468 1085418 1085475 1085733 "GOSPER" 1086001 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-467 1081150 1081856 1082382 "GMODPOL" 1085117 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-466 1080155 1080339 1080577 "GHENSEL" 1080962 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-465 1074311 1075154 1076174 "GENUPS" 1079239 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-464 1074008 1074059 1074148 "GENUFACT" 1074254 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-463 1073420 1073497 1073662 "GENPGCD" 1073926 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-462 1072894 1072929 1073142 "GENMFACT" 1073379 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-461 1071460 1071717 1072024 "GENEEZ" 1072637 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-460 1065608 1071071 1071233 "GDMP" 1071383 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-459 1054951 1059379 1060485 "GCNAALG" 1064591 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-458 1053278 1054140 1054168 "GCDDOM" 1054423 T GCDDOM (NIL) -9 NIL 1054580 NIL) (-457 1052748 1052875 1053090 "GCDDOM-" 1053095 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-456 1051420 1051605 1051909 "GB" 1052527 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-455 1040036 1042366 1044758 "GBINTERN" 1049111 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-454 1037873 1038165 1038586 "GBF" 1039711 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-453 1036654 1036819 1037086 "GBEUCLID" 1037689 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-452 1036003 1036128 1036277 "GAUSSFAC" 1036525 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-451 1034370 1034672 1034986 "GALUTIL" 1035722 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-450 1032678 1032952 1033276 "GALPOLYU" 1034097 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-449 1030043 1030333 1030740 "GALFACTU" 1032375 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-448 1021849 1023348 1024956 "GALFACT" 1028475 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-447 1019237 1019895 1019923 "FVFUN" 1021079 T FVFUN (NIL) -9 NIL 1021799 NIL) (-446 1018503 1018685 1018713 "FVC" 1019004 T FVC (NIL) -9 NIL 1019187 NIL) (-445 1018146 1018328 1018396 "FUNDESC" 1018455 T FUNDESC (NIL) -8 NIL NIL NIL) (-444 1017761 1017943 1018024 "FUNCTION" 1018098 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-443 1015505 1016083 1016549 "FT" 1017315 T FT (NIL) -8 NIL NIL NIL) (-442 1014296 1014806 1015009 "FTEM" 1015322 T FTEM (NIL) -8 NIL NIL NIL) (-441 1012587 1012876 1013273 "FSUPFACT" 1013987 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-440 1010984 1011273 1011605 "FST" 1012275 T FST (NIL) -8 NIL NIL NIL) (-439 1010183 1010289 1010477 "FSRED" 1010866 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-438 1008882 1009138 1009485 "FSPRMELT" 1009898 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-437 1006188 1006626 1007112 "FSPECF" 1008445 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-436 987826 996157 996198 "FS" 1000082 NIL FS (NIL T) -9 NIL 1002371 NIL) (-435 976469 979462 983519 "FS-" 983819 NIL FS- (NIL T T) -8 NIL NIL NIL) (-434 975997 976051 976221 "FSINT" 976410 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-433 974289 974990 975293 "FSERIES" 975776 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-432 973331 973447 973671 "FSCINT" 974169 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-431 969539 972275 972316 "FSAGG" 972686 NIL FSAGG (NIL T) -9 NIL 972945 NIL) (-430 967301 967902 968698 "FSAGG-" 968793 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-429 966343 966486 966713 "FSAGG2" 967154 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-428 964025 964305 964852 "FS2UPS" 966061 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-427 963659 963702 963831 "FS2" 963976 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-426 962537 962708 963010 "FS2EXPXP" 963484 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-425 961963 962078 962230 "FRUTIL" 962417 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-424 953376 957458 958816 "FR" 960637 NIL FR (NIL T) -8 NIL NIL NIL) (-423 948345 951019 951059 "FRNAALG" 952455 NIL FRNAALG (NIL T) -9 NIL 953062 NIL) (-422 944018 945094 946369 "FRNAALG-" 947119 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-421 943656 943699 943826 "FRNAAF2" 943969 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-420 942031 942505 942801 "FRMOD" 943468 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-419 939774 940406 940724 "FRIDEAL" 941822 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-418 938965 939052 939343 "FRIDEAL2" 939681 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-417 938098 938512 938553 "FRETRCT" 938558 NIL FRETRCT (NIL T) -9 NIL 938734 NIL) (-416 937210 937441 937792 "FRETRCT-" 937797 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-415 934298 935508 935567 "FRAMALG" 936449 NIL FRAMALG (NIL T T) -9 NIL 936741 NIL) (-414 932432 932887 933517 "FRAMALG-" 933740 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-413 926351 931905 932182 "FRAC" 932187 NIL FRAC (NIL T) -8 NIL NIL NIL) (-412 925987 926044 926151 "FRAC2" 926288 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-411 925623 925680 925787 "FR2" 925924 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-410 920136 923029 923057 "FPS" 924176 T FPS (NIL) -9 NIL 924733 NIL) (-409 919585 919694 919858 "FPS-" 920004 NIL FPS- (NIL T) -8 NIL NIL NIL) (-408 916887 918556 918584 "FPC" 918809 T FPC (NIL) -9 NIL 918951 NIL) (-407 916680 916720 916817 "FPC-" 916822 NIL FPC- (NIL T) -8 NIL NIL NIL) (-406 915470 916168 916209 "FPATMAB" 916214 NIL FPATMAB (NIL T) -9 NIL 916366 NIL) (-405 913143 913646 914072 "FPARFRAC" 915107 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-404 908537 909035 909717 "FORTRAN" 912575 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-403 906253 906753 907292 "FORT" 908018 T FORT (NIL) -7 NIL NIL NIL) (-402 903929 904491 904519 "FORTFN" 905579 T FORTFN (NIL) -9 NIL 906203 NIL) (-401 903693 903743 903771 "FORTCAT" 903830 T FORTCAT (NIL) -9 NIL 903892 NIL) (-400 901799 902309 902699 "FORMULA" 903323 T FORMULA (NIL) -8 NIL NIL NIL) (-399 901587 901617 901686 "FORMULA1" 901763 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-398 901110 901162 901335 "FORDER" 901529 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-397 900206 900370 900563 "FOP" 900937 T FOP (NIL) -7 NIL NIL NIL) (-396 898787 899486 899660 "FNLA" 900088 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-395 897516 897931 897959 "FNCAT" 898419 T FNCAT (NIL) -9 NIL 898679 NIL) (-394 897055 897475 897503 "FNAME" 897508 T FNAME (NIL) -8 NIL NIL NIL) (-393 895618 896581 896609 "FMTC" 896614 T FMTC (NIL) -9 NIL 896650 NIL) (-392 894364 895554 895600 "FMONOID" 895605 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-391 891192 892360 892401 "FMONCAT" 893618 NIL FMONCAT (NIL T) -9 NIL 894223 NIL) (-390 890384 890934 891083 "FM" 891088 NIL FM (NIL T T) -8 NIL NIL NIL) (-389 887808 888454 888482 "FMFUN" 889626 T FMFUN (NIL) -9 NIL 890334 NIL) (-388 887077 887258 887286 "FMC" 887576 T FMC (NIL) -9 NIL 887758 NIL) (-387 884156 885016 885070 "FMCAT" 886265 NIL FMCAT (NIL T T) -9 NIL 886760 NIL) (-386 883022 883922 884022 "FM1" 884101 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-385 880796 881212 881706 "FLOATRP" 882573 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-384 874374 878525 879146 "FLOAT" 880195 T FLOAT (NIL) -8 NIL NIL NIL) (-383 871812 872312 872890 "FLOATCP" 873841 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-382 870552 871390 871431 "FLINEXP" 871436 NIL FLINEXP (NIL T) -9 NIL 871529 NIL) (-381 869706 869941 870269 "FLINEXP-" 870274 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-380 868782 868926 869150 "FLASORT" 869558 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-379 865898 866766 866818 "FLALG" 868045 NIL FLALG (NIL T T) -9 NIL 868512 NIL) (-378 859634 863384 863425 "FLAGG" 864687 NIL FLAGG (NIL T) -9 NIL 865339 NIL) (-377 858360 858699 859189 "FLAGG-" 859194 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-376 857402 857545 857772 "FLAGG2" 858213 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-375 854253 855261 855320 "FINRALG" 856448 NIL FINRALG (NIL T T) -9 NIL 856956 NIL) (-374 853413 853642 853981 "FINRALG-" 853986 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-373 852793 853032 853060 "FINITE" 853256 T FINITE (NIL) -9 NIL 853363 NIL) (-372 845150 847337 847377 "FINAALG" 851044 NIL FINAALG (NIL T) -9 NIL 852497 NIL) (-371 840482 841532 842676 "FINAALG-" 844055 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-370 839850 840237 840340 "FILE" 840412 NIL FILE (NIL T) -8 NIL NIL NIL) (-369 838508 838846 838900 "FILECAT" 839584 NIL FILECAT (NIL T T) -9 NIL 839800 NIL) (-368 836224 837752 837780 "FIELD" 837820 T FIELD (NIL) -9 NIL 837900 NIL) (-367 834844 835229 835740 "FIELD-" 835745 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-366 832694 833479 833826 "FGROUP" 834530 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-365 831784 831948 832168 "FGLMICPK" 832526 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-364 827616 831709 831766 "FFX" 831771 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-363 827217 827278 827413 "FFSLPE" 827549 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-362 823207 823989 824785 "FFPOLY" 826453 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-361 822711 822747 822956 "FFPOLY2" 823165 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-360 818557 822630 822693 "FFP" 822698 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-359 813955 818468 818532 "FF" 818537 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-358 809081 813298 813488 "FFNBX" 813809 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-357 804009 808216 808474 "FFNBP" 808935 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-356 798642 803293 803504 "FFNB" 803842 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-355 797474 797672 797987 "FFINTBAS" 798439 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-354 793543 795763 795791 "FFIELDC" 796411 T FFIELDC (NIL) -9 NIL 796787 NIL) (-353 792205 792576 793073 "FFIELDC-" 793078 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-352 791774 791820 791944 "FFHOM" 792147 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-351 789469 789956 790473 "FFF" 791289 NIL FFF (NIL T) -7 NIL NIL NIL) (-350 785087 789211 789312 "FFCGX" 789412 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-349 780709 784819 784926 "FFCGP" 785030 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-348 775892 780436 780544 "FFCG" 780645 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-347 757288 766369 766455 "FFCAT" 771620 NIL FFCAT (NIL T T T) -9 NIL 773071 NIL) (-346 752485 753533 754847 "FFCAT-" 756077 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-345 751896 751939 752174 "FFCAT2" 752436 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-344 741219 744868 746088 "FEXPR" 750748 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-343 740219 740654 740695 "FEVALAB" 740779 NIL FEVALAB (NIL T) -9 NIL 741040 NIL) (-342 739378 739588 739926 "FEVALAB-" 739931 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-341 737944 738761 738964 "FDIV" 739277 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-340 734964 735705 735820 "FDIVCAT" 737388 NIL FDIVCAT (NIL T T T T) -9 NIL 737825 NIL) (-339 734726 734753 734923 "FDIVCAT-" 734928 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-338 733946 734033 734310 "FDIV2" 734633 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-337 732920 733241 733443 "FCTRDATA" 733764 T FCTRDATA (NIL) -8 NIL NIL NIL) (-336 731606 731865 732154 "FCPAK1" 732651 T FCPAK1 (NIL) -7 NIL NIL NIL) (-335 730705 731106 731247 "FCOMP" 731497 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-334 714410 717855 721393 "FC" 727187 T FC (NIL) -8 NIL NIL NIL) (-333 706773 710801 710841 "FAXF" 712643 NIL FAXF (NIL T) -9 NIL 713335 NIL) (-332 704050 704707 705532 "FAXF-" 705997 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-331 699102 703426 703602 "FARRAY" 703907 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-330 693996 696063 696116 "FAMR" 697139 NIL FAMR (NIL T T) -9 NIL 697599 NIL) (-329 692886 693188 693623 "FAMR-" 693628 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-328 692055 692808 692861 "FAMONOID" 692866 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-327 689841 690551 690604 "FAMONC" 691545 NIL FAMONC (NIL T T) -9 NIL 691931 NIL) (-326 688505 689595 689732 "FAGROUP" 689737 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-325 686300 686619 687022 "FACUTIL" 688186 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-324 685399 685584 685806 "FACTFUNC" 686110 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-323 677821 684702 684901 "EXPUPXS" 685255 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-322 675304 675844 676430 "EXPRTUBE" 677255 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-321 671575 672167 672897 "EXPRODE" 674643 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-320 657060 670224 670653 "EXPR" 671179 NIL EXPR (NIL T) -8 NIL NIL NIL) (-319 651614 652201 653007 "EXPR2UPS" 656358 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-318 651246 651303 651412 "EXPR2" 651551 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-317 642634 650397 650688 "EXPEXPAN" 651082 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-316 642434 642591 642620 "EXIT" 642625 T EXIT (NIL) -8 NIL NIL NIL) (-315 641914 642158 642249 "EXITAST" 642363 T EXITAST (NIL) -8 NIL NIL NIL) (-314 641541 641603 641716 "EVALCYC" 641846 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-313 641082 641200 641241 "EVALAB" 641411 NIL EVALAB (NIL T) -9 NIL 641515 NIL) (-312 640563 640685 640906 "EVALAB-" 640911 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-311 637931 639233 639261 "EUCDOM" 639816 T EUCDOM (NIL) -9 NIL 640166 NIL) (-310 636336 636778 637368 "EUCDOM-" 637373 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-309 623875 626634 629384 "ESTOOLS" 633606 T ESTOOLS (NIL) -7 NIL NIL NIL) (-308 623507 623564 623673 "ESTOOLS2" 623812 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-307 623258 623300 623380 "ESTOOLS1" 623459 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-306 617295 618903 618931 "ES" 621699 T ES (NIL) -9 NIL 623109 NIL) (-305 612242 613529 615346 "ES-" 615510 NIL ES- (NIL T) -8 NIL NIL NIL) (-304 608616 609377 610157 "ESCONT" 611482 T ESCONT (NIL) -7 NIL NIL NIL) (-303 608361 608393 608475 "ESCONT1" 608578 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-302 608036 608086 608186 "ES2" 608305 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-301 607666 607724 607833 "ES1" 607972 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-300 606882 607011 607187 "ERROR" 607510 T ERROR (NIL) -7 NIL NIL NIL) (-299 600274 606741 606832 "EQTBL" 606837 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-298 592777 595588 597037 "EQ" 598858 NIL -2199 (NIL T) -8 NIL NIL NIL) (-297 592409 592466 592575 "EQ2" 592714 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-296 587700 588747 589840 "EP" 591348 NIL EP (NIL T) -7 NIL NIL NIL) (-295 586300 586591 586897 "ENV" 587414 T ENV (NIL) -8 NIL NIL NIL) (-294 585394 585948 585976 "ENTIRER" 585981 T ENTIRER (NIL) -9 NIL 586027 NIL) (-293 581861 583349 583719 "EMR" 585193 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-292 581005 581190 581244 "ELTAGG" 581624 NIL ELTAGG (NIL T T) -9 NIL 581835 NIL) (-291 580724 580786 580927 "ELTAGG-" 580932 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-290 580513 580542 580596 "ELTAB" 580680 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-289 579639 579785 579984 "ELFUTS" 580364 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-288 579381 579437 579465 "ELEMFUN" 579570 T ELEMFUN (NIL) -9 NIL NIL NIL) (-287 579251 579272 579340 "ELEMFUN-" 579345 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-286 574095 577351 577392 "ELAGG" 578332 NIL ELAGG (NIL T) -9 NIL 578795 NIL) (-285 572380 572814 573477 "ELAGG-" 573482 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-284 571692 571829 571985 "ELABOR" 572244 T ELABOR (NIL) -8 NIL NIL NIL) (-283 570353 570632 570926 "ELABEXPR" 571418 T ELABEXPR (NIL) -8 NIL NIL NIL) (-282 563217 565020 565847 "EFUPXS" 569629 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-281 556667 558468 559278 "EFULS" 562493 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-280 554152 554510 554982 "EFSTRUC" 556299 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-279 543943 545509 547057 "EF" 552667 NIL EF (NIL T T) -7 NIL NIL NIL) (-278 543017 543428 543577 "EAB" 543814 T EAB (NIL) -8 NIL NIL NIL) (-277 542199 542976 543004 "E04UCFA" 543009 T E04UCFA (NIL) -8 NIL NIL NIL) (-276 541381 542158 542186 "E04NAFA" 542191 T E04NAFA (NIL) -8 NIL NIL NIL) (-275 540563 541340 541368 "E04MBFA" 541373 T E04MBFA (NIL) -8 NIL NIL NIL) (-274 539745 540522 540550 "E04JAFA" 540555 T E04JAFA (NIL) -8 NIL NIL NIL) (-273 538929 539704 539732 "E04GCFA" 539737 T E04GCFA (NIL) -8 NIL NIL NIL) (-272 538113 538888 538916 "E04FDFA" 538921 T E04FDFA (NIL) -8 NIL NIL NIL) (-271 537295 538072 538100 "E04DGFA" 538105 T E04DGFA (NIL) -8 NIL NIL NIL) (-270 531468 532820 534184 "E04AGNT" 535951 T E04AGNT (NIL) -7 NIL NIL NIL) (-269 530148 530654 530694 "DVARCAT" 531169 NIL DVARCAT (NIL T) -9 NIL 531368 NIL) (-268 529352 529564 529878 "DVARCAT-" 529883 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-267 522489 529151 529280 "DSMP" 529285 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-266 517270 518434 519502 "DROPT" 521441 T DROPT (NIL) -8 NIL NIL NIL) (-265 516935 516994 517092 "DROPT1" 517205 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-264 512050 513176 514313 "DROPT0" 515818 T DROPT0 (NIL) -7 NIL NIL NIL) (-263 510395 510720 511106 "DRAWPT" 511684 T DRAWPT (NIL) -7 NIL NIL NIL) (-262 504982 505905 506984 "DRAW" 509369 NIL DRAW (NIL T) -7 NIL NIL NIL) (-261 504615 504668 504786 "DRAWHACK" 504923 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-260 503346 503615 503906 "DRAWCX" 504344 T DRAWCX (NIL) -7 NIL NIL NIL) (-259 502861 502930 503081 "DRAWCURV" 503272 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-258 493329 495291 497406 "DRAWCFUN" 500766 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-257 490093 492022 492063 "DQAGG" 492692 NIL DQAGG (NIL T) -9 NIL 492966 NIL) (-256 478217 484686 484769 "DPOLCAT" 486621 NIL DPOLCAT (NIL T T T T) -9 NIL 487166 NIL) (-255 473054 474402 476360 "DPOLCAT-" 476365 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-254 466176 472915 473013 "DPMO" 473018 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-253 459201 465956 466123 "DPMM" 466128 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-252 458679 458893 458991 "DOMTMPLT" 459123 T DOMTMPLT (NIL) -8 NIL NIL NIL) (-251 458112 458481 458561 "DOMCTOR" 458619 T DOMCTOR (NIL) -8 NIL NIL NIL) (-250 457324 457592 457743 "DOMAIN" 457981 T DOMAIN (NIL) -8 NIL NIL NIL) (-249 451312 456959 457111 "DMP" 457225 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-248 450912 450968 451112 "DLP" 451250 NIL DLP (NIL T) -7 NIL NIL NIL) (-247 444734 450239 450429 "DLIST" 450754 NIL DLIST (NIL T) -8 NIL NIL NIL) (-246 441531 443587 443628 "DLAGG" 444178 NIL DLAGG (NIL T) -9 NIL 444408 NIL) (-245 440207 440871 440899 "DIVRING" 440991 T DIVRING (NIL) -9 NIL 441074 NIL) (-244 439444 439634 439934 "DIVRING-" 439939 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-243 437546 437903 438309 "DISPLAY" 439058 T DISPLAY (NIL) -7 NIL NIL NIL) (-242 431434 437460 437523 "DIRPROD" 437528 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-241 430282 430485 430750 "DIRPROD2" 431227 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-240 419057 425063 425116 "DIRPCAT" 425526 NIL DIRPCAT (NIL NIL T) -9 NIL 426366 NIL) (-239 416383 417025 417906 "DIRPCAT-" 418243 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-238 415670 415830 416016 "DIOSP" 416217 T DIOSP (NIL) -7 NIL NIL NIL) (-237 412325 414582 414623 "DIOPS" 415057 NIL DIOPS (NIL T) -9 NIL 415286 NIL) (-236 411874 411988 412179 "DIOPS-" 412184 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-235 410697 411325 411353 "DIFRING" 411540 T DIFRING (NIL) -9 NIL 411650 NIL) (-234 410343 410420 410572 "DIFRING-" 410577 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-233 408079 409351 409392 "DIFEXT" 409755 NIL DIFEXT (NIL T) -9 NIL 410049 NIL) (-232 406364 406792 407458 "DIFEXT-" 407463 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-231 403639 405896 405937 "DIAGG" 405942 NIL DIAGG (NIL T) -9 NIL 405962 NIL) (-230 403023 403180 403432 "DIAGG-" 403437 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-229 398440 401982 402259 "DHMATRIX" 402792 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-228 394052 394961 395971 "DFSFUN" 397450 T DFSFUN (NIL) -7 NIL NIL NIL) (-227 389131 392983 393295 "DFLOAT" 393760 T DFLOAT (NIL) -8 NIL NIL NIL) (-226 387394 387675 388064 "DFINTTLS" 388839 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-225 384423 385415 385815 "DERHAM" 387060 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-224 382224 384198 384287 "DEQUEUE" 384367 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-223 381478 381611 381794 "DEGRED" 382086 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-222 377908 378653 379499 "DEFINTRF" 380706 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-221 375463 375932 376524 "DEFINTEF" 377427 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-220 374813 375083 375198 "DEFAST" 375368 T DEFAST (NIL) -8 NIL NIL NIL) (-219 368815 374406 374556 "DECIMAL" 374683 T DECIMAL (NIL) -8 NIL NIL NIL) (-218 366327 366785 367291 "DDFACT" 368359 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-217 365923 365966 366117 "DBLRESP" 366278 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-216 363795 364156 364516 "DBASE" 365690 NIL DBASE (NIL T) -8 NIL NIL NIL) (-215 363037 363275 363421 "DATAARY" 363694 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-214 362143 362996 363024 "D03FAFA" 363029 T D03FAFA (NIL) -8 NIL NIL NIL) (-213 361250 362102 362130 "D03EEFA" 362135 T D03EEFA (NIL) -8 NIL NIL NIL) (-212 359200 359666 360155 "D03AGNT" 360781 T D03AGNT (NIL) -7 NIL NIL NIL) (-211 358489 359159 359187 "D02EJFA" 359192 T D02EJFA (NIL) -8 NIL NIL NIL) (-210 357778 358448 358476 "D02CJFA" 358481 T D02CJFA (NIL) -8 NIL NIL NIL) (-209 357067 357737 357765 "D02BHFA" 357770 T D02BHFA (NIL) -8 NIL NIL NIL) (-208 356356 357026 357054 "D02BBFA" 357059 T D02BBFA (NIL) -8 NIL NIL NIL) (-207 349553 351142 352748 "D02AGNT" 354770 T D02AGNT (NIL) -7 NIL NIL NIL) (-206 347321 347844 348390 "D01WGTS" 349027 T D01WGTS (NIL) -7 NIL NIL NIL) (-205 346388 347280 347308 "D01TRNS" 347313 T D01TRNS (NIL) -8 NIL NIL NIL) (-204 345456 346347 346375 "D01GBFA" 346380 T D01GBFA (NIL) -8 NIL NIL NIL) (-203 344524 345415 345443 "D01FCFA" 345448 T D01FCFA (NIL) -8 NIL NIL NIL) (-202 343592 344483 344511 "D01ASFA" 344516 T D01ASFA (NIL) -8 NIL NIL NIL) (-201 342660 343551 343579 "D01AQFA" 343584 T D01AQFA (NIL) -8 NIL NIL NIL) (-200 341728 342619 342647 "D01APFA" 342652 T D01APFA (NIL) -8 NIL NIL NIL) (-199 340796 341687 341715 "D01ANFA" 341720 T D01ANFA (NIL) -8 NIL NIL NIL) (-198 339864 340755 340783 "D01AMFA" 340788 T D01AMFA (NIL) -8 NIL NIL NIL) (-197 338932 339823 339851 "D01ALFA" 339856 T D01ALFA (NIL) -8 NIL NIL NIL) (-196 338000 338891 338919 "D01AKFA" 338924 T D01AKFA (NIL) -8 NIL NIL NIL) (-195 337068 337959 337987 "D01AJFA" 337992 T D01AJFA (NIL) -8 NIL NIL NIL) (-194 330363 331916 333477 "D01AGNT" 335527 T D01AGNT (NIL) -7 NIL NIL NIL) (-193 329700 329828 329980 "CYCLOTOM" 330231 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-192 326434 327148 327875 "CYCLES" 328993 T CYCLES (NIL) -7 NIL NIL NIL) (-191 325746 325880 326051 "CVMP" 326295 NIL CVMP (NIL T) -7 NIL NIL NIL) (-190 323587 323845 324214 "CTRIGMNP" 325474 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-189 323023 323381 323454 "CTOR" 323534 T CTOR (NIL) -8 NIL NIL NIL) (-188 322532 322754 322855 "CTORKIND" 322942 T CTORKIND (NIL) -8 NIL NIL NIL) (-187 321823 322139 322167 "CTORCAT" 322349 T CTORCAT (NIL) -9 NIL 322462 NIL) (-186 321421 321532 321691 "CTORCAT-" 321696 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-185 320883 321095 321203 "CTORCALL" 321345 NIL CTORCALL (NIL T) -8 NIL NIL NIL) (-184 320257 320356 320509 "CSTTOOLS" 320780 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-183 316056 316713 317471 "CRFP" 319569 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-182 315531 315777 315869 "CRCEAST" 315984 T CRCEAST (NIL) -8 NIL NIL NIL) (-181 314578 314763 314991 "CRAPACK" 315335 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-180 313962 314063 314267 "CPMATCH" 314454 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-179 313687 313715 313821 "CPIMA" 313928 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-178 310035 310707 311426 "COORDSYS" 313022 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-177 309447 309568 309710 "CONTOUR" 309913 T CONTOUR (NIL) -8 NIL NIL NIL) (-176 305338 307450 307942 "CONTFRAC" 308987 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-175 305218 305239 305267 "CONDUIT" 305304 T CONDUIT (NIL) -9 NIL NIL NIL) (-174 304306 304860 304888 "COMRING" 304893 T COMRING (NIL) -9 NIL 304945 NIL) (-173 303360 303664 303848 "COMPPROP" 304142 T COMPPROP (NIL) -8 NIL NIL NIL) (-172 303021 303056 303184 "COMPLPAT" 303319 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-171 293312 302830 302939 "COMPLEX" 302944 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-170 292948 293005 293112 "COMPLEX2" 293249 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-169 292287 292408 292568 "COMPILER" 292808 T COMPILER (NIL) -8 NIL NIL NIL) (-168 292005 292040 292138 "COMPFACT" 292246 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-167 276085 286079 286119 "COMPCAT" 287123 NIL COMPCAT (NIL T) -9 NIL 288471 NIL) (-166 265597 268524 272151 "COMPCAT-" 272507 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-165 265326 265354 265457 "COMMUPC" 265563 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-164 265120 265154 265213 "COMMONOP" 265287 T COMMONOP (NIL) -7 NIL NIL NIL) (-163 264676 264871 264958 "COMM" 265053 T COMM (NIL) -8 NIL NIL NIL) (-162 264252 264480 264555 "COMMAAST" 264621 T COMMAAST (NIL) -8 NIL NIL NIL) (-161 263501 263695 263723 "COMBOPC" 264061 T COMBOPC (NIL) -9 NIL 264236 NIL) (-160 262397 262607 262849 "COMBINAT" 263291 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-159 258854 259428 260055 "COMBF" 261819 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-158 257612 257970 258205 "COLOR" 258639 T COLOR (NIL) -8 NIL NIL NIL) (-157 257088 257333 257425 "COLONAST" 257540 T COLONAST (NIL) -8 NIL NIL NIL) (-156 256728 256775 256900 "CMPLXRT" 257035 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-155 256176 256428 256527 "CLLCTAST" 256649 T CLLCTAST (NIL) -8 NIL NIL NIL) (-154 251678 252706 253786 "CLIP" 255116 T CLIP (NIL) -7 NIL NIL NIL) (-153 250019 250779 251019 "CLIF" 251505 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-152 246194 248165 248206 "CLAGG" 249135 NIL CLAGG (NIL T) -9 NIL 249671 NIL) (-151 244616 245073 245656 "CLAGG-" 245661 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-150 244160 244245 244385 "CINTSLPE" 244525 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-149 241661 242132 242680 "CHVAR" 243688 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-148 240835 241389 241417 "CHARZ" 241422 T CHARZ (NIL) -9 NIL 241437 NIL) (-147 240589 240629 240707 "CHARPOL" 240789 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-146 239647 240234 240262 "CHARNZ" 240309 T CHARNZ (NIL) -9 NIL 240365 NIL) (-145 237553 238301 238654 "CHAR" 239314 T CHAR (NIL) -8 NIL NIL NIL) (-144 237279 237340 237368 "CFCAT" 237479 T CFCAT (NIL) -9 NIL NIL NIL) (-143 236520 236631 236814 "CDEN" 237163 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-142 232485 235673 235953 "CCLASS" 236260 T CCLASS (NIL) -8 NIL NIL NIL) (-141 231736 231893 232070 "CATEGORY" 232328 T -10 (NIL) -8 NIL NIL NIL) (-140 231309 231655 231703 "CATCTOR" 231708 T CATCTOR (NIL) -8 NIL NIL NIL) (-139 230760 231012 231110 "CATAST" 231231 T CATAST (NIL) -8 NIL NIL NIL) (-138 230236 230481 230573 "CASEAST" 230688 T CASEAST (NIL) -8 NIL NIL NIL) (-137 225246 226265 227018 "CARTEN" 229539 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-136 224354 224502 224723 "CARTEN2" 225093 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-135 222670 223504 223761 "CARD" 224117 T CARD (NIL) -8 NIL NIL NIL) (-134 222246 222474 222549 "CAPSLAST" 222615 T CAPSLAST (NIL) -8 NIL NIL NIL) (-133 221750 221958 221986 "CACHSET" 222118 T CACHSET (NIL) -9 NIL 222196 NIL) (-132 221220 221542 221570 "CABMON" 221620 T CABMON (NIL) -9 NIL 221676 NIL) (-131 220693 220924 221034 "BYTEORD" 221130 T BYTEORD (NIL) -8 NIL NIL NIL) (-130 219675 220227 220369 "BYTE" 220532 T BYTE (NIL) -8 NIL NIL 220654) (-129 215025 219180 219352 "BYTEBUF" 219523 T BYTEBUF (NIL) -8 NIL NIL NIL) (-128 212534 214717 214824 "BTREE" 214951 NIL BTREE (NIL T) -8 NIL NIL NIL) (-127 209983 212182 212304 "BTOURN" 212444 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-126 207353 209453 209494 "BTCAT" 209562 NIL BTCAT (NIL T) -9 NIL 209639 NIL) (-125 207020 207100 207249 "BTCAT-" 207254 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-124 202430 206309 206337 "BTAGG" 206451 T BTAGG (NIL) -9 NIL 206561 NIL) (-123 201920 202045 202251 "BTAGG-" 202256 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-122 198915 201198 201413 "BSTREE" 201737 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-121 198053 198179 198363 "BRILL" 198771 NIL BRILL (NIL T) -7 NIL NIL NIL) (-120 194705 196779 196820 "BRAGG" 197469 NIL BRAGG (NIL T) -9 NIL 197727 NIL) (-119 193234 193640 194195 "BRAGG-" 194200 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-118 186461 192578 192763 "BPADICRT" 193081 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-117 184776 186398 186443 "BPADIC" 186448 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-116 184474 184504 184618 "BOUNDZRO" 184740 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-115 179702 180900 181812 "BOP" 183582 T BOP (NIL) -8 NIL NIL NIL) (-114 177483 177887 178362 "BOP1" 179260 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-113 177184 177245 177273 "BOOLE" 177384 T BOOLE (NIL) -9 NIL 177466 NIL) (-112 176009 176758 176907 "BOOLEAN" 177055 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 175288 175692 175746 "BMODULE" 175751 NIL BMODULE (NIL T T) -9 NIL 175816 NIL) (-110 171089 175086 175159 "BITS" 175235 T BITS (NIL) -8 NIL NIL NIL) (-109 170510 170629 170769 "BINDING" 170969 T BINDING (NIL) -8 NIL NIL NIL) (-108 164515 170105 170254 "BINARY" 170381 T BINARY (NIL) -8 NIL NIL NIL) (-107 162295 163770 163811 "BGAGG" 164071 NIL BGAGG (NIL T) -9 NIL 164208 NIL) (-106 162126 162158 162249 "BGAGG-" 162254 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 161197 161510 161715 "BFUNCT" 161941 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159887 160065 160353 "BEZOUT" 161021 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 156356 158739 159069 "BBTREE" 159590 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 156090 156143 156171 "BASTYPE" 156290 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155942 155971 156044 "BASTYPE-" 156049 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 155376 155452 155604 "BALFACT" 155853 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 154232 154791 154977 "AUTOMOR" 155221 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153958 153963 153989 "ATTREG" 153994 T ATTREG (NIL) -9 NIL NIL NIL) (-97 152210 152655 153007 "ATTRBUT" 153624 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151818 152038 152104 "ATTRAST" 152162 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 151354 151467 151493 "ATRIG" 151694 T ATRIG (NIL) -9 NIL NIL NIL) (-94 151163 151204 151291 "ATRIG-" 151296 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150808 150994 151020 "ASTCAT" 151025 T ASTCAT (NIL) -9 NIL 151055 NIL) (-92 150535 150594 150713 "ASTCAT-" 150718 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148684 150311 150399 "ASTACK" 150478 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 147189 147486 147851 "ASSOCEQ" 148366 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 146221 146848 146972 "ASP9" 147096 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145984 146169 146208 "ASP8" 146213 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144852 145589 145731 "ASP80" 145873 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143750 144487 144619 "ASP7" 144751 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142704 143427 143545 "ASP78" 143663 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141673 142384 142501 "ASP77" 142618 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 140585 141311 141442 "ASP74" 141573 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 139485 140220 140352 "ASP73" 140484 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138589 139311 139411 "ASP6" 139416 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 137536 138266 138384 "ASP55" 138502 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 136485 137210 137329 "ASP50" 137448 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 135573 136186 136296 "ASP4" 136406 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134661 135274 135384 "ASP49" 135494 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 133445 134200 134368 "ASP42" 134550 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 132222 132978 133148 "ASP41" 133332 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 131172 131899 132017 "ASP35" 132135 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130937 131120 131159 "ASP34" 131164 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130674 130741 130817 "ASP33" 130892 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 129568 130309 130441 "ASP31" 130573 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 129333 129516 129555 "ASP30" 129560 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 129068 129137 129213 "ASP29" 129288 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128833 129016 129055 "ASP28" 129060 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128598 128781 128820 "ASP27" 128825 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127682 128296 128407 "ASP24" 128518 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126759 127484 127596 "ASP20" 127601 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125847 126460 126570 "ASP1" 126680 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124790 125521 125640 "ASP19" 125759 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 124527 124594 124670 "ASP12" 124745 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 123379 124126 124270 "ASP10" 124414 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 121230 123223 123314 "ARRAY2" 123319 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 116995 120878 120992 "ARRAY1" 121147 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 116027 116200 116421 "ARRAY12" 116818 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 110339 112257 112332 "ARR2CAT" 114962 NIL ARR2CAT (NIL T T T) -9 NIL 115720 NIL) (-56 107773 108517 109471 "ARR2CAT-" 109476 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 107090 107400 107525 "ARITY" 107666 T ARITY (NIL) -8 NIL NIL NIL) (-54 105866 106018 106317 "APPRULE" 106926 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105517 105565 105684 "APPLYORE" 105812 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104871 105110 105230 "ANY" 105415 T ANY (NIL) -8 NIL NIL NIL) (-51 104149 104272 104429 "ANY1" 104745 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101679 102586 102913 "ANTISYM" 103873 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 101171 101386 101482 "ANON" 101601 T ANON (NIL) -8 NIL NIL NIL) (-48 95420 99710 100164 "AN" 100735 T AN (NIL) -8 NIL NIL NIL) (-47 91318 92706 92757 "AMR" 93505 NIL AMR (NIL T T) -9 NIL 94105 NIL) (-46 90430 90651 91014 "AMR-" 91019 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74869 90347 90408 "ALIST" 90413 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71674 74463 74632 "ALGSC" 74787 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68230 68784 69391 "ALGPKG" 71114 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67507 67608 67792 "ALGMFACT" 68116 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63542 64121 64715 "ALGMANIP" 67091 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54912 63168 63318 "ALGFF" 63475 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 54108 54239 54418 "ALGFACT" 54770 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 53049 53649 53687 "ALGEBRA" 53692 NIL ALGEBRA (NIL T) -9 NIL 53733 NIL) (-37 52767 52826 52958 "ALGEBRA-" 52963 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34860 50769 50821 "ALAGG" 50957 NIL ALAGG (NIL T T) -9 NIL 51118 NIL) (-35 34396 34509 34535 "AHYP" 34736 T AHYP (NIL) -9 NIL NIL NIL) (-34 33327 33575 33601 "AGG" 34100 T AGG (NIL) -9 NIL 34379 NIL) (-33 32761 32923 33137 "AGG-" 33142 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30567 30990 31395 "AF" 32403 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 30047 30292 30382 "ADDAST" 30495 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29315 29574 29730 "ACPLOT" 29909 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18638 26442 26480 "ACFS" 27087 NIL ACFS (NIL T) -9 NIL 27326 NIL) (-28 16665 17155 17917 "ACFS-" 17922 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12783 14712 14738 "ACF" 15617 T ACF (NIL) -9 NIL 16030 NIL) (-26 11487 11821 12314 "ACF-" 12319 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 11059 11254 11280 "ABELSG" 11372 T ABELSG (NIL) -9 NIL 11437 NIL) (-24 10926 10951 11017 "ABELSG-" 11022 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10269 10556 10582 "ABELMON" 10752 T ABELMON (NIL) -9 NIL 10864 NIL) (-22 9933 10017 10155 "ABELMON-" 10160 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9281 9653 9679 "ABELGRP" 9751 T ABELGRP (NIL) -9 NIL 9826 NIL) (-20 8744 8873 9089 "ABELGRP-" 9094 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4333 8083 8122 "A1AGG" 8127 NIL A1AGG (NIL T) -9 NIL 8167 NIL) (-18 30 1251 2813 "A1AGG-" 2818 NIL A1AGG- (NIL T T) -8 NIL NIL NIL)) \ No newline at end of file
+((-3 3229124 3229129 3229134 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-2 3229109 3229114 3229119 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1 3229094 3229099 3229104 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (0 3229079 3229084 3229089 NIL NIL NIL NIL (NIL) -8 NIL NIL NIL) (-1306 3228222 3228954 3229031 "ZMOD" 3229036 NIL ZMOD (NIL NIL) -8 NIL NIL NIL) (-1305 3227332 3227496 3227705 "ZLINDEP" 3228054 NIL ZLINDEP (NIL T) -7 NIL NIL NIL) (-1304 3216632 3218400 3220372 "ZDSOLVE" 3225462 NIL ZDSOLVE (NIL T NIL NIL) -7 NIL NIL NIL) (-1303 3215878 3216019 3216208 "YSTREAM" 3216478 NIL YSTREAM (NIL T) -7 NIL NIL NIL) (-1302 3215306 3215552 3215665 "YDIAGRAM" 3215787 T YDIAGRAM (NIL) -8 NIL NIL NIL) (-1301 3213080 3214607 3214811 "XRPOLY" 3215149 NIL XRPOLY (NIL T T) -8 NIL NIL NIL) (-1300 3209633 3210951 3211526 "XPR" 3212552 NIL XPR (NIL T T) -8 NIL NIL NIL) (-1299 3207354 3208964 3209168 "XPOLY" 3209464 NIL XPOLY (NIL T) -8 NIL NIL NIL) (-1298 3205007 3206375 3206430 "XPOLYC" 3206718 NIL XPOLYC (NIL T T) -9 NIL 3206831 NIL) (-1297 3201383 3203524 3203912 "XPBWPOLY" 3204665 NIL XPBWPOLY (NIL T T) -8 NIL NIL NIL) (-1296 3197078 3199373 3199415 "XF" 3200036 NIL XF (NIL T) -9 NIL 3200436 NIL) (-1295 3196699 3196787 3196956 "XF-" 3196961 NIL XF- (NIL T T) -8 NIL NIL NIL) (-1294 3191895 3193184 3193239 "XFALG" 3195411 NIL XFALG (NIL T T) -9 NIL 3196200 NIL) (-1293 3191028 3191132 3191337 "XEXPPKG" 3191787 NIL XEXPPKG (NIL T T T) -7 NIL NIL NIL) (-1292 3189137 3190878 3190974 "XDPOLY" 3190979 NIL XDPOLY (NIL T T) -8 NIL NIL NIL) (-1291 3187944 3188544 3188587 "XALG" 3188592 NIL XALG (NIL T) -9 NIL 3188703 NIL) (-1290 3181386 3185921 3186415 "WUTSET" 3187536 NIL WUTSET (NIL T T T T) -8 NIL NIL NIL) (-1289 3179642 3180438 3180761 "WP" 3181197 NIL WP (NIL T T T T NIL NIL NIL) -8 NIL NIL NIL) (-1288 3179244 3179464 3179534 "WHILEAST" 3179594 T WHILEAST (NIL) -8 NIL NIL NIL) (-1287 3178716 3178961 3179055 "WHEREAST" 3179172 T WHEREAST (NIL) -8 NIL NIL NIL) (-1286 3177602 3177800 3178095 "WFFINTBS" 3178513 NIL WFFINTBS (NIL T T T T) -7 NIL NIL NIL) (-1285 3175506 3175933 3176395 "WEIER" 3177174 NIL WEIER (NIL T) -7 NIL NIL NIL) (-1284 3174552 3175002 3175044 "VSPACE" 3175180 NIL VSPACE (NIL T) -9 NIL 3175254 NIL) (-1283 3174390 3174417 3174508 "VSPACE-" 3174513 NIL VSPACE- (NIL T T) -8 NIL NIL NIL) (-1282 3174199 3174241 3174309 "VOID" 3174344 T VOID (NIL) -8 NIL NIL NIL) (-1281 3172335 3172694 3173100 "VIEW" 3173815 T VIEW (NIL) -7 NIL NIL NIL) (-1280 3168759 3169398 3170135 "VIEWDEF" 3171620 T VIEWDEF (NIL) -7 NIL NIL NIL) (-1279 3158063 3160307 3162480 "VIEW3D" 3166608 T VIEW3D (NIL) -8 NIL NIL NIL) (-1278 3150314 3151974 3153553 "VIEW2D" 3156506 T VIEW2D (NIL) -8 NIL NIL NIL) (-1277 3145667 3150084 3150176 "VECTOR" 3150257 NIL VECTOR (NIL T) -8 NIL NIL NIL) (-1276 3144244 3144503 3144821 "VECTOR2" 3145397 NIL VECTOR2 (NIL T T) -7 NIL NIL NIL) (-1275 3137718 3142025 3142068 "VECTCAT" 3143063 NIL VECTCAT (NIL T) -9 NIL 3143650 NIL) (-1274 3136732 3136986 3137376 "VECTCAT-" 3137381 NIL VECTCAT- (NIL T T) -8 NIL NIL NIL) (-1273 3136186 3136383 3136503 "VARIABLE" 3136647 NIL VARIABLE (NIL NIL) -8 NIL NIL NIL) (-1272 3136119 3136124 3136154 "UTYPE" 3136159 T UTYPE (NIL) -9 NIL NIL NIL) (-1271 3134949 3135103 3135365 "UTSODETL" 3135945 NIL UTSODETL (NIL T T T T) -7 NIL NIL NIL) (-1270 3132389 3132849 3133373 "UTSODE" 3134490 NIL UTSODE (NIL T T) -7 NIL NIL NIL) (-1269 3124227 3130015 3130504 "UTS" 3131958 NIL UTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1268 3115101 3120468 3120511 "UTSCAT" 3121623 NIL UTSCAT (NIL T) -9 NIL 3122381 NIL) (-1267 3112449 3113171 3114160 "UTSCAT-" 3114165 NIL UTSCAT- (NIL T T) -8 NIL NIL NIL) (-1266 3112076 3112119 3112252 "UTS2" 3112400 NIL UTS2 (NIL T T T T) -7 NIL NIL NIL) (-1265 3106302 3108914 3108957 "URAGG" 3111027 NIL URAGG (NIL T) -9 NIL 3111750 NIL) (-1264 3103241 3104104 3105227 "URAGG-" 3105232 NIL URAGG- (NIL T T) -8 NIL NIL NIL) (-1263 3098950 3101876 3102341 "UPXSSING" 3102905 NIL UPXSSING (NIL T T NIL NIL) -8 NIL NIL NIL) (-1262 3091016 3098197 3098470 "UPXS" 3098735 NIL UPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1261 3084089 3090920 3090992 "UPXSCONS" 3090997 NIL UPXSCONS (NIL T T) -8 NIL NIL NIL) (-1260 3073834 3080627 3080689 "UPXSCCA" 3081263 NIL UPXSCCA (NIL T T) -9 NIL 3081496 NIL) (-1259 3073472 3073557 3073731 "UPXSCCA-" 3073736 NIL UPXSCCA- (NIL T T T) -8 NIL NIL NIL) (-1258 3063069 3069635 3069678 "UPXSCAT" 3070326 NIL UPXSCAT (NIL T) -9 NIL 3070935 NIL) (-1257 3062499 3062578 3062757 "UPXS2" 3062984 NIL UPXS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1256 3061153 3061406 3061757 "UPSQFREE" 3062242 NIL UPSQFREE (NIL T T) -7 NIL NIL NIL) (-1255 3054574 3057631 3057686 "UPSCAT" 3058847 NIL UPSCAT (NIL T T) -9 NIL 3059621 NIL) (-1254 3053778 3053985 3054312 "UPSCAT-" 3054317 NIL UPSCAT- (NIL T T T) -8 NIL NIL NIL) (-1253 3039433 3047201 3047244 "UPOLYC" 3049345 NIL UPOLYC (NIL T) -9 NIL 3050566 NIL) (-1252 3030761 3033187 3036334 "UPOLYC-" 3036339 NIL UPOLYC- (NIL T T) -8 NIL NIL NIL) (-1251 3030388 3030431 3030564 "UPOLYC2" 3030712 NIL UPOLYC2 (NIL T T T T) -7 NIL NIL NIL) (-1250 3022199 3030071 3030200 "UP" 3030307 NIL UP (NIL NIL T) -8 NIL NIL NIL) (-1249 3021538 3021645 3021809 "UPMP" 3022088 NIL UPMP (NIL T T) -7 NIL NIL NIL) (-1248 3021091 3021172 3021311 "UPDIVP" 3021451 NIL UPDIVP (NIL T T) -7 NIL NIL NIL) (-1247 3019659 3019908 3020224 "UPDECOMP" 3020840 NIL UPDECOMP (NIL T T) -7 NIL NIL NIL) (-1246 3018890 3019002 3019188 "UPCDEN" 3019543 NIL UPCDEN (NIL T T T) -7 NIL NIL NIL) (-1245 3018409 3018478 3018627 "UP2" 3018815 NIL UP2 (NIL NIL T NIL T) -7 NIL NIL NIL) (-1244 3016876 3017613 3017890 "UNISEG" 3018167 NIL UNISEG (NIL T) -8 NIL NIL NIL) (-1243 3016091 3016218 3016423 "UNISEG2" 3016719 NIL UNISEG2 (NIL T T) -7 NIL NIL NIL) (-1242 3015151 3015331 3015557 "UNIFACT" 3015907 NIL UNIFACT (NIL T) -7 NIL NIL NIL) (-1241 2999083 3014328 3014579 "ULS" 3014958 NIL ULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1240 2987081 2998987 2999059 "ULSCONS" 2999064 NIL ULSCONS (NIL T T) -8 NIL NIL NIL) (-1239 2969098 2981083 2981145 "ULSCCAT" 2981783 NIL ULSCCAT (NIL T T) -9 NIL 2982072 NIL) (-1238 2968148 2968393 2968781 "ULSCCAT-" 2968786 NIL ULSCCAT- (NIL T T T) -8 NIL NIL NIL) (-1237 2957522 2964002 2964045 "ULSCAT" 2964908 NIL ULSCAT (NIL T) -9 NIL 2965639 NIL) (-1236 2956952 2957031 2957210 "ULS2" 2957437 NIL ULS2 (NIL T T NIL NIL NIL NIL) -7 NIL NIL NIL) (-1235 2956079 2956589 2956696 "UINT8" 2956807 T UINT8 (NIL) -8 NIL NIL 2956892) (-1234 2955205 2955715 2955822 "UINT64" 2955933 T UINT64 (NIL) -8 NIL NIL 2956018) (-1233 2954331 2954841 2954948 "UINT32" 2955059 T UINT32 (NIL) -8 NIL NIL 2955144) (-1232 2953457 2953967 2954074 "UINT16" 2954185 T UINT16 (NIL) -8 NIL NIL 2954270) (-1231 2951760 2952717 2952747 "UFD" 2952959 T UFD (NIL) -9 NIL 2953073 NIL) (-1230 2951554 2951600 2951695 "UFD-" 2951700 NIL UFD- (NIL T) -8 NIL NIL NIL) (-1229 2950636 2950819 2951035 "UDVO" 2951360 T UDVO (NIL) -7 NIL NIL NIL) (-1228 2948452 2948861 2949332 "UDPO" 2950200 NIL UDPO (NIL T) -7 NIL NIL NIL) (-1227 2948385 2948390 2948420 "TYPE" 2948425 T TYPE (NIL) -9 NIL NIL NIL) (-1226 2948145 2948340 2948371 "TYPEAST" 2948376 T TYPEAST (NIL) -8 NIL NIL NIL) (-1225 2947116 2947318 2947558 "TWOFACT" 2947939 NIL TWOFACT (NIL T) -7 NIL NIL NIL) (-1224 2946139 2946525 2946760 "TUPLE" 2946916 NIL TUPLE (NIL T) -8 NIL NIL NIL) (-1223 2943830 2944349 2944888 "TUBETOOL" 2945622 T TUBETOOL (NIL) -7 NIL NIL NIL) (-1222 2942679 2942884 2943125 "TUBE" 2943623 NIL TUBE (NIL T) -8 NIL NIL NIL) (-1221 2937408 2941651 2941934 "TS" 2942431 NIL TS (NIL T) -8 NIL NIL NIL) (-1220 2926048 2930167 2930264 "TSETCAT" 2935533 NIL TSETCAT (NIL T T T T) -9 NIL 2937064 NIL) (-1219 2920780 2922380 2924271 "TSETCAT-" 2924276 NIL TSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1218 2915419 2916266 2917195 "TRMANIP" 2919916 NIL TRMANIP (NIL T T) -7 NIL NIL NIL) (-1217 2914860 2914923 2915086 "TRIMAT" 2915351 NIL TRIMAT (NIL T T T T) -7 NIL NIL NIL) (-1216 2912726 2912963 2913320 "TRIGMNIP" 2914609 NIL TRIGMNIP (NIL T T) -7 NIL NIL NIL) (-1215 2912246 2912359 2912389 "TRIGCAT" 2912602 T TRIGCAT (NIL) -9 NIL NIL NIL) (-1214 2911915 2911994 2912135 "TRIGCAT-" 2912140 NIL TRIGCAT- (NIL T) -8 NIL NIL NIL) (-1213 2908760 2910773 2911054 "TREE" 2911669 NIL TREE (NIL T) -8 NIL NIL NIL) (-1212 2908034 2908562 2908592 "TRANFUN" 2908627 T TRANFUN (NIL) -9 NIL 2908693 NIL) (-1211 2907313 2907504 2907784 "TRANFUN-" 2907789 NIL TRANFUN- (NIL T) -8 NIL NIL NIL) (-1210 2907117 2907149 2907210 "TOPSP" 2907274 T TOPSP (NIL) -7 NIL NIL NIL) (-1209 2906465 2906580 2906734 "TOOLSIGN" 2906998 NIL TOOLSIGN (NIL T) -7 NIL NIL NIL) (-1208 2905099 2905642 2905881 "TEXTFILE" 2906248 T TEXTFILE (NIL) -8 NIL NIL NIL) (-1207 2903011 2903552 2903981 "TEX" 2904692 T TEX (NIL) -8 NIL NIL NIL) (-1206 2902792 2902823 2902895 "TEX1" 2902974 NIL TEX1 (NIL T) -7 NIL NIL NIL) (-1205 2902440 2902503 2902593 "TEMUTL" 2902724 T TEMUTL (NIL) -7 NIL NIL NIL) (-1204 2900594 2900874 2901199 "TBCMPPK" 2902163 NIL TBCMPPK (NIL T T) -7 NIL NIL NIL) (-1203 2892371 2898754 2898810 "TBAGG" 2899210 NIL TBAGG (NIL T T) -9 NIL 2899421 NIL) (-1202 2887441 2888929 2890683 "TBAGG-" 2890688 NIL TBAGG- (NIL T T T) -8 NIL NIL NIL) (-1201 2886825 2886932 2887077 "TANEXP" 2887330 NIL TANEXP (NIL T) -7 NIL NIL NIL) (-1200 2886336 2886600 2886690 "TALGOP" 2886770 NIL TALGOP (NIL T) -8 NIL NIL NIL) (-1199 2879726 2886193 2886286 "TABLE" 2886291 NIL TABLE (NIL T T) -8 NIL NIL NIL) (-1198 2879138 2879237 2879375 "TABLEAU" 2879623 NIL TABLEAU (NIL T) -8 NIL NIL NIL) (-1197 2873746 2874966 2876214 "TABLBUMP" 2877924 NIL TABLBUMP (NIL T) -7 NIL NIL NIL) (-1196 2872968 2873115 2873296 "SYSTEM" 2873587 T SYSTEM (NIL) -8 NIL NIL NIL) (-1195 2869427 2870126 2870909 "SYSSOLP" 2872219 NIL SYSSOLP (NIL T) -7 NIL NIL NIL) (-1194 2869225 2869382 2869413 "SYSPTR" 2869418 T SYSPTR (NIL) -8 NIL NIL NIL) (-1193 2868269 2868774 2868893 "SYSNNI" 2869079 NIL SYSNNI (NIL NIL) -8 NIL NIL 2869164) (-1192 2867576 2868035 2868114 "SYSINT" 2868174 NIL SYSINT (NIL NIL) -8 NIL NIL 2868219) (-1191 2863908 2864854 2865564 "SYNTAX" 2866888 T SYNTAX (NIL) -8 NIL NIL NIL) (-1190 2861066 2861668 2862300 "SYMTAB" 2863298 T SYMTAB (NIL) -8 NIL NIL NIL) (-1189 2856315 2857217 2858200 "SYMS" 2860105 T SYMS (NIL) -8 NIL NIL NIL) (-1188 2853550 2855773 2856003 "SYMPOLY" 2856120 NIL SYMPOLY (NIL T) -8 NIL NIL NIL) (-1187 2853067 2853142 2853265 "SYMFUNC" 2853462 NIL SYMFUNC (NIL T) -7 NIL NIL NIL) (-1186 2849087 2850379 2851192 "SYMBOL" 2852276 T SYMBOL (NIL) -8 NIL NIL NIL) (-1185 2842626 2844315 2846035 "SWITCH" 2847389 T SWITCH (NIL) -8 NIL NIL NIL) (-1184 2835860 2841447 2841750 "SUTS" 2842381 NIL SUTS (NIL T NIL NIL) -8 NIL NIL NIL) (-1183 2827926 2835107 2835380 "SUPXS" 2835645 NIL SUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-1182 2819685 2827544 2827670 "SUP" 2827835 NIL SUP (NIL T) -8 NIL NIL NIL) (-1181 2818844 2818971 2819188 "SUPFRACF" 2819553 NIL SUPFRACF (NIL T T T T) -7 NIL NIL NIL) (-1180 2818465 2818524 2818637 "SUP2" 2818779 NIL SUP2 (NIL T T) -7 NIL NIL NIL) (-1179 2816913 2817187 2817543 "SUMRF" 2818164 NIL SUMRF (NIL T) -7 NIL NIL NIL) (-1178 2816248 2816314 2816506 "SUMFS" 2816834 NIL SUMFS (NIL T T) -7 NIL NIL NIL) (-1177 2800215 2815425 2815676 "SULS" 2816055 NIL SULS (NIL T NIL NIL) -8 NIL NIL NIL) (-1176 2799817 2800037 2800107 "SUCHTAST" 2800167 T SUCHTAST (NIL) -8 NIL NIL NIL) (-1175 2799112 2799342 2799482 "SUCH" 2799725 NIL SUCH (NIL T T) -8 NIL NIL NIL) (-1174 2792979 2794018 2794977 "SUBSPACE" 2798200 NIL SUBSPACE (NIL NIL T) -8 NIL NIL NIL) (-1173 2792409 2792499 2792663 "SUBRESP" 2792867 NIL SUBRESP (NIL T T) -7 NIL NIL NIL) (-1172 2785777 2787074 2788385 "STTF" 2791145 NIL STTF (NIL T) -7 NIL NIL NIL) (-1171 2779950 2781070 2782217 "STTFNC" 2784677 NIL STTFNC (NIL T) -7 NIL NIL NIL) (-1170 2771263 2773132 2774926 "STTAYLOR" 2778191 NIL STTAYLOR (NIL T) -7 NIL NIL NIL) (-1169 2764393 2771127 2771210 "STRTBL" 2771215 NIL STRTBL (NIL T) -8 NIL NIL NIL) (-1168 2759757 2764348 2764379 "STRING" 2764384 T STRING (NIL) -8 NIL NIL NIL) (-1167 2754618 2759130 2759160 "STRICAT" 2759219 T STRICAT (NIL) -9 NIL 2759281 NIL) (-1166 2747371 2752237 2752848 "STREAM" 2754042 NIL STREAM (NIL T) -8 NIL NIL NIL) (-1165 2746881 2746958 2747102 "STREAM3" 2747288 NIL STREAM3 (NIL T T T) -7 NIL NIL NIL) (-1164 2745863 2746046 2746281 "STREAM2" 2746694 NIL STREAM2 (NIL T T) -7 NIL NIL NIL) (-1163 2745551 2745603 2745696 "STREAM1" 2745805 NIL STREAM1 (NIL T) -7 NIL NIL NIL) (-1162 2744567 2744748 2744979 "STINPROD" 2745367 NIL STINPROD (NIL T) -7 NIL NIL NIL) (-1161 2744119 2744329 2744359 "STEP" 2744439 T STEP (NIL) -9 NIL 2744517 NIL) (-1160 2743306 2743608 2743756 "STEPAST" 2743993 T STEPAST (NIL) -8 NIL NIL NIL) (-1159 2736738 2743205 2743282 "STBL" 2743287 NIL STBL (NIL T T NIL) -8 NIL NIL NIL) (-1158 2731864 2735959 2736002 "STAGG" 2736155 NIL STAGG (NIL T) -9 NIL 2736244 NIL) (-1157 2729566 2730168 2731040 "STAGG-" 2731045 NIL STAGG- (NIL T T) -8 NIL NIL NIL) (-1156 2727713 2729336 2729428 "STACK" 2729509 NIL STACK (NIL T) -8 NIL NIL NIL) (-1155 2720408 2725854 2726310 "SREGSET" 2727343 NIL SREGSET (NIL T T T T) -8 NIL NIL NIL) (-1154 2712833 2714202 2715715 "SRDCMPK" 2719014 NIL SRDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1153 2705750 2710273 2710303 "SRAGG" 2711606 T SRAGG (NIL) -9 NIL 2712214 NIL) (-1152 2704767 2705022 2705401 "SRAGG-" 2705406 NIL SRAGG- (NIL T) -8 NIL NIL NIL) (-1151 2699227 2703714 2704135 "SQMATRIX" 2704393 NIL SQMATRIX (NIL NIL T) -8 NIL NIL NIL) (-1150 2692912 2695945 2696672 "SPLTREE" 2698572 NIL SPLTREE (NIL T T) -8 NIL NIL NIL) (-1149 2688875 2689568 2690214 "SPLNODE" 2692338 NIL SPLNODE (NIL T T) -8 NIL NIL NIL) (-1148 2687922 2688155 2688185 "SPFCAT" 2688629 T SPFCAT (NIL) -9 NIL NIL NIL) (-1147 2686659 2686869 2687133 "SPECOUT" 2687680 T SPECOUT (NIL) -7 NIL NIL NIL) (-1146 2677769 2679641 2679671 "SPADXPT" 2684347 T SPADXPT (NIL) -9 NIL 2686511 NIL) (-1145 2677530 2677570 2677639 "SPADPRSR" 2677722 T SPADPRSR (NIL) -7 NIL NIL NIL) (-1144 2675579 2677485 2677516 "SPADAST" 2677521 T SPADAST (NIL) -8 NIL NIL NIL) (-1143 2667524 2669297 2669340 "SPACEC" 2673713 NIL SPACEC (NIL T) -9 NIL 2675529 NIL) (-1142 2665654 2667456 2667505 "SPACE3" 2667510 NIL SPACE3 (NIL T) -8 NIL NIL NIL) (-1141 2664406 2664577 2664868 "SORTPAK" 2665459 NIL SORTPAK (NIL T T) -7 NIL NIL NIL) (-1140 2662498 2662801 2663213 "SOLVETRA" 2664070 NIL SOLVETRA (NIL T) -7 NIL NIL NIL) (-1139 2661548 2661770 2662031 "SOLVESER" 2662271 NIL SOLVESER (NIL T) -7 NIL NIL NIL) (-1138 2656852 2657740 2658735 "SOLVERAD" 2660600 NIL SOLVERAD (NIL T) -7 NIL NIL NIL) (-1137 2652667 2653276 2654005 "SOLVEFOR" 2656219 NIL SOLVEFOR (NIL T T) -7 NIL NIL NIL) (-1136 2646937 2652016 2652113 "SNTSCAT" 2652118 NIL SNTSCAT (NIL T T T T) -9 NIL 2652188 NIL) (-1135 2641043 2645260 2645651 "SMTS" 2646627 NIL SMTS (NIL T T T) -8 NIL NIL NIL) (-1134 2635728 2640931 2641008 "SMP" 2641013 NIL SMP (NIL T T) -8 NIL NIL NIL) (-1133 2633887 2634188 2634586 "SMITH" 2635425 NIL SMITH (NIL T T T T) -7 NIL NIL NIL) (-1132 2626600 2630796 2630899 "SMATCAT" 2632250 NIL SMATCAT (NIL NIL T T T) -9 NIL 2632800 NIL) (-1131 2623540 2624363 2625541 "SMATCAT-" 2625546 NIL SMATCAT- (NIL T NIL T T T) -8 NIL NIL NIL) (-1130 2621206 2622776 2622819 "SKAGG" 2623080 NIL SKAGG (NIL T) -9 NIL 2623215 NIL) (-1129 2617532 2620679 2620863 "SINT" 2621015 T SINT (NIL) -8 NIL NIL 2621177) (-1128 2617304 2617342 2617408 "SIMPAN" 2617488 T SIMPAN (NIL) -7 NIL NIL NIL) (-1127 2616583 2616839 2616979 "SIG" 2617186 T SIG (NIL) -8 NIL NIL NIL) (-1126 2615421 2615642 2615917 "SIGNRF" 2616342 NIL SIGNRF (NIL T) -7 NIL NIL NIL) (-1125 2614254 2614405 2614689 "SIGNEF" 2615250 NIL SIGNEF (NIL T T) -7 NIL NIL NIL) (-1124 2613560 2613837 2613961 "SIGAST" 2614152 T SIGAST (NIL) -8 NIL NIL NIL) (-1123 2611250 2611704 2612210 "SHP" 2613101 NIL SHP (NIL T NIL) -7 NIL NIL NIL) (-1122 2605102 2611151 2611227 "SHDP" 2611232 NIL SHDP (NIL NIL NIL T) -8 NIL NIL NIL) (-1121 2604675 2604867 2604897 "SGROUP" 2604990 T SGROUP (NIL) -9 NIL 2605052 NIL) (-1120 2604533 2604559 2604632 "SGROUP-" 2604637 NIL SGROUP- (NIL T) -8 NIL NIL NIL) (-1119 2601324 2602022 2602745 "SGCF" 2603832 T SGCF (NIL) -7 NIL NIL NIL) (-1118 2595692 2600771 2600868 "SFRTCAT" 2600873 NIL SFRTCAT (NIL T T T T) -9 NIL 2600912 NIL) (-1117 2589113 2590131 2591267 "SFRGCD" 2594675 NIL SFRGCD (NIL T T T T T) -7 NIL NIL NIL) (-1116 2582239 2583312 2584498 "SFQCMPK" 2588046 NIL SFQCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1115 2581859 2581948 2582059 "SFORT" 2582180 NIL SFORT (NIL T T) -8 NIL NIL NIL) (-1114 2580977 2581699 2581820 "SEXOF" 2581825 NIL SEXOF (NIL T T T T T) -8 NIL NIL NIL) (-1113 2580084 2580858 2580926 "SEX" 2580931 T SEX (NIL) -8 NIL NIL NIL) (-1112 2575597 2576312 2576407 "SEXCAT" 2579344 NIL SEXCAT (NIL T T T T T) -9 NIL 2579922 NIL) (-1111 2572750 2575531 2575579 "SET" 2575584 NIL SET (NIL T) -8 NIL NIL NIL) (-1110 2570974 2571463 2571768 "SETMN" 2572491 NIL SETMN (NIL NIL NIL) -8 NIL NIL NIL) (-1109 2570470 2570622 2570652 "SETCAT" 2570828 T SETCAT (NIL) -9 NIL 2570938 NIL) (-1108 2570162 2570240 2570370 "SETCAT-" 2570375 NIL SETCAT- (NIL T) -8 NIL NIL NIL) (-1107 2566523 2568623 2568666 "SETAGG" 2569536 NIL SETAGG (NIL T) -9 NIL 2569876 NIL) (-1106 2565981 2566097 2566334 "SETAGG-" 2566339 NIL SETAGG- (NIL T T) -8 NIL NIL NIL) (-1105 2565424 2565677 2565778 "SEQAST" 2565902 T SEQAST (NIL) -8 NIL NIL NIL) (-1104 2564623 2564917 2564978 "SEGXCAT" 2565264 NIL SEGXCAT (NIL T T) -9 NIL 2565384 NIL) (-1103 2563629 2564289 2564471 "SEG" 2564476 NIL SEG (NIL T) -8 NIL NIL NIL) (-1102 2562608 2562822 2562865 "SEGCAT" 2563387 NIL SEGCAT (NIL T) -9 NIL 2563608 NIL) (-1101 2561540 2561971 2562179 "SEGBIND" 2562435 NIL SEGBIND (NIL T) -8 NIL NIL NIL) (-1100 2561161 2561220 2561333 "SEGBIND2" 2561475 NIL SEGBIND2 (NIL T T) -7 NIL NIL NIL) (-1099 2560734 2560962 2561039 "SEGAST" 2561106 T SEGAST (NIL) -8 NIL NIL NIL) (-1098 2559953 2560079 2560283 "SEG2" 2560578 NIL SEG2 (NIL T T) -7 NIL NIL NIL) (-1097 2559363 2559888 2559935 "SDVAR" 2559940 NIL SDVAR (NIL T) -8 NIL NIL NIL) (-1096 2551890 2559133 2559263 "SDPOL" 2559268 NIL SDPOL (NIL T) -8 NIL NIL NIL) (-1095 2550483 2550749 2551068 "SCPKG" 2551605 NIL SCPKG (NIL T) -7 NIL NIL NIL) (-1094 2549647 2549819 2550011 "SCOPE" 2550313 T SCOPE (NIL) -8 NIL NIL NIL) (-1093 2548867 2549001 2549180 "SCACHE" 2549502 NIL SCACHE (NIL T) -7 NIL NIL NIL) (-1092 2548513 2548699 2548729 "SASTCAT" 2548734 T SASTCAT (NIL) -9 NIL 2548747 NIL) (-1091 2548000 2548348 2548424 "SAOS" 2548459 T SAOS (NIL) -8 NIL NIL NIL) (-1090 2547565 2547600 2547773 "SAERFFC" 2547959 NIL SAERFFC (NIL T T T) -7 NIL NIL NIL) (-1089 2541504 2547462 2547542 "SAE" 2547547 NIL SAE (NIL T T NIL) -8 NIL NIL NIL) (-1088 2541097 2541132 2541291 "SAEFACT" 2541463 NIL SAEFACT (NIL T T T) -7 NIL NIL NIL) (-1087 2539418 2539732 2540133 "RURPK" 2540763 NIL RURPK (NIL T NIL) -7 NIL NIL NIL) (-1086 2538055 2538361 2538666 "RULESET" 2539252 NIL RULESET (NIL T T T) -8 NIL NIL NIL) (-1085 2535278 2535808 2536266 "RULE" 2537736 NIL RULE (NIL T T T) -8 NIL NIL NIL) (-1084 2534890 2535072 2535155 "RULECOLD" 2535230 NIL RULECOLD (NIL NIL) -8 NIL NIL NIL) (-1083 2534680 2534708 2534779 "RTVALUE" 2534841 T RTVALUE (NIL) -8 NIL NIL NIL) (-1082 2534151 2534397 2534491 "RSTRCAST" 2534608 T RSTRCAST (NIL) -8 NIL NIL NIL) (-1081 2528999 2529794 2530714 "RSETGCD" 2533350 NIL RSETGCD (NIL T T T T T) -7 NIL NIL NIL) (-1080 2518229 2523308 2523405 "RSETCAT" 2527524 NIL RSETCAT (NIL T T T T) -9 NIL 2528621 NIL) (-1079 2516156 2516695 2517519 "RSETCAT-" 2517524 NIL RSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-1078 2508542 2509918 2511438 "RSDCMPK" 2514755 NIL RSDCMPK (NIL T T T T T) -7 NIL NIL NIL) (-1077 2506521 2506988 2507062 "RRCC" 2508148 NIL RRCC (NIL T T) -9 NIL 2508492 NIL) (-1076 2505872 2506046 2506325 "RRCC-" 2506330 NIL RRCC- (NIL T T T) -8 NIL NIL NIL) (-1075 2505315 2505568 2505669 "RPTAST" 2505793 T RPTAST (NIL) -8 NIL NIL NIL) (-1074 2479161 2488520 2488587 "RPOLCAT" 2499253 NIL RPOLCAT (NIL T T T) -9 NIL 2502413 NIL) (-1073 2470659 2472999 2476121 "RPOLCAT-" 2476126 NIL RPOLCAT- (NIL T T T T) -8 NIL NIL NIL) (-1072 2461590 2468870 2469352 "ROUTINE" 2470199 T ROUTINE (NIL) -8 NIL NIL NIL) (-1071 2458388 2461216 2461356 "ROMAN" 2461472 T ROMAN (NIL) -8 NIL NIL NIL) (-1070 2456632 2457248 2457508 "ROIRC" 2458193 NIL ROIRC (NIL T T) -8 NIL NIL NIL) (-1069 2452864 2455148 2455178 "RNS" 2455482 T RNS (NIL) -9 NIL 2455756 NIL) (-1068 2451373 2451756 2452290 "RNS-" 2452365 NIL RNS- (NIL T) -8 NIL NIL NIL) (-1067 2450776 2451184 2451214 "RNG" 2451219 T RNG (NIL) -9 NIL 2451240 NIL) (-1066 2449779 2450141 2450343 "RNGBIND" 2450627 NIL RNGBIND (NIL T T) -8 NIL NIL NIL) (-1065 2449178 2449566 2449609 "RMODULE" 2449614 NIL RMODULE (NIL T) -9 NIL 2449641 NIL) (-1064 2448014 2448108 2448444 "RMCAT2" 2449079 NIL RMCAT2 (NIL NIL NIL T T T T T T T T) -7 NIL NIL NIL) (-1063 2444864 2447360 2447657 "RMATRIX" 2447776 NIL RMATRIX (NIL NIL NIL T) -8 NIL NIL NIL) (-1062 2437691 2439951 2440066 "RMATCAT" 2443425 NIL RMATCAT (NIL NIL NIL T T T) -9 NIL 2444407 NIL) (-1061 2437066 2437213 2437520 "RMATCAT-" 2437525 NIL RMATCAT- (NIL T NIL NIL T T T) -8 NIL NIL NIL) (-1060 2436467 2436688 2436731 "RLINSET" 2436925 NIL RLINSET (NIL T) -9 NIL 2437016 NIL) (-1059 2436034 2436109 2436237 "RINTERP" 2436386 NIL RINTERP (NIL NIL T) -7 NIL NIL NIL) (-1058 2435092 2435646 2435676 "RING" 2435732 T RING (NIL) -9 NIL 2435824 NIL) (-1057 2434884 2434928 2435025 "RING-" 2435030 NIL RING- (NIL T) -8 NIL NIL NIL) (-1056 2433725 2433962 2434220 "RIDIST" 2434648 T RIDIST (NIL) -7 NIL NIL NIL) (-1055 2425014 2433193 2433399 "RGCHAIN" 2433573 NIL RGCHAIN (NIL T NIL) -8 NIL NIL NIL) (-1054 2424364 2424770 2424811 "RGBCSPC" 2424869 NIL RGBCSPC (NIL T) -9 NIL 2424921 NIL) (-1053 2423522 2423903 2423944 "RGBCMDL" 2424176 NIL RGBCMDL (NIL T) -9 NIL 2424290 NIL) (-1052 2420516 2421130 2421800 "RF" 2422886 NIL RF (NIL T) -7 NIL NIL NIL) (-1051 2420162 2420225 2420328 "RFFACTOR" 2420447 NIL RFFACTOR (NIL T) -7 NIL NIL NIL) (-1050 2419887 2419922 2420019 "RFFACT" 2420121 NIL RFFACT (NIL T) -7 NIL NIL NIL) (-1049 2418004 2418368 2418750 "RFDIST" 2419527 T RFDIST (NIL) -7 NIL NIL NIL) (-1048 2417457 2417549 2417712 "RETSOL" 2417906 NIL RETSOL (NIL T T) -7 NIL NIL NIL) (-1047 2417093 2417173 2417216 "RETRACT" 2417349 NIL RETRACT (NIL T) -9 NIL 2417436 NIL) (-1046 2416942 2416967 2417054 "RETRACT-" 2417059 NIL RETRACT- (NIL T T) -8 NIL NIL NIL) (-1045 2416544 2416764 2416834 "RETAST" 2416894 T RETAST (NIL) -8 NIL NIL NIL) (-1044 2409282 2416197 2416324 "RESULT" 2416439 T RESULT (NIL) -8 NIL NIL NIL) (-1043 2407873 2408551 2408750 "RESRING" 2409185 NIL RESRING (NIL T T T T NIL) -8 NIL NIL NIL) (-1042 2407509 2407558 2407656 "RESLATC" 2407810 NIL RESLATC (NIL T) -7 NIL NIL NIL) (-1041 2407214 2407249 2407356 "REPSQ" 2407468 NIL REPSQ (NIL T) -7 NIL NIL NIL) (-1040 2404636 2405216 2405818 "REP" 2406634 T REP (NIL) -7 NIL NIL NIL) (-1039 2404333 2404368 2404479 "REPDB" 2404595 NIL REPDB (NIL T) -7 NIL NIL NIL) (-1038 2398233 2399622 2400845 "REP2" 2403145 NIL REP2 (NIL T) -7 NIL NIL NIL) (-1037 2394610 2395291 2396099 "REP1" 2397460 NIL REP1 (NIL T) -7 NIL NIL NIL) (-1036 2387306 2392751 2393207 "REGSET" 2394240 NIL REGSET (NIL T T T T) -8 NIL NIL NIL) (-1035 2386071 2386454 2386704 "REF" 2387091 NIL REF (NIL T) -8 NIL NIL NIL) (-1034 2385448 2385551 2385718 "REDORDER" 2385955 NIL REDORDER (NIL T T) -7 NIL NIL NIL) (-1033 2381416 2384661 2384888 "RECLOS" 2385276 NIL RECLOS (NIL T) -8 NIL NIL NIL) (-1032 2380468 2380649 2380864 "REALSOLV" 2381223 T REALSOLV (NIL) -7 NIL NIL NIL) (-1031 2380314 2380355 2380385 "REAL" 2380390 T REAL (NIL) -9 NIL 2380425 NIL) (-1030 2376797 2377599 2378483 "REAL0Q" 2379479 NIL REAL0Q (NIL T) -7 NIL NIL NIL) (-1029 2372398 2373386 2374447 "REAL0" 2375778 NIL REAL0 (NIL T) -7 NIL NIL NIL) (-1028 2371869 2372115 2372209 "RDUCEAST" 2372326 T RDUCEAST (NIL) -8 NIL NIL NIL) (-1027 2371274 2371346 2371553 "RDIV" 2371791 NIL RDIV (NIL T T T T T) -7 NIL NIL NIL) (-1026 2370342 2370516 2370729 "RDIST" 2371096 NIL RDIST (NIL T) -7 NIL NIL NIL) (-1025 2368939 2369226 2369598 "RDETRS" 2370050 NIL RDETRS (NIL T T) -7 NIL NIL NIL) (-1024 2366751 2367205 2367743 "RDETR" 2368481 NIL RDETR (NIL T T) -7 NIL NIL NIL) (-1023 2365376 2365654 2366051 "RDEEFS" 2366467 NIL RDEEFS (NIL T T) -7 NIL NIL NIL) (-1022 2363885 2364191 2364616 "RDEEF" 2365064 NIL RDEEF (NIL T T) -7 NIL NIL NIL) (-1021 2357946 2360866 2360896 "RCFIELD" 2362191 T RCFIELD (NIL) -9 NIL 2362922 NIL) (-1020 2356010 2356514 2357210 "RCFIELD-" 2357285 NIL RCFIELD- (NIL T) -8 NIL NIL NIL) (-1019 2352279 2354111 2354154 "RCAGG" 2355238 NIL RCAGG (NIL T) -9 NIL 2355703 NIL) (-1018 2351907 2352001 2352164 "RCAGG-" 2352169 NIL RCAGG- (NIL T T) -8 NIL NIL NIL) (-1017 2351242 2351354 2351519 "RATRET" 2351791 NIL RATRET (NIL T) -7 NIL NIL NIL) (-1016 2350795 2350862 2350983 "RATFACT" 2351170 NIL RATFACT (NIL T) -7 NIL NIL NIL) (-1015 2350103 2350223 2350375 "RANDSRC" 2350665 T RANDSRC (NIL) -7 NIL NIL NIL) (-1014 2349837 2349881 2349954 "RADUTIL" 2350052 T RADUTIL (NIL) -7 NIL NIL NIL) (-1013 2342951 2348668 2348979 "RADIX" 2349560 NIL RADIX (NIL NIL) -8 NIL NIL NIL) (-1012 2334570 2342793 2342923 "RADFF" 2342928 NIL RADFF (NIL T T T NIL NIL) -8 NIL NIL NIL) (-1011 2334217 2334292 2334322 "RADCAT" 2334482 T RADCAT (NIL) -9 NIL NIL NIL) (-1010 2333999 2334047 2334147 "RADCAT-" 2334152 NIL RADCAT- (NIL T) -8 NIL NIL NIL) (-1009 2332097 2333769 2333861 "QUEUE" 2333942 NIL QUEUE (NIL T) -8 NIL NIL NIL) (-1008 2328634 2332030 2332078 "QUAT" 2332083 NIL QUAT (NIL T) -8 NIL NIL NIL) (-1007 2328265 2328308 2328439 "QUATCT2" 2328585 NIL QUATCT2 (NIL T T T T) -7 NIL NIL NIL) (-1006 2321714 2325059 2325101 "QUATCAT" 2325892 NIL QUATCAT (NIL T) -9 NIL 2326658 NIL) (-1005 2317853 2318890 2320280 "QUATCAT-" 2320376 NIL QUATCAT- (NIL T T) -8 NIL NIL NIL) (-1004 2315318 2316929 2316972 "QUAGG" 2317353 NIL QUAGG (NIL T) -9 NIL 2317528 NIL) (-1003 2314920 2315140 2315210 "QQUTAST" 2315270 T QQUTAST (NIL) -8 NIL NIL NIL) (-1002 2313813 2314313 2314487 "QFORM" 2314792 NIL QFORM (NIL NIL T) -8 NIL NIL NIL) (-1001 2304806 2310045 2310087 "QFCAT" 2310755 NIL QFCAT (NIL T) -9 NIL 2311756 NIL) (-1000 2300373 2301574 2303168 "QFCAT-" 2303264 NIL QFCAT- (NIL T T) -8 NIL NIL NIL) (-999 2300007 2300050 2300179 "QFCAT2" 2300324 NIL QFCAT2 (NIL T T T T) -7 NIL NIL NIL) (-998 2299467 2299577 2299707 "QEQUAT" 2299897 T QEQUAT (NIL) -8 NIL NIL NIL) (-997 2292613 2293686 2294870 "QCMPACK" 2298400 NIL QCMPACK (NIL T T T T T) -7 NIL NIL NIL) (-996 2290162 2290610 2291038 "QALGSET" 2292268 NIL QALGSET (NIL T T T T) -8 NIL NIL NIL) (-995 2289407 2289581 2289813 "QALGSET2" 2289982 NIL QALGSET2 (NIL NIL NIL) -7 NIL NIL NIL) (-994 2288097 2288321 2288638 "PWFFINTB" 2289180 NIL PWFFINTB (NIL T T T T) -7 NIL NIL NIL) (-993 2286279 2286447 2286801 "PUSHVAR" 2287911 NIL PUSHVAR (NIL T T T T) -7 NIL NIL NIL) (-992 2282197 2283251 2283292 "PTRANFN" 2285176 NIL PTRANFN (NIL T) -9 NIL NIL NIL) (-991 2280599 2280890 2281212 "PTPACK" 2281908 NIL PTPACK (NIL T) -7 NIL NIL NIL) (-990 2280231 2280288 2280397 "PTFUNC2" 2280536 NIL PTFUNC2 (NIL T T) -7 NIL NIL NIL) (-989 2274708 2279103 2279144 "PTCAT" 2279440 NIL PTCAT (NIL T) -9 NIL 2279593 NIL) (-988 2274366 2274401 2274525 "PSQFR" 2274667 NIL PSQFR (NIL T T T T) -7 NIL NIL NIL) (-987 2272961 2273259 2273593 "PSEUDLIN" 2274064 NIL PSEUDLIN (NIL T) -7 NIL NIL NIL) (-986 2259724 2262095 2264419 "PSETPK" 2270721 NIL PSETPK (NIL T T T T) -7 NIL NIL NIL) (-985 2252742 2255482 2255578 "PSETCAT" 2258599 NIL PSETCAT (NIL T T T T) -9 NIL 2259413 NIL) (-984 2250578 2251212 2252033 "PSETCAT-" 2252038 NIL PSETCAT- (NIL T T T T T) -8 NIL NIL NIL) (-983 2249927 2250092 2250120 "PSCURVE" 2250388 T PSCURVE (NIL) -9 NIL 2250555 NIL) (-982 2245925 2247441 2247506 "PSCAT" 2248350 NIL PSCAT (NIL T T T) -9 NIL 2248590 NIL) (-981 2244988 2245204 2245604 "PSCAT-" 2245609 NIL PSCAT- (NIL T T T T) -8 NIL NIL NIL) (-980 2243797 2244420 2244599 "PRTITION" 2244829 T PRTITION (NIL) -8 NIL NIL NIL) (-979 2243272 2243518 2243610 "PRTDAST" 2243725 T PRTDAST (NIL) -8 NIL NIL NIL) (-978 2232362 2234576 2236764 "PRS" 2241134 NIL PRS (NIL T T) -7 NIL NIL NIL) (-977 2230173 2231712 2231752 "PRQAGG" 2231935 NIL PRQAGG (NIL T) -9 NIL 2232037 NIL) (-976 2229509 2229814 2229842 "PROPLOG" 2229981 T PROPLOG (NIL) -9 NIL 2230096 NIL) (-975 2229113 2229170 2229293 "PROPFUN2" 2229432 NIL PROPFUN2 (NIL T T) -8 NIL NIL NIL) (-974 2228428 2228549 2228721 "PROPFUN1" 2228974 NIL PROPFUN1 (NIL T) -8 NIL NIL NIL) (-973 2226609 2227175 2227472 "PROPFRML" 2228164 NIL PROPFRML (NIL T) -8 NIL NIL NIL) (-972 2226078 2226185 2226313 "PROPERTY" 2226501 T PROPERTY (NIL) -8 NIL NIL NIL) (-971 2220136 2224244 2225064 "PRODUCT" 2225304 NIL PRODUCT (NIL T T) -8 NIL NIL NIL) (-970 2217414 2219594 2219828 "PR" 2219947 NIL PR (NIL T T) -8 NIL NIL NIL) (-969 2217210 2217242 2217301 "PRINT" 2217375 T PRINT (NIL) -7 NIL NIL NIL) (-968 2216550 2216667 2216819 "PRIMES" 2217090 NIL PRIMES (NIL T) -7 NIL NIL NIL) (-967 2214615 2215016 2215482 "PRIMELT" 2216129 NIL PRIMELT (NIL T) -7 NIL NIL NIL) (-966 2214344 2214393 2214421 "PRIMCAT" 2214545 T PRIMCAT (NIL) -9 NIL NIL NIL) (-965 2210459 2214282 2214327 "PRIMARR" 2214332 NIL PRIMARR (NIL T) -8 NIL NIL NIL) (-964 2209466 2209644 2209872 "PRIMARR2" 2210277 NIL PRIMARR2 (NIL T T) -7 NIL NIL NIL) (-963 2209109 2209165 2209276 "PREASSOC" 2209404 NIL PREASSOC (NIL T T) -7 NIL NIL NIL) (-962 2208584 2208717 2208745 "PPCURVE" 2208950 T PPCURVE (NIL) -9 NIL 2209086 NIL) (-961 2208179 2208379 2208462 "PORTNUM" 2208521 T PORTNUM (NIL) -8 NIL NIL NIL) (-960 2205538 2205937 2206529 "POLYROOT" 2207760 NIL POLYROOT (NIL T T T T T) -7 NIL NIL NIL) (-959 2199720 2205142 2205302 "POLY" 2205411 NIL POLY (NIL T) -8 NIL NIL NIL) (-958 2199103 2199161 2199395 "POLYLIFT" 2199656 NIL POLYLIFT (NIL T T T T T) -7 NIL NIL NIL) (-957 2195378 2195827 2196456 "POLYCATQ" 2198648 NIL POLYCATQ (NIL T T T T T) -7 NIL NIL NIL) (-956 2182090 2187218 2187283 "POLYCAT" 2190797 NIL POLYCAT (NIL T T T) -9 NIL 2192675 NIL) (-955 2175539 2177401 2179785 "POLYCAT-" 2179790 NIL POLYCAT- (NIL T T T T) -8 NIL NIL NIL) (-954 2175126 2175194 2175314 "POLY2UP" 2175465 NIL POLY2UP (NIL NIL T) -7 NIL NIL NIL) (-953 2174758 2174815 2174924 "POLY2" 2175063 NIL POLY2 (NIL T T) -7 NIL NIL NIL) (-952 2173443 2173682 2173958 "POLUTIL" 2174532 NIL POLUTIL (NIL T T) -7 NIL NIL NIL) (-951 2171798 2172075 2172406 "POLTOPOL" 2173165 NIL POLTOPOL (NIL NIL T) -7 NIL NIL NIL) (-950 2167263 2171734 2171780 "POINT" 2171785 NIL POINT (NIL T) -8 NIL NIL NIL) (-949 2165450 2165807 2166182 "PNTHEORY" 2166908 T PNTHEORY (NIL) -7 NIL NIL NIL) (-948 2163908 2164205 2164604 "PMTOOLS" 2165148 NIL PMTOOLS (NIL T T T) -7 NIL NIL NIL) (-947 2163501 2163579 2163696 "PMSYM" 2163824 NIL PMSYM (NIL T) -7 NIL NIL NIL) (-946 2163009 2163078 2163253 "PMQFCAT" 2163426 NIL PMQFCAT (NIL T T T) -7 NIL NIL NIL) (-945 2162364 2162474 2162630 "PMPRED" 2162886 NIL PMPRED (NIL T) -7 NIL NIL NIL) (-944 2161757 2161843 2162005 "PMPREDFS" 2162265 NIL PMPREDFS (NIL T T T) -7 NIL NIL NIL) (-943 2160421 2160629 2161007 "PMPLCAT" 2161519 NIL PMPLCAT (NIL T T T T T) -7 NIL NIL NIL) (-942 2159953 2160032 2160184 "PMLSAGG" 2160336 NIL PMLSAGG (NIL T T T) -7 NIL NIL NIL) (-941 2159426 2159502 2159684 "PMKERNEL" 2159871 NIL PMKERNEL (NIL T T) -7 NIL NIL NIL) (-940 2159043 2159118 2159231 "PMINS" 2159345 NIL PMINS (NIL T) -7 NIL NIL NIL) (-939 2158485 2158554 2158763 "PMFS" 2158968 NIL PMFS (NIL T T T) -7 NIL NIL NIL) (-938 2157713 2157831 2158036 "PMDOWN" 2158362 NIL PMDOWN (NIL T T T) -7 NIL NIL NIL) (-937 2156880 2157038 2157219 "PMASS" 2157552 T PMASS (NIL) -7 NIL NIL NIL) (-936 2156153 2156263 2156426 "PMASSFS" 2156767 NIL PMASSFS (NIL T T) -7 NIL NIL NIL) (-935 2155808 2155876 2155970 "PLOTTOOL" 2156079 T PLOTTOOL (NIL) -7 NIL NIL NIL) (-934 2150415 2151619 2152767 "PLOT" 2154680 T PLOT (NIL) -8 NIL NIL NIL) (-933 2146219 2147263 2148184 "PLOT3D" 2149514 T PLOT3D (NIL) -8 NIL NIL NIL) (-932 2145131 2145308 2145543 "PLOT1" 2146023 NIL PLOT1 (NIL T) -7 NIL NIL NIL) (-931 2120522 2125197 2130048 "PLEQN" 2140397 NIL PLEQN (NIL T T T T) -7 NIL NIL NIL) (-930 2119840 2119962 2120142 "PINTERP" 2120387 NIL PINTERP (NIL NIL T) -7 NIL NIL NIL) (-929 2119533 2119580 2119683 "PINTERPA" 2119787 NIL PINTERPA (NIL T T) -7 NIL NIL NIL) (-928 2118754 2119302 2119389 "PI" 2119429 T PI (NIL) -8 NIL NIL 2119496) (-927 2117051 2118026 2118054 "PID" 2118236 T PID (NIL) -9 NIL 2118370 NIL) (-926 2116802 2116839 2116914 "PICOERCE" 2117008 NIL PICOERCE (NIL T) -7 NIL NIL NIL) (-925 2116122 2116261 2116437 "PGROEB" 2116658 NIL PGROEB (NIL T) -7 NIL NIL NIL) (-924 2111709 2112523 2113428 "PGE" 2115237 T PGE (NIL) -7 NIL NIL NIL) (-923 2109832 2110079 2110445 "PGCD" 2111426 NIL PGCD (NIL T T T T) -7 NIL NIL NIL) (-922 2109170 2109273 2109434 "PFRPAC" 2109716 NIL PFRPAC (NIL T) -7 NIL NIL NIL) (-921 2105810 2107718 2108071 "PFR" 2108849 NIL PFR (NIL T) -8 NIL NIL NIL) (-920 2104199 2104443 2104768 "PFOTOOLS" 2105557 NIL PFOTOOLS (NIL T T) -7 NIL NIL NIL) (-919 2102732 2102971 2103322 "PFOQ" 2103956 NIL PFOQ (NIL T T T) -7 NIL NIL NIL) (-918 2101233 2101445 2101801 "PFO" 2102516 NIL PFO (NIL T T T T T) -7 NIL NIL NIL) (-917 2097786 2101122 2101191 "PF" 2101196 NIL PF (NIL NIL) -8 NIL NIL NIL) (-916 2095120 2096391 2096419 "PFECAT" 2097004 T PFECAT (NIL) -9 NIL 2097388 NIL) (-915 2094565 2094719 2094933 "PFECAT-" 2094938 NIL PFECAT- (NIL T) -8 NIL NIL NIL) (-914 2093168 2093420 2093721 "PFBRU" 2094314 NIL PFBRU (NIL T T) -7 NIL NIL NIL) (-913 2091034 2091386 2091818 "PFBR" 2092819 NIL PFBR (NIL T T T T) -7 NIL NIL NIL) (-912 2086916 2088410 2089086 "PERM" 2090391 NIL PERM (NIL T) -8 NIL NIL NIL) (-911 2082150 2083123 2083993 "PERMGRP" 2086079 NIL PERMGRP (NIL T) -8 NIL NIL NIL) (-910 2080256 2081213 2081254 "PERMCAT" 2081700 NIL PERMCAT (NIL T) -9 NIL 2082005 NIL) (-909 2079909 2079950 2080074 "PERMAN" 2080209 NIL PERMAN (NIL NIL T) -7 NIL NIL NIL) (-908 2077397 2079574 2079696 "PENDTREE" 2079820 NIL PENDTREE (NIL T) -8 NIL NIL NIL) (-907 2075421 2076189 2076230 "PDRING" 2076887 NIL PDRING (NIL T) -9 NIL 2077173 NIL) (-906 2074524 2074742 2075104 "PDRING-" 2075109 NIL PDRING- (NIL T T) -8 NIL NIL NIL) (-905 2071739 2072517 2073185 "PDEPROB" 2073876 T PDEPROB (NIL) -8 NIL NIL NIL) (-904 2069284 2069788 2070343 "PDEPACK" 2071204 T PDEPACK (NIL) -7 NIL NIL NIL) (-903 2068196 2068386 2068637 "PDECOMP" 2069083 NIL PDECOMP (NIL T T) -7 NIL NIL NIL) (-902 2065775 2066618 2066646 "PDECAT" 2067433 T PDECAT (NIL) -9 NIL 2068146 NIL) (-901 2065526 2065559 2065649 "PCOMP" 2065736 NIL PCOMP (NIL T T) -7 NIL NIL NIL) (-900 2063704 2064327 2064624 "PBWLB" 2065255 NIL PBWLB (NIL T) -8 NIL NIL NIL) (-899 2056177 2057777 2059115 "PATTERN" 2062387 NIL PATTERN (NIL T) -8 NIL NIL NIL) (-898 2055809 2055866 2055975 "PATTERN2" 2056114 NIL PATTERN2 (NIL T T) -7 NIL NIL NIL) (-897 2053566 2053954 2054411 "PATTERN1" 2055398 NIL PATTERN1 (NIL T T) -7 NIL NIL NIL) (-896 2050934 2051515 2051996 "PATRES" 2053131 NIL PATRES (NIL T T) -8 NIL NIL NIL) (-895 2050498 2050565 2050697 "PATRES2" 2050861 NIL PATRES2 (NIL T T T) -7 NIL NIL NIL) (-894 2048381 2048786 2049193 "PATMATCH" 2050165 NIL PATMATCH (NIL T T T) -7 NIL NIL NIL) (-893 2047891 2048100 2048141 "PATMAB" 2048248 NIL PATMAB (NIL T) -9 NIL 2048331 NIL) (-892 2046409 2046745 2047003 "PATLRES" 2047696 NIL PATLRES (NIL T T T) -8 NIL NIL NIL) (-891 2045955 2046078 2046119 "PATAB" 2046124 NIL PATAB (NIL T) -9 NIL 2046296 NIL) (-890 2043436 2043968 2044541 "PARTPERM" 2045402 T PARTPERM (NIL) -7 NIL NIL NIL) (-889 2043057 2043120 2043222 "PARSURF" 2043367 NIL PARSURF (NIL T) -8 NIL NIL NIL) (-888 2042689 2042746 2042855 "PARSU2" 2042994 NIL PARSU2 (NIL T T) -7 NIL NIL NIL) (-887 2042453 2042493 2042560 "PARSER" 2042642 T PARSER (NIL) -7 NIL NIL NIL) (-886 2042074 2042137 2042239 "PARSCURV" 2042384 NIL PARSCURV (NIL T) -8 NIL NIL NIL) (-885 2041706 2041763 2041872 "PARSC2" 2042011 NIL PARSC2 (NIL T T) -7 NIL NIL NIL) (-884 2041345 2041403 2041500 "PARPCURV" 2041642 NIL PARPCURV (NIL T) -8 NIL NIL NIL) (-883 2040977 2041034 2041143 "PARPC2" 2041282 NIL PARPC2 (NIL T T) -7 NIL NIL NIL) (-882 2040038 2040350 2040532 "PARAMAST" 2040815 T PARAMAST (NIL) -8 NIL NIL NIL) (-881 2039558 2039644 2039763 "PAN2EXPR" 2039939 T PAN2EXPR (NIL) -7 NIL NIL NIL) (-880 2038335 2038679 2038907 "PALETTE" 2039350 T PALETTE (NIL) -8 NIL NIL NIL) (-879 2036728 2037340 2037700 "PAIR" 2038021 NIL PAIR (NIL T T) -8 NIL NIL NIL) (-878 2030596 2035985 2036180 "PADICRC" 2036582 NIL PADICRC (NIL NIL T) -8 NIL NIL NIL) (-877 2023823 2029940 2030125 "PADICRAT" 2030443 NIL PADICRAT (NIL NIL) -8 NIL NIL NIL) (-876 2022138 2023760 2023805 "PADIC" 2023810 NIL PADIC (NIL NIL) -8 NIL NIL NIL) (-875 2019248 2020812 2020852 "PADICCT" 2021433 NIL PADICCT (NIL NIL) -9 NIL 2021715 NIL) (-874 2018205 2018405 2018673 "PADEPAC" 2019035 NIL PADEPAC (NIL T NIL NIL) -7 NIL NIL NIL) (-873 2017417 2017550 2017756 "PADE" 2018067 NIL PADE (NIL T T T) -7 NIL NIL NIL) (-872 2015804 2016625 2016905 "OWP" 2017221 NIL OWP (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-871 2015297 2015510 2015607 "OVERSET" 2015727 T OVERSET (NIL) -8 NIL NIL NIL) (-870 2014343 2014902 2015074 "OVAR" 2015165 NIL OVAR (NIL NIL) -8 NIL NIL NIL) (-869 2013607 2013728 2013889 "OUT" 2014202 T OUT (NIL) -7 NIL NIL NIL) (-868 2002479 2004716 2006916 "OUTFORM" 2011427 T OUTFORM (NIL) -8 NIL NIL NIL) (-867 2001815 2002076 2002203 "OUTBFILE" 2002372 T OUTBFILE (NIL) -8 NIL NIL NIL) (-866 2001122 2001287 2001315 "OUTBCON" 2001633 T OUTBCON (NIL) -9 NIL 2001799 NIL) (-865 2000723 2000835 2000992 "OUTBCON-" 2000997 NIL OUTBCON- (NIL T) -8 NIL NIL NIL) (-864 2000103 2000452 2000541 "OSI" 2000654 T OSI (NIL) -8 NIL NIL NIL) (-863 1999633 1999971 1999999 "OSGROUP" 2000004 T OSGROUP (NIL) -9 NIL 2000026 NIL) (-862 1998378 1998605 1998890 "ORTHPOL" 1999380 NIL ORTHPOL (NIL T) -7 NIL NIL NIL) (-861 1995929 1998213 1998334 "OREUP" 1998339 NIL OREUP (NIL NIL T NIL NIL) -8 NIL NIL NIL) (-860 1993332 1995620 1995747 "ORESUP" 1995871 NIL ORESUP (NIL T NIL NIL) -8 NIL NIL NIL) (-859 1990860 1991360 1991921 "OREPCTO" 1992821 NIL OREPCTO (NIL T T) -7 NIL NIL NIL) (-858 1984546 1986747 1986788 "OREPCAT" 1989136 NIL OREPCAT (NIL T) -9 NIL 1990240 NIL) (-857 1981693 1982475 1983533 "OREPCAT-" 1983538 NIL OREPCAT- (NIL T T) -8 NIL NIL NIL) (-856 1980844 1981142 1981170 "ORDSET" 1981479 T ORDSET (NIL) -9 NIL 1981643 NIL) (-855 1980275 1980423 1980647 "ORDSET-" 1980652 NIL ORDSET- (NIL T) -8 NIL NIL NIL) (-854 1978840 1979631 1979659 "ORDRING" 1979861 T ORDRING (NIL) -9 NIL 1979986 NIL) (-853 1978485 1978579 1978723 "ORDRING-" 1978728 NIL ORDRING- (NIL T) -8 NIL NIL NIL) (-852 1977865 1978328 1978356 "ORDMON" 1978361 T ORDMON (NIL) -9 NIL 1978382 NIL) (-851 1977027 1977174 1977369 "ORDFUNS" 1977714 NIL ORDFUNS (NIL NIL T) -7 NIL NIL NIL) (-850 1976365 1976784 1976812 "ORDFIN" 1976877 T ORDFIN (NIL) -9 NIL 1976951 NIL) (-849 1972924 1974951 1975360 "ORDCOMP" 1975989 NIL ORDCOMP (NIL T) -8 NIL NIL NIL) (-848 1972190 1972317 1972503 "ORDCOMP2" 1972784 NIL ORDCOMP2 (NIL T T) -7 NIL NIL NIL) (-847 1968771 1969681 1970495 "OPTPROB" 1971396 T OPTPROB (NIL) -8 NIL NIL NIL) (-846 1965573 1966212 1966916 "OPTPACK" 1968087 T OPTPACK (NIL) -7 NIL NIL NIL) (-845 1963260 1964026 1964054 "OPTCAT" 1964873 T OPTCAT (NIL) -9 NIL 1965523 NIL) (-844 1962644 1962937 1963042 "OPSIG" 1963175 T OPSIG (NIL) -8 NIL NIL NIL) (-843 1962412 1962451 1962517 "OPQUERY" 1962598 T OPQUERY (NIL) -7 NIL NIL NIL) (-842 1959543 1960723 1961227 "OP" 1961941 NIL OP (NIL T) -8 NIL NIL NIL) (-841 1958917 1959143 1959184 "OPERCAT" 1959396 NIL OPERCAT (NIL T) -9 NIL 1959493 NIL) (-840 1958672 1958728 1958845 "OPERCAT-" 1958850 NIL OPERCAT- (NIL T T) -8 NIL NIL NIL) (-839 1955485 1957469 1957838 "ONECOMP" 1958336 NIL ONECOMP (NIL T) -8 NIL NIL NIL) (-838 1954790 1954905 1955079 "ONECOMP2" 1955357 NIL ONECOMP2 (NIL T T) -7 NIL NIL NIL) (-837 1954209 1954315 1954445 "OMSERVER" 1954680 T OMSERVER (NIL) -7 NIL NIL NIL) (-836 1951071 1953649 1953689 "OMSAGG" 1953750 NIL OMSAGG (NIL T) -9 NIL 1953814 NIL) (-835 1949694 1949957 1950239 "OMPKG" 1950809 T OMPKG (NIL) -7 NIL NIL NIL) (-834 1949124 1949227 1949255 "OM" 1949554 T OM (NIL) -9 NIL NIL NIL) (-833 1947671 1948673 1948842 "OMLO" 1949005 NIL OMLO (NIL T T) -8 NIL NIL NIL) (-832 1946631 1946778 1946998 "OMEXPR" 1947497 NIL OMEXPR (NIL T) -7 NIL NIL NIL) (-831 1945922 1946177 1946313 "OMERR" 1946515 T OMERR (NIL) -8 NIL NIL NIL) (-830 1945073 1945343 1945503 "OMERRK" 1945782 T OMERRK (NIL) -8 NIL NIL NIL) (-829 1944524 1944750 1944858 "OMENC" 1944985 T OMENC (NIL) -8 NIL NIL NIL) (-828 1938419 1939604 1940775 "OMDEV" 1943373 T OMDEV (NIL) -8 NIL NIL NIL) (-827 1937488 1937659 1937853 "OMCONN" 1938245 T OMCONN (NIL) -8 NIL NIL NIL) (-826 1936009 1936985 1937013 "OINTDOM" 1937018 T OINTDOM (NIL) -9 NIL 1937039 NIL) (-825 1933347 1934697 1935034 "OFMONOID" 1935704 NIL OFMONOID (NIL T) -8 NIL NIL NIL) (-824 1932758 1933284 1933329 "ODVAR" 1933334 NIL ODVAR (NIL T) -8 NIL NIL NIL) (-823 1930181 1932503 1932658 "ODR" 1932663 NIL ODR (NIL T T NIL) -8 NIL NIL NIL) (-822 1922762 1929957 1930083 "ODPOL" 1930088 NIL ODPOL (NIL T) -8 NIL NIL NIL) (-821 1916584 1922634 1922739 "ODP" 1922744 NIL ODP (NIL NIL T NIL) -8 NIL NIL NIL) (-820 1915350 1915565 1915840 "ODETOOLS" 1916358 NIL ODETOOLS (NIL T T) -7 NIL NIL NIL) (-819 1912317 1912975 1913691 "ODESYS" 1914683 NIL ODESYS (NIL T T) -7 NIL NIL NIL) (-818 1907199 1908107 1909132 "ODERTRIC" 1911392 NIL ODERTRIC (NIL T T) -7 NIL NIL NIL) (-817 1906625 1906707 1906901 "ODERED" 1907111 NIL ODERED (NIL T T T T T) -7 NIL NIL NIL) (-816 1903513 1904061 1904738 "ODERAT" 1906048 NIL ODERAT (NIL T T) -7 NIL NIL NIL) (-815 1900472 1900937 1901534 "ODEPRRIC" 1903042 NIL ODEPRRIC (NIL T T T T) -7 NIL NIL NIL) (-814 1898415 1899011 1899497 "ODEPROB" 1900006 T ODEPROB (NIL) -8 NIL NIL NIL) (-813 1894935 1895420 1896067 "ODEPRIM" 1897894 NIL ODEPRIM (NIL T T T T) -7 NIL NIL NIL) (-812 1894184 1894286 1894546 "ODEPAL" 1894827 NIL ODEPAL (NIL T T T T) -7 NIL NIL NIL) (-811 1890346 1891137 1892001 "ODEPACK" 1893340 T ODEPACK (NIL) -7 NIL NIL NIL) (-810 1889407 1889514 1889736 "ODEINT" 1890235 NIL ODEINT (NIL T T) -7 NIL NIL NIL) (-809 1883508 1884933 1886380 "ODEIFTBL" 1887980 T ODEIFTBL (NIL) -8 NIL NIL NIL) (-808 1878906 1879692 1880644 "ODEEF" 1882667 NIL ODEEF (NIL T T) -7 NIL NIL NIL) (-807 1878255 1878344 1878567 "ODECONST" 1878811 NIL ODECONST (NIL T T T) -7 NIL NIL NIL) (-806 1876380 1877041 1877069 "ODECAT" 1877674 T ODECAT (NIL) -9 NIL 1878205 NIL) (-805 1873235 1876085 1876207 "OCT" 1876290 NIL OCT (NIL T) -8 NIL NIL NIL) (-804 1872873 1872916 1873043 "OCTCT2" 1873186 NIL OCTCT2 (NIL T T T T) -7 NIL NIL NIL) (-803 1867522 1869957 1869997 "OC" 1871094 NIL OC (NIL T) -9 NIL 1871952 NIL) (-802 1864749 1865497 1866487 "OC-" 1866581 NIL OC- (NIL T T) -8 NIL NIL NIL) (-801 1864101 1864569 1864597 "OCAMON" 1864602 T OCAMON (NIL) -9 NIL 1864623 NIL) (-800 1863632 1863973 1864001 "OASGP" 1864006 T OASGP (NIL) -9 NIL 1864026 NIL) (-799 1862893 1863382 1863410 "OAMONS" 1863450 T OAMONS (NIL) -9 NIL 1863493 NIL) (-798 1862307 1862740 1862768 "OAMON" 1862773 T OAMON (NIL) -9 NIL 1862793 NIL) (-797 1861565 1862083 1862111 "OAGROUP" 1862116 T OAGROUP (NIL) -9 NIL 1862136 NIL) (-796 1861255 1861305 1861393 "NUMTUBE" 1861509 NIL NUMTUBE (NIL T) -7 NIL NIL NIL) (-795 1854828 1856346 1857882 "NUMQUAD" 1859739 T NUMQUAD (NIL) -7 NIL NIL NIL) (-794 1850584 1851572 1852597 "NUMODE" 1853823 T NUMODE (NIL) -7 NIL NIL NIL) (-793 1847939 1848819 1848847 "NUMINT" 1849770 T NUMINT (NIL) -9 NIL 1850534 NIL) (-792 1846887 1847084 1847302 "NUMFMT" 1847741 T NUMFMT (NIL) -7 NIL NIL NIL) (-791 1833246 1836191 1838723 "NUMERIC" 1844394 NIL NUMERIC (NIL T) -7 NIL NIL NIL) (-790 1827616 1832695 1832790 "NTSCAT" 1832795 NIL NTSCAT (NIL T T T T) -9 NIL 1832834 NIL) (-789 1826810 1826975 1827168 "NTPOLFN" 1827455 NIL NTPOLFN (NIL T) -7 NIL NIL NIL) (-788 1814887 1823635 1824447 "NSUP" 1826031 NIL NSUP (NIL T) -8 NIL NIL NIL) (-787 1814519 1814576 1814685 "NSUP2" 1814824 NIL NSUP2 (NIL T T) -7 NIL NIL NIL) (-786 1804745 1814293 1814426 "NSMP" 1814431 NIL NSMP (NIL T T) -8 NIL NIL NIL) (-785 1803177 1803478 1803835 "NREP" 1804433 NIL NREP (NIL T) -7 NIL NIL NIL) (-784 1801768 1802020 1802378 "NPCOEF" 1802920 NIL NPCOEF (NIL T T T T T) -7 NIL NIL NIL) (-783 1800834 1800949 1801165 "NORMRETR" 1801649 NIL NORMRETR (NIL T T T T NIL) -7 NIL NIL NIL) (-782 1798875 1799165 1799574 "NORMPK" 1800542 NIL NORMPK (NIL T T T T T) -7 NIL NIL NIL) (-781 1798560 1798588 1798712 "NORMMA" 1798841 NIL NORMMA (NIL T T T T) -7 NIL NIL NIL) (-780 1798360 1798517 1798546 "NONE" 1798551 T NONE (NIL) -8 NIL NIL NIL) (-779 1798149 1798178 1798247 "NONE1" 1798324 NIL NONE1 (NIL T) -7 NIL NIL NIL) (-778 1797646 1797708 1797887 "NODE1" 1798081 NIL NODE1 (NIL T T) -7 NIL NIL NIL) (-777 1795931 1796782 1797037 "NNI" 1797384 T NNI (NIL) -8 NIL NIL 1797619) (-776 1794351 1794664 1795028 "NLINSOL" 1795599 NIL NLINSOL (NIL T) -7 NIL NIL NIL) (-775 1790592 1791587 1792486 "NIPROB" 1793472 T NIPROB (NIL) -8 NIL NIL NIL) (-774 1789349 1789583 1789885 "NFINTBAS" 1790354 NIL NFINTBAS (NIL T T) -7 NIL NIL NIL) (-773 1788523 1788999 1789040 "NETCLT" 1789212 NIL NETCLT (NIL T) -9 NIL 1789294 NIL) (-772 1787231 1787462 1787743 "NCODIV" 1788291 NIL NCODIV (NIL T T) -7 NIL NIL NIL) (-771 1786993 1787030 1787105 "NCNTFRAC" 1787188 NIL NCNTFRAC (NIL T) -7 NIL NIL NIL) (-770 1785173 1785537 1785957 "NCEP" 1786618 NIL NCEP (NIL T) -7 NIL NIL NIL) (-769 1784024 1784797 1784825 "NASRING" 1784935 T NASRING (NIL) -9 NIL 1785015 NIL) (-768 1783819 1783863 1783957 "NASRING-" 1783962 NIL NASRING- (NIL T) -8 NIL NIL NIL) (-767 1782926 1783451 1783479 "NARNG" 1783596 T NARNG (NIL) -9 NIL 1783687 NIL) (-766 1782618 1782685 1782819 "NARNG-" 1782824 NIL NARNG- (NIL T) -8 NIL NIL NIL) (-765 1781497 1781704 1781939 "NAGSP" 1782403 T NAGSP (NIL) -7 NIL NIL NIL) (-764 1772769 1774453 1776126 "NAGS" 1779844 T NAGS (NIL) -7 NIL NIL NIL) (-763 1771317 1771625 1771956 "NAGF07" 1772458 T NAGF07 (NIL) -7 NIL NIL NIL) (-762 1765855 1767146 1768453 "NAGF04" 1770030 T NAGF04 (NIL) -7 NIL NIL NIL) (-761 1758823 1760437 1762070 "NAGF02" 1764242 T NAGF02 (NIL) -7 NIL NIL NIL) (-760 1754047 1755147 1756264 "NAGF01" 1757726 T NAGF01 (NIL) -7 NIL NIL NIL) (-759 1747675 1749241 1750826 "NAGE04" 1752482 T NAGE04 (NIL) -7 NIL NIL NIL) (-758 1738844 1740965 1743095 "NAGE02" 1745565 T NAGE02 (NIL) -7 NIL NIL NIL) (-757 1734797 1735744 1736708 "NAGE01" 1737900 T NAGE01 (NIL) -7 NIL NIL NIL) (-756 1732592 1733126 1733684 "NAGD03" 1734259 T NAGD03 (NIL) -7 NIL NIL NIL) (-755 1724342 1726270 1728224 "NAGD02" 1730658 T NAGD02 (NIL) -7 NIL NIL NIL) (-754 1718153 1719578 1721018 "NAGD01" 1722922 T NAGD01 (NIL) -7 NIL NIL NIL) (-753 1714362 1715184 1716021 "NAGC06" 1717336 T NAGC06 (NIL) -7 NIL NIL NIL) (-752 1712827 1713159 1713515 "NAGC05" 1714026 T NAGC05 (NIL) -7 NIL NIL NIL) (-751 1712203 1712322 1712466 "NAGC02" 1712703 T NAGC02 (NIL) -7 NIL NIL NIL) (-750 1711162 1711745 1711785 "NAALG" 1711864 NIL NAALG (NIL T) -9 NIL 1711925 NIL) (-749 1710997 1711026 1711116 "NAALG-" 1711121 NIL NAALG- (NIL T T) -8 NIL NIL NIL) (-748 1704947 1706055 1707242 "MULTSQFR" 1709893 NIL MULTSQFR (NIL T T T T) -7 NIL NIL NIL) (-747 1704266 1704341 1704525 "MULTFACT" 1704859 NIL MULTFACT (NIL T T T T) -7 NIL NIL NIL) (-746 1696990 1700903 1700956 "MTSCAT" 1702026 NIL MTSCAT (NIL T T) -9 NIL 1702541 NIL) (-745 1696702 1696756 1696848 "MTHING" 1696930 NIL MTHING (NIL T) -7 NIL NIL NIL) (-744 1696494 1696527 1696587 "MSYSCMD" 1696662 T MSYSCMD (NIL) -7 NIL NIL NIL) (-743 1692576 1695249 1695569 "MSET" 1696207 NIL MSET (NIL T) -8 NIL NIL NIL) (-742 1689645 1692137 1692178 "MSETAGG" 1692183 NIL MSETAGG (NIL T) -9 NIL 1692217 NIL) (-741 1685487 1687024 1687769 "MRING" 1688945 NIL MRING (NIL T T) -8 NIL NIL NIL) (-740 1685053 1685120 1685251 "MRF2" 1685414 NIL MRF2 (NIL T T T) -7 NIL NIL NIL) (-739 1684671 1684706 1684850 "MRATFAC" 1685012 NIL MRATFAC (NIL T T T T) -7 NIL NIL NIL) (-738 1682283 1682578 1683009 "MPRFF" 1684376 NIL MPRFF (NIL T T T T) -7 NIL NIL NIL) (-737 1676580 1682137 1682234 "MPOLY" 1682239 NIL MPOLY (NIL NIL T) -8 NIL NIL NIL) (-736 1676070 1676105 1676313 "MPCPF" 1676539 NIL MPCPF (NIL T T T T) -7 NIL NIL NIL) (-735 1675584 1675627 1675811 "MPC3" 1676021 NIL MPC3 (NIL T T T T T T T) -7 NIL NIL NIL) (-734 1674779 1674860 1675081 "MPC2" 1675499 NIL MPC2 (NIL T T T T T T T) -7 NIL NIL NIL) (-733 1673080 1673417 1673807 "MONOTOOL" 1674439 NIL MONOTOOL (NIL T T) -7 NIL NIL NIL) (-732 1672305 1672622 1672650 "MONOID" 1672869 T MONOID (NIL) -9 NIL 1673016 NIL) (-731 1671851 1671970 1672151 "MONOID-" 1672156 NIL MONOID- (NIL T) -8 NIL NIL NIL) (-730 1662326 1668277 1668336 "MONOGEN" 1669010 NIL MONOGEN (NIL T T) -9 NIL 1669466 NIL) (-729 1659544 1660279 1661279 "MONOGEN-" 1661398 NIL MONOGEN- (NIL T T T) -8 NIL NIL NIL) (-728 1658377 1658823 1658851 "MONADWU" 1659243 T MONADWU (NIL) -9 NIL 1659481 NIL) (-727 1657749 1657908 1658156 "MONADWU-" 1658161 NIL MONADWU- (NIL T) -8 NIL NIL NIL) (-726 1657108 1657352 1657380 "MONAD" 1657587 T MONAD (NIL) -9 NIL 1657699 NIL) (-725 1656793 1656871 1657003 "MONAD-" 1657008 NIL MONAD- (NIL T) -8 NIL NIL NIL) (-724 1655082 1655706 1655985 "MOEBIUS" 1656546 NIL MOEBIUS (NIL T) -8 NIL NIL NIL) (-723 1654360 1654764 1654804 "MODULE" 1654809 NIL MODULE (NIL T) -9 NIL 1654848 NIL) (-722 1653928 1654024 1654214 "MODULE-" 1654219 NIL MODULE- (NIL T T) -8 NIL NIL NIL) (-721 1651608 1652292 1652619 "MODRING" 1653752 NIL MODRING (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-720 1648552 1649713 1650234 "MODOP" 1651137 NIL MODOP (NIL T T) -8 NIL NIL NIL) (-719 1647140 1647619 1647896 "MODMONOM" 1648415 NIL MODMONOM (NIL T T NIL) -8 NIL NIL NIL) (-718 1637184 1645431 1645845 "MODMON" 1646777 NIL MODMON (NIL T T) -8 NIL NIL NIL) (-717 1634340 1636028 1636304 "MODFIELD" 1637059 NIL MODFIELD (NIL T T NIL NIL NIL) -8 NIL NIL NIL) (-716 1633317 1633621 1633811 "MMLFORM" 1634170 T MMLFORM (NIL) -8 NIL NIL NIL) (-715 1632843 1632886 1633065 "MMAP" 1633268 NIL MMAP (NIL T T T T T T) -7 NIL NIL NIL) (-714 1630922 1631689 1631730 "MLO" 1632153 NIL MLO (NIL T) -9 NIL 1632395 NIL) (-713 1628288 1628804 1629406 "MLIFT" 1630403 NIL MLIFT (NIL T T T T) -7 NIL NIL NIL) (-712 1627679 1627763 1627917 "MKUCFUNC" 1628199 NIL MKUCFUNC (NIL T T T) -7 NIL NIL NIL) (-711 1627278 1627348 1627471 "MKRECORD" 1627602 NIL MKRECORD (NIL T T) -7 NIL NIL NIL) (-710 1626325 1626487 1626715 "MKFUNC" 1627089 NIL MKFUNC (NIL T) -7 NIL NIL NIL) (-709 1625713 1625817 1625973 "MKFLCFN" 1626208 NIL MKFLCFN (NIL T) -7 NIL NIL NIL) (-708 1624990 1625092 1625277 "MKBCFUNC" 1625606 NIL MKBCFUNC (NIL T T T T) -7 NIL NIL NIL) (-707 1621697 1624544 1624680 "MINT" 1624874 T MINT (NIL) -8 NIL NIL NIL) (-706 1620509 1620752 1621029 "MHROWRED" 1621452 NIL MHROWRED (NIL T) -7 NIL NIL NIL) (-705 1615889 1619044 1619449 "MFLOAT" 1620124 T MFLOAT (NIL) -8 NIL NIL NIL) (-704 1615246 1615322 1615493 "MFINFACT" 1615801 NIL MFINFACT (NIL T T T T) -7 NIL NIL NIL) (-703 1611561 1612409 1613293 "MESH" 1614382 T MESH (NIL) -7 NIL NIL NIL) (-702 1609951 1610263 1610616 "MDDFACT" 1611248 NIL MDDFACT (NIL T) -7 NIL NIL NIL) (-701 1606746 1609110 1609151 "MDAGG" 1609406 NIL MDAGG (NIL T) -9 NIL 1609549 NIL) (-700 1596486 1606039 1606246 "MCMPLX" 1606559 T MCMPLX (NIL) -8 NIL NIL NIL) (-699 1595623 1595769 1595970 "MCDEN" 1596335 NIL MCDEN (NIL T T) -7 NIL NIL NIL) (-698 1593513 1593783 1594163 "MCALCFN" 1595353 NIL MCALCFN (NIL T T T T) -7 NIL NIL NIL) (-697 1592438 1592678 1592911 "MAYBE" 1593319 NIL MAYBE (NIL T) -8 NIL NIL NIL) (-696 1590050 1590573 1591135 "MATSTOR" 1591909 NIL MATSTOR (NIL T) -7 NIL NIL NIL) (-695 1586007 1589422 1589670 "MATRIX" 1589835 NIL MATRIX (NIL T) -8 NIL NIL NIL) (-694 1581773 1582480 1583216 "MATLIN" 1585364 NIL MATLIN (NIL T T T T) -7 NIL NIL NIL) (-693 1571879 1575065 1575142 "MATCAT" 1580022 NIL MATCAT (NIL T T T) -9 NIL 1581439 NIL) (-692 1568235 1569256 1570612 "MATCAT-" 1570617 NIL MATCAT- (NIL T T T T) -8 NIL NIL NIL) (-691 1566829 1566982 1567315 "MATCAT2" 1568070 NIL MATCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-690 1564941 1565265 1565649 "MAPPKG3" 1566504 NIL MAPPKG3 (NIL T T T) -7 NIL NIL NIL) (-689 1563922 1564095 1564317 "MAPPKG2" 1564765 NIL MAPPKG2 (NIL T T) -7 NIL NIL NIL) (-688 1562421 1562705 1563032 "MAPPKG1" 1563628 NIL MAPPKG1 (NIL T) -7 NIL NIL NIL) (-687 1561500 1561827 1562004 "MAPPAST" 1562264 T MAPPAST (NIL) -8 NIL NIL NIL) (-686 1561111 1561169 1561292 "MAPHACK3" 1561436 NIL MAPHACK3 (NIL T T T) -7 NIL NIL NIL) (-685 1560703 1560764 1560878 "MAPHACK2" 1561043 NIL MAPHACK2 (NIL T T) -7 NIL NIL NIL) (-684 1560141 1560244 1560386 "MAPHACK1" 1560594 NIL MAPHACK1 (NIL T) -7 NIL NIL NIL) (-683 1558220 1558841 1559145 "MAGMA" 1559869 NIL MAGMA (NIL T) -8 NIL NIL NIL) (-682 1557699 1557944 1558035 "MACROAST" 1558149 T MACROAST (NIL) -8 NIL NIL NIL) (-681 1554117 1555938 1556399 "M3D" 1557271 NIL M3D (NIL T) -8 NIL NIL NIL) (-680 1548223 1552486 1552527 "LZSTAGG" 1553309 NIL LZSTAGG (NIL T) -9 NIL 1553604 NIL) (-679 1544181 1545354 1546811 "LZSTAGG-" 1546816 NIL LZSTAGG- (NIL T T) -8 NIL NIL NIL) (-678 1541268 1542072 1542559 "LWORD" 1543726 NIL LWORD (NIL T) -8 NIL NIL NIL) (-677 1540844 1541072 1541147 "LSTAST" 1541213 T LSTAST (NIL) -8 NIL NIL NIL) (-676 1534010 1540615 1540749 "LSQM" 1540754 NIL LSQM (NIL NIL T) -8 NIL NIL NIL) (-675 1533234 1533373 1533601 "LSPP" 1533865 NIL LSPP (NIL T T T T) -7 NIL NIL NIL) (-674 1531046 1531347 1531803 "LSMP" 1532923 NIL LSMP (NIL T T T T) -7 NIL NIL NIL) (-673 1527825 1528499 1529229 "LSMP1" 1530348 NIL LSMP1 (NIL T) -7 NIL NIL NIL) (-672 1521702 1526992 1527033 "LSAGG" 1527095 NIL LSAGG (NIL T) -9 NIL 1527173 NIL) (-671 1518397 1519321 1520534 "LSAGG-" 1520539 NIL LSAGG- (NIL T T) -8 NIL NIL NIL) (-670 1515996 1517541 1517790 "LPOLY" 1518192 NIL LPOLY (NIL T T) -8 NIL NIL NIL) (-669 1515578 1515663 1515786 "LPEFRAC" 1515905 NIL LPEFRAC (NIL T) -7 NIL NIL NIL) (-668 1513899 1514672 1514925 "LO" 1515410 NIL LO (NIL T T T) -8 NIL NIL NIL) (-667 1513551 1513663 1513691 "LOGIC" 1513802 T LOGIC (NIL) -9 NIL 1513883 NIL) (-666 1513413 1513436 1513507 "LOGIC-" 1513512 NIL LOGIC- (NIL T) -8 NIL NIL NIL) (-665 1512606 1512746 1512939 "LODOOPS" 1513269 NIL LODOOPS (NIL T T) -7 NIL NIL NIL) (-664 1510029 1512522 1512588 "LODO" 1512593 NIL LODO (NIL T NIL) -8 NIL NIL NIL) (-663 1508567 1508802 1509155 "LODOF" 1509776 NIL LODOF (NIL T T) -7 NIL NIL NIL) (-662 1504785 1507216 1507257 "LODOCAT" 1507695 NIL LODOCAT (NIL T) -9 NIL 1507906 NIL) (-661 1504518 1504576 1504703 "LODOCAT-" 1504708 NIL LODOCAT- (NIL T T) -8 NIL NIL NIL) (-660 1501838 1504359 1504477 "LODO2" 1504482 NIL LODO2 (NIL T T) -8 NIL NIL NIL) (-659 1499273 1501775 1501820 "LODO1" 1501825 NIL LODO1 (NIL T) -8 NIL NIL NIL) (-658 1498154 1498319 1498624 "LODEEF" 1499096 NIL LODEEF (NIL T T T) -7 NIL NIL NIL) (-657 1493393 1496284 1496325 "LNAGG" 1497272 NIL LNAGG (NIL T) -9 NIL 1497716 NIL) (-656 1492540 1492754 1493096 "LNAGG-" 1493101 NIL LNAGG- (NIL T T) -8 NIL NIL NIL) (-655 1488676 1489465 1490104 "LMOPS" 1491955 NIL LMOPS (NIL T T NIL) -8 NIL NIL NIL) (-654 1488079 1488467 1488508 "LMODULE" 1488513 NIL LMODULE (NIL T) -9 NIL 1488539 NIL) (-653 1485277 1487724 1487847 "LMDICT" 1487989 NIL LMDICT (NIL T) -8 NIL NIL NIL) (-652 1484683 1484904 1484945 "LLINSET" 1485136 NIL LLINSET (NIL T) -9 NIL 1485227 NIL) (-651 1484382 1484591 1484651 "LITERAL" 1484656 NIL LITERAL (NIL T) -8 NIL NIL NIL) (-650 1477545 1483316 1483620 "LIST" 1484111 NIL LIST (NIL T) -8 NIL NIL NIL) (-649 1477070 1477144 1477283 "LIST3" 1477465 NIL LIST3 (NIL T T T) -7 NIL NIL NIL) (-648 1476077 1476255 1476483 "LIST2" 1476888 NIL LIST2 (NIL T T) -7 NIL NIL NIL) (-647 1474211 1474523 1474922 "LIST2MAP" 1475724 NIL LIST2MAP (NIL T T) -7 NIL NIL NIL) (-646 1473807 1474044 1474085 "LINSET" 1474090 NIL LINSET (NIL T) -9 NIL 1474124 NIL) (-645 1472468 1473138 1473179 "LINEXP" 1473434 NIL LINEXP (NIL T) -9 NIL 1473583 NIL) (-644 1471115 1471375 1471672 "LINDEP" 1472220 NIL LINDEP (NIL T T) -7 NIL NIL NIL) (-643 1467882 1468601 1469378 "LIMITRF" 1470370 NIL LIMITRF (NIL T) -7 NIL NIL NIL) (-642 1466185 1466481 1466890 "LIMITPS" 1467577 NIL LIMITPS (NIL T T) -7 NIL NIL NIL) (-641 1460613 1465696 1465924 "LIE" 1466006 NIL LIE (NIL T T) -8 NIL NIL NIL) (-640 1459561 1460030 1460070 "LIECAT" 1460210 NIL LIECAT (NIL T) -9 NIL 1460361 NIL) (-639 1459402 1459429 1459517 "LIECAT-" 1459522 NIL LIECAT- (NIL T T) -8 NIL NIL NIL) (-638 1451898 1458851 1459016 "LIB" 1459257 T LIB (NIL) -8 NIL NIL NIL) (-637 1447533 1448416 1449351 "LGROBP" 1451015 NIL LGROBP (NIL NIL T) -7 NIL NIL NIL) (-636 1445531 1445805 1446155 "LF" 1447254 NIL LF (NIL T T) -7 NIL NIL NIL) (-635 1444371 1445063 1445091 "LFCAT" 1445298 T LFCAT (NIL) -9 NIL 1445437 NIL) (-634 1441273 1441903 1442591 "LEXTRIPK" 1443735 NIL LEXTRIPK (NIL T NIL) -7 NIL NIL NIL) (-633 1438017 1438843 1439346 "LEXP" 1440853 NIL LEXP (NIL T T NIL) -8 NIL NIL NIL) (-632 1437493 1437738 1437830 "LETAST" 1437945 T LETAST (NIL) -8 NIL NIL NIL) (-631 1435891 1436204 1436605 "LEADCDET" 1437175 NIL LEADCDET (NIL T T T T) -7 NIL NIL NIL) (-630 1435081 1435155 1435384 "LAZM3PK" 1435812 NIL LAZM3PK (NIL T T T T T T) -7 NIL NIL NIL) (-629 1429998 1433158 1433696 "LAUPOL" 1434593 NIL LAUPOL (NIL T T) -8 NIL NIL NIL) (-628 1429577 1429621 1429782 "LAPLACE" 1429948 NIL LAPLACE (NIL T T) -7 NIL NIL NIL) (-627 1427516 1428678 1428929 "LA" 1429410 NIL LA (NIL T T T) -8 NIL NIL NIL) (-626 1426510 1427094 1427135 "LALG" 1427197 NIL LALG (NIL T) -9 NIL 1427256 NIL) (-625 1426224 1426283 1426419 "LALG-" 1426424 NIL LALG- (NIL T T) -8 NIL NIL NIL) (-624 1426059 1426083 1426124 "KVTFROM" 1426186 NIL KVTFROM (NIL T) -9 NIL NIL NIL) (-623 1424982 1425426 1425611 "KTVLOGIC" 1425894 T KTVLOGIC (NIL) -8 NIL NIL NIL) (-622 1424817 1424841 1424882 "KRCFROM" 1424944 NIL KRCFROM (NIL T) -9 NIL NIL NIL) (-621 1423721 1423908 1424207 "KOVACIC" 1424617 NIL KOVACIC (NIL T T) -7 NIL NIL NIL) (-620 1423556 1423580 1423621 "KONVERT" 1423683 NIL KONVERT (NIL T) -9 NIL NIL NIL) (-619 1423391 1423415 1423456 "KOERCE" 1423518 NIL KOERCE (NIL T) -9 NIL NIL NIL) (-618 1421221 1421984 1422361 "KERNEL" 1423047 NIL KERNEL (NIL T) -8 NIL NIL NIL) (-617 1420717 1420798 1420930 "KERNEL2" 1421135 NIL KERNEL2 (NIL T T) -7 NIL NIL NIL) (-616 1414487 1419256 1419310 "KDAGG" 1419687 NIL KDAGG (NIL T T) -9 NIL 1419893 NIL) (-615 1414016 1414140 1414345 "KDAGG-" 1414350 NIL KDAGG- (NIL T T T) -8 NIL NIL NIL) (-614 1407164 1413677 1413832 "KAFILE" 1413894 NIL KAFILE (NIL T) -8 NIL NIL NIL) (-613 1401592 1406675 1406903 "JORDAN" 1406985 NIL JORDAN (NIL T T) -8 NIL NIL NIL) (-612 1400971 1401241 1401362 "JOINAST" 1401491 T JOINAST (NIL) -8 NIL NIL NIL) (-611 1400817 1400876 1400931 "JAVACODE" 1400936 T JAVACODE (NIL) -8 NIL NIL NIL) (-610 1397069 1399022 1399076 "IXAGG" 1400005 NIL IXAGG (NIL T T) -9 NIL 1400464 NIL) (-609 1395988 1396294 1396713 "IXAGG-" 1396718 NIL IXAGG- (NIL T T T) -8 NIL NIL NIL) (-608 1391518 1395910 1395969 "IVECTOR" 1395974 NIL IVECTOR (NIL T NIL) -8 NIL NIL NIL) (-607 1390284 1390521 1390787 "ITUPLE" 1391285 NIL ITUPLE (NIL T) -8 NIL NIL NIL) (-606 1388786 1388963 1389258 "ITRIGMNP" 1390106 NIL ITRIGMNP (NIL T T T) -7 NIL NIL NIL) (-605 1387531 1387735 1388018 "ITFUN3" 1388562 NIL ITFUN3 (NIL T T T) -7 NIL NIL NIL) (-604 1387163 1387220 1387329 "ITFUN2" 1387468 NIL ITFUN2 (NIL T T) -7 NIL NIL NIL) (-603 1386322 1386643 1386817 "ITFORM" 1387009 T ITFORM (NIL) -8 NIL NIL NIL) (-602 1384283 1385342 1385620 "ITAYLOR" 1386077 NIL ITAYLOR (NIL T) -8 NIL NIL NIL) (-601 1373228 1378420 1379583 "ISUPS" 1383153 NIL ISUPS (NIL T) -8 NIL NIL NIL) (-600 1372332 1372472 1372708 "ISUMP" 1373075 NIL ISUMP (NIL T T T T) -7 NIL NIL NIL) (-599 1367707 1372277 1372318 "ISTRING" 1372323 NIL ISTRING (NIL NIL) -8 NIL NIL NIL) (-598 1367183 1367428 1367520 "ISAST" 1367635 T ISAST (NIL) -8 NIL NIL NIL) (-597 1366392 1366474 1366690 "IRURPK" 1367097 NIL IRURPK (NIL T T T T T) -7 NIL NIL NIL) (-596 1365328 1365529 1365769 "IRSN" 1366172 T IRSN (NIL) -7 NIL NIL NIL) (-595 1363399 1363754 1364183 "IRRF2F" 1364966 NIL IRRF2F (NIL T) -7 NIL NIL NIL) (-594 1363146 1363184 1363260 "IRREDFFX" 1363355 NIL IRREDFFX (NIL T) -7 NIL NIL NIL) (-593 1361761 1362020 1362319 "IROOT" 1362879 NIL IROOT (NIL T) -7 NIL NIL NIL) (-592 1358365 1359445 1360137 "IR" 1361101 NIL IR (NIL T) -8 NIL NIL NIL) (-591 1357570 1357858 1358009 "IRFORM" 1358234 T IRFORM (NIL) -8 NIL NIL NIL) (-590 1355183 1355678 1356244 "IR2" 1357048 NIL IR2 (NIL T T) -7 NIL NIL NIL) (-589 1354283 1354396 1354610 "IR2F" 1355066 NIL IR2F (NIL T T) -7 NIL NIL NIL) (-588 1354074 1354108 1354168 "IPRNTPK" 1354243 T IPRNTPK (NIL) -7 NIL NIL NIL) (-587 1350655 1353963 1354032 "IPF" 1354037 NIL IPF (NIL NIL) -8 NIL NIL NIL) (-586 1348982 1350580 1350637 "IPADIC" 1350642 NIL IPADIC (NIL NIL NIL) -8 NIL NIL NIL) (-585 1348294 1348542 1348672 "IP4ADDR" 1348872 T IP4ADDR (NIL) -8 NIL NIL NIL) (-584 1347668 1347923 1348055 "IOMODE" 1348182 T IOMODE (NIL) -8 NIL NIL NIL) (-583 1346741 1347265 1347392 "IOBFILE" 1347561 T IOBFILE (NIL) -8 NIL NIL NIL) (-582 1346229 1346645 1346673 "IOBCON" 1346678 T IOBCON (NIL) -9 NIL 1346699 NIL) (-581 1345740 1345798 1345981 "INVLAPLA" 1346165 NIL INVLAPLA (NIL T T) -7 NIL NIL NIL) (-580 1335388 1337742 1340128 "INTTR" 1343404 NIL INTTR (NIL T T) -7 NIL NIL NIL) (-579 1331723 1332465 1333330 "INTTOOLS" 1334573 NIL INTTOOLS (NIL T T) -7 NIL NIL NIL) (-578 1331309 1331400 1331517 "INTSLPE" 1331626 T INTSLPE (NIL) -7 NIL NIL NIL) (-577 1329262 1331232 1331291 "INTRVL" 1331296 NIL INTRVL (NIL T) -8 NIL NIL NIL) (-576 1326864 1327376 1327951 "INTRF" 1328747 NIL INTRF (NIL T) -7 NIL NIL NIL) (-575 1326275 1326372 1326514 "INTRET" 1326762 NIL INTRET (NIL T) -7 NIL NIL NIL) (-574 1324272 1324661 1325131 "INTRAT" 1325883 NIL INTRAT (NIL T T) -7 NIL NIL NIL) (-573 1321535 1322118 1322737 "INTPM" 1323757 NIL INTPM (NIL T T) -7 NIL NIL NIL) (-572 1318280 1318879 1319617 "INTPAF" 1320921 NIL INTPAF (NIL T T T) -7 NIL NIL NIL) (-571 1313459 1314421 1315472 "INTPACK" 1317249 T INTPACK (NIL) -7 NIL NIL NIL) (-570 1310407 1313256 1313365 "INT" 1313370 T INT (NIL) -8 NIL NIL NIL) (-569 1309659 1309811 1310019 "INTHERTR" 1310249 NIL INTHERTR (NIL T T) -7 NIL NIL NIL) (-568 1309098 1309178 1309366 "INTHERAL" 1309573 NIL INTHERAL (NIL T T T T) -7 NIL NIL NIL) (-567 1306944 1307387 1307844 "INTHEORY" 1308661 T INTHEORY (NIL) -7 NIL NIL NIL) (-566 1298350 1299971 1301743 "INTG0" 1305296 NIL INTG0 (NIL T T T) -7 NIL NIL NIL) (-565 1278923 1283713 1288523 "INTFTBL" 1293560 T INTFTBL (NIL) -8 NIL NIL NIL) (-564 1278172 1278310 1278483 "INTFACT" 1278782 NIL INTFACT (NIL T) -7 NIL NIL NIL) (-563 1275599 1276045 1276602 "INTEF" 1277726 NIL INTEF (NIL T T) -7 NIL NIL NIL) (-562 1273966 1274705 1274733 "INTDOM" 1275034 T INTDOM (NIL) -9 NIL 1275241 NIL) (-561 1273335 1273509 1273751 "INTDOM-" 1273756 NIL INTDOM- (NIL T) -8 NIL NIL NIL) (-560 1269723 1271651 1271705 "INTCAT" 1272504 NIL INTCAT (NIL T) -9 NIL 1272825 NIL) (-559 1269195 1269298 1269426 "INTBIT" 1269615 T INTBIT (NIL) -7 NIL NIL NIL) (-558 1267894 1268048 1268355 "INTALG" 1269040 NIL INTALG (NIL T T T T T) -7 NIL NIL NIL) (-557 1267377 1267467 1267624 "INTAF" 1267798 NIL INTAF (NIL T T) -7 NIL NIL NIL) (-556 1260720 1267187 1267327 "INTABL" 1267332 NIL INTABL (NIL T T T) -8 NIL NIL NIL) (-555 1260061 1260527 1260592 "INT8" 1260626 T INT8 (NIL) -8 NIL NIL 1260671) (-554 1259401 1259867 1259932 "INT64" 1259966 T INT64 (NIL) -8 NIL NIL 1260011) (-553 1258741 1259207 1259272 "INT32" 1259306 T INT32 (NIL) -8 NIL NIL 1259351) (-552 1258081 1258547 1258612 "INT16" 1258646 T INT16 (NIL) -8 NIL NIL 1258691) (-551 1252991 1255704 1255732 "INS" 1256666 T INS (NIL) -9 NIL 1257331 NIL) (-550 1250231 1251002 1251976 "INS-" 1252049 NIL INS- (NIL T) -8 NIL NIL NIL) (-549 1249006 1249233 1249531 "INPSIGN" 1249984 NIL INPSIGN (NIL T T) -7 NIL NIL NIL) (-548 1248124 1248241 1248438 "INPRODPF" 1248886 NIL INPRODPF (NIL T T) -7 NIL NIL NIL) (-547 1247018 1247135 1247372 "INPRODFF" 1248004 NIL INPRODFF (NIL T T T T) -7 NIL NIL NIL) (-546 1246018 1246170 1246430 "INNMFACT" 1246854 NIL INNMFACT (NIL T T T T) -7 NIL NIL NIL) (-545 1245215 1245312 1245500 "INMODGCD" 1245917 NIL INMODGCD (NIL T T NIL NIL) -7 NIL NIL NIL) (-544 1243723 1243968 1244292 "INFSP" 1244960 NIL INFSP (NIL T T T) -7 NIL NIL NIL) (-543 1242907 1243024 1243207 "INFPROD0" 1243603 NIL INFPROD0 (NIL T T) -7 NIL NIL NIL) (-542 1239762 1240972 1241487 "INFORM" 1242400 T INFORM (NIL) -8 NIL NIL NIL) (-541 1239372 1239432 1239530 "INFORM1" 1239697 NIL INFORM1 (NIL T) -7 NIL NIL NIL) (-540 1238895 1238984 1239098 "INFINITY" 1239278 T INFINITY (NIL) -7 NIL NIL NIL) (-539 1238071 1238615 1238716 "INETCLTS" 1238814 T INETCLTS (NIL) -8 NIL NIL NIL) (-538 1236687 1236937 1237258 "INEP" 1237819 NIL INEP (NIL T T T) -7 NIL NIL NIL) (-537 1235936 1236584 1236649 "INDE" 1236654 NIL INDE (NIL T) -8 NIL NIL NIL) (-536 1235500 1235568 1235685 "INCRMAPS" 1235863 NIL INCRMAPS (NIL T) -7 NIL NIL NIL) (-535 1234318 1234769 1234975 "INBFILE" 1235314 T INBFILE (NIL) -8 NIL NIL NIL) (-534 1229617 1230554 1231498 "INBFF" 1233406 NIL INBFF (NIL T) -7 NIL NIL NIL) (-533 1228525 1228794 1228822 "INBCON" 1229335 T INBCON (NIL) -9 NIL 1229601 NIL) (-532 1227777 1228000 1228276 "INBCON-" 1228281 NIL INBCON- (NIL T) -8 NIL NIL NIL) (-531 1227256 1227501 1227592 "INAST" 1227706 T INAST (NIL) -8 NIL NIL NIL) (-530 1226683 1226935 1227041 "IMPTAST" 1227170 T IMPTAST (NIL) -8 NIL NIL NIL) (-529 1223129 1226527 1226631 "IMATRIX" 1226636 NIL IMATRIX (NIL T NIL NIL) -8 NIL NIL NIL) (-528 1221837 1221960 1222276 "IMATQF" 1222985 NIL IMATQF (NIL T T T T T T T T) -7 NIL NIL NIL) (-527 1220057 1220284 1220621 "IMATLIN" 1221593 NIL IMATLIN (NIL T T T T) -7 NIL NIL NIL) (-526 1214635 1219981 1220039 "ILIST" 1220044 NIL ILIST (NIL T NIL) -8 NIL NIL NIL) (-525 1212540 1214495 1214608 "IIARRAY2" 1214613 NIL IIARRAY2 (NIL T NIL NIL T T) -8 NIL NIL NIL) (-524 1207938 1212451 1212515 "IFF" 1212520 NIL IFF (NIL NIL NIL) -8 NIL NIL NIL) (-523 1207285 1207555 1207671 "IFAST" 1207842 T IFAST (NIL) -8 NIL NIL NIL) (-522 1202280 1206577 1206765 "IFARRAY" 1207142 NIL IFARRAY (NIL T NIL) -8 NIL NIL NIL) (-521 1201460 1202184 1202257 "IFAMON" 1202262 NIL IFAMON (NIL T T NIL) -8 NIL NIL NIL) (-520 1201044 1201109 1201163 "IEVALAB" 1201370 NIL IEVALAB (NIL T T) -9 NIL NIL NIL) (-519 1200719 1200787 1200947 "IEVALAB-" 1200952 NIL IEVALAB- (NIL T T T) -8 NIL NIL NIL) (-518 1200350 1200633 1200696 "IDPO" 1200701 NIL IDPO (NIL T T) -8 NIL NIL NIL) (-517 1199600 1200239 1200314 "IDPOAMS" 1200319 NIL IDPOAMS (NIL T T) -8 NIL NIL NIL) (-516 1198907 1199489 1199564 "IDPOAM" 1199569 NIL IDPOAM (NIL T T) -8 NIL NIL NIL) (-515 1197966 1198242 1198295 "IDPC" 1198708 NIL IDPC (NIL T T) -9 NIL 1198857 NIL) (-514 1197435 1197858 1197931 "IDPAM" 1197936 NIL IDPAM (NIL T T) -8 NIL NIL NIL) (-513 1196811 1197327 1197400 "IDPAG" 1197405 NIL IDPAG (NIL T T) -8 NIL NIL NIL) (-512 1196456 1196647 1196722 "IDENT" 1196756 T IDENT (NIL) -8 NIL NIL NIL) (-511 1192711 1193559 1194454 "IDECOMP" 1195613 NIL IDECOMP (NIL NIL NIL) -7 NIL NIL NIL) (-510 1185549 1186634 1187681 "IDEAL" 1191747 NIL IDEAL (NIL T T T T) -8 NIL NIL NIL) (-509 1184709 1184821 1185021 "ICDEN" 1185433 NIL ICDEN (NIL T T T T) -7 NIL NIL NIL) (-508 1183780 1184189 1184336 "ICARD" 1184582 T ICARD (NIL) -8 NIL NIL NIL) (-507 1181840 1182153 1182558 "IBPTOOLS" 1183457 NIL IBPTOOLS (NIL T T T T) -7 NIL NIL NIL) (-506 1177447 1181460 1181573 "IBITS" 1181759 NIL IBITS (NIL NIL) -8 NIL NIL NIL) (-505 1174170 1174746 1175441 "IBATOOL" 1176864 NIL IBATOOL (NIL T T T) -7 NIL NIL NIL) (-504 1171949 1172411 1172944 "IBACHIN" 1173705 NIL IBACHIN (NIL T T T) -7 NIL NIL NIL) (-503 1169778 1171795 1171898 "IARRAY2" 1171903 NIL IARRAY2 (NIL T NIL NIL) -8 NIL NIL NIL) (-502 1165884 1169704 1169761 "IARRAY1" 1169766 NIL IARRAY1 (NIL T NIL) -8 NIL NIL NIL) (-501 1159993 1164296 1164777 "IAN" 1165423 T IAN (NIL) -8 NIL NIL NIL) (-500 1159504 1159561 1159734 "IALGFACT" 1159930 NIL IALGFACT (NIL T T T T) -7 NIL NIL NIL) (-499 1159032 1159145 1159173 "HYPCAT" 1159380 T HYPCAT (NIL) -9 NIL NIL NIL) (-498 1158570 1158687 1158873 "HYPCAT-" 1158878 NIL HYPCAT- (NIL T) -8 NIL NIL NIL) (-497 1158165 1158365 1158448 "HOSTNAME" 1158507 T HOSTNAME (NIL) -8 NIL NIL NIL) (-496 1158010 1158047 1158088 "HOMOTOP" 1158093 NIL HOMOTOP (NIL T) -9 NIL 1158126 NIL) (-495 1154642 1156020 1156061 "HOAGG" 1157042 NIL HOAGG (NIL T) -9 NIL 1157721 NIL) (-494 1153236 1153635 1154161 "HOAGG-" 1154166 NIL HOAGG- (NIL T T) -8 NIL NIL NIL) (-493 1147238 1152829 1152979 "HEXADEC" 1153106 T HEXADEC (NIL) -8 NIL NIL NIL) (-492 1145986 1146208 1146471 "HEUGCD" 1147015 NIL HEUGCD (NIL T) -7 NIL NIL NIL) (-491 1145062 1145823 1145953 "HELLFDIV" 1145958 NIL HELLFDIV (NIL T T T T) -8 NIL NIL NIL) (-490 1143241 1144839 1144927 "HEAP" 1145006 NIL HEAP (NIL T) -8 NIL NIL NIL) (-489 1142504 1142793 1142927 "HEADAST" 1143127 T HEADAST (NIL) -8 NIL NIL NIL) (-488 1136370 1142419 1142481 "HDP" 1142486 NIL HDP (NIL NIL T) -8 NIL NIL NIL) (-487 1130358 1136005 1136157 "HDMP" 1136271 NIL HDMP (NIL NIL T) -8 NIL NIL NIL) (-486 1129682 1129822 1129986 "HB" 1130214 T HB (NIL) -7 NIL NIL NIL) (-485 1123068 1129528 1129632 "HASHTBL" 1129637 NIL HASHTBL (NIL T T NIL) -8 NIL NIL NIL) (-484 1122544 1122789 1122881 "HASAST" 1122996 T HASAST (NIL) -8 NIL NIL NIL) (-483 1120322 1122166 1122348 "HACKPI" 1122382 T HACKPI (NIL) -8 NIL NIL NIL) (-482 1115990 1120175 1120288 "GTSET" 1120293 NIL GTSET (NIL T T T T) -8 NIL NIL NIL) (-481 1109405 1115868 1115966 "GSTBL" 1115971 NIL GSTBL (NIL T T T NIL) -8 NIL NIL NIL) (-480 1101683 1108436 1108701 "GSERIES" 1109196 NIL GSERIES (NIL T NIL NIL) -8 NIL NIL NIL) (-479 1100824 1101241 1101269 "GROUP" 1101472 T GROUP (NIL) -9 NIL 1101606 NIL) (-478 1100190 1100349 1100600 "GROUP-" 1100605 NIL GROUP- (NIL T) -8 NIL NIL NIL) (-477 1098557 1098878 1099265 "GROEBSOL" 1099867 NIL GROEBSOL (NIL NIL T T) -7 NIL NIL NIL) (-476 1097471 1097759 1097810 "GRMOD" 1098339 NIL GRMOD (NIL T T) -9 NIL 1098507 NIL) (-475 1097239 1097275 1097403 "GRMOD-" 1097408 NIL GRMOD- (NIL T T T) -8 NIL NIL NIL) (-474 1092529 1093593 1094593 "GRIMAGE" 1096259 T GRIMAGE (NIL) -8 NIL NIL NIL) (-473 1090995 1091256 1091580 "GRDEF" 1092225 T GRDEF (NIL) -7 NIL NIL NIL) (-472 1090439 1090555 1090696 "GRAY" 1090874 T GRAY (NIL) -7 NIL NIL NIL) (-471 1089626 1090032 1090083 "GRALG" 1090236 NIL GRALG (NIL T T) -9 NIL 1090329 NIL) (-470 1089287 1089360 1089523 "GRALG-" 1089528 NIL GRALG- (NIL T T T) -8 NIL NIL NIL) (-469 1086064 1088872 1089050 "GPOLSET" 1089194 NIL GPOLSET (NIL T T T T) -8 NIL NIL NIL) (-468 1085418 1085475 1085733 "GOSPER" 1086001 NIL GOSPER (NIL T T T T T) -7 NIL NIL NIL) (-467 1081150 1081856 1082382 "GMODPOL" 1085117 NIL GMODPOL (NIL NIL T T T NIL T) -8 NIL NIL NIL) (-466 1080155 1080339 1080577 "GHENSEL" 1080962 NIL GHENSEL (NIL T T) -7 NIL NIL NIL) (-465 1074311 1075154 1076174 "GENUPS" 1079239 NIL GENUPS (NIL T T) -7 NIL NIL NIL) (-464 1074008 1074059 1074148 "GENUFACT" 1074254 NIL GENUFACT (NIL T) -7 NIL NIL NIL) (-463 1073420 1073497 1073662 "GENPGCD" 1073926 NIL GENPGCD (NIL T T T T) -7 NIL NIL NIL) (-462 1072894 1072929 1073142 "GENMFACT" 1073379 NIL GENMFACT (NIL T T T T T) -7 NIL NIL NIL) (-461 1071460 1071717 1072024 "GENEEZ" 1072637 NIL GENEEZ (NIL T T) -7 NIL NIL NIL) (-460 1065608 1071071 1071233 "GDMP" 1071383 NIL GDMP (NIL NIL T T) -8 NIL NIL NIL) (-459 1054951 1059379 1060485 "GCNAALG" 1064591 NIL GCNAALG (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-458 1053278 1054140 1054168 "GCDDOM" 1054423 T GCDDOM (NIL) -9 NIL 1054580 NIL) (-457 1052748 1052875 1053090 "GCDDOM-" 1053095 NIL GCDDOM- (NIL T) -8 NIL NIL NIL) (-456 1051420 1051605 1051909 "GB" 1052527 NIL GB (NIL T T T T) -7 NIL NIL NIL) (-455 1040036 1042366 1044758 "GBINTERN" 1049111 NIL GBINTERN (NIL T T T T) -7 NIL NIL NIL) (-454 1037873 1038165 1038586 "GBF" 1039711 NIL GBF (NIL T T T T) -7 NIL NIL NIL) (-453 1036654 1036819 1037086 "GBEUCLID" 1037689 NIL GBEUCLID (NIL T T T T) -7 NIL NIL NIL) (-452 1036003 1036128 1036277 "GAUSSFAC" 1036525 T GAUSSFAC (NIL) -7 NIL NIL NIL) (-451 1034370 1034672 1034986 "GALUTIL" 1035722 NIL GALUTIL (NIL T) -7 NIL NIL NIL) (-450 1032678 1032952 1033276 "GALPOLYU" 1034097 NIL GALPOLYU (NIL T T) -7 NIL NIL NIL) (-449 1030043 1030333 1030740 "GALFACTU" 1032375 NIL GALFACTU (NIL T T T) -7 NIL NIL NIL) (-448 1021849 1023348 1024956 "GALFACT" 1028475 NIL GALFACT (NIL T) -7 NIL NIL NIL) (-447 1019237 1019895 1019923 "FVFUN" 1021079 T FVFUN (NIL) -9 NIL 1021799 NIL) (-446 1018503 1018685 1018713 "FVC" 1019004 T FVC (NIL) -9 NIL 1019187 NIL) (-445 1018146 1018328 1018396 "FUNDESC" 1018455 T FUNDESC (NIL) -8 NIL NIL NIL) (-444 1017761 1017943 1018024 "FUNCTION" 1018098 NIL FUNCTION (NIL NIL) -8 NIL NIL NIL) (-443 1015505 1016083 1016549 "FT" 1017315 T FT (NIL) -8 NIL NIL NIL) (-442 1014296 1014806 1015009 "FTEM" 1015322 T FTEM (NIL) -8 NIL NIL NIL) (-441 1012587 1012876 1013273 "FSUPFACT" 1013987 NIL FSUPFACT (NIL T T T) -7 NIL NIL NIL) (-440 1010984 1011273 1011605 "FST" 1012275 T FST (NIL) -8 NIL NIL NIL) (-439 1010183 1010289 1010477 "FSRED" 1010866 NIL FSRED (NIL T T) -7 NIL NIL NIL) (-438 1008882 1009138 1009485 "FSPRMELT" 1009898 NIL FSPRMELT (NIL T T) -7 NIL NIL NIL) (-437 1006188 1006626 1007112 "FSPECF" 1008445 NIL FSPECF (NIL T T) -7 NIL NIL NIL) (-436 987826 996157 996198 "FS" 1000082 NIL FS (NIL T) -9 NIL 1002371 NIL) (-435 976469 979462 983519 "FS-" 983819 NIL FS- (NIL T T) -8 NIL NIL NIL) (-434 975997 976051 976221 "FSINT" 976410 NIL FSINT (NIL T T) -7 NIL NIL NIL) (-433 974289 974990 975293 "FSERIES" 975776 NIL FSERIES (NIL T T) -8 NIL NIL NIL) (-432 973331 973447 973671 "FSCINT" 974169 NIL FSCINT (NIL T T) -7 NIL NIL NIL) (-431 969539 972275 972316 "FSAGG" 972686 NIL FSAGG (NIL T) -9 NIL 972945 NIL) (-430 967301 967902 968698 "FSAGG-" 968793 NIL FSAGG- (NIL T T) -8 NIL NIL NIL) (-429 966343 966486 966713 "FSAGG2" 967154 NIL FSAGG2 (NIL T T T T) -7 NIL NIL NIL) (-428 964025 964305 964852 "FS2UPS" 966061 NIL FS2UPS (NIL T T T T T NIL) -7 NIL NIL NIL) (-427 963659 963702 963831 "FS2" 963976 NIL FS2 (NIL T T T T) -7 NIL NIL NIL) (-426 962537 962708 963010 "FS2EXPXP" 963484 NIL FS2EXPXP (NIL T T NIL NIL) -7 NIL NIL NIL) (-425 961963 962078 962230 "FRUTIL" 962417 NIL FRUTIL (NIL T) -7 NIL NIL NIL) (-424 953376 957458 958816 "FR" 960637 NIL FR (NIL T) -8 NIL NIL NIL) (-423 948345 951019 951059 "FRNAALG" 952455 NIL FRNAALG (NIL T) -9 NIL 953062 NIL) (-422 944018 945094 946369 "FRNAALG-" 947119 NIL FRNAALG- (NIL T T) -8 NIL NIL NIL) (-421 943656 943699 943826 "FRNAAF2" 943969 NIL FRNAAF2 (NIL T T T T) -7 NIL NIL NIL) (-420 942031 942505 942801 "FRMOD" 943468 NIL FRMOD (NIL T T T T NIL) -8 NIL NIL NIL) (-419 939774 940406 940724 "FRIDEAL" 941822 NIL FRIDEAL (NIL T T T T) -8 NIL NIL NIL) (-418 938965 939052 939343 "FRIDEAL2" 939681 NIL FRIDEAL2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-417 938098 938512 938553 "FRETRCT" 938558 NIL FRETRCT (NIL T) -9 NIL 938734 NIL) (-416 937210 937441 937792 "FRETRCT-" 937797 NIL FRETRCT- (NIL T T) -8 NIL NIL NIL) (-415 934298 935508 935567 "FRAMALG" 936449 NIL FRAMALG (NIL T T) -9 NIL 936741 NIL) (-414 932432 932887 933517 "FRAMALG-" 933740 NIL FRAMALG- (NIL T T T) -8 NIL NIL NIL) (-413 926351 931905 932182 "FRAC" 932187 NIL FRAC (NIL T) -8 NIL NIL NIL) (-412 925987 926044 926151 "FRAC2" 926288 NIL FRAC2 (NIL T T) -7 NIL NIL NIL) (-411 925623 925680 925787 "FR2" 925924 NIL FR2 (NIL T T) -7 NIL NIL NIL) (-410 920136 923029 923057 "FPS" 924176 T FPS (NIL) -9 NIL 924733 NIL) (-409 919585 919694 919858 "FPS-" 920004 NIL FPS- (NIL T) -8 NIL NIL NIL) (-408 916887 918556 918584 "FPC" 918809 T FPC (NIL) -9 NIL 918951 NIL) (-407 916680 916720 916817 "FPC-" 916822 NIL FPC- (NIL T) -8 NIL NIL NIL) (-406 915470 916168 916209 "FPATMAB" 916214 NIL FPATMAB (NIL T) -9 NIL 916366 NIL) (-405 913143 913646 914072 "FPARFRAC" 915107 NIL FPARFRAC (NIL T T) -8 NIL NIL NIL) (-404 908537 909035 909717 "FORTRAN" 912575 NIL FORTRAN (NIL NIL NIL NIL NIL) -8 NIL NIL NIL) (-403 906253 906753 907292 "FORT" 908018 T FORT (NIL) -7 NIL NIL NIL) (-402 903929 904491 904519 "FORTFN" 905579 T FORTFN (NIL) -9 NIL 906203 NIL) (-401 903693 903743 903771 "FORTCAT" 903830 T FORTCAT (NIL) -9 NIL 903892 NIL) (-400 901799 902309 902699 "FORMULA" 903323 T FORMULA (NIL) -8 NIL NIL NIL) (-399 901587 901617 901686 "FORMULA1" 901763 NIL FORMULA1 (NIL T) -7 NIL NIL NIL) (-398 901110 901162 901335 "FORDER" 901529 NIL FORDER (NIL T T T T) -7 NIL NIL NIL) (-397 900206 900370 900563 "FOP" 900937 T FOP (NIL) -7 NIL NIL NIL) (-396 898787 899486 899660 "FNLA" 900088 NIL FNLA (NIL NIL NIL T) -8 NIL NIL NIL) (-395 897516 897931 897959 "FNCAT" 898419 T FNCAT (NIL) -9 NIL 898679 NIL) (-394 897055 897475 897503 "FNAME" 897508 T FNAME (NIL) -8 NIL NIL NIL) (-393 895618 896581 896609 "FMTC" 896614 T FMTC (NIL) -9 NIL 896650 NIL) (-392 894364 895554 895600 "FMONOID" 895605 NIL FMONOID (NIL T) -8 NIL NIL NIL) (-391 891192 892360 892401 "FMONCAT" 893618 NIL FMONCAT (NIL T) -9 NIL 894223 NIL) (-390 890384 890934 891083 "FM" 891088 NIL FM (NIL T T) -8 NIL NIL NIL) (-389 887808 888454 888482 "FMFUN" 889626 T FMFUN (NIL) -9 NIL 890334 NIL) (-388 887077 887258 887286 "FMC" 887576 T FMC (NIL) -9 NIL 887758 NIL) (-387 884156 885016 885070 "FMCAT" 886265 NIL FMCAT (NIL T T) -9 NIL 886760 NIL) (-386 883022 883922 884022 "FM1" 884101 NIL FM1 (NIL T T) -8 NIL NIL NIL) (-385 880796 881212 881706 "FLOATRP" 882573 NIL FLOATRP (NIL T) -7 NIL NIL NIL) (-384 874374 878525 879146 "FLOAT" 880195 T FLOAT (NIL) -8 NIL NIL NIL) (-383 871812 872312 872890 "FLOATCP" 873841 NIL FLOATCP (NIL T) -7 NIL NIL NIL) (-382 870552 871390 871431 "FLINEXP" 871436 NIL FLINEXP (NIL T) -9 NIL 871529 NIL) (-381 869706 869941 870269 "FLINEXP-" 870274 NIL FLINEXP- (NIL T T) -8 NIL NIL NIL) (-380 868782 868926 869150 "FLASORT" 869558 NIL FLASORT (NIL T T) -7 NIL NIL NIL) (-379 865898 866766 866818 "FLALG" 868045 NIL FLALG (NIL T T) -9 NIL 868512 NIL) (-378 859634 863384 863425 "FLAGG" 864687 NIL FLAGG (NIL T) -9 NIL 865339 NIL) (-377 858360 858699 859189 "FLAGG-" 859194 NIL FLAGG- (NIL T T) -8 NIL NIL NIL) (-376 857402 857545 857772 "FLAGG2" 858213 NIL FLAGG2 (NIL T T T T) -7 NIL NIL NIL) (-375 854253 855261 855320 "FINRALG" 856448 NIL FINRALG (NIL T T) -9 NIL 856956 NIL) (-374 853413 853642 853981 "FINRALG-" 853986 NIL FINRALG- (NIL T T T) -8 NIL NIL NIL) (-373 852793 853032 853060 "FINITE" 853256 T FINITE (NIL) -9 NIL 853363 NIL) (-372 845150 847337 847377 "FINAALG" 851044 NIL FINAALG (NIL T) -9 NIL 852497 NIL) (-371 840482 841532 842676 "FINAALG-" 844055 NIL FINAALG- (NIL T T) -8 NIL NIL NIL) (-370 839850 840237 840340 "FILE" 840412 NIL FILE (NIL T) -8 NIL NIL NIL) (-369 838508 838846 838900 "FILECAT" 839584 NIL FILECAT (NIL T T) -9 NIL 839800 NIL) (-368 836224 837752 837780 "FIELD" 837820 T FIELD (NIL) -9 NIL 837900 NIL) (-367 834844 835229 835740 "FIELD-" 835745 NIL FIELD- (NIL T) -8 NIL NIL NIL) (-366 832694 833479 833826 "FGROUP" 834530 NIL FGROUP (NIL T) -8 NIL NIL NIL) (-365 831784 831948 832168 "FGLMICPK" 832526 NIL FGLMICPK (NIL T NIL) -7 NIL NIL NIL) (-364 827616 831709 831766 "FFX" 831771 NIL FFX (NIL T NIL) -8 NIL NIL NIL) (-363 827217 827278 827413 "FFSLPE" 827549 NIL FFSLPE (NIL T T T) -7 NIL NIL NIL) (-362 823207 823989 824785 "FFPOLY" 826453 NIL FFPOLY (NIL T) -7 NIL NIL NIL) (-361 822711 822747 822956 "FFPOLY2" 823165 NIL FFPOLY2 (NIL T T) -7 NIL NIL NIL) (-360 818557 822630 822693 "FFP" 822698 NIL FFP (NIL T NIL) -8 NIL NIL NIL) (-359 813955 818468 818532 "FF" 818537 NIL FF (NIL NIL NIL) -8 NIL NIL NIL) (-358 809081 813298 813488 "FFNBX" 813809 NIL FFNBX (NIL T NIL) -8 NIL NIL NIL) (-357 804009 808216 808474 "FFNBP" 808935 NIL FFNBP (NIL T NIL) -8 NIL NIL NIL) (-356 798642 803293 803504 "FFNB" 803842 NIL FFNB (NIL NIL NIL) -8 NIL NIL NIL) (-355 797474 797672 797987 "FFINTBAS" 798439 NIL FFINTBAS (NIL T T T) -7 NIL NIL NIL) (-354 793543 795763 795791 "FFIELDC" 796411 T FFIELDC (NIL) -9 NIL 796787 NIL) (-353 792205 792576 793073 "FFIELDC-" 793078 NIL FFIELDC- (NIL T) -8 NIL NIL NIL) (-352 791774 791820 791944 "FFHOM" 792147 NIL FFHOM (NIL T T T) -7 NIL NIL NIL) (-351 789469 789956 790473 "FFF" 791289 NIL FFF (NIL T) -7 NIL NIL NIL) (-350 785087 789211 789312 "FFCGX" 789412 NIL FFCGX (NIL T NIL) -8 NIL NIL NIL) (-349 780709 784819 784926 "FFCGP" 785030 NIL FFCGP (NIL T NIL) -8 NIL NIL NIL) (-348 775892 780436 780544 "FFCG" 780645 NIL FFCG (NIL NIL NIL) -8 NIL NIL NIL) (-347 757288 766369 766455 "FFCAT" 771620 NIL FFCAT (NIL T T T) -9 NIL 773071 NIL) (-346 752485 753533 754847 "FFCAT-" 756077 NIL FFCAT- (NIL T T T T) -8 NIL NIL NIL) (-345 751896 751939 752174 "FFCAT2" 752436 NIL FFCAT2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-344 741219 744868 746088 "FEXPR" 750748 NIL FEXPR (NIL NIL NIL T) -8 NIL NIL NIL) (-343 740219 740654 740695 "FEVALAB" 740779 NIL FEVALAB (NIL T) -9 NIL 741040 NIL) (-342 739378 739588 739926 "FEVALAB-" 739931 NIL FEVALAB- (NIL T T) -8 NIL NIL NIL) (-341 737944 738761 738964 "FDIV" 739277 NIL FDIV (NIL T T T T) -8 NIL NIL NIL) (-340 734964 735705 735820 "FDIVCAT" 737388 NIL FDIVCAT (NIL T T T T) -9 NIL 737825 NIL) (-339 734726 734753 734923 "FDIVCAT-" 734928 NIL FDIVCAT- (NIL T T T T T) -8 NIL NIL NIL) (-338 733946 734033 734310 "FDIV2" 734633 NIL FDIV2 (NIL T T T T T T T T) -7 NIL NIL NIL) (-337 732920 733241 733443 "FCTRDATA" 733764 T FCTRDATA (NIL) -8 NIL NIL NIL) (-336 731606 731865 732154 "FCPAK1" 732651 T FCPAK1 (NIL) -7 NIL NIL NIL) (-335 730705 731106 731247 "FCOMP" 731497 NIL FCOMP (NIL T) -8 NIL NIL NIL) (-334 714410 717855 721393 "FC" 727187 T FC (NIL) -8 NIL NIL NIL) (-333 706773 710801 710841 "FAXF" 712643 NIL FAXF (NIL T) -9 NIL 713335 NIL) (-332 704050 704707 705532 "FAXF-" 705997 NIL FAXF- (NIL T T) -8 NIL NIL NIL) (-331 699102 703426 703602 "FARRAY" 703907 NIL FARRAY (NIL T) -8 NIL NIL NIL) (-330 693996 696063 696116 "FAMR" 697139 NIL FAMR (NIL T T) -9 NIL 697599 NIL) (-329 692886 693188 693623 "FAMR-" 693628 NIL FAMR- (NIL T T T) -8 NIL NIL NIL) (-328 692055 692808 692861 "FAMONOID" 692866 NIL FAMONOID (NIL T) -8 NIL NIL NIL) (-327 689841 690551 690604 "FAMONC" 691545 NIL FAMONC (NIL T T) -9 NIL 691931 NIL) (-326 688505 689595 689732 "FAGROUP" 689737 NIL FAGROUP (NIL T) -8 NIL NIL NIL) (-325 686300 686619 687022 "FACUTIL" 688186 NIL FACUTIL (NIL T T T T) -7 NIL NIL NIL) (-324 685399 685584 685806 "FACTFUNC" 686110 NIL FACTFUNC (NIL T) -7 NIL NIL NIL) (-323 677821 684702 684901 "EXPUPXS" 685255 NIL EXPUPXS (NIL T NIL NIL) -8 NIL NIL NIL) (-322 675304 675844 676430 "EXPRTUBE" 677255 T EXPRTUBE (NIL) -7 NIL NIL NIL) (-321 671575 672167 672897 "EXPRODE" 674643 NIL EXPRODE (NIL T T) -7 NIL NIL NIL) (-320 657060 670224 670653 "EXPR" 671179 NIL EXPR (NIL T) -8 NIL NIL NIL) (-319 651614 652201 653007 "EXPR2UPS" 656358 NIL EXPR2UPS (NIL T T) -7 NIL NIL NIL) (-318 651246 651303 651412 "EXPR2" 651551 NIL EXPR2 (NIL T T) -7 NIL NIL NIL) (-317 642634 650397 650688 "EXPEXPAN" 651082 NIL EXPEXPAN (NIL T T NIL NIL) -8 NIL NIL NIL) (-316 642434 642591 642620 "EXIT" 642625 T EXIT (NIL) -8 NIL NIL NIL) (-315 641914 642158 642249 "EXITAST" 642363 T EXITAST (NIL) -8 NIL NIL NIL) (-314 641541 641603 641716 "EVALCYC" 641846 NIL EVALCYC (NIL T) -7 NIL NIL NIL) (-313 641082 641200 641241 "EVALAB" 641411 NIL EVALAB (NIL T) -9 NIL 641515 NIL) (-312 640563 640685 640906 "EVALAB-" 640911 NIL EVALAB- (NIL T T) -8 NIL NIL NIL) (-311 637931 639233 639261 "EUCDOM" 639816 T EUCDOM (NIL) -9 NIL 640166 NIL) (-310 636336 636778 637368 "EUCDOM-" 637373 NIL EUCDOM- (NIL T) -8 NIL NIL NIL) (-309 623875 626634 629384 "ESTOOLS" 633606 T ESTOOLS (NIL) -7 NIL NIL NIL) (-308 623507 623564 623673 "ESTOOLS2" 623812 NIL ESTOOLS2 (NIL T T) -7 NIL NIL NIL) (-307 623258 623300 623380 "ESTOOLS1" 623459 NIL ESTOOLS1 (NIL T) -7 NIL NIL NIL) (-306 617295 618903 618931 "ES" 621699 T ES (NIL) -9 NIL 623109 NIL) (-305 612242 613529 615346 "ES-" 615510 NIL ES- (NIL T) -8 NIL NIL NIL) (-304 608616 609377 610157 "ESCONT" 611482 T ESCONT (NIL) -7 NIL NIL NIL) (-303 608361 608393 608475 "ESCONT1" 608578 NIL ESCONT1 (NIL NIL NIL) -7 NIL NIL NIL) (-302 608036 608086 608186 "ES2" 608305 NIL ES2 (NIL T T) -7 NIL NIL NIL) (-301 607666 607724 607833 "ES1" 607972 NIL ES1 (NIL T T) -7 NIL NIL NIL) (-300 606882 607011 607187 "ERROR" 607510 T ERROR (NIL) -7 NIL NIL NIL) (-299 600274 606741 606832 "EQTBL" 606837 NIL EQTBL (NIL T T) -8 NIL NIL NIL) (-298 592777 595588 597037 "EQ" 598858 NIL -2200 (NIL T) -8 NIL NIL NIL) (-297 592409 592466 592575 "EQ2" 592714 NIL EQ2 (NIL T T) -7 NIL NIL NIL) (-296 587700 588747 589840 "EP" 591348 NIL EP (NIL T) -7 NIL NIL NIL) (-295 586300 586591 586897 "ENV" 587414 T ENV (NIL) -8 NIL NIL NIL) (-294 585394 585948 585976 "ENTIRER" 585981 T ENTIRER (NIL) -9 NIL 586027 NIL) (-293 581861 583349 583719 "EMR" 585193 NIL EMR (NIL T T T NIL NIL NIL) -8 NIL NIL NIL) (-292 581005 581190 581244 "ELTAGG" 581624 NIL ELTAGG (NIL T T) -9 NIL 581835 NIL) (-291 580724 580786 580927 "ELTAGG-" 580932 NIL ELTAGG- (NIL T T T) -8 NIL NIL NIL) (-290 580513 580542 580596 "ELTAB" 580680 NIL ELTAB (NIL T T) -9 NIL NIL NIL) (-289 579639 579785 579984 "ELFUTS" 580364 NIL ELFUTS (NIL T T) -7 NIL NIL NIL) (-288 579381 579437 579465 "ELEMFUN" 579570 T ELEMFUN (NIL) -9 NIL NIL NIL) (-287 579251 579272 579340 "ELEMFUN-" 579345 NIL ELEMFUN- (NIL T) -8 NIL NIL NIL) (-286 574095 577351 577392 "ELAGG" 578332 NIL ELAGG (NIL T) -9 NIL 578795 NIL) (-285 572380 572814 573477 "ELAGG-" 573482 NIL ELAGG- (NIL T T) -8 NIL NIL NIL) (-284 571692 571829 571985 "ELABOR" 572244 T ELABOR (NIL) -8 NIL NIL NIL) (-283 570353 570632 570926 "ELABEXPR" 571418 T ELABEXPR (NIL) -8 NIL NIL NIL) (-282 563217 565020 565847 "EFUPXS" 569629 NIL EFUPXS (NIL T T T T) -8 NIL NIL NIL) (-281 556667 558468 559278 "EFULS" 562493 NIL EFULS (NIL T T T) -8 NIL NIL NIL) (-280 554152 554510 554982 "EFSTRUC" 556299 NIL EFSTRUC (NIL T T) -7 NIL NIL NIL) (-279 543943 545509 547057 "EF" 552667 NIL EF (NIL T T) -7 NIL NIL NIL) (-278 543017 543428 543577 "EAB" 543814 T EAB (NIL) -8 NIL NIL NIL) (-277 542199 542976 543004 "E04UCFA" 543009 T E04UCFA (NIL) -8 NIL NIL NIL) (-276 541381 542158 542186 "E04NAFA" 542191 T E04NAFA (NIL) -8 NIL NIL NIL) (-275 540563 541340 541368 "E04MBFA" 541373 T E04MBFA (NIL) -8 NIL NIL NIL) (-274 539745 540522 540550 "E04JAFA" 540555 T E04JAFA (NIL) -8 NIL NIL NIL) (-273 538929 539704 539732 "E04GCFA" 539737 T E04GCFA (NIL) -8 NIL NIL NIL) (-272 538113 538888 538916 "E04FDFA" 538921 T E04FDFA (NIL) -8 NIL NIL NIL) (-271 537295 538072 538100 "E04DGFA" 538105 T E04DGFA (NIL) -8 NIL NIL NIL) (-270 531468 532820 534184 "E04AGNT" 535951 T E04AGNT (NIL) -7 NIL NIL NIL) (-269 530148 530654 530694 "DVARCAT" 531169 NIL DVARCAT (NIL T) -9 NIL 531368 NIL) (-268 529352 529564 529878 "DVARCAT-" 529883 NIL DVARCAT- (NIL T T) -8 NIL NIL NIL) (-267 522489 529151 529280 "DSMP" 529285 NIL DSMP (NIL T T T) -8 NIL NIL NIL) (-266 517270 518434 519502 "DROPT" 521441 T DROPT (NIL) -8 NIL NIL NIL) (-265 516935 516994 517092 "DROPT1" 517205 NIL DROPT1 (NIL T) -7 NIL NIL NIL) (-264 512050 513176 514313 "DROPT0" 515818 T DROPT0 (NIL) -7 NIL NIL NIL) (-263 510395 510720 511106 "DRAWPT" 511684 T DRAWPT (NIL) -7 NIL NIL NIL) (-262 504982 505905 506984 "DRAW" 509369 NIL DRAW (NIL T) -7 NIL NIL NIL) (-261 504615 504668 504786 "DRAWHACK" 504923 NIL DRAWHACK (NIL T) -7 NIL NIL NIL) (-260 503346 503615 503906 "DRAWCX" 504344 T DRAWCX (NIL) -7 NIL NIL NIL) (-259 502861 502930 503081 "DRAWCURV" 503272 NIL DRAWCURV (NIL T T) -7 NIL NIL NIL) (-258 493329 495291 497406 "DRAWCFUN" 500766 T DRAWCFUN (NIL) -7 NIL NIL NIL) (-257 490093 492022 492063 "DQAGG" 492692 NIL DQAGG (NIL T) -9 NIL 492966 NIL) (-256 478217 484686 484769 "DPOLCAT" 486621 NIL DPOLCAT (NIL T T T T) -9 NIL 487166 NIL) (-255 473054 474402 476360 "DPOLCAT-" 476365 NIL DPOLCAT- (NIL T T T T T) -8 NIL NIL NIL) (-254 466176 472915 473013 "DPMO" 473018 NIL DPMO (NIL NIL T T) -8 NIL NIL NIL) (-253 459201 465956 466123 "DPMM" 466128 NIL DPMM (NIL NIL T T T) -8 NIL NIL NIL) (-252 458679 458893 458991 "DOMTMPLT" 459123 T DOMTMPLT (NIL) -8 NIL NIL NIL) (-251 458112 458481 458561 "DOMCTOR" 458619 T DOMCTOR (NIL) -8 NIL NIL NIL) (-250 457324 457592 457743 "DOMAIN" 457981 T DOMAIN (NIL) -8 NIL NIL NIL) (-249 451312 456959 457111 "DMP" 457225 NIL DMP (NIL NIL T) -8 NIL NIL NIL) (-248 450912 450968 451112 "DLP" 451250 NIL DLP (NIL T) -7 NIL NIL NIL) (-247 444734 450239 450429 "DLIST" 450754 NIL DLIST (NIL T) -8 NIL NIL NIL) (-246 441531 443587 443628 "DLAGG" 444178 NIL DLAGG (NIL T) -9 NIL 444408 NIL) (-245 440207 440871 440899 "DIVRING" 440991 T DIVRING (NIL) -9 NIL 441074 NIL) (-244 439444 439634 439934 "DIVRING-" 439939 NIL DIVRING- (NIL T) -8 NIL NIL NIL) (-243 437546 437903 438309 "DISPLAY" 439058 T DISPLAY (NIL) -7 NIL NIL NIL) (-242 431434 437460 437523 "DIRPROD" 437528 NIL DIRPROD (NIL NIL T) -8 NIL NIL NIL) (-241 430282 430485 430750 "DIRPROD2" 431227 NIL DIRPROD2 (NIL NIL T T) -7 NIL NIL NIL) (-240 419057 425063 425116 "DIRPCAT" 425526 NIL DIRPCAT (NIL NIL T) -9 NIL 426366 NIL) (-239 416383 417025 417906 "DIRPCAT-" 418243 NIL DIRPCAT- (NIL T NIL T) -8 NIL NIL NIL) (-238 415670 415830 416016 "DIOSP" 416217 T DIOSP (NIL) -7 NIL NIL NIL) (-237 412325 414582 414623 "DIOPS" 415057 NIL DIOPS (NIL T) -9 NIL 415286 NIL) (-236 411874 411988 412179 "DIOPS-" 412184 NIL DIOPS- (NIL T T) -8 NIL NIL NIL) (-235 410697 411325 411353 "DIFRING" 411540 T DIFRING (NIL) -9 NIL 411650 NIL) (-234 410343 410420 410572 "DIFRING-" 410577 NIL DIFRING- (NIL T) -8 NIL NIL NIL) (-233 408079 409351 409392 "DIFEXT" 409755 NIL DIFEXT (NIL T) -9 NIL 410049 NIL) (-232 406364 406792 407458 "DIFEXT-" 407463 NIL DIFEXT- (NIL T T) -8 NIL NIL NIL) (-231 403639 405896 405937 "DIAGG" 405942 NIL DIAGG (NIL T) -9 NIL 405962 NIL) (-230 403023 403180 403432 "DIAGG-" 403437 NIL DIAGG- (NIL T T) -8 NIL NIL NIL) (-229 398440 401982 402259 "DHMATRIX" 402792 NIL DHMATRIX (NIL T) -8 NIL NIL NIL) (-228 394052 394961 395971 "DFSFUN" 397450 T DFSFUN (NIL) -7 NIL NIL NIL) (-227 389131 392983 393295 "DFLOAT" 393760 T DFLOAT (NIL) -8 NIL NIL NIL) (-226 387394 387675 388064 "DFINTTLS" 388839 NIL DFINTTLS (NIL T T) -7 NIL NIL NIL) (-225 384423 385415 385815 "DERHAM" 387060 NIL DERHAM (NIL T NIL) -8 NIL NIL NIL) (-224 382224 384198 384287 "DEQUEUE" 384367 NIL DEQUEUE (NIL T) -8 NIL NIL NIL) (-223 381478 381611 381794 "DEGRED" 382086 NIL DEGRED (NIL T T) -7 NIL NIL NIL) (-222 377908 378653 379499 "DEFINTRF" 380706 NIL DEFINTRF (NIL T) -7 NIL NIL NIL) (-221 375463 375932 376524 "DEFINTEF" 377427 NIL DEFINTEF (NIL T T) -7 NIL NIL NIL) (-220 374813 375083 375198 "DEFAST" 375368 T DEFAST (NIL) -8 NIL NIL NIL) (-219 368815 374406 374556 "DECIMAL" 374683 T DECIMAL (NIL) -8 NIL NIL NIL) (-218 366327 366785 367291 "DDFACT" 368359 NIL DDFACT (NIL T T) -7 NIL NIL NIL) (-217 365923 365966 366117 "DBLRESP" 366278 NIL DBLRESP (NIL T T T T) -7 NIL NIL NIL) (-216 363795 364156 364516 "DBASE" 365690 NIL DBASE (NIL T) -8 NIL NIL NIL) (-215 363037 363275 363421 "DATAARY" 363694 NIL DATAARY (NIL NIL T) -8 NIL NIL NIL) (-214 362143 362996 363024 "D03FAFA" 363029 T D03FAFA (NIL) -8 NIL NIL NIL) (-213 361250 362102 362130 "D03EEFA" 362135 T D03EEFA (NIL) -8 NIL NIL NIL) (-212 359200 359666 360155 "D03AGNT" 360781 T D03AGNT (NIL) -7 NIL NIL NIL) (-211 358489 359159 359187 "D02EJFA" 359192 T D02EJFA (NIL) -8 NIL NIL NIL) (-210 357778 358448 358476 "D02CJFA" 358481 T D02CJFA (NIL) -8 NIL NIL NIL) (-209 357067 357737 357765 "D02BHFA" 357770 T D02BHFA (NIL) -8 NIL NIL NIL) (-208 356356 357026 357054 "D02BBFA" 357059 T D02BBFA (NIL) -8 NIL NIL NIL) (-207 349553 351142 352748 "D02AGNT" 354770 T D02AGNT (NIL) -7 NIL NIL NIL) (-206 347321 347844 348390 "D01WGTS" 349027 T D01WGTS (NIL) -7 NIL NIL NIL) (-205 346388 347280 347308 "D01TRNS" 347313 T D01TRNS (NIL) -8 NIL NIL NIL) (-204 345456 346347 346375 "D01GBFA" 346380 T D01GBFA (NIL) -8 NIL NIL NIL) (-203 344524 345415 345443 "D01FCFA" 345448 T D01FCFA (NIL) -8 NIL NIL NIL) (-202 343592 344483 344511 "D01ASFA" 344516 T D01ASFA (NIL) -8 NIL NIL NIL) (-201 342660 343551 343579 "D01AQFA" 343584 T D01AQFA (NIL) -8 NIL NIL NIL) (-200 341728 342619 342647 "D01APFA" 342652 T D01APFA (NIL) -8 NIL NIL NIL) (-199 340796 341687 341715 "D01ANFA" 341720 T D01ANFA (NIL) -8 NIL NIL NIL) (-198 339864 340755 340783 "D01AMFA" 340788 T D01AMFA (NIL) -8 NIL NIL NIL) (-197 338932 339823 339851 "D01ALFA" 339856 T D01ALFA (NIL) -8 NIL NIL NIL) (-196 338000 338891 338919 "D01AKFA" 338924 T D01AKFA (NIL) -8 NIL NIL NIL) (-195 337068 337959 337987 "D01AJFA" 337992 T D01AJFA (NIL) -8 NIL NIL NIL) (-194 330363 331916 333477 "D01AGNT" 335527 T D01AGNT (NIL) -7 NIL NIL NIL) (-193 329700 329828 329980 "CYCLOTOM" 330231 T CYCLOTOM (NIL) -7 NIL NIL NIL) (-192 326434 327148 327875 "CYCLES" 328993 T CYCLES (NIL) -7 NIL NIL NIL) (-191 325746 325880 326051 "CVMP" 326295 NIL CVMP (NIL T) -7 NIL NIL NIL) (-190 323587 323845 324214 "CTRIGMNP" 325474 NIL CTRIGMNP (NIL T T) -7 NIL NIL NIL) (-189 323023 323381 323454 "CTOR" 323534 T CTOR (NIL) -8 NIL NIL NIL) (-188 322532 322754 322855 "CTORKIND" 322942 T CTORKIND (NIL) -8 NIL NIL NIL) (-187 321823 322139 322167 "CTORCAT" 322349 T CTORCAT (NIL) -9 NIL 322462 NIL) (-186 321421 321532 321691 "CTORCAT-" 321696 NIL CTORCAT- (NIL T) -8 NIL NIL NIL) (-185 320883 321095 321203 "CTORCALL" 321345 NIL CTORCALL (NIL T) -8 NIL NIL NIL) (-184 320257 320356 320509 "CSTTOOLS" 320780 NIL CSTTOOLS (NIL T T) -7 NIL NIL NIL) (-183 316056 316713 317471 "CRFP" 319569 NIL CRFP (NIL T T) -7 NIL NIL NIL) (-182 315531 315777 315869 "CRCEAST" 315984 T CRCEAST (NIL) -8 NIL NIL NIL) (-181 314578 314763 314991 "CRAPACK" 315335 NIL CRAPACK (NIL T) -7 NIL NIL NIL) (-180 313962 314063 314267 "CPMATCH" 314454 NIL CPMATCH (NIL T T T) -7 NIL NIL NIL) (-179 313687 313715 313821 "CPIMA" 313928 NIL CPIMA (NIL T T T) -7 NIL NIL NIL) (-178 310035 310707 311426 "COORDSYS" 313022 NIL COORDSYS (NIL T) -7 NIL NIL NIL) (-177 309447 309568 309710 "CONTOUR" 309913 T CONTOUR (NIL) -8 NIL NIL NIL) (-176 305338 307450 307942 "CONTFRAC" 308987 NIL CONTFRAC (NIL T) -8 NIL NIL NIL) (-175 305218 305239 305267 "CONDUIT" 305304 T CONDUIT (NIL) -9 NIL NIL NIL) (-174 304306 304860 304888 "COMRING" 304893 T COMRING (NIL) -9 NIL 304945 NIL) (-173 303360 303664 303848 "COMPPROP" 304142 T COMPPROP (NIL) -8 NIL NIL NIL) (-172 303021 303056 303184 "COMPLPAT" 303319 NIL COMPLPAT (NIL T T T) -7 NIL NIL NIL) (-171 293312 302830 302939 "COMPLEX" 302944 NIL COMPLEX (NIL T) -8 NIL NIL NIL) (-170 292948 293005 293112 "COMPLEX2" 293249 NIL COMPLEX2 (NIL T T) -7 NIL NIL NIL) (-169 292287 292408 292568 "COMPILER" 292808 T COMPILER (NIL) -8 NIL NIL NIL) (-168 292005 292040 292138 "COMPFACT" 292246 NIL COMPFACT (NIL T T) -7 NIL NIL NIL) (-167 276085 286079 286119 "COMPCAT" 287123 NIL COMPCAT (NIL T) -9 NIL 288471 NIL) (-166 265597 268524 272151 "COMPCAT-" 272507 NIL COMPCAT- (NIL T T) -8 NIL NIL NIL) (-165 265326 265354 265457 "COMMUPC" 265563 NIL COMMUPC (NIL T T T) -7 NIL NIL NIL) (-164 265120 265154 265213 "COMMONOP" 265287 T COMMONOP (NIL) -7 NIL NIL NIL) (-163 264676 264871 264958 "COMM" 265053 T COMM (NIL) -8 NIL NIL NIL) (-162 264252 264480 264555 "COMMAAST" 264621 T COMMAAST (NIL) -8 NIL NIL NIL) (-161 263501 263695 263723 "COMBOPC" 264061 T COMBOPC (NIL) -9 NIL 264236 NIL) (-160 262397 262607 262849 "COMBINAT" 263291 NIL COMBINAT (NIL T) -7 NIL NIL NIL) (-159 258854 259428 260055 "COMBF" 261819 NIL COMBF (NIL T T) -7 NIL NIL NIL) (-158 257612 257970 258205 "COLOR" 258639 T COLOR (NIL) -8 NIL NIL NIL) (-157 257088 257333 257425 "COLONAST" 257540 T COLONAST (NIL) -8 NIL NIL NIL) (-156 256728 256775 256900 "CMPLXRT" 257035 NIL CMPLXRT (NIL T T) -7 NIL NIL NIL) (-155 256176 256428 256527 "CLLCTAST" 256649 T CLLCTAST (NIL) -8 NIL NIL NIL) (-154 251678 252706 253786 "CLIP" 255116 T CLIP (NIL) -7 NIL NIL NIL) (-153 250019 250779 251019 "CLIF" 251505 NIL CLIF (NIL NIL T NIL) -8 NIL NIL NIL) (-152 246194 248165 248206 "CLAGG" 249135 NIL CLAGG (NIL T) -9 NIL 249671 NIL) (-151 244616 245073 245656 "CLAGG-" 245661 NIL CLAGG- (NIL T T) -8 NIL NIL NIL) (-150 244160 244245 244385 "CINTSLPE" 244525 NIL CINTSLPE (NIL T T) -7 NIL NIL NIL) (-149 241661 242132 242680 "CHVAR" 243688 NIL CHVAR (NIL T T T) -7 NIL NIL NIL) (-148 240835 241389 241417 "CHARZ" 241422 T CHARZ (NIL) -9 NIL 241437 NIL) (-147 240589 240629 240707 "CHARPOL" 240789 NIL CHARPOL (NIL T) -7 NIL NIL NIL) (-146 239647 240234 240262 "CHARNZ" 240309 T CHARNZ (NIL) -9 NIL 240365 NIL) (-145 237553 238301 238654 "CHAR" 239314 T CHAR (NIL) -8 NIL NIL NIL) (-144 237279 237340 237368 "CFCAT" 237479 T CFCAT (NIL) -9 NIL NIL NIL) (-143 236520 236631 236814 "CDEN" 237163 NIL CDEN (NIL T T T) -7 NIL NIL NIL) (-142 232485 235673 235953 "CCLASS" 236260 T CCLASS (NIL) -8 NIL NIL NIL) (-141 231736 231893 232070 "CATEGORY" 232328 T -10 (NIL) -8 NIL NIL NIL) (-140 231309 231655 231703 "CATCTOR" 231708 T CATCTOR (NIL) -8 NIL NIL NIL) (-139 230760 231012 231110 "CATAST" 231231 T CATAST (NIL) -8 NIL NIL NIL) (-138 230236 230481 230573 "CASEAST" 230688 T CASEAST (NIL) -8 NIL NIL NIL) (-137 225246 226265 227018 "CARTEN" 229539 NIL CARTEN (NIL NIL NIL T) -8 NIL NIL NIL) (-136 224354 224502 224723 "CARTEN2" 225093 NIL CARTEN2 (NIL NIL NIL T T) -7 NIL NIL NIL) (-135 222670 223504 223761 "CARD" 224117 T CARD (NIL) -8 NIL NIL NIL) (-134 222246 222474 222549 "CAPSLAST" 222615 T CAPSLAST (NIL) -8 NIL NIL NIL) (-133 221750 221958 221986 "CACHSET" 222118 T CACHSET (NIL) -9 NIL 222196 NIL) (-132 221220 221542 221570 "CABMON" 221620 T CABMON (NIL) -9 NIL 221676 NIL) (-131 220693 220924 221034 "BYTEORD" 221130 T BYTEORD (NIL) -8 NIL NIL NIL) (-130 219675 220227 220369 "BYTE" 220532 T BYTE (NIL) -8 NIL NIL 220654) (-129 215025 219180 219352 "BYTEBUF" 219523 T BYTEBUF (NIL) -8 NIL NIL NIL) (-128 212534 214717 214824 "BTREE" 214951 NIL BTREE (NIL T) -8 NIL NIL NIL) (-127 209983 212182 212304 "BTOURN" 212444 NIL BTOURN (NIL T) -8 NIL NIL NIL) (-126 207353 209453 209494 "BTCAT" 209562 NIL BTCAT (NIL T) -9 NIL 209639 NIL) (-125 207020 207100 207249 "BTCAT-" 207254 NIL BTCAT- (NIL T T) -8 NIL NIL NIL) (-124 202430 206309 206337 "BTAGG" 206451 T BTAGG (NIL) -9 NIL 206561 NIL) (-123 201920 202045 202251 "BTAGG-" 202256 NIL BTAGG- (NIL T) -8 NIL NIL NIL) (-122 198915 201198 201413 "BSTREE" 201737 NIL BSTREE (NIL T) -8 NIL NIL NIL) (-121 198053 198179 198363 "BRILL" 198771 NIL BRILL (NIL T) -7 NIL NIL NIL) (-120 194705 196779 196820 "BRAGG" 197469 NIL BRAGG (NIL T) -9 NIL 197727 NIL) (-119 193234 193640 194195 "BRAGG-" 194200 NIL BRAGG- (NIL T T) -8 NIL NIL NIL) (-118 186461 192578 192763 "BPADICRT" 193081 NIL BPADICRT (NIL NIL) -8 NIL NIL NIL) (-117 184776 186398 186443 "BPADIC" 186448 NIL BPADIC (NIL NIL) -8 NIL NIL NIL) (-116 184474 184504 184618 "BOUNDZRO" 184740 NIL BOUNDZRO (NIL T T) -7 NIL NIL NIL) (-115 179702 180900 181812 "BOP" 183582 T BOP (NIL) -8 NIL NIL NIL) (-114 177483 177887 178362 "BOP1" 179260 NIL BOP1 (NIL T) -7 NIL NIL NIL) (-113 177184 177245 177273 "BOOLE" 177384 T BOOLE (NIL) -9 NIL 177466 NIL) (-112 176009 176758 176907 "BOOLEAN" 177055 T BOOLEAN (NIL) -8 NIL NIL NIL) (-111 175288 175692 175746 "BMODULE" 175751 NIL BMODULE (NIL T T) -9 NIL 175816 NIL) (-110 171089 175086 175159 "BITS" 175235 T BITS (NIL) -8 NIL NIL NIL) (-109 170510 170629 170769 "BINDING" 170969 T BINDING (NIL) -8 NIL NIL NIL) (-108 164515 170105 170254 "BINARY" 170381 T BINARY (NIL) -8 NIL NIL NIL) (-107 162295 163770 163811 "BGAGG" 164071 NIL BGAGG (NIL T) -9 NIL 164208 NIL) (-106 162126 162158 162249 "BGAGG-" 162254 NIL BGAGG- (NIL T T) -8 NIL NIL NIL) (-105 161197 161510 161715 "BFUNCT" 161941 T BFUNCT (NIL) -8 NIL NIL NIL) (-104 159887 160065 160353 "BEZOUT" 161021 NIL BEZOUT (NIL T T T T T) -7 NIL NIL NIL) (-103 156356 158739 159069 "BBTREE" 159590 NIL BBTREE (NIL T) -8 NIL NIL NIL) (-102 156090 156143 156171 "BASTYPE" 156290 T BASTYPE (NIL) -9 NIL NIL NIL) (-101 155942 155971 156044 "BASTYPE-" 156049 NIL BASTYPE- (NIL T) -8 NIL NIL NIL) (-100 155376 155452 155604 "BALFACT" 155853 NIL BALFACT (NIL T T) -7 NIL NIL NIL) (-99 154232 154791 154977 "AUTOMOR" 155221 NIL AUTOMOR (NIL T) -8 NIL NIL NIL) (-98 153958 153963 153989 "ATTREG" 153994 T ATTREG (NIL) -9 NIL NIL NIL) (-97 152210 152655 153007 "ATTRBUT" 153624 T ATTRBUT (NIL) -8 NIL NIL NIL) (-96 151818 152038 152104 "ATTRAST" 152162 T ATTRAST (NIL) -8 NIL NIL NIL) (-95 151354 151467 151493 "ATRIG" 151694 T ATRIG (NIL) -9 NIL NIL NIL) (-94 151163 151204 151291 "ATRIG-" 151296 NIL ATRIG- (NIL T) -8 NIL NIL NIL) (-93 150808 150994 151020 "ASTCAT" 151025 T ASTCAT (NIL) -9 NIL 151055 NIL) (-92 150535 150594 150713 "ASTCAT-" 150718 NIL ASTCAT- (NIL T) -8 NIL NIL NIL) (-91 148684 150311 150399 "ASTACK" 150478 NIL ASTACK (NIL T) -8 NIL NIL NIL) (-90 147189 147486 147851 "ASSOCEQ" 148366 NIL ASSOCEQ (NIL T T) -7 NIL NIL NIL) (-89 146221 146848 146972 "ASP9" 147096 NIL ASP9 (NIL NIL) -8 NIL NIL NIL) (-88 145984 146169 146208 "ASP8" 146213 NIL ASP8 (NIL NIL) -8 NIL NIL NIL) (-87 144852 145589 145731 "ASP80" 145873 NIL ASP80 (NIL NIL) -8 NIL NIL NIL) (-86 143750 144487 144619 "ASP7" 144751 NIL ASP7 (NIL NIL) -8 NIL NIL NIL) (-85 142704 143427 143545 "ASP78" 143663 NIL ASP78 (NIL NIL) -8 NIL NIL NIL) (-84 141673 142384 142501 "ASP77" 142618 NIL ASP77 (NIL NIL) -8 NIL NIL NIL) (-83 140585 141311 141442 "ASP74" 141573 NIL ASP74 (NIL NIL) -8 NIL NIL NIL) (-82 139485 140220 140352 "ASP73" 140484 NIL ASP73 (NIL NIL) -8 NIL NIL NIL) (-81 138589 139311 139411 "ASP6" 139416 NIL ASP6 (NIL NIL) -8 NIL NIL NIL) (-80 137536 138266 138384 "ASP55" 138502 NIL ASP55 (NIL NIL) -8 NIL NIL NIL) (-79 136485 137210 137329 "ASP50" 137448 NIL ASP50 (NIL NIL) -8 NIL NIL NIL) (-78 135573 136186 136296 "ASP4" 136406 NIL ASP4 (NIL NIL) -8 NIL NIL NIL) (-77 134661 135274 135384 "ASP49" 135494 NIL ASP49 (NIL NIL) -8 NIL NIL NIL) (-76 133445 134200 134368 "ASP42" 134550 NIL ASP42 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-75 132222 132978 133148 "ASP41" 133332 NIL ASP41 (NIL NIL NIL NIL) -8 NIL NIL NIL) (-74 131172 131899 132017 "ASP35" 132135 NIL ASP35 (NIL NIL) -8 NIL NIL NIL) (-73 130937 131120 131159 "ASP34" 131164 NIL ASP34 (NIL NIL) -8 NIL NIL NIL) (-72 130674 130741 130817 "ASP33" 130892 NIL ASP33 (NIL NIL) -8 NIL NIL NIL) (-71 129568 130309 130441 "ASP31" 130573 NIL ASP31 (NIL NIL) -8 NIL NIL NIL) (-70 129333 129516 129555 "ASP30" 129560 NIL ASP30 (NIL NIL) -8 NIL NIL NIL) (-69 129068 129137 129213 "ASP29" 129288 NIL ASP29 (NIL NIL) -8 NIL NIL NIL) (-68 128833 129016 129055 "ASP28" 129060 NIL ASP28 (NIL NIL) -8 NIL NIL NIL) (-67 128598 128781 128820 "ASP27" 128825 NIL ASP27 (NIL NIL) -8 NIL NIL NIL) (-66 127682 128296 128407 "ASP24" 128518 NIL ASP24 (NIL NIL) -8 NIL NIL NIL) (-65 126759 127484 127596 "ASP20" 127601 NIL ASP20 (NIL NIL) -8 NIL NIL NIL) (-64 125847 126460 126570 "ASP1" 126680 NIL ASP1 (NIL NIL) -8 NIL NIL NIL) (-63 124790 125521 125640 "ASP19" 125759 NIL ASP19 (NIL NIL) -8 NIL NIL NIL) (-62 124527 124594 124670 "ASP12" 124745 NIL ASP12 (NIL NIL) -8 NIL NIL NIL) (-61 123379 124126 124270 "ASP10" 124414 NIL ASP10 (NIL NIL) -8 NIL NIL NIL) (-60 121230 123223 123314 "ARRAY2" 123319 NIL ARRAY2 (NIL T) -8 NIL NIL NIL) (-59 116995 120878 120992 "ARRAY1" 121147 NIL ARRAY1 (NIL T) -8 NIL NIL NIL) (-58 116027 116200 116421 "ARRAY12" 116818 NIL ARRAY12 (NIL T T) -7 NIL NIL NIL) (-57 110339 112257 112332 "ARR2CAT" 114962 NIL ARR2CAT (NIL T T T) -9 NIL 115720 NIL) (-56 107773 108517 109471 "ARR2CAT-" 109476 NIL ARR2CAT- (NIL T T T T) -8 NIL NIL NIL) (-55 107090 107400 107525 "ARITY" 107666 T ARITY (NIL) -8 NIL NIL NIL) (-54 105866 106018 106317 "APPRULE" 106926 NIL APPRULE (NIL T T T) -7 NIL NIL NIL) (-53 105517 105565 105684 "APPLYORE" 105812 NIL APPLYORE (NIL T T T) -7 NIL NIL NIL) (-52 104871 105110 105230 "ANY" 105415 T ANY (NIL) -8 NIL NIL NIL) (-51 104149 104272 104429 "ANY1" 104745 NIL ANY1 (NIL T) -7 NIL NIL NIL) (-50 101679 102586 102913 "ANTISYM" 103873 NIL ANTISYM (NIL T NIL) -8 NIL NIL NIL) (-49 101171 101386 101482 "ANON" 101601 T ANON (NIL) -8 NIL NIL NIL) (-48 95420 99710 100164 "AN" 100735 T AN (NIL) -8 NIL NIL NIL) (-47 91318 92706 92757 "AMR" 93505 NIL AMR (NIL T T) -9 NIL 94105 NIL) (-46 90430 90651 91014 "AMR-" 91019 NIL AMR- (NIL T T T) -8 NIL NIL NIL) (-45 74869 90347 90408 "ALIST" 90413 NIL ALIST (NIL T T) -8 NIL NIL NIL) (-44 71674 74463 74632 "ALGSC" 74787 NIL ALGSC (NIL T NIL NIL NIL) -8 NIL NIL NIL) (-43 68230 68784 69391 "ALGPKG" 71114 NIL ALGPKG (NIL T T) -7 NIL NIL NIL) (-42 67507 67608 67792 "ALGMFACT" 68116 NIL ALGMFACT (NIL T T T) -7 NIL NIL NIL) (-41 63542 64121 64715 "ALGMANIP" 67091 NIL ALGMANIP (NIL T T) -7 NIL NIL NIL) (-40 54912 63168 63318 "ALGFF" 63475 NIL ALGFF (NIL T T T NIL) -8 NIL NIL NIL) (-39 54108 54239 54418 "ALGFACT" 54770 NIL ALGFACT (NIL T) -7 NIL NIL NIL) (-38 53049 53649 53687 "ALGEBRA" 53692 NIL ALGEBRA (NIL T) -9 NIL 53733 NIL) (-37 52767 52826 52958 "ALGEBRA-" 52963 NIL ALGEBRA- (NIL T T) -8 NIL NIL NIL) (-36 34860 50769 50821 "ALAGG" 50957 NIL ALAGG (NIL T T) -9 NIL 51118 NIL) (-35 34396 34509 34535 "AHYP" 34736 T AHYP (NIL) -9 NIL NIL NIL) (-34 33327 33575 33601 "AGG" 34100 T AGG (NIL) -9 NIL 34379 NIL) (-33 32761 32923 33137 "AGG-" 33142 NIL AGG- (NIL T) -8 NIL NIL NIL) (-32 30567 30990 31395 "AF" 32403 NIL AF (NIL T T) -7 NIL NIL NIL) (-31 30047 30292 30382 "ADDAST" 30495 T ADDAST (NIL) -8 NIL NIL NIL) (-30 29315 29574 29730 "ACPLOT" 29909 T ACPLOT (NIL) -8 NIL NIL NIL) (-29 18638 26442 26480 "ACFS" 27087 NIL ACFS (NIL T) -9 NIL 27326 NIL) (-28 16665 17155 17917 "ACFS-" 17922 NIL ACFS- (NIL T T) -8 NIL NIL NIL) (-27 12783 14712 14738 "ACF" 15617 T ACF (NIL) -9 NIL 16030 NIL) (-26 11487 11821 12314 "ACF-" 12319 NIL ACF- (NIL T) -8 NIL NIL NIL) (-25 11059 11254 11280 "ABELSG" 11372 T ABELSG (NIL) -9 NIL 11437 NIL) (-24 10926 10951 11017 "ABELSG-" 11022 NIL ABELSG- (NIL T) -8 NIL NIL NIL) (-23 10269 10556 10582 "ABELMON" 10752 T ABELMON (NIL) -9 NIL 10864 NIL) (-22 9933 10017 10155 "ABELMON-" 10160 NIL ABELMON- (NIL T) -8 NIL NIL NIL) (-21 9281 9653 9679 "ABELGRP" 9751 T ABELGRP (NIL) -9 NIL 9826 NIL) (-20 8744 8873 9089 "ABELGRP-" 9094 NIL ABELGRP- (NIL T) -8 NIL NIL NIL) (-19 4333 8083 8122 "A1AGG" 8127 NIL A1AGG (NIL T) -9 NIL 8167 NIL) (-18 30 1251 2813 "A1AGG-" 2818 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 a9808ba4..5a65fd42 100644
--- a/src/share/algebra/operation.daase
+++ b/src/share/algebra/operation.daase
@@ -1,55 +1,87 @@
-(733597 . 3480886513)
-(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-354)) (-5 *2 (-1277 *1))))
+(733710 . 3480912611)
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-158)))))
+(((*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 *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 *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 *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)
- (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-146)) (-4 *1 (-916))
- (-5 *2 (-1277 *1)))))
-(((*1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-373)) (-4 *2 (-1109)))))
-(((*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-368)) (-4 *4 (-562)) (-4 *5 (-1253 *4))
- (-5 *2 (-2 (|:| -4288 (-629 *4 *5)) (|:| -1338 (-413 *5))))
- (-5 *1 (-629 *4 *5)) (-5 *3 (-413 *5))))
+ (-12 (-5 *2 (-176 (-570))) (-5 *1 (-771 *3)) (-4 *3 (-410))))
((*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 *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 *4)
- (-12 (-4 *5 (-368)) (-4 *7 (-1253 *5)) (-4 *4 (-730 *5 *7))
- (-5 *2 (-2 (|:| -2415 (-695 *6)) (|:| |vec| (-1277 *5))))
- (-5 *1 (-817 *5 *6 *7 *4 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 *4)))))
-(((*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 *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 *1 *1 *1) (-4 *1 (-667))))
-(((*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) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))))
+ (-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 *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 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2407 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+ (-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 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3570 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+ (-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 (-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 *1) (-4 *1 (-667))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-562))
- (-5 *2 (-868)) (-5 *1 (-32 *4 *5)))))
+ (-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 *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 *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 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))))
+(((*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 *3 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *1) (-12 (-5 *2 (-1134 (-570) (-618 (-48)))) (-5 *1 (-48))))
((*1 *2 *1)
(-12 (-4 *3 (-1001 *2)) (-4 *4 (-1253 *3)) (-4 *2 (-311))
@@ -66,8 +98,11 @@
(-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 (-1282)) (-5 *1 (-869)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(((*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 (-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))))
@@ -76,10 +111,17 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
(-4 *3 (-1253 *2)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1094)))))
-(((*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 *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)
+ (-12 (-5 *2 (-650 (-2 (|:| |val| (-650 *6)) (|:| -3687 *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)) (|:| -3687 *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 *1 *1 *1) (-4 *1 (-667))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-31))))
((*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))) ((*1 *1) (-4 *1 (-551)))
@@ -90,40 +132,21 @@
(-4 *3 (-562)) (-4 *3 (-174)) (-14 *4 (-928))
(-14 *5 (-650 (-1186))) (-14 *6 (-1277 (-695 *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 (-1277 (-695 *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 (-413 (-959 *4))) (-4 *4 (-311))
- (-5 *2 (-413 (-424 (-959 *4)))) (-5 *1 (-1051 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *4 (-570)) (-5 *2 (-650 (-2 (|:| -3801 *3) (|:| -2130 *4))))
- (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))))
-(((*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)))))
+ (-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)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-697 (-1144))) (-5 *1 (-1160)))))
+(((*1 *2 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
+ (-5 *2 (-2 (|:| -4341 *3) (|:| |coeff| *3))) (-5 *1 (-563 *5 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-373))
+ (-4 *3 (-1109)))))
(((*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 (-1253 *4))
@@ -140,8 +163,7 @@
(-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 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1235))))))
(((*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))))
@@ -150,92 +172,82 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
(-4 *3 (-1253 *2)))))
-(((*1 *2 *3)
- (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $)))))
- (-4 *4 (-1253 *3))
- (-5 *2
- (-2 (|:| -1972 (-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 (|:| -1972 (-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 (|:| -1972 (-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 (|:| -1972 (-695 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-695 *3))))
- (-5 *1 (-1286 *4 *3 *5 *6)) (-4 *6 (-415 *3 *5)))))
-(((*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)
- (|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 *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)
- (|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))))
+ (-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)
- (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))))
+ (-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 *1)
+ (-12 (-5 *2 (-2 (|:| -3930 *3) (|:| |coef1| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
(-5 *2
- (-2 (|:| -1981 (-777)) (|:| |curves| (-777))
+ (-2 (|:| -3917 (-777)) (|:| |curves| (-777))
(|:| |polygons| (-777)) (|:| |constructs| (-777)))))))
-(((*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)))))
-(((*1 *1 *1 *1) (-4 *1 (-479))) ((*1 *1 *1 *1) (-4 *1 (-767))))
-(((*1 *2 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*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 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))))
+(((*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)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-650 (-320 (-227)))) (-5 *3 (-227)) (-5 *2 (-112))
+ (-5 *1 (-212)))))
+(((*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 (-1304 *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 (-1304 *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 (-1304 *4 *5 *6))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
(((*1 *1 *2)
(-12 (-5 *2 (-650 (-570))) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
(-14 *4 (-650 (-1186)))))
@@ -268,31 +280,19 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-777)) (-5 *1 (-1297 *3 *4))
(-4 *4 (-723 (-413 (-570)))) (-4 *3 (-856)) (-4 *4 (-174)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
(((*1 *1 *1) (-5 *1 (-542))))
-(((*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 *1 *1 *1)
- (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
- (-12 (-5 *4 (-570))
- (-5 *6
- (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2158 (-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)) (|:| -2158 (-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 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*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 *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) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
(((*1 *2 *3)
(|partial| -12 (-5 *3 (-52)) (-5 *1 (-51 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
@@ -368,26 +368,26 @@
(-4 *1 (-985 *3 *4 *5 *6))))
((*1 *2 *1) (|partial| -12 (-4 *1 (-1047 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
- (|partial| -2892
+ (|partial| -2895
(-12 (-5 *2 (-959 *3))
- (-12 (-1795 (-4 *3 (-38 (-413 (-570)))))
- (-1795 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186))))
+ (-12 (-1796 (-4 *3 (-38 (-413 (-570)))))
+ (-1796 (-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 (-1795 (-4 *3 (-551))) (-1795 (-4 *3 (-38 (-413 (-570)))))
+ (-12 (-1796 (-4 *3 (-551))) (-1796 (-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 (-1795 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570))))
+ (-12 (-1796 (-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| -2892
+ (|partial| -2895
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
- (-12 (-1795 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
+ (-12 (-1796 (-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))
@@ -397,391 +397,400 @@
(|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 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *3)
- (-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 *1)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368))
- (-14 *4 (-1186)) (-14 *5 *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 *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 *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 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1235))))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-650 (-320 (-227)))) (-5 *3 (-227)) (-5 *2 (-112))
- (-5 *1 (-212)))))
+ (-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 *1) (-12 (-5 *2 (-512)) (-5 *1 (-531))))
+ ((*1 *2 *1) (-12 (-5 *2 (-512)) (-5 *1 (-1160)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))
+ (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))
+ (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))
+ (-5 *4 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-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 (|:| -4400 *5) (|:| -4413 *5)))) (-5 *1 (-1029 *3))
+ (-4 *3 (-1253 (-570))) (-5 *4 (-2 (|:| -4400 *5) (|:| -4413 *5)))))
+ ((*1 *2 *3)
+ (-12
+ (-5 *2
+ (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))
+ (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570))))))
+ ((*1 *2 *3 *4)
+ (-12
+ (-5 *2
+ (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))
+ (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-413 (-570))))
+ (-5 *4 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-413 (-570)))
+ (-5 *2 (-650 (-2 (|:| -4400 *4) (|:| -4413 *4)))) (-5 *1 (-1030 *3))
+ (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *4 *5)
+ (-12 (-5 *5 (-413 (-570)))
+ (-5 *2 (-650 (-2 (|:| -4400 *5) (|:| -4413 *5)))) (-5 *1 (-1030 *3))
+ (-4 *3 (-1253 *5)) (-5 *4 (-2 (|:| -4400 *5) (|:| -4413 *5))))))
(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4449)) (-4 *1 (-495 *4))
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4452)) (-4 *1 (-495 *4))
(-4 *4 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-799))
+ (-4 *3 (-13 (-856) (-10 -8 (-15 -1426 ((-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 -1426 ((-1186) $))
+ (-15 -2800 ((-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 -1426 ((-1186) $))
+ (-15 -2800 ((-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) (-5 *1 (-145)))
+ ((*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 *2 *1) (-12 (-5 *2 (-424 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
+(((*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 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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 *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 *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 *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 *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 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
-(((*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 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
-(((*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)
- (-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) (|:| -3684 *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 -1942 ($ $ $))))))))
-(((*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) (|partial| -4 *1 (-1161))))
+(((*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266))))
+ ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
+(((*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 (-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 *1 *1 *2)
(-12
(-5 *2
- (-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868)))
- (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868)))
+ (-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868)))
+ (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868)))
(|:| |args| (-650 (-868)))))
(-5 *1 (-1186))))
((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-650 (-868)))) (-5 *1 (-1186)))))
(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))))
-(((*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 *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 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
-(((*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 *2 *2)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
-(((*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) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))))
+(((*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 (|:| -3303 (-1182 *9)) (|:| |polval| (-1182 *8))))
+ (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)) (-5 *4 (-1182 *8)))))
+(((*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 (-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 *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 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*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) (-5 *1 (-443))))
-(((*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 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-570)) (-5 *1 (-206)))))
-(((*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 *1) (-5 *1 (-443))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-650 (-950 (-227)))))
- (-5 *2 (-650 (-1103 (-227)))) (-5 *1 (-935)))))
+ (-12 (-5 *2 (-868)) (-5 *1 (-1166 *3)) (-4 *3 (-1109))
+ (-4 *3 (-1227)))))
+(((*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 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -4413 *6) (|:| |sol?| (-112))) (-570)
+ *6))
+ (-4 *6 (-368)) (-4 *7 (-1253 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6))
+ (-2 (|:| -4341 (-413 *7)) (|:| |coeff| (-413 *7))) "failed"))
+ (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
(((*1 *1 *2)
- (|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 (-1297 *3 *4))
- (-4 *3 (-856)) (-4 *4 (-174)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+ (-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 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
- (-5 *1 (-336)))))
+ (-12 (-5 *3 (-1 *5 *4)) (-4 *4 (-1109)) (-4 *5 (-1109))
+ (-5 *2 (-1 *5)) (-5 *1 (-689 *4 *5)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))))
+(((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
+(((*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 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*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)
+ (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
+ (-4 *4 (-174)))))
+(((*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 (-112)) (-5 *1 (-115)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)) (-5 *3 (-1168)))))
+(((*1 *2 *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 *1 *2 *3)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*1 *2 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-189))) (-5 *1 (-189)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)))))
-(((*1 *1) (-5 *1 (-227))) ((*1 *1) (-5 *1 (-384))))
-(((*1 *2 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+ (-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 *2)
+ (-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 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))))
+(((*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) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))))
(((*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 (-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 (|:| -4122 (-650 *6)) (|:| -1762 (-650 *6)))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-497)) (-5 *4 (-961)) (-5 *2 (-697 (-539)))
- (-5 *1 (-539))))
+(((*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 *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) (|:| -3356 (-650 *9))))
+ (-5 *3 (-650 *9)) (-4 *1 (-1220 *6 *7 *8 *9))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-961)) (-4 *3 (-1109)) (-5 *2 (-697 *1))
- (-4 *1 (-773 *3)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34))))))
-(((*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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
+ (|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) (|:| -3356 (-650 *8))))
+ (-5 *3 (-650 *8)) (-4 *1 (-1220 *5 *6 *7 *8)))))
+(((*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 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
(((*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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*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 *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 *1)
- (-12 (-5 *2 (-2 (|:| |cd| (-1168)) (|:| -3600 (-1168))))
- (-5 *1 (-828)))))
-(((*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 *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 *2)
+ (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -3827 (-650 *1))))
+ (-4 *1 (-372 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-459 *3 *4 *5 *6))
+ (|:| -3827 (-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 *1) (-5 *1 (-443))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*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)
- (-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 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
-(((*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)))))
+ (|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 *3)
- (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*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 *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)))))
+ (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1277 (-3 (-474) "undefined"))) (-5 *1 (-1278)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))))
+(((*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 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
(((*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 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
+(((*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 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880)))
+ (-5 *1 (-474)))))
+(((*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 *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 *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) (|:| -3827 (-650 *4))))
+ (-5 *1 (-807 *6 *4 *3)) (-4 *3 (-662 *4)))))
(((*1 *2) (-12 (-5 *2 (-650 *3)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
-(((*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 *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 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
-(((*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 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
+(((*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))))
+(((*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) (|:| -3687 *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 -1939 ($ $ $))))))))
+(((*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 *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)
- (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570)))
- (-5 *2 (-1277 (-413 (-570)))) (-5 *1 (-1304 *4)))))
-(((*1 *1) (-5 *1 (-1072))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))))
-(((*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 *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)
- (-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 *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 *1) (-12 (-5 *2 (-780)) (-5 *1 (-52)))))
-(((*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 (|:| -4323 (-777)) (|:| -1739 *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 (|:| -4323 (-777)) (|:| -1739 *6)))
- (-5 *1 (-919 *4 *5 *6)))))
+(((*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 (-928))) (-5 *1 (-890))))
+ ((*1 *1 *1) (-5 *1 (-980)))
+ ((*1 *1 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+(((*1 *1 *1) (-4 *1 (-562))))
+(((*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)
- (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354))
- (-5 *2 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129))))))
- (-5 *1 (-351 *4)))))
-(((*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 *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 (|:| -4305 (-650 *9)) (|:| -3684 *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))
+ (-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 *1) (-12 (-5 *2 (-570)) (-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 (-2 (|:| |val| (-112)) (|:| -3687 *4))))
+ (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-3 (-2 (|:| -4341 *7) (|:| |coeff| *7)) "failed") *7))
+ (-5 *6 (-650 (-413 *8))) (-4 *7 (-368)) (-4 *8 (-1253 *7))
+ (-5 *3 (-413 *8))
(-5 *2
- (-2 (|:| -4305 (-650 *9)) (|:| -3684 *4) (|:| |ineq| (-650 *9))))
- (-5 *1 (-1116 *6 *7 *8 *9 *4)) (-5 *3 (-650 *9))
- (-4 *4 (-1080 *6 *7 *8 *9)))))
+ (-2
+ (|:| |answer|
+ (-2 (|:| |mainpart| *3)
+ (|:| |limitedlogs|
+ (-650 (-2 (|:| |coeff| *3) (|:| |logand| *3))))))
+ (|:| |a0| *7)))
+ (-5 *1 (-580 *7 *8)))))
+(((*1 *2 *1) (-12 (-5 *2 (-780)) (-5 *1 (-52)))))
(((*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)))))
+ (-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 (-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 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-777)))))
+(((*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 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
(((*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))))
@@ -803,116 +812,69 @@
(-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 *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 (-1253 *6))
- (-5 *2 (-2 (|:| |answer| (-592 (-413 *7))) (|:| |a0| *6)))
- (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
(((*1 *2 *1)
- (-12 (-4 *2 (-1253 *3)) (-5 *1 (-405 *3 *2))
- (-4 *3 (-13 (-368) (-148))))))
-(((*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 *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)))))
+ (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
+ (-5 *2 (-1182 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))))
+(((*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 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
(((*1 *1 *2 *3) (-12 (-5 *2 (-1113)) (-5 *3 (-780)) (-5 *1 (-52)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34)))
- (-4 *2 (-13 (-1109) (-34))))))
-(((*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) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
-(((*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 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *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 (-1166 *4)) (-5 *3 (-1 *4 (-570))) (-4 *4 (-1058))
+ (-5 *1 (-1170 *4)))))
+(((*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)
- (-12 (-5 *2 (-650 (-2 (|:| -2106 *3) (|:| -2340 *4))))
+ (-12 (-5 *2 (-650 (-2 (|:| -2107 *3) (|:| -2340 *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 *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 *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 *1 *2)
+ (|partial| -12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))))
+(((*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)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-849 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 *4))
- (-5 *1 (-270)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-695 (-413 (-959 (-570)))))
- (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(((*1 *2 *2 *2)
- (-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 *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 *3 *4)
- (-12 (-5 *4 (-650 *5)) (-4 *5 (-1253 *3)) (-4 *3 (-311))
- (-5 *2 (-112)) (-5 *1 (-461 *3 *5)))))
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*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 *3 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5))
+ (-4 *4 (-1109)) (-4 *5 (-1109)))))
+(((*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 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-173))))))
+(((*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 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
(((*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))))
@@ -940,268 +902,221 @@
(-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 *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 -3799 ($ *7)))))
- (-4 *7 (-854))
- (-4 *8
- (-13 (-1255 *3 *7) (-368) (-1212)
- (-10 -8 (-15 -3547 ($ $)) (-15 -2898 ($ $)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-458))
(-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 *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 (-320 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*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)))))
+ (-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 (-5 *2 (-650 (-298 *3))) (-5 *1 (-298 *3)) (-4 *3 (-562))
- (-4 *3 (-1227)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+ (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 *4))))
+ (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4))))
+(((*1 *2)
+ (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
+ (-4 *3 (-562)))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
+(((*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 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-866)) (-5 *2 (-697 (-1235))) (-5 *3 (-1235)))))
(((*1 *2 *2) (-12 (-5 *1 (-688 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928))
- (-5 *2
- (-3 (-1182 *4)
- (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129)))))))
- (-5 *1 (-351 *4)) (-4 *4 (-354)))))
+(((*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-403)))))
(((*1 *1 *1) (-5 *1 (-112))))
-(((*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) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
-(((*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) (|:| -3684 *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)) (|:| -3684 *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) (|:| -3684 *9))))
- (-5 *1 (-1117 *6 *7 *4 *8 *9)))))
-(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-565)))))
+(((*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-112))))
+ (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *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 (-112)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4))))
- (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))))
-(((*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 (-5 *2 (-650 (-1174 *3 *4))) (-5 *1 (-1174 *3 *4))
+ (-14 *3 (-928)) (-4 *4 (-1058)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*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 *2)
+ (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
+ (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))))
+(((*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 (-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))))
+ (-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 *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 *1 *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 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-798)) (-4 *3 (-174)))))
+ (-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 (-5 *2 (-112)) (-5 *1 (-283)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-695 (-413 (-959 (-570)))))
- (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))))
-(((*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)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5))
+ (-4 *4 (-1109)) (-4 *5 (-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 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
(((*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 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
+(((*1 *1 *2 *2)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(((*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 *1 *1 *2 *3 *1)
+ (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))))
+(((*1 *1) (-5 *1 (-1072))))
+(((*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 *1) (-12 (-4 *1 (-515 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-856)))))
(((*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 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
- ((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
-(((*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 *3) (-12 (-5 *3 (-827)) (-5 *2 (-52)) (-5 *1 (-837)))))
-(((*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 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))))
-(((*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)))))
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
(((*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 *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 *1) (-12 (-5 *2 (-512)) (-5 *1 (-337)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2))
- (-5 *2 (-384)) (-5 *1 (-791 *4))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*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)))))
+(((*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)
- (|partial| -12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058))
- (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5))))
- ((*1 *2 *3)
- (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562))
- (-4 *4 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *4))))
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266)))
+ (-5 *2 (-1278)) (-5 *1 (-1281)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-750 *3)) (-4 *3 (-174)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
+(((*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 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
+(((*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 *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)
- (|partial| -12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-928)) (-4 *5 (-562))
- (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5))))
- ((*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))))
+ (-12 (-5 *4 (-899 *5)) (-4 *5 (-1109)) (-5 *2 (-112))
+ (-5 *1 (-897 *5 *3)) (-4 *3 (-1227))))
((*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)))))
-(((*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 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-695 *3))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $)))))
- (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *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 *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 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
(((*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 (|:| -4260 (-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) (|:| -3399 (-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 (|:| -4397 *3) (|:| -4410 *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 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-212)))))
-(((*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 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))))
-(((*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-372 *3)))))
-(((*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))))
- ((*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 *1) (-5 *1 (-142))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570))))
- (-5 *1 (-192)))))
-(((*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 *3 *3)
- (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112))
- (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
-(((*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)))))
+ (-4 *5 (-1253 (-413 *4))) (-4 *6 (-347 *3 *4 *5)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-354))
- (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -2066 *3))))
- (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-777)) (-5 *1 (-596)))))
-(((*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)))))
+ (-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 *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) (-12 (-5 *3 (-227)) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
+(((*1 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-177)))))
(((*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)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-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 *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 *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 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*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 *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) (-12 (-5 *2 (-1168)) (-5 *1 (-243)))))
+(((*1 *1 *1) (-4 *1 (-1153))))
(((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-638)))))
-(((*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 (-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) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
(((*1 *2 *2 *3)
(-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-618 *4)) (-5 *1 (-617 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
+(((*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 *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 *1 *2 *3)
(-12 (-5 *2 (-1186)) (-5 *3 (-650 *1)) (-4 *1 (-436 *4))
(-4 *4 (-1109))))
@@ -1213,141 +1128,92 @@
(-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 *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 *1) (-12 (-5 *2 (-295)) (-5 *1 (-284)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011))
- (-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 *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 *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 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))))
-(((*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 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*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)
+ (-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 *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 *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)
(|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 *4)
- (-12 (-5 *3 (-695 *1)) (-5 *4 (-1277 *1)) (-4 *1 (-645 *5))
- (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -2415 (-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 (-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 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*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 *2 *2 *3 *2)
+ (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))))
(((*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 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
-(((*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 -1942 ($ $ $)))))
- (-4 *3 (-562)) (-5 *1 (-1256 *3 *4)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 *6)) (-4 *5 (-1231)) (-4 *6 (-1253 *5))
- (-5 *2 (-2 (|:| -3357 (-777)) (|:| -1452 *3) (|:| |radicand| *6)))
- (-5 *1 (-149 *5 *6 *7)) (-5 *4 (-777)) (-4 *7 (-1253 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-320 (-384))) (-5 *2 (-320 (-227))) (-5 *1 (-309)))))
-(((*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) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4))
- (-4 *4 (-354)))))
+ (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4))
+ (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))))
+(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
(((*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 *1)
+ (|partial| -12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058))
+ (-4 *2 (-1268 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-650 *5))
- (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *2 *3 *4 *4)
- (-12 (-5 *4 (-777)) (-4 *5 (-354)) (-4 *6 (-1253 *5))
- (-5 *2
- (-650
- (-2 (|:| -1972 (-695 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-695 *6)))))
- (-5 *1 (-504 *5 *6 *7))
- (-5 *3
- (-2 (|:| -1972 (-695 *6)) (|:| |basisDen| *6)
- (|:| |basisInv| (-695 *6))))
- (-4 *7 (-1253 *6)))))
-(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
-(((*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)) (|:| -3684 *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)) (|:| -3684 *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)) (|:| -3684 *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)) (|:| -3684 *4))))))
- (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -3900 (-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 *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 *1 *2 *3)
+ (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570)))))
+ (-4 *2 (-13 (-856) (-21))))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
+(((*1 *1) (-5 *1 (-443))))
+(((*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)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129))))))
+ (-4 *4 (-354)) (-5 *2 (-1282)) (-5 *1 (-534 *4)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*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 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -1364,54 +1230,65 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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 (-112)) (-5 *1 (-443)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3930 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*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 (-4 *1 (-395)) (-5 *2 (-112)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *5 (-1253 *4))
- (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -4305 *5))))
- (-5 *1 (-815 *4 *5 *3 *6)) (-4 *3 (-662 *5))
- (-4 *6 (-662 (-413 *5))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1182 *3)) (-4 *3 (-373)) (-4 *1 (-333 *3))
- (-4 *3 (-368)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))))
-(((*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 (-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 *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 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-570))
- (|:| -3477 (-650 (-2 (|:| |irr| *3) (|:| -3563 (-570)))))))
- (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
- ((*1 *2 *3 *4)
- (-12 (-5 *4 (-112))
- (-5 *2
- (-2 (|:| |contp| (-570))
- (|:| -3477 (-650 (-2 (|:| |irr| *3) (|:| -3563 (-570)))))))
- (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
+ (-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 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-650 *11))
+ (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3687 *11))))))
+ (-5 *6 (-777))
+ (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3687 *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))))
+ ((*1 *2 *3 *4 *2 *5 *6)
+ (-12
+ (-5 *5
+ (-2 (|:| |done| (-650 *11))
+ (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3687 *11))))))
+ (-5 *6 (-777))
+ (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3687 *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)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(((*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)))))
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-858 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-859 *5 *3))
+ (-4 *3 (-858 *5)))))
+(((*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 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -1432,25 +1309,32 @@
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-636 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011) (-1212))))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-1282)) (-5 *1 (-837)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-368) (-1047 (-413 *2)))) (-5 *2 (-570))
- (-5 *1 (-116 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*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 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-4 *2 (-1253 *4))
- (-5 *1 (-929 *4 *2)))))
+ (-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 *1 *2)
+ (-12
+ (-5 *2
+ (-650
+ (-2
+ (|:| -2107
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227))))
+ (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227)))
+ (|:| |g| (-320 (-227))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (|:| -2340
+ (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
+ (|:| |expense| (-384)) (|:| |accuracy| (-384))
+ (|:| |intermediateResults| (-384)))))))
+ (-5 *1 (-809)))))
+(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-758)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-122 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -1467,28 +1351,29 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4440)) (-4 *1 (-410))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4443)) (-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 *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 *1) (-12 (-5 *2 (-777)) (-5 *1 (-145)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*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
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-570)) (-5 *1 (-206)))))
(((*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 *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 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*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)
@@ -1497,32 +1382,26 @@
(-12 (-5 *2 (-1282)) (-5 *1 (-216 *3))
(-4 *3
(-13 (-856)
- (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 (*2 $))
- (-15 -2176 (*2 $)))))))
+ (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 (*2 $))
+ (-15 -2353 (*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 (-650 (-928))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*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)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*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 *1) (-5 *1 (-334))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-618 *1)) (-4 *1 (-306)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-158)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*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 *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 *1) (-12 (-5 *2 (-650 (-177))) (-5 *1 (-1094)))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -1539,6 +1418,10 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
+(((*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)))))
(((*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))))
@@ -1558,38 +1441,38 @@
(-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))))
((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-777)))))
-(((*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 *2) (-12 (-5 *2 (-384)) (-5 *1 (-97)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-311)) (-4 *6 (-378 *5)) (-4 *4 (-378 *5))
- (-5 *2
- (-2 (|:| |particular| (-3 *4 "failed")) (|:| -1972 (-650 *4))))
- (-5 *1 (-1133 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
+(((*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 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*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 *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 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-854)) (-5 *1 (-307 *3)))))
+(((*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 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))))
(((*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 *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)))))
+ (-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 (-5 *2 (-1144)) (-5 *1 (-1160)))))
(((*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)
- (-12 (-5 *3 (-650 (-618 *5))) (-4 *4 (-1109)) (-5 *2 (-618 *5))
- (-5 *1 (-579 *4 *5)) (-4 *5 (-436 *4)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+ (-12 (-5 *2 (-650 *4)) (-5 *1 (-1150 *3 *4))
+ (-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34))))))
(((*1 *1 *1) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -1606,40 +1489,30 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*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 *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 *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 (-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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1942 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *1) (-5 *1 (-443))))
+(((*1 *1) (-5 *1 (-1279))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-777)) (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
(((*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 *3 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *5 (-695 (-227))) (-5 *4 (-227))
- (-5 *2 (-1044)) (-5 *1 (-758)))))
-(((*1 *1 *2 *2 *3 *1)
- (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-295)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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 (-650 (-2 (|:| -3804 *4) (|:| -3079 (-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 *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 *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 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112))
+ (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -1656,63 +1529,44 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*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)
- (-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 *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)
- (-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 (-413 (-959 *5))) (-5 *4 (-1186))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-320 *5)))
- (-5 *1 (-1138 *5))))
+ (-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 (-413 (-959 *5)))) (-5 *4 (-650 (-1186)))
- (-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-650 (-320 *5))))
- (-5 *1 (-1138 *5)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*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 (|:| -3205 (-1182 *5)) (|:| -3424 (-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 (|:| -3205 (-1182 *4)) (|:| -3424 (-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 (|:| -3205 (-1182 *5)) (|:| -3424 (-650 (-959 *5))))))
- (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5)))
- (-14 *6 (-650 (-1186))))))
-(((*1 *1) (-5 *1 (-158)))
- ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+ (-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 *2 (-368)) (-4 *2 (-854)) (-5 *1 (-952 *2 *3))
- (-4 *3 (-1253 *2)))))
-(((*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 *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))))
+ (-12 (-5 *3 (-650 (-650 (-950 (-227)))))
+ (-5 *2 (-650 (-1103 (-227)))) (-5 *1 (-935)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-1209 *4))
+ (-4 *4 (-1058)))))
+(((*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 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-112))
+ (-5 *1 (-678 *4)))))
+(((*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 (-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 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -1731,290 +1585,322 @@
(-5 *1 (-1172 *3)))))
(((*1 *2 *3 *2)
(-12 (-5 *1 (-685 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(((*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 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
-(((*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)))))
-(((*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 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *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)))))
-(((*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 *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)
- (-12 (-4 *4 (-354)) (-5 *2 (-965 (-1182 *4))) (-5 *1 (-362 *4))
- (-5 *3 (-1182 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*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 *2)
+ (|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 (-1297 *3 *4))
+ (-4 *3 (-856)) (-4 *4 (-174)))))
(((*1 *2 *2 *3)
- (-12 (-5 *1 (-685 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+ (-12 (-5 *2 (-1277 (-1277 (-570)))) (-5 *3 (-928)) (-5 *1 (-472)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-1069)) (-4 *3 (-1212))
- (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
+ (-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 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
(((*1 *2 *1 *3)
- (-12 (-4 *1 (-866)) (-5 *2 (-697 (-130))) (-5 *3 (-130)))))
-(((*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 *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 *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 *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 *2)
- (-12 (-5 *2 (-570)) (-4 *1 (-693 *3 *4 *5)) (-4 *3 (-1058))
- (-4 *4 (-378 *3)) (-4 *5 (-378 *3)))))
+ (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))))
(((*1 *2 *3)
(-12
(-5 *3
- (-650
- (-2 (|:| -4006 (-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)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *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 (-695 (-320 (-227))))
+ (-5 *2
+ (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))))
+ (-5 *1 (-207)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *1 (-685 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-452)) (-5 *3 (-570)))))
(((*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)))))
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*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 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
+ (-5 *2 (-2 (|:| |k| (-825 *3)) (|:| |c| *4))))))
+(((*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 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-2 (|:| -2445 (-570)) (|:| -2638 (-650 *3))))
+ (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*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 *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 *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))))
+ (-12 (-5 *4 (-695 (-413 (-959 (-570)))))
+ (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040))
+ (-5 *3 (-320 (-570))))))
(((*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))))
- ((*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))))))
-(((*1 *1) (-5 *1 (-603))))
+ (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
+ (-5 *1 (-336)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
+(((*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 *1 *2 *3)
+ (-12 (-5 *2 (-830)) (-5 *3 (-650 (-1186))) (-5 *1 (-831)))))
+(((*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 *2 *1)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-650 *3)) (-5 *1 (-968 *3)) (-4 *3 (-551)))))
-(((*1 *1) (-5 *1 (-1189))))
-(((*1 *1) (-5 *1 (-295))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928))
- (-14 *4 (-928)))))
+ (-12 (-5 *2 (-2 (|:| -2153 (-650 *3)) (|:| -2583 (-650 *3))))
+ (-5 *1 (-1228 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-777))))
+ ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-408)) (-5 *2 (-777)))))
+(((*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 *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)
- (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
- (-4 *3 (-562)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *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 *3 *2)
- (-12 (-5 *3 (-1182 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562))
- (-5 *1 (-32 *4 *2)))))
-(((*1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1280)))))
-(((*1 *2 *3 *1)
- (-12
- (-5 *2
- (-2 (|:| |cycle?| (-112)) (|:| -4309 (-777)) (|:| |period| (-777))))
- (-5 *1 (-1166 *4)) (-4 *4 (-1227)) (-5 *3 (-777)))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*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 (-650 (-1186))) (-5 *1 (-1190)))))
-(((*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))
+ (-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)
+ (-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 *5)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-570)) (-5 *5 (-695 (-227)))
+ (-5 *2 (-1044)) (-5 *1 (-763)))))
+(((*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 (-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 *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 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3687 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*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 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)))))
+(((*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 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
(-4 *4 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
-(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4450)) (-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 *2 *3)
(-12 (-5 *3 (-650 (-542))) (-5 *2 (-1186)) (-5 *1 (-542)))))
-(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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 *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 *1 *1)
- (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
- (-4 *4 (-174))))
+(((*1 *1 *2) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-854)))
+ (-5 *2 (-2 (|:| |start| *3) (|:| -2638 (-424 *3))))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
+(((*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 *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 *1) (-5 *1 (-227))) ((*1 *1) (-5 *1 (-384))))
+(((*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) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570)))
+ (-5 *2 (-1277 (-570))) (-5 *1 (-1305 *4)))))
+(((*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 (|:| -4308 *3) (|:| -3900 (-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 (-1223)) (-5 *3 (-950 *4)))))
+(((*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 *1)
+ (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
+ (-5 *1 (-443)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *2 (-512)) (-5 *3 (-650 (-882))) (-5 *1 (-489)))))
+(((*1 *2 *2) (-12 (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-650
+ (-2
+ (|:| -2107
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (|:| -2340
+ (-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")))
+ (|:| -1600
+ (-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 *1)
+ (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227))
+ (-5 *2 (-650 *4)))))
+(((*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 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*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 -4453)))))))
+(((*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 *2 *3 *1)
+ (-12 (-5 *3 (-512)) (-5 *2 (-650 (-972))) (-5 *1 (-295)))))
+(((*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) (-12 (-5 *2 (-928)) (-5 *1 (-158)))))
-(((*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 *1 *1 *2) (-12 (-4 *1 (-161)) (-5 *2 (-1186)))))
(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*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) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))))
-(((*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 *3)
- (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-835)) (-5 *3 (-1168)))))
-(((*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 *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 *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)
- (-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) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))))
-(((*1 *1 *2)
- (|partial| -12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))))
-(((*1 *2 *1) (-12 (-4 *1 (-515 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-856)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *4 *4 *3)
+ (-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 -4402 ((-1134 *3 (-618 $)) $))
+ (-15 -4416 ((-1134 *3 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *3 (-618 $))))))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))))
+(((*1 *1) (-5 *1 (-158))))
+(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-112)))))
+(((*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)
+ (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570)))
+ (-5 *1 (-192)))))
+(((*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 -3802 ($ *7)) (-15 -4402 (*7 $))
+ (-15 -4416 (*7 $))))))))
+(((*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 *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 (-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 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-145)) (-5 *2 (-112)))))
-(((*1 *2) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-112)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
- (-4 *2 (-1253 *4)))))
-(((*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 *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) (-12 (-5 *2 (-570)) (-5 *1 (-1015))))
- ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-177))) (-5 *1 (-1094)))))
+(((*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 *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 (|:| -4125 (-650 *6)) (|:| -1765 (-650 *6)))))))
+(((*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 *1) (-12 (-4 *1 (-133)) (-5 *2 (-777))))
((*1 *2 *3 *1 *2)
(-12 (-5 *2 (-570)) (-4 *1 (-378 *3)) (-4 *3 (-1227))
@@ -2028,57 +1914,423 @@
((*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 *1) (-12 (-5 *2 (-980)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
-(((*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)
- (-12 (-5 *3 (-825 *4)) (-4 *4 (-856)) (-5 *2 (-112))
- (-5 *1 (-678 *4)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-950 (-227))) (-5 *2 (-1282)) (-5 *1 (-474)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*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 *1) (-12 (-5 *2 (-777)) (-5 *1 (-424 *3)) (-4 *3 (-562))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-2 (|:| -3804 *4) (|:| -3079 (-570)))))
+ (-4 *4 (-1253 (-570))) (-5 *2 (-777)) (-5 *1 (-448 *4)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (|has| *1 (-6 -4453)) (-4 *1 (-1265 *3))
+ (-4 *3 (-1227)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373)) (-5 *2 (-112))))
+ (|partial| -12 (-4 *1 (-956 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856))))
((*1 *2 *3)
- (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-112))
- (-5 *1 (-362 *4))))
+ (|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 -3802 ($ *6)) (-15 -4402 (*6 $))
+ (-15 -4416 (*6 $)))))))
((*1 *2 *3)
- (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-112))
- (-5 *1 (-534 *4)))))
+ (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562))
+ (-5 *2 (-1186)) (-5 *1 (-1052 *4)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))))
+(((*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 *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 (-4 *4 (-13 (-368) (-854)))
- (-5 *2 (-2 (|:| |start| *3) (|:| -3477 (-424 *3))))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
-(((*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 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567))))
+ (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 (-650 *4))))
+ (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 *4))))))
+(((*1 *2 *3 *3 *1)
+ (-12 (-5 *3 (-512)) (-5 *2 (-697 (-1113))) (-5 *1 (-295)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-959 (-570))) (-5 *2 (-650 *1)) (-4 *1 (-1021))))
((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-413 (-570)))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*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 -3799 ($ *7)) (-15 -4399 (*7 $))
- (-15 -4413 (*7 $))))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (|has| *1 (-6 -4450)) (-4 *1 (-1265 *3))
- (-4 *3 (-1227)))))
+ (-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 *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 *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 (-424 *3)) (-5 *1 (-218 *4 *3))
+ (-4 *3 (-1253 *4))))
+ ((*1 *2 *3)
+ (-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 (-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 (-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 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))))
+(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))
+ (-14 *4 *2) (-4 *5 (-174))))
+ ((*1 *2)
+ (-12 (-4 *4 (-174)) (-5 *2 (-928)) (-5 *1 (-166 *3 *4))
+ (-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 (-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 (-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 -4453))))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-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))
+ (-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 (-695 *5))) (-4 *5 (-311)) (-4 *5 (-1058))
+ (-5 *2 (-1277 (-1277 *5))) (-5 *1 (-1038 *5)) (-5 *4 (-1277 *5)))))
+(((*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 *3)
+ (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129))))))
+ (-4 *4 (-354)) (-5 *2 (-695 *4)) (-5 *1 (-351 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-570)) (|has| *1 (-6 -4443)) (-4 *1 (-410))
+ (-5 *2 (-928)))))
+(((*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 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+(((*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 *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 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1232))))))
+(((*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 *1 *1 *2 *3)
(-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))))
+(((*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 *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 (-4 *2 (-1109)) (-5 *1 (-719 *3 *2 *4)) (-4 *3 (-856))
+ (-14 *4
+ (-1 (-112) (-2 (|:| -2267 *3) (|:| -3994 *2))
+ (-2 (|:| -2267 *3) (|:| -3994 *2)))))))
+(((*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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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 *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 *1 (-1109)) (-5 *2 (-1168)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-775))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-1168))
+ (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
+ (-5 *1 (-571))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-775)) (-5 *4 (-1072))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-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)))
+ (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))
+ (|:| |extra| (-1044))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-793)) (-5 *3 (-1072))
+ (-5 *4
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2
+ (-2 (|:| -3988 (-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 (|:| -3988 (-384)) (|:| |explanations| (-1168))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-814))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-811))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-814)) (-5 *4 (-1072))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-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)))) (|:| -2439 (-650 (-227)))))
+ (-5 *2 (-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))))))
+ ((*1 *2 *3 *4)
+ (-12 (-4 *1 (-845)) (-5 *3 (-1072))
+ (-5 *4
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227)))
+ (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
+ (|:| |ub| (-650 (-849 (-227))))))
+ (-5 *2 (-2 (|:| -3988 (-384)) (|:| |explanations| (-1168))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-847))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-846))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-847)) (-5 *4 (-1072))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-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 (|:| -3988 (-384)) (|:| |explanations| (-1168))))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-905))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-904))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-905)) (-5 *4 (-1072))
+ (-5 *2
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-1168))
+ (|:| |explanations| (-650 (-1168)))))
+ (-5 *1 (-904)))))
(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))))
+(((*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))))))
+ ((*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))))))
+(((*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))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-570))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1168))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-512))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-598))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-484))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-138))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-157))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1176))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-632))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1105))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1099))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1082))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-979))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-182))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1045))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-315))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-677))))
+ ((*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 (-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))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-96))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1124))))
+ ((*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 (-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))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191))))
+ ((*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 *2 *1 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*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 *3 *3 *4)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-763)))))
+(((*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 *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 (-112)) (-5 *1 (-115)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-4 *1 (-1253 *4)) (-4 *4 (-1058))
+ (-5 *2 (-1277 *4)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+(((*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 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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 *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 *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 *3)
+ (-12 (-4 *4 (-1253 *2)) (-4 *2 (-1231)) (-5 *1 (-149 *2 *4 *3))
+ (-4 *3 (-1253 (-413 *4))))))
(((*1 *2 *1)
(-12 (-4 *3 (-1058)) (-4 *4 (-1109)) (-5 *2 (-650 *1))
(-4 *1 (-387 *3 *4))))
@@ -2088,6 +2340,61 @@
((*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 *2) (-12 (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))))
+(((*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 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(((*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 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))
+ (-5 *4 (-413 (-570))) (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))
+ (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))
+ (-5 *4 (-413 (-570))) (-5 *1 (-1030 *3)) (-4 *3 (-1253 *4))))
+ ((*1 *2 *3 *2 *2)
+ (|partial| -12
+ (-5 *2 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-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 *2 *2)
+ (-12 (-5 *2 (-650 (-618 *4))) (-4 *4 (-436 *3)) (-4 *3 (-1109))
+ (-5 *1 (-579 *3 *4))))
+ ((*1 *1 *1 *1)
+ (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109))))
+ ((*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 *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 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-583))))
+ ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-583)))))
+(((*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 (-4 *1 (-927)) (-5 *2 (-2 (|:| -1453 (-650 *1)) (|:| -2467 *1)))
+ (-5 *3 (-650 *1)))))
+(((*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)
(-12 (-5 *3 (-695 *8)) (-4 *8 (-956 *5 *7 *6))
(-4 *5 (-13 (-311) (-148))) (-4 *6 (-13 (-856) (-620 (-1186))))
@@ -2098,7 +2405,7 @@
(|:| |wcond| (-650 (-959 *5)))
(|:| |bsoln|
(-2 (|:| |partsol| (-1277 (-413 (-959 *5))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *5))))))))))
+ (|:| -3827 (-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))
@@ -2110,7 +2417,7 @@
(|:| |wcond| (-650 (-959 *5)))
(|:| |bsoln|
(-2 (|:| |partsol| (-1277 (-413 (-959 *5))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *5))))))))))
+ (|:| -3827 (-650 (-1277 (-413 (-959 *5))))))))))
(-5 *1 (-931 *5 *6 *7 *8))))
((*1 *2 *3)
(-12 (-5 *3 (-695 *7)) (-4 *7 (-956 *4 *6 *5))
@@ -2122,7 +2429,7 @@
(|:| |wcond| (-650 (-959 *4)))
(|:| |bsoln|
(-2 (|:| |partsol| (-1277 (-413 (-959 *4))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *4))))))))))
+ (|:| -3827 (-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))
@@ -2134,7 +2441,7 @@
(|:| |wcond| (-650 (-959 *6)))
(|:| |bsoln|
(-2 (|:| |partsol| (-1277 (-413 (-959 *6))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *6))))))))))
+ (|:| -3827 (-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))
@@ -2146,7 +2453,7 @@
(|:| |wcond| (-650 (-959 *6)))
(|:| |bsoln|
(-2 (|:| |partsol| (-1277 (-413 (-959 *6))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *6))))))))))
+ (|:| -3827 (-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))
@@ -2158,7 +2465,7 @@
(|:| |wcond| (-650 (-959 *5)))
(|:| |bsoln|
(-2 (|:| |partsol| (-1277 (-413 (-959 *5))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *5))))))))))
+ (|:| -3827 (-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))
@@ -2189,487 +2496,196 @@
(-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 *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 *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))))
+ ((*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058))))
+ ((*1 *1 *1)
+ (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))
- (-14 *4 *2) (-4 *5 (-174))))
- ((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-928)) (-5 *1 (-166 *3 *4))
- (-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 (-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 (-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 -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))))
+ (|partial| -12 (-4 *3 (-1058)) (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| |val| *1) (|:| -3994 (-570)))) (-4 *1 (-436 *3))))
((*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))))
+ (|partial| -12
+ (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3994 (-899 *3))))
+ (-5 *1 (-899 *3)) (-4 *3 (-1109))))
((*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 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*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 *1) (-4 *1 (-354))))
-(((*1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-105)))))
-(((*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 (-112)) (-5 *1 (-145)))))
-(((*1 *1 *2) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-38 (-413 (-570))))
- (-5 *2 (-2 (|:| -2866 (-1166 *4)) (|:| -2876 (-1166 *4))))
- (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+ (|partial| -12 (-4 *4 (-799)) (-4 *5 (-856)) (-4 *6 (-1058))
+ (-4 *7 (-956 *6 *4 *5))
+ (-5 *2 (-2 (|:| |val| *3) (|:| -3994 (-570))))
+ (-5 *1 (-957 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-368)
+ (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $))
+ (-15 -4416 (*7 $))))))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3930 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
-(((*1 *1 *1 *1) (-4 *1 (-976))))
-(((*1 *1 *1 *1) (|partial| -4 *1 (-132))))
-(((*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 (-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 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
-(((*1 *1 *1 *2 *1)
- (-12 (-5 *2 (-570)) (-5 *1 (-1166 *3)) (-4 *3 (-1227))))
- ((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1182 *3)) (-4 *3 (-1058)) (-4 *1 (-1253 *3)))))
-(((*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 *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))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-570))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1168))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-512))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-598))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-484))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-138))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-157))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1176))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-632))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1105))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1099))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1082))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-979))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-182))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1045))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-315))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-677))))
- ((*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 (-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))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-96))))
- ((*1 *2 *1) (-12 (-4 *1 (-1146)) (-5 *2 (-1124))))
- ((*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 (-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))))
- ((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1191))))
- ((*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)))))
+ (-12 (-5 *2 (-2 (|:| |cd| (-1168)) (|:| -3602 (-1168))))
+ (-5 *1 (-828)))))
(((*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 *3 *1)
- (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777)))
- (-5 *1 (-911 *4)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-14 *4 (-650 (-1186))) (-4 *2 (-174))
- (-4 *3 (-240 (-2569 *4) (-777)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *3))
- (-2 (|:| -2268 *5) (|:| -3357 *3))))
- (-5 *1 (-467 *4 *2 *5 *3 *6 *7)) (-4 *5 (-856))
- (-4 *7 (-956 *2 *3 (-870 *4))))))
-(((*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058))))
+ (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *3 (-378 *2)) (-4 *4 (-378 *2))
+ (|has| *2 (-6 (-4454 "*"))) (-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 *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 *2 *1 *3 *4)
- (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-695 *3))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-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 -1652 ((-424 $) $)))))
- (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
-(((*1 *1) (-5 *1 (-474))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(((*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)
- (-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 *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 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-825 *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 *2 (-852)) (-5 *1 (-1300 *3 *2)) (-4 *3 (-1058)))))
-(((*1 *1) (-5 *1 (-131))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1109)) (-5 *1 (-971 *2 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-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 *1 *2 *3 *1)
- (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-295)))))
-(((*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 *2 *2)
- (-12 (-5 *2 (-650 (-618 *4))) (-4 *4 (-436 *3)) (-4 *3 (-1109))
- (-5 *1 (-579 *3 *4))))
- ((*1 *1 *1 *1)
- (-12 (-5 *1 (-896 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109))))
- ((*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 *2)
- (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2))
- (-4 *2 (-1253 (-171 *3))))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-52)) (-5 *1 (-899 *4))
+ (-12 (-4 *1 (-1132 *3 *2 *4 *5)) (-4 *4 (-240 *3 *2))
+ (-4 *5 (-240 *3 *2)) (|has| *2 (-6 (-4454 "*"))) (-4 *2 (-1058)))))
+(((*1 *1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-112)) (-5 *1 (-899 *4))
(-4 *4 (-1109)))))
-(((*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 *1 *1) (-5 *1 (-1072))))
-(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-135)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-933)))))
(((*1 *2 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
-(((*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))))
- ((*1 *1 *1) (-12 (-4 *1 (-1143 *2)) (-4 *2 (-1058))))
- ((*1 *1 *1)
- (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34))))))
-(((*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)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
-(((*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 *3 *1)
- (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
- (-4 *3 (-1109)))))
+ (-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 (-5 *2 (-650 (-109))) (-5 *1 (-177)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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 *3)
- (-12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-112))
- (-5 *1 (-1304 *4)))))
-(((*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 *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) (-5 *1 (-142))))
-(((*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 (|:| -2616 *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 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 (-777))) (-5 *1 (-978 *4 *3))
- (-4 *3 (-1253 *4)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-133)) (-5 *3 (-777)) (-5 *2 (-1282)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227))
- (-5 *2 (-112)))))
-(((*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 *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 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *3 (-112)) (-5 *1 (-110))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (|has| *1 (-6 -4443)) (-4 *1 (-410))))
+ ((*1 *2) (-12 (-4 *1 (-410)) (-5 *2 (-928)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
- (-14 *4 (-650 (-1186)))))
+ (-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 (-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) (-12 (-5 *2 (-112)) (-5 *1 (-283))))
- ((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109))))
+ (-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 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-112))))
+ (-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 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-852)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-368))
+ (-12 (-4 *1 (-1255 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-798)))))
+(((*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 *3)
+ (-12 (-4 *4 (-562))
(-5 *2
- (-2 (|:| A (-695 *5))
- (|:| |eqs|
- (-650
- (-2 (|:| C (-695 *5)) (|:| |g| (-1277 *5)) (|:| -4305 *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 (|:| -2415 (-695 *6)) (|:| |vec| (-1277 *5))))
- (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *5)))))
-(((*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
+ (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-650 (-777))) (-5 *1 (-1280)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-378 *2)) (-4 *2 (-1227))
+ (-4 *2 (-856))))
+ ((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3 *3)) (|has| *1 (-6 -4453))
+ (-4 *1 (-378 *3)) (-4 *3 (-1227)))))
(((*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))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "right") (|has| *1 (-6 -4450)) (-4 *1 (-120 *3))
+ (-12 (-5 *2 "right") (|has| *1 (-6 -4453)) (-4 *1 (-120 *3))
(-4 *3 (-1227))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "left") (|has| *1 (-6 -4450)) (-4 *1 (-120 *3))
+ (-12 (-5 *2 "left") (|has| *1 (-6 -4453)) (-4 *1 (-120 *3))
(-4 *3 (-1227))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109))
+ (-12 (|has| *1 (-6 -4453)) (-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 (-1244 (-570))) (|has| *1 (-6 -4450)) (-4 *1 (-657 *2))
+ (-12 (-5 *3 (-1244 (-570))) (|has| *1 (-6 -4453)) (-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 -4450)) (-4 *1 (-1019 *2))
+ (-12 (-5 *3 "value") (|has| *1 (-6 -4453)) (-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 (-1203 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "last") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2))
+ (-12 (-5 *3 "last") (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2))
(-4 *2 (-1227))))
((*1 *1 *1 *2 *1)
- (-12 (-5 *2 "rest") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *3))
+ (-12 (-5 *2 "rest") (|has| *1 (-6 -4453)) (-4 *1 (-1265 *3))
(-4 *3 (-1227))))
((*1 *2 *1 *3 *2)
- (-12 (-5 *3 "first") (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2))
+ (-12 (-5 *3 "first") (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2))
(-4 *2 (-1227)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *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 *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 (-650 (-1191))) (-5 *1 (-185 *3)) (-4 *3 (-187)))))
-(((*1 *2 *3 *3 *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) (|:| -3684 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-1223)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))))
+ (-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 (-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)))))
+(((*1 *2 *3) (-12 (-5 *2 (-115)) (-5 *1 (-114 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-185 *3)) (-4 *3 (-187)))))
+(((*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 *2 *2 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2))
+ (-4 *2 (-1253 *4)))))
(((*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))
@@ -2679,33 +2695,39 @@
(-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 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-777)) (-5 *1 (-567)))))
+(((*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 *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 *1) (-4 *1 (-551))))
+(((*1 *1) (-4 *1 (-354))))
+(((*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 -4452)))))))
(((*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 *1 *1 *1 *1) (-5 *1 (-868)))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+ (-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 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
+(((*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 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
(((*1 *2 *3)
- (-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 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
-(((*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 *1) (-5 *1 (-829))))
-(((*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
+ (-12 (-5 *3 (-959 *5)) (-4 *5 (-1058)) (-5 *2 (-487 *4 *5))
+ (-5 *1 (-951 *4 *5)) (-14 *4 (-650 (-1186))))))
(((*1 *1 *2 *3)
(-12 (-4 *1 (-47 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798))))
((*1 *1 *2 *3)
@@ -2713,10 +2735,10 @@
(-4 *2 (-368)) (-14 *5 (-1002 *4 *2))))
((*1 *1 *2 *3)
(-12 (-5 *3 (-719 *5 *6 *7)) (-4 *5 (-856))
- (-4 *6 (-240 (-2569 *4) (-777)))
+ (-4 *6 (-240 (-2570 *4) (-777)))
(-14 *7
- (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *6))
- (-2 (|:| -2268 *5) (|:| -3357 *6))))
+ (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *6))
+ (-2 (|:| -2267 *5) (|:| -3994 *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)
@@ -2749,170 +2771,225 @@
(((*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 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1212) (-1011))))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))))
-(((*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) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-105)))))
(((*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 *1 *1 *2) (-12 (-5 *2 (-650 (-603))) (-5 *1 (-603)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*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 *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 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1253 *3)) (-4 *3 (-1058)) (-5 *2 (-1182 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-413 (-570))) (-5 *1 (-601 *3)) (-4 *3 (-38 *2))
- (-4 *3 (-1058)))))
-(((*1 *1 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-833 *2 *3)) (-4 *2 (-714 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4))))
- (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-298 (-959 (-570))))
+ (-12 (-5 *3 (-440))
(-5 *2
- (-2 (|:| |varOrder| (-650 (-1186)))
- (|:| |inhom| (-3 (-650 (-1277 (-777))) "failed"))
- (|:| |hom| (-650 (-1277 (-777))))))
- (-5 *1 (-238)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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 *3
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-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 *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))))
+ (-650
+ (-3 (|:| -3602 (-1186))
+ (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))))
+ (-5 *1 (-1190)))))
+(((*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 *2 (-650 (-1168))) (-5 *1 (-1072)) (-5 *3 (-1168)))))
+(((*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 *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 *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 (-188)) (-5 *1 (-139))))
- ((*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-188)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3687 *4))))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-799))
+ (-4 *5 (-13 (-856) (-10 -8 (-15 -1426 ((-1186) $))))) (-4 *6 (-562))
+ (-5 *2 (-2 (|:| -3271 (-959 *6)) (|:| -2286 (-959 *6))))
+ (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))))
(((*1 *2 *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 *2 *3 *2)
- (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
-(((*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))))
+(((*1 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227)))
+ (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
+ (|:| |ub| (-650 (-849 (-227))))))
+ (-5 *1 (-270)))))
+(((*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) (-5 *1 (-145))) ((*1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-2 (|:| |deg| (-777)) (|:| -3636 *5))))
+ (-4 *5 (-1253 *4)) (-4 *4 (-354)) (-5 *2 (-650 *5))
+ (-5 *1 (-218 *4 *5))))
((*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)) (|:| -3684 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-858 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-859 *5 *3))
- (-4 *3 (-858 *5)))))
-(((*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)))))
+ (-12 (-5 *3 (-650 (-2 (|:| -3804 *5) (|:| -3079 (-570)))))
+ (-5 *4 (-570)) (-4 *5 (-1253 *4)) (-5 *2 (-650 *5))
+ (-5 *1 (-702 *5)))))
+(((*1 *2 *3 *3 *4 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-758)))))
+(((*1 *1 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-833 *2 *3)) (-4 *2 (-714 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-695 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-207)))))
+(((*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)
+ (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))))
+(((*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 *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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
(((*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 *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 *2 *3)
- (-12 (-5 *1 (-971 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+(((*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 (-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 *2 *1) (-12 (-5 *2 (-188)) (-5 *1 (-139))))
+ ((*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-188)))))
+(((*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 *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 (-1198 (-650 *4))) (-4 *4 (-856))
+ (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)))))
(((*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 *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))))))
+ (-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 *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) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
+(((*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551))))
+ ((*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-980)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*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 *3 *2)
+ (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-4 *4 (-1058))
+ (-5 *1 (-1038 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+(((*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 (-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)
+ (-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 *1)
- (-12 (-5 *2 (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 *4))))
+ (-12 (-5 *2 (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 *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 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))))
-(((*1 *2)
- (-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 *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 *2 *3)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
-(((*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 (-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)
- (-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))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))))
+(((*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 *3)
+ (-12 (-5 *3 (-849 (-384))) (-5 *2 (-849 (-227))) (-5 *1 (-309)))))
+(((*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 (-5 *2 (-650 (-912 *3))) (-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 (-695 (-413 *4))))))
+ (-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 -1939 ($ $ $)))))))
+ ((*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 (-1304 *4 *5 *6)) (-14 *6 (-650 (-1186))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))))
+(((*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 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109))))
((*1 *1 *2) (-12 (-5 *1 (-908 *2)) (-4 *2 (-1109)))))
(((*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-182))))
@@ -2920,129 +2997,111 @@
((*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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
+ (-4 *3 (-1109)))))
(((*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 *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 *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))))
- ((*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 *1 *1 *1) (-4 *1 (-767))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1094))) (-5 *1 (-295)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-978 *4 *3))
- (-4 *3 (-1253 *4)))))
(((*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) (-12 (-5 *2 (-131)) (-5 *1 (-1196)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2))
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *3))))
+(((*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 *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 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-5 *1 (-903 *2 *4))
(-4 *2 (-1253 *4)))))
-(((*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 *1) (-5 *1 (-1091))))
+(((*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 *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 *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 *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) (|:| -3687 *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)) (|:| -3687 *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) (|:| -3687 *9))))
+ (-5 *1 (-1081 *6 *7 *4 *8 *9)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-562))
- (-4 *7 (-956 *3 *5 *6))
- (-5 *2 (-2 (|:| -3357 (-777)) (|:| -1452 *8) (|:| |radicand| *8)))
- (-5 *1 (-960 *5 *6 *3 *7 *8)) (-5 *4 (-777))
- (-4 *8
- (-13 (-368)
- (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $))))))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856)))
- (-14 *3 (-650 (-1186))))))
-(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))))
-(((*1 *1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-266))))
- ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
+ (-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) (|:| -4308 *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) (|:| -4308 (-660 *6 (-413 *6))))))
+ (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1265 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
(((*1 *2 *2)
- (-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 *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 (|:| -2616 *3) (|:| |coeff| *3)))
- (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-697 (-973 *3))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *3 (-2 (|:| |totdeg| (-777)) (|:| -3303 *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 *1 *2)
(-12 (-5 *2 (-1277 *4)) (-4 *4 (-1227)) (-4 *1 (-240 *3 *4)))))
-(((*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 *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 *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 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1253 *3)))))
-(((*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 *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 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*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 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *3 *5 *6))
- (-4 *3 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*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 *3 *4)
+ (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368))
+ (-5 *2 (-2 (|:| -3402 (-424 *3)) (|:| |special| (-424 *3))))
+ (-5 *1 (-733 *5 *3)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
- (-4 *7 (-1074 *4 *5 *6))
- (-5 *2 (-650 (-2 (|:| -4122 *1) (|:| -1762 (-650 *7)))))
- (-5 *3 (-650 *7)) (-4 *1 (-1220 *4 *5 *6 *7)))))
-(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-887)))))
+(((*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 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-320 (-570))))
+ (-5 *1 (-1040)))))
+(((*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 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-320 *4))
@@ -3050,29 +3109,50 @@
((*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)
- (-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))
+ (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-112))
+ (-5 *1 (-226 *4 *5)) (-4 *5 (-13 (-1212) (-29 *4))))))
(((*1 *2 *1 *3 *2)
(-12 (-5 *3 (-777)) (-5 *1 (-215 *4 *2)) (-14 *4 (-928))
(-4 *2 (-1109)))))
-(((*1 *2 *1 *2) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*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 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))))
+(((*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
+(((*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 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*1 *2 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
-(((*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)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+ (|partial| -12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-562) (-1047 (-570)) (-148)))
+ (-5 *2
+ (-2 (|:| -4341 (-413 (-959 *5))) (|:| |coeff| (-413 (-959 *5)))))
+ (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-745 *3)))))
+(((*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 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174))))
((*1 *2 *3)
(-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-5 *2 (-320 *4))
@@ -3084,8 +3164,6 @@
(-5 *1 (-1216 *3 *2)) (-4 *2 (-13 (-27) (-1212) (-436 *3))))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-512))) (-5 *1 (-49))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-882))) (-5 *1 (-489)))))
-(((*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 *1 *3 *3)
(-12 (-5 *3 (-570)) (-4 *1 (-57 *2 *4 *5)) (-4 *4 (-378 *2))
(-4 *5 (-378 *2)) (-4 *2 (-1227))))
@@ -3097,15 +3175,26 @@
((*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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *1 *1 *1) (-5 *1 (-163)))
- ((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-163)))))
-(((*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)
+ (-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 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*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 (-650 (-650 (-950 (-227))))) (-5 *2 (-474))
+ (-5 *1 (-1281))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266)))
+ (-5 *2 (-474)) (-5 *1 (-1281)))))
+(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-145)))
+ ((*1 *1 *1) (-4 *1 (-1153))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-687))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1127)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-1168)) (-5 *4 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))))
(((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
(-14 *3 (-650 (-1186))) (-4 *4 (-393))))
@@ -3115,23 +3204,28 @@
((*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 *1 *1)
- (-12 (-4 *3 (-1109))
- (-5 *2 (-2 (|:| |lm| *1) (|:| |mm| *1) (|:| |rm| *1)))
- (-4 *1 (-391 *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 *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 *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 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-152 *3))))
((*1 *1 *2)
(-12
- (-5 *2 (-650 (-2 (|:| -3357 (-777)) (|:| -2288 *4) (|:| |num| *4))))
+ (-5 *2 (-650 (-2 (|:| -3994 (-777)) (|:| -2289 *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)) (|:| -2713 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-5 *3 (-650 (-959 (-570)))) (-5 *4 (-112)) (-5 *1 (-443))))
((*1 *1 *2 *3 *4)
- (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2716 "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 (-1227))))
@@ -3151,24 +3245,24 @@
((*1 *1 *2 *3)
(-12 (-5 *1 (-719 *2 *3 *4)) (-4 *2 (-856)) (-4 *3 (-1109))
(-14 *4
- (-1 (-112) (-2 (|:| -2268 *2) (|:| -3357 *3))
- (-2 (|:| -2268 *2) (|:| -3357 *3))))))
+ (-1 (-112) (-2 (|:| -2267 *2) (|:| -3994 *3))
+ (-2 (|:| -2267 *2) (|:| -3994 *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 (-1227)) (-4 *3 (-1227))))
((*1 *1 *2)
- (-12 (-5 *2 (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 *4))))
+ (-12 (-5 *2 (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 *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)))
(-5 *2 (-650 (-1149 *3 *5))) (-5 *1 (-1149 *3 *5))
(-4 *3 (-13 (-1109) (-34)))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| |val| *4) (|:| -3684 *5))))
+ (-12 (-5 *3 (-650 (-2 (|:| |val| *4) (|:| -3687 *5))))
(-4 *4 (-13 (-1109) (-34))) (-4 *5 (-13 (-1109) (-34)))
(-5 *2 (-650 (-1149 *4 *5))) (-5 *1 (-1149 *4 *5))))
((*1 *1 *2)
- (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -3684 *4)))
+ (-12 (-5 *2 (-2 (|:| |val| *3) (|:| -3687 *4)))
(-4 *3 (-13 (-1109) (-34))) (-4 *4 (-13 (-1109) (-34)))
(-5 *1 (-1149 *3 *4))))
((*1 *1 *2 *3)
@@ -3191,9 +3285,18 @@
(-4 *4 (-13 (-1109) (-34))) (-5 *1 (-1150 *3 *4))))
((*1 *1 *2 *3)
(-12 (-5 *1 (-1175 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*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 (|:| -3994 (-777)) (|:| -1453 *9) (|:| |radicand| *9)))
+ (-5 *1 (-960 *5 *6 *7 *8 *9)) (-5 *4 (-777))
+ (-4 *9
+ (-13 (-368)
+ (-10 -8 (-15 -3802 ($ *8)) (-15 -4402 (*8 $)) (-15 -4416 (*8 $))))))))
+(((*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)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-311) (-1047 (-570)) (-645 (-570)) (-148)))
@@ -3202,28 +3305,17 @@
((*1 *1 *1) (-5 *1 (-868)))
((*1 *2 *3)
(-12 (-5 *2 (-1166 *3)) (-5 *1 (-1170 *3)) (-4 *3 (-1058)))))
-(((*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)) (|:| -3684 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*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 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-278)))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| |polnum| (-788 *3)) (|:| |polden| *3) (|:| -1521 (-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) (|:| -1521 (-777))))
- (-4 *1 (-1074 *3 *4 *5)))))
+(((*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 *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 *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 (-4 *1 (-533)) (-5 *2 (-697 (-1233))))))
(((*1 *2 *3 *4)
(-12 (-5 *4 (-650 (-48))) (-5 *2 (-424 *3)) (-5 *1 (-39 *3))
(-4 *3 (-1253 (-48)))))
@@ -3272,8 +3364,8 @@
(-12
(-4 *4
(-13 (-856)
- (-10 -8 (-15 -1425 ((-1186) $))
- (-15 -2798 ((-3 $ "failed") (-1186))))))
+ (-10 -8 (-15 -1426 ((-1186) $))
+ (-15 -2800 ((-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))))
@@ -3322,13 +3414,13 @@
(-12 (-4 *4 (-799))
(-4 *5
(-13 (-856)
- (-10 -8 (-15 -1425 ((-1186) $))
- (-15 -2798 ((-3 $ "failed") (-1186))))))
+ (-10 -8 (-15 -1426 ((-1186) $))
+ (-15 -2800 ((-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 -1425 ((-1186) $))))) (-4 *6 (-562))
+ (-4 *5 (-13 (-856) (-10 -8 (-15 -1426 ((-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)
@@ -3364,72 +3456,70 @@
((*1 *2 *1) (-12 (-5 *2 (-424 *1)) (-4 *1 (-1231))))
((*1 *2 *3)
(-12 (-5 *2 (-424 *3)) (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058))
- (-4 *3 (-1109)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
(((*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)))))
((*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 (-1227))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811 'JINT 'X 'ELAM) (-3811) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814 'JINT 'X 'ELAM) (-3814) (-705))))
(-5 *1 (-61 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811) (-3811 'XC) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814) (-3814 'XC) (-705))))
(-5 *1 (-63 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3811 'X) (-3811) (-705))) (-5 *1 (-64 *3))
+ (-12 (-5 *2 (-344 (-3814 'X) (-3814) (-705))) (-5 *1 (-64 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3811) (-3811 'XC) (-705))) (-5 *1 (-66 *3))
+ (-12 (-5 *2 (-344 (-3814) (-3814 'XC) (-705))) (-5 *1 (-66 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811 'X) (-3811 '-1571) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814 'X) (-3814 '-1572) (-705))))
(-5 *1 (-71 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811) (-3811 'X) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814) (-3814 'X) (-705))))
(-5 *1 (-74 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811 'X 'EPS) (-3811 '-1571) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814 'X 'EPS) (-3814 '-1572) (-705))))
(-5 *1 (-75 *3 *4 *5)) (-14 *3 (-1186)) (-14 *4 (-1186))
(-14 *5 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811 'EPS) (-3811 'YA 'YB) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814 'EPS) (-3814 '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 (-3811) (-3811 'X) (-705))) (-5 *1 (-77 *3))
+ (-12 (-5 *2 (-344 (-3814) (-3814 'X) (-705))) (-5 *1 (-77 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3811) (-3811 'X) (-705))) (-5 *1 (-78 *3))
+ (-12 (-5 *2 (-344 (-3814) (-3814 'X) (-705))) (-5 *1 (-78 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811) (-3811 'XC) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814) (-3814 'XC) (-705))))
(-5 *1 (-79 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811) (-3811 'X) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814) (-3814 'X) (-705))))
(-5 *1 (-80 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811 'X '-1571) (-3811) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814 'X '-1572) (-3814) (-705))))
(-5 *1 (-82 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-695 (-344 (-3811 'X '-1571) (-3811) (-705))))
+ (-12 (-5 *2 (-695 (-344 (-3814 'X '-1572) (-3814) (-705))))
(-5 *1 (-83 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-695 (-344 (-3811 'X) (-3811) (-705)))) (-5 *1 (-84 *3))
+ (-12 (-5 *2 (-695 (-344 (-3814 'X) (-3814) (-705)))) (-5 *1 (-84 *3))
(-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811 'X) (-3811) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814 'X) (-3814) (-705))))
(-5 *1 (-85 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-1277 (-344 (-3811 'X) (-3811 '-1571) (-705))))
+ (-12 (-5 *2 (-1277 (-344 (-3814 'X) (-3814 '-1572) (-705))))
(-5 *1 (-86 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-695 (-344 (-3811 'XL 'XR 'ELAM) (-3811) (-705))))
+ (-12 (-5 *2 (-695 (-344 (-3814 'XL 'XR 'ELAM) (-3814) (-705))))
(-5 *1 (-87 *3)) (-14 *3 (-1186))))
((*1 *1 *2)
- (-12 (-5 *2 (-344 (-3811 'X) (-3811 '-1571) (-705))) (-5 *1 (-89 *3))
+ (-12 (-5 *2 (-344 (-3814 'X) (-3814 '-1572) (-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))
@@ -3480,85 +3570,85 @@
((*1 *1 *2) (-12 (-4 *1 (-379 *2 *3)) (-4 *2 (-856)) (-4 *3 (-174))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))
(-4 *1 (-388))))
((*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-388))))
((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-388))))
((*1 *1 *2) (-12 (-5 *2 (-695 (-705))) (-4 *1 (-388))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))
(-4 *1 (-389))))
((*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-389))))
((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-389))))
((*1 *2 *3) (-12 (-5 *2 (-400)) (-5 *1 (-399 *3)) (-4 *3 (-1109))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))
(-4 *1 (-402))))
((*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-402))))
((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-402))))
((*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)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-298 (-320 (-384)))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-298 (-320 (-570)))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-320 (-171 (-384)))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-320 (-384))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-320 (-570))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-298 (-320 (-700)))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-298 (-320 (-705)))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-298 (-320 (-707)))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-320 (-700))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-320 (-705))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-320 (-707))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))
(-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186))
- (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-650 (-334))) (-5 *1 (-404 *3 *4 *5 *6))
- (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *3 (-1186)) (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-334)) (-5 *1 (-404 *3 *4 *5 *6)) (-14 *3 (-1186))
- (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
+ (-14 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
(-14 *5 (-650 (-1186))) (-14 *6 (-1190))))
((*1 *1 *2)
(-12 (-5 *2 (-335 *4)) (-4 *4 (-13 (-856) (-21)))
@@ -3585,14 +3675,14 @@
((*1 *1 *2) (-12 (-5 *2 (-440)) (-5 *1 (-443))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))
(-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 (-1277 (-705))) (-4 *1 (-446))))
((*1 *1 *2)
(-12
- (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3261 (-650 (-334)))))
+ (-5 *2 (-2 (|:| |localSymbols| (-1190)) (|:| -3265 (-650 (-334)))))
(-4 *1 (-447))))
((*1 *1 *2) (-12 (-5 *2 (-334)) (-4 *1 (-447))))
((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-4 *1 (-447))))
@@ -3661,7 +3751,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 (|:| -1452 *3) (|:| -3384 *4))))
+ (-12 (-5 *2 (-650 (-2 (|:| -1453 *3) (|:| -3387 *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)
@@ -3670,25 +3760,25 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(|:| |mdnia|
(-2 (|:| |fn| (-320 (-227)))
- (|:| -2521 (-650 (-1103 (-849 (-227)))))
+ (|:| -1600 (-650 (-1103 (-849 (-227)))))
(|:| |abserr| (-227)) (|:| |relerr| (-227))))))
(-5 *1 (-775))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |fn| (-320 (-227)))
- (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
+ (|:| -1600 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(-5 *1 (-775))))
((*1 *1 *2)
(-12
(-5 *2
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(-5 *1 (-775))))
((*1 *2 *3) (-12 (-5 *2 (-780)) (-5 *1 (-779 *3)) (-4 *3 (-1227))))
@@ -3706,23 +3796,23 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227)))
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227)))
(|:| |lb| (-650 (-849 (-227))))
(|:| |cf| (-650 (-320 (-227))))
(|:| |ub| (-650 (-849 (-227))))))
(|:| |lsa|
(-2 (|:| |lfn| (-650 (-320 (-227))))
- (|:| -2438 (-650 (-227)))))))
+ (|:| -2439 (-650 (-227)))))))
(-5 *1 (-847))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))
(-5 *1 (-847))))
((*1 *1 *2)
(-12
(-5 *2
- (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227)))
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227)))
(|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
(|:| |ub| (-650 (-849 (-227))))))
(-5 *1 (-847))))
@@ -3823,137 +3913,83 @@
((*1 *1 *2)
(-12 (-5 *2 (-670 *3 *4)) (-4 *3 (-856)) (-4 *4 (-174))
(-5 *1 (-1297 *3 *4)))))
-(((*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 *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 *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)
- (-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)
- (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))))
+(((*1 *1) (-5 *1 (-829))))
+(((*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 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-681 *3)) (-4 *3 (-1058))
+ (-4 *3 (-1109)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-103 *3)) (-4 *3 (-1109)))))
(((*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)))))
+ (-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 -4452)))))))
+(((*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 *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 (-298 (-413 (-959 *5)))) (-5 *3 (-413 (-959 *5)))
- (-4 *5 (-458)) (-5 *2 (-839 *3)) (-5 *1 (-643 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*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 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4))
- (-5 *2 (-2 (|:| -1452 (-413 *5)) (|:| |poly| *3)))
- (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *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 -3799 ($ (-1134 *3 (-618 $))))))))))
-(((*1 *2 *1 *1)
- (-12
- (-5 *2
- (-2 (|:| -4322 *3) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
-(((*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)
- (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-14 *5 (-650 (-1186)))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148)))
(-5 *2
- (-650 (-2 (|:| -3205 (-1182 *4)) (|:| -3424 (-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)))
+ (-650 (-2 (|:| -3145 (-1182 *5)) (|:| -3314 (-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 (|:| -3205 (-1182 *5)) (|:| -3424 (-650 (-959 *5))))))
- (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ (-650 (-2 (|:| -3145 (-1182 *4)) (|:| -3314 (-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 (-854) (-311) (-148) (-1031)))
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-311) (-148)))
(-5 *2
- (-650 (-2 (|:| -3205 (-1182 *5)) (|:| -3424 (-650 (-959 *5))))))
- (-5 *1 (-1303 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
- (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
+ (-650 (-2 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5))))))
+ (-5 *1 (-1087 *5 *6)) (-5 *3 (-650 (-959 *5)))
+ (-14 *6 (-650 (-1186))))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-950 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*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 (|has| *2 (-6 (-4454 "*"))) (-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 *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)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1 *2 *2)) (-5 *1 (-688 *2)) (-4 *2 (-1109))))
((*1 *2 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2
- (-650 (-2 (|:| -3205 (-1182 *5)) (|:| -3424 (-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)
- (-12 (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
- (-5 *2
- (-650 (-2 (|:| -3205 (-1182 *4)) (|:| -3424 (-650 (-959 *4))))))
- (-5 *1 (-1303 *4 *5 *6)) (-5 *3 (-650 (-959 *4)))
- (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
-(((*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")) (|:| -1972 (-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")) (|:| -1972 (-650 *4))))
- (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-384)) (-5 *1 (-1049)))))
+ (-12 (-5 *3 (-1 (-650 *5) (-650 *5))) (-5 *4 (-570))
+ (-5 *2 (-650 *5)) (-5 *1 (-688 *5)) (-4 *5 (-1109)))))
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
+(((*1 *1) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(((*1 *1) (-5 *1 (-158)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
(((*1 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-334))))
((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189))))
- ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))))
-(((*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 *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 *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 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+(((*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 *4)
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2))
+ (-4 *4 (-38 (-413 (-570)))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
(((*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)))))
+ (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
+ (-4 *3 (-1109)))))
+(((*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) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
(((*1 *2 *1 *3)
(-12 (-5 *3 (-618 *1)) (-4 *1 (-436 *4)) (-4 *4 (-1109))
(-4 *4 (-562)) (-5 *2 (-413 (-1182 *1)))))
@@ -3977,12 +4013,12 @@
(-5 *1 (-957 *5 *4 *6 *7 *3))
(-4 *3
(-13 (-368)
- (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $)))))))
+ (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $)))))))
((*1 *2 *3 *4 *2)
(-12 (-5 *2 (-1182 *3))
(-4 *3
(-13 (-368)
- (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $)))))
+ (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*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)
@@ -3990,73 +4026,58 @@
(-5 *2 (-413 (-1182 (-413 (-959 *5))))) (-5 *1 (-1052 *5))
(-5 *3 (-413 (-959 *5))))))
(((*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 (|:| -3399 *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 *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 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))))
+ (-12 (-4 *2 (-368)) (-4 *2 (-854)) (-5 *1 (-952 *2 *3))
+ (-4 *3 (-1253 *2)))))
+(((*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 (-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 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
+ (-5 *2 (-650 (-650 (-650 (-950 *3))))))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
-(((*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)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
- ((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
+(((*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 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-5 *2 (-1168)))))
-(((*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) (|:| -3684 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-458)) (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| -2407 *4))) (-5 *1 (-978 *4 *3))
- (-4 *3 (-1253 *4)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-767))))
-(((*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*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 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-758)))))
+ (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*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 *1 *2)
+ (-12 (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1151 *3 *4))
+ (-14 *3 (-777)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
+(((*1 *2 *3 *1)
+ (-12 (|has| *1 (-6 -4452)) (-4 *1 (-495 *3)) (-4 *3 (-1227))
+ (-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 *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 *1 *1) (-12 (-4 *1 (-311)) (-5 *2 (-112)))))
+(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-311)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227))))
((*1 *1 *2 *1) (-12 (-5 *1 (-1166 *2)) (-4 *2 (-1227)))))
-(((*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 (-1277 (-320 (-227)))) (-5 *2 (-1277 (-320 (-384))))
+ (-5 *1 (-309)))))
(((*1 *2 *2)
(-12 (-5 *2 (-115)) (-4 *3 (-562)) (-5 *1 (-32 *3 *4))
(-4 *4 (-436 *3))))
@@ -4084,81 +4105,106 @@
(-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 *2 *2)
+ (-12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *3)))))
+(((*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 *3)
+ (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-965 (-1129)))
+ (-5 *1 (-351 *4)))))
+(((*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 *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)
+ (-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 *2)
- (-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)))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*1 *1) (-5 *1 (-142))))
(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*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)))))
+ (-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 *1 *1 *1)
+ (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))))
(((*1 *2 *3 *4)
- (-12 (-4 *5 (-562))
- (-5 *2 (-2 (|:| -2415 (-695 *5)) (|:| |vec| (-1277 (-650 (-928))))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
+ (|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 *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 *3 (-570)) (-4 *4 (-1253 (-413 *3))) (-5 *2 (-928))
- (-5 *1 (-920 *4 *5)) (-4 *5 (-1253 (-413 *4))))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))))
-(((*1 *2 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-270)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109))
- (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-131))))
-(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212)))))
- ((*1 *1 *1 *1) (-4 *1 (-799))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1182 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))))
-(((*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 *1)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+ (-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)
(-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 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-130)))))
-(((*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 *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)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-533)) (-5 *3 (-129)) (-5 *2 (-777)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-115)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-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)))))
+ ((*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))
+ (-1796 (-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))
+ (-1796 (-4 *3 (-1047 (-1186)))) (-1796 (-4 *3 (-1058)))
+ (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *1) (-5 *1 (-145)))
- ((*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 (-880)) (-5 *1 (-266))))
- ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-868)) (-5 *1 (-1166 *3)) (-4 *3 (-1109))
- (-4 *3 (-1227)))))
-(((*1 *1)
- (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
- (-4 *4 (-174)))))
-(((*1 *2 *2)
- (-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 *1) (-5 *1 (-443))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *1 (-1170 *3)))))
+(((*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
(((*1 *2 *3)
(-12 (-5 *2 (-171 (-384))) (-5 *1 (-791 *3)) (-4 *3 (-620 (-384)))))
((*1 *2 *3 *4)
@@ -4208,15 +4254,17 @@
(-4 *5 (-856)) (-4 *5 (-620 (-384))) (-5 *2 (-171 (-384)))
(-5 *1 (-791 *5)))))
(((*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 *2 *3)
- (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148)))
- (-5 *1 (-1247 *4 *2)) (-4 *2 (-1253 *4)))))
-(((*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)))))
+ (-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 *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 *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 *3)
(-12 (-5 *3 (-1 *5)) (-4 *5 (-1109)) (-5 *2 (-1 *5 *4))
(-5 *1 (-689 *4 *5)) (-4 *4 (-1109))))
@@ -4228,175 +4276,187 @@
(-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058))))
((*1 *2 *1)
(-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5))
- (-4 *4 (-1109)) (-4 *5 (-1109)))))
-(((*1 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-493)))))
-(((*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 *1 *1 *2 *3 *1)
- (-12 (-4 *1 (-330 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-798)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
-(((*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 *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)))))
+ (-12 (-4 *4 (-826)) (-14 *5 (-1186)) (-5 *2 (-650 (-1250 *5 *4)))
+ (-5 *1 (-1123 *4 *5)) (-5 *3 (-1250 *5 *4)))))
(((*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 *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 *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)))))
-(((*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)))))
+ (-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 (-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 *1) (-5 *1 (-584))))
(((*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)))))
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*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 *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) (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-1109)))))
+(((*1 *1) (-5 *1 (-603))))
(((*1 *2)
- (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
(-4 *4 (-1109)))))
-(((*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) (-5 *1 (-1279))))
+(((*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 *4)
+ (-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) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))))
+(((*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 *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) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1196)))))
+(((*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 -3871 ((-424 $) $)))))
+ (-4 *4 (-1253 *3))
+ (-5 *2
+ (-2 (|:| -3827 (-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 (|:| -3827 (-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 (|:| -3827 (-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 (|:| -3827 (-695 *4)) (|:| |basisDen| *4)
+ (|:| |basisInv| (-695 *4))))
+ (-5 *1 (-1286 *3 *4 *5 *6)) (-4 *6 (-415 *4 *5)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-1209 *4))
- (-4 *4 (-1058)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1277 (-1277 (-570)))) (-5 *3 (-928)) (-5 *1 (-472)))))
-(((*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 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
-(((*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 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))))
+ (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4))
+ (-5 *2 (-2 (|:| -1453 (-413 *5)) (|:| |poly| *3)))
+ (-5 *1 (-149 *4 *5 *3)) (-4 *3 (-1253 (-413 *5))))))
+(((*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 (|:| -4341 *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) (|:| -4413 *4) (|:| |sol?| (-112))))
+ (-5 *1 (-1022 *8 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -3930 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*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 *1)
- (-12
- (-5 *2
- (-650
- (-2
- (|:| -2106
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (|:| -2340
- (-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")))
- (|:| -2521
- (-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 *1)
- (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227))
- (-5 *2 (-650 *4)))))
-(((*1 *1) (-5 *1 (-158))))
+ (-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)
+ (-12 (-4 *1 (-354))
+ (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-1198 *3)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
-(((*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 *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 *2 *3)
- (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 (-650 *4))))
- (-5 *1 (-1197 *4)) (-5 *3 (-650 (-650 *4))))))
+ (-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) (-5 *1 (-603))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4402 ((-1134 *3 (-618 $)) $))
+ (-15 -4416 ((-1134 *3 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *3 (-618 $))))))))))
+(((*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)
+ (-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 (-1253 *2)))))
+(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+(((*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) (|:| -3687 *1))))
+ (-4 *1 (-1080 *4 *5 *6 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129))))))
- (-4 *4 (-354)) (-5 *2 (-695 *4)) (-5 *1 (-351 *4)))))
-(((*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 *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 *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 *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 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-583))))
- ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-583)))))
-(((*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))))
+ (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-354)) (-5 *2 (-1277 *1))))
((*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)
- (-12 (-4 *4 (-562))
+ (|partial| -12 (-5 *3 (-695 *1)) (-4 *1 (-146)) (-4 *1 (-916))
+ (-5 *2 (-1277 *1)))))
+(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1071))))
+ ((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1071)))))
+(((*1 *2 *1 *1)
+ (-12
(-5 *2
- (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-799))
- (-4 *5 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $))))) (-4 *6 (-562))
- (-5 *2 (-2 (|:| -3744 (-959 *6)) (|:| -2461 (-959 *6))))
- (-5 *1 (-738 *4 *5 *6 *3)) (-4 *3 (-956 (-413 (-959 *6)) *4 *5)))))
+ (-2 (|:| -3930 *3) (|:| |coef1| (-788 *3)) (|:| |coef2| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
+(((*1 *2 *2 *3 *3 *4)
+ (-12 (-5 *4 (-777)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2))
+ (-4 *2 (-1253 *3)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *2 (-562)) (-5 *1 (-978 *2 *4))
+ (-4 *4 (-1253 *2)))))
(((*1 *2 *1) (-12 (-5 *2 (-650 (-618 *1))) (-4 *1 (-306)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-512)) (-5 *1 (-115))))
((*1 *2 *2 *3)
@@ -4405,46 +4465,39 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-1186)) (-5 *4 (-512)) (-5 *2 (-320 (-570)))
(-5 *1 (-937)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))))
-(((*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 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
-(((*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 *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 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-354)) (-5 *2 (-965 (-1182 *4))) (-5 *1 (-362 *4))
+ (-5 *3 (-1182 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-368)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3)))
+ (-5 *1 (-772 *3 *4)) (-4 *3 (-714 *4))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-858 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-859 *5 *3))
+ (-4 *3 (-858 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
+(((*1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-373)) (-4 *2 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))))
(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-961)))))
+(((*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 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-927)))))
+(((*1 *1) (-5 *1 (-829))))
(((*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 *4 *3)
- (|partial| -12 (-5 *4 (-1186))
- (-4 *5 (-13 (-562) (-1047 (-570)) (-148)))
- (-5 *2
- (-2 (|:| -2616 (-413 (-959 *5))) (|:| |coeff| (-413 (-959 *5)))))
- (-5 *1 (-576 *5)) (-5 *3 (-413 (-959 *5))))))
-(((*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 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-588)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))))
+(((*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 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
(((*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))))
@@ -4452,195 +4505,283 @@
((*1 *2 *3 *4)
(-12 (-5 *4 (-650 (-1168))) (-5 *3 (-1168)) (-5 *2 (-316))
(-5 *1 (-300)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1 *2)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
(((*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)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1015)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551))))
- ((*1 *1 *1) (-4 *1 (-1069))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-227)))
- (-5 *1 (-474)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*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 *1) (-5 *1 (-158)))
- ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1099)))))
-(((*1 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(((*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 *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)
- (|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 -3799 ($ *7)) (-15 -4399 (*7 $))
- (-15 -4413 (*7 $))))))))
-(((*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)))))
+ (-12 (-5 *3 (-650 (-695 *4))) (-4 *4 (-368)) (-4 *4 (-1058))
+ (-5 *2 (-112)) (-5 *1 (-1038 *4)))))
+(((*1 *1) (-5 *1 (-1094))))
+(((*1 *1) (-12 (-4 *1 (-333 *2)) (-4 *2 (-373)) (-4 *2 (-368)))))
(((*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))))
+ (-12 (-5 *3 (-1055 *4 *5)) (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
+ (-14 *5 (-650 (-1186)))
+ (-5 *2
+ (-650 (-2 (|:| -3145 (-1182 *4)) (|:| -3314 (-650 (-959 *4))))))
+ (-5 *1 (-1304 *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 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5))))))
+ (-5 *1 (-1304 *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 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5))))))
+ (-5 *1 (-1304 *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 (|:| -3145 (-1182 *5)) (|:| -3314 (-650 (-959 *5))))))
+ (-5 *1 (-1304 *5 *6 *7)) (-5 *3 (-650 (-959 *5)))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
((*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 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-559)))))
-(((*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 *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 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
-(((*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))
+ (-12 (-4 *4 (-13 (-854) (-311) (-148) (-1031)))
(-5 *2
- (-2 (|:| |upol| (-1182 *8)) (|:| |Lval| (-650 *8))
- (|:| |Lfact|
- (-650 (-2 (|:| -3801 (-1182 *8)) (|:| -3357 (-570)))))
- (|:| |ctpol| *8)))
- (-5 *1 (-748 *6 *7 *8 *9)))))
+ (-650 (-2 (|:| -3145 (-1182 *4)) (|:| -3314 (-650 (-959 *4))))))
+ (-5 *1 (-1304 *4 *5 *6)) (-5 *3 (-650 (-959 *4)))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
(((*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 (|:| -4305 *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)))))
+ (-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 (-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 *3 *4 *5 *3)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -2616 *6) (|:| |coeff| *6)) "failed") *6))
- (-4 *6 (-368)) (-4 *7 (-1253 *6))
+ (-12 (-5 *3 (-650 (-786 *4 (-870 *5)))) (-4 *4 (-458))
+ (-14 *5 (-650 (-1186))) (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
+(((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
+(((*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 -3802 ($ *7)))))
+ (-4 *7 (-854))
+ (-4 *8
+ (-13 (-1255 *3 *7) (-368) (-1212)
+ (-10 -8 (-15 -3550 ($ $)) (-15 -2023 ($ $)))))
(-5 *2
- (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6))
- (-2 (|:| -2616 (-413 *7)) (|:| |coeff| (-413 *7))) "failed"))
- (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
-(((*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 *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 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| -1452 *4) (|:| -2573 *3) (|:| -3691 *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 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-1074 *3 *4 *5))))
+ (-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 (-777)) (-5 *2 (-695 (-959 *4))) (-5 *1 (-1037 *4))
+ (-4 *4 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-167 *3)) (-4 *3 (-174)) (-4 *3 (-1069)) (-4 *3 (-1212))
+ (-5 *2 (-2 (|:| |r| *3) (|:| |phi| *3))))))
+(((*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 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*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 (-4 *4 (-368)) (-4 *4 (-562)) (-4 *5 (-1253 *4))
+ (-5 *2 (-2 (|:| -1791 (-629 *4 *5)) (|:| -1922 (-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 (-562)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -1452 *3) (|:| -2573 *1) (|:| -3691 *1)))
+ (-12 (-4 *3 (-458)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| |primePart| *1) (|:| |commonPart| *1)))
(-4 *1 (-1253 *3)))))
(((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 *7)) (-4 *7 (-1074 *4 *5 *6)) (-4 *4 (-562))
+ (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3687 *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 (-986 *4 *5 *6 *7)))))
+ (-5 *1 (-997 *4 *5 *6 *7 *8))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3687 *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 *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")) (|:| -3827 (-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")) (|:| -3827 (-650 *4))))
+ (-5 *1 (-566 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
+(((*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 *3)
+ (-12 (-4 *1 (-866)) (-5 *2 (-697 (-130))) (-5 *3 (-130)))))
+(((*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 *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)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))))
-(((*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 *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 *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 (-5 *3 (-777)) (-5 *2 (-384)) (-5 *1 (-1049)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*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)))))
+(((*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 (-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 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3))))
- ((*1 *1 *1) (-4 *1 (-1148))))
-(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))))
-(((*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)))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*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 *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 (-448 *3)) (-4 *3 (-1253 (-570))))))
(((*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 (-1282)) (-5 *1 (-828)))))
+ (-12 (-4 *5 (-368)) (-4 *7 (-1253 *5)) (-4 *4 (-730 *5 *7))
+ (-5 *2 (-2 (|:| -2990 (-695 *6)) (|:| |vec| (-1277 *5))))
+ (-5 *1 (-817 *5 *6 *7 *4 *3)) (-4 *6 (-662 *5)) (-4 *3 (-662 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189))))
+ ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1189)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-650 (-227))) (-5 *1 (-206)))))
+(((*1 *1 *1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1 *1) (-5 *1 (-868)))
+ ((*1 *1 *1) (-5 *1 (-868))))
+(((*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)
+ (-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 *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 (-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 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-112)) (-5 *1 (-304)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-1186))
+ (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
+ (-5 *2 (-2 (|:| -2807 *3) (|:| |nconst| *3))) (-5 *1 (-573 *5 *3))
+ (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
(((*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))))
((*1 *2 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227))
+ (-12 (|has| *1 (-6 -4452)) (-4 *1 (-495 *3)) (-4 *3 (-1227))
(-5 *2 (-650 *3)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))))
-(((*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)))))
+ (-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 *1 *1) (-5 *1 (-48)))
((*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))))
((*1 *2 *3 *1 *2 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (|has| *1 (-6 -4449))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-4 *2 (-1109)) (|has| *1 (-6 -4452))
(-4 *1 (-152 *2)) (-4 *2 (-1227))))
((*1 *2 *3 *1 *2)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *2))
(-4 *2 (-1227))))
((*1 *2 *3 *1)
- (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *2))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *2))
(-4 *2 (-1227))))
((*1 *2 *3)
(-12 (-4 *4 (-1058))
- (-5 *2 (-2 (|:| -3423 (-1182 *4)) (|:| |deg| (-928))))
+ (-5 *2 (-2 (|:| -3303 (-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))
@@ -4707,67 +4848,35 @@
((*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)))))
+(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
+(((*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 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
+(((*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)
- (-12 (-5 *3 (-1151 *4 *2)) (-14 *4 (-928))
- (-4 *2 (-13 (-1058) (-10 -7 (-6 (-4451 "*")))))
- (-5 *1 (-909 *4 *2)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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 *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 *2)
- (-12 (-4 *1 (-793)) (-5 *2 (-1044))
- (-5 *3
- (-2 (|:| |fn| (-320 (-227)))
- (|:| -2521 (-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)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227)))))))
-(((*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 (-1231)) (-5 *2 (-112)))))
-(((*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 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+ (|partial| -12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))))
+(((*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 *2)
+ (-12 (-5 *2 (-650 (-487 *3 *4))) (-14 *3 (-650 (-1186)))
+ (-4 *4 (-458)) (-5 *1 (-637 *3 *4)))))
+(((*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 *1 *1) (-4 *1 (-551))))
-(((*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 *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 (-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))))
@@ -4797,42 +4906,70 @@
((*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 *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 *1 *1)
- (-12 (-4 *2 (-354)) (-4 *2 (-1058)) (-5 *1 (-718 *2 *3))
- (-4 *3 (-1253 *2)))))
-(((*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 *4)
- (-12 (-5 *3 (-777)) (-5 *4 (-570)) (-5 *1 (-451 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
-(((*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 *3 *4)
- (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2))
- (-4 *4 (-38 (-413 (-570)))))))
-(((*1 *2 *1) (|partial| -12 (-4 *1 (-1021)) (-5 *2 (-868)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1212) (-1011))))))
+ (-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 *1 *2)
+ (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 *4))))
+ (-4 *3 (-1109)) (-4 *4 (-23)) (-14 *5 *4) (-5 *1 (-655 *3 *4 *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 *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))))
+ (-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 *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 (-5 *3 (-1103 (-849 (-227)))) (-5 *2 (-227)) (-5 *1 (-309)))))
+ (-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 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-828)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1229)))))
+(((*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 *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 -4453)))))))
+(((*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 *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 *2)
(-12 (-4 *3 (-1109)) (-5 *1 (-936 *3 *2)) (-4 *2 (-436 *3))))
((*1 *2 *3)
@@ -4850,103 +4987,117 @@
((*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 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))))
-(((*1 *1) (-5 *1 (-565))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2467 *1)))
+ (-4 *1 (-858 *3)))))
(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *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 *1 *1 *2) (-12 (-4 *1 (-408)) (-5 *2 (-777))))
+ ((*1 *1 *1) (-4 *1 (-408))))
(((*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)))))
+ (-12 (-5 *2 (-1 (-950 (-227)) (-227) (-227)))
+ (-5 *3 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-258)))))
+(((*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 *4 *5)
+ (-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 (-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 *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 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570))))
+ (-4 *5 (-1253 *4))
+ (-5 *2 (-2 (|:| -4341 (-413 *5)) (|:| |coeff| (-413 *5))))
+ (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))))
+(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+(((*1 *2 *3 *3 *4 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-754)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
(((*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 *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 *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 *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)))))
+ (-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 *3 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-495 *3)) (-4 *3 (-1227))
+ (-12 (|has| *1 (-6 -4452)) (-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 -4449)) (-4 *1 (-495 *4))
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4452)) (-4 *1 (-495 *4))
(-4 *4 (-1227)) (-5 *2 (-777)))))
-(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))))
(((*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 *1 *1 *1 *2)
- (|partial| -12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-109)))))
+ (-12
+ (-5 *3
+ (-650
+ (-2 (|:| -4009 (-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 *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 *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 *2)
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
(((*1 *1 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227))
+ (-12 (|has| *1 (-6 -4452)) (-4 *1 (-152 *2)) (-4 *2 (-1227))
(-4 *2 (-1109)))))
-(((*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))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *4))))))))))
- (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-458)) (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2915 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
(((*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1129)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
(((*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) (-5 *1 (-443))))
+ (-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 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*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 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
(((*1 *2 *2)
(-12
@@ -4954,54 +5105,66 @@
(-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 *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 (-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 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *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 (-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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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 (-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 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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)))
- ((*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))))
+ (-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 *1 *2 *2 *1) (-12 (-5 *1 (-653 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1270 *3 *2))
- (-4 *2 (-1268 *3)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))))
-(((*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)
- (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1253 *3)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -2265 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*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 (|:| -3402 *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 *3 *4 *3 *4 *4 *4 *4 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*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 *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))
@@ -5024,43 +5187,24 @@
((*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 *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)))))
+(((*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) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
-(((*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 *3)
- (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
- (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2288 *5) (|:| -3530 *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 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2288 *4) (|:| -3530 *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 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2288 *5) (|:| -3530 *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 (|:| -2288 *4) (|:| -3530 *4))))
- (-5 *1 (-813 *5 *4 *6 *3)) (-4 *6 (-662 *4))
- (-4 *3 (-662 (-413 *4))))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
- (-5 *2
- (-3 (|:| |overq| (-1182 (-413 (-570))))
- (|:| |overan| (-1182 (-48))) (|:| -2636 (-112))))
- (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))))
+(((*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 *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 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
(((*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))))
@@ -5070,62 +5214,34 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227))))
((*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))))
-(((*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 (-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 (-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 (-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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
-(((*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 *1 *1 *2)
+ (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*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 *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 *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) (-12 (-5 *2 (-1282)) (-5 *1 (-442)))))
(((*1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570))))
((*1 *1 *1) (-5 *1 (-1129))))
-(((*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 (|:| -1972 (-695 *7)) (|:| |basisDen| *7)
- (|:| |basisInv| (-695 *7)))))
- (-5 *5 (-777)) (-4 *8 (-1253 *7)) (-4 *7 (-1253 *6)) (-4 *6 (-354))
- (-5 *2
- (-2 (|:| -1972 (-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 *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 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *1 (-233 *4))
(-4 *4 (-1058))))
@@ -5181,14 +5297,25 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-1273 *4)) (-14 *4 (-1186)) (-5 *1 (-1269 *3 *4 *5))
(-4 *3 (-1058)) (-14 *5 *3))))
-(((*1 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570))))
- (-4 *2 (-174)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))))
-(((*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 *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 *3 *1)
+ (-12 (-4 *4 (-458)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *3 (-1074 *4 *5 *6))
+ (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3687 *1))))
+ (-4 *1 (-1080 *4 *5 *6 *3)))))
+(((*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 *1)
(-12 (-4 *1 (-610 *3 *2)) (-4 *3 (-1109)) (-4 *3 (-856))
(-4 *2 (-1227))))
@@ -5203,48 +5330,43 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227))))
((*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-443)) (-5 *1 (-1190)))))
-(((*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 (-1253 *3))
- (-5 *2 (-650 (-1182 *3))) (-5 *1 (-504 *3 *5 *6))
- (-4 *6 (-1253 *5)))))
-(((*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) (-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 (-650 *5)) (-4 *5 (-436 *4)) (-4 *4 (-562))
+ (-5 *2 (-868)) (-5 *1 (-32 *4 *5)))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*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 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570))))
((*1 *1 *1 *1) (-5 *1 (-1129))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-1037 *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 (-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)))))
+ (-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 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1277 *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 (-650 *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 *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 *3 *4 *5)
- (-12 (-5 *3 (-959 (-413 (-570)))) (-5 *4 (-1186))
- (-5 *5 (-1103 (-849 (-227)))) (-5 *2 (-650 (-227))) (-5 *1 (-304)))))
+ (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))))
+(((*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 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
(((*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)
@@ -5253,80 +5375,68 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-1186)) (-5 *3 (-1103 *4)) (-4 *4 (-1227))
(-5 *1 (-1101 *4)))))
-(((*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")) (|:| -1972 (-650 *4))))
- (-5 *1 (-812 *5 *6 *7 *4)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
-(((*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 *1 *2) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
+(((*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 (-1168)) (-5 *1 (-1208))))
+ ((*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
+(((*1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-278)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-506 *2)) (-14 *2 (-570))))
((*1 *1 *1 *1) (-5 *1 (-1129))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-368)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*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))))
+ ((*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))))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
+(((*1 *2 *2 *3 *4)
+ (|partial| -12
+ (-5 *3
+ (-1 (-3 (-2 (|:| -4341 *4) (|:| |coeff| *4)) "failed") *4))
+ (-4 *4 (-368)) (-5 *1 (-580 *4 *2)) (-4 *2 (-1253 *4)))))
(((*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 *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)))))
+ (-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 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-1094)))))
(((*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 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *3 *3 *4 *4 *4 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*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 (-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 *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 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-1109))))
+ ((*1 *1 *1) (-5 *1 (-638))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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) (|:| -3077 *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 (|:| |answer| (-413 *6)) (|:| -3077 (-413 *6))
+ (|:| |specpart| (-413 *6)) (|:| |polypart| *6)))
+ (-5 *1 (-569 *5 *6)) (-5 *3 (-413 *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 *1) (-5 *1 (-603))))
+(((*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 *1 *1 *1) (-4 *1 (-306))) ((*1 *1 *1) (-4 *1 (-306))))
(((*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) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-97)))))
-(((*1 *2 *2 *3 *2)
- (-12 (-5 *3 (-777)) (-4 *4 (-354)) (-5 *1 (-218 *4 *2))
- (-4 *2 (-1253 *4)))))
+ (-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)
(-12 (-14 *4 *2) (-4 *5 (-1227)) (-5 *2 (-777))
(-5 *1 (-239 *3 *4 *5)) (-4 *3 (-240 *4 *5))))
@@ -5352,109 +5462,166 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
(-4 *3 (-1253 *2)))))
-(((*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-928)) (-5 *2 (-474)) (-5 *1 (-1278)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
-(((*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 -1425 ((-1186) $))))))))
+(((*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 *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 (|:| -1453 (-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 (|:| -1453 (-650 (-570))) (|:| |poly| (-650 (-1182 *6)))
+ (|:| |prim| (-1182 *6))))
+ (-5 *1 (-967 *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 *2 *3)
+ (-12 (-5 *2 (-474)) (-5 *3 (-650 (-266))) (-5 *1 (-1278))))
+ ((*1 *1 *1) (-5 *1 (-1278))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
+ (-5 *2 (-650 (-650 (-650 (-777))))))))
(((*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 (-1275 *3)) (-4 *3 (-23)) (-4 *3 (-1227)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))))
-(((*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 *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 *2 *3 *3 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-13 (-368) (-854)))
- (-5 *2 (-650 (-2 (|:| -3477 (-650 *3)) (|:| -3670 *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 (|:| -3477 (-650 *3)) (|:| -3670 *4))))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
(((*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 *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)))))
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*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 *3 *3 *2 *4)
+ (-12 (-5 *3 (-695 *2)) (-5 *4 (-570))
+ (-4 *2 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $)))))
+ (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *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 *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
+ (|:| -2107
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (|:| -2340
+ (-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")))
+ (|:| -1600
+ (-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
+ (|:| -2107
+ (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
+ (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
+ (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
+ (|:| |abserr| (-227)) (|:| |relerr| (-227))))
+ (|:| -2340
+ (-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 *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 *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 *1)
- (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))))
-(((*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 *3)
- (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
- (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))))
+ (-12 (-4 *1 (-369 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-5 *2 (-1168)))))
+(((*1 *1 *1)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
+ ((*1 *1 *1) (|partial| -4 *1 (-728))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1277 (-777))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
(((*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 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1212) (-1011))))))
-(((*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)))))
+ (-12 (-5 *2 (-650 *3)) (-5 *1 (-968 *3)) (-4 *3 (-551)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))))
+(((*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 *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))))
@@ -5464,369 +5631,9 @@
((*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 (-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 (-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 *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) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-1205)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *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 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*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 *1 *3) (-12 (-5 *3 (-829)) (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *3) (-12 (-5 *3 (-413 (-570))) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))))
-(((*1 *1 *1 *1)
- (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
-(((*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 (|:| -3801 *3) (|:| -3357 (-570)))))
- (-5 *1 (-424 *3)) (-4 *3 (-562)))))
-(((*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) (-1212) (-966)))
- (-5 *2 (-2 (|:| |particular| *4) (|:| -1972 (-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"))
- (|:| -1972 (-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"))
- (|:| -1972 (-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"))
- (|:| -1972 (-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"))
- (|:| -1972 (-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")) (|:| -1972 (-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")) (|:| -1972 (-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)) (|:| -1972 (-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)) (|:| -1972 (-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)) (|:| -1972 (-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) (|:| -1972 (-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) (|:| -1972 (-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) (|:| -1972 (-650 *6))) "failed")
- *7 *6))
- (-4 *6 (-368)) (-4 *7 (-662 *6))
- (-5 *2 (-2 (|:| |particular| (-1277 *6)) (|:| -1972 (-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 *1) (-12 (-4 *1 (-562)) (-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 *1 *1) (-12 (-4 *1 (-311)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354)) (-5 *2 (-965 (-1129)))
- (-5 *1 (-351 *4)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-115)) (-5 *1 (-114 *2)) (-4 *2 (-1109)))))
-(((*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 *1)
- (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
-(((*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)
- (-12 (-4 *1 (-410)) (-1795 (|has| *1 (-6 -4440)))
- (-1795 (|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 *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 *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)
- (-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 (-1253 *2)))))
-(((*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 (-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 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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 *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 *1 *1 *1)
- (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-112)) (-5 *1 (-304)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 (-487 *3 *4))) (-14 *3 (-650 (-1186)))
- (-4 *4 (-458)) (-5 *1 (-637 *3 *4)))))
+(((*1 *2 *2 *2 *2)
+ (-12 (-5 *2 (-413 (-1182 (-320 *3)))) (-4 *3 (-562))
+ (-5 *1 (-1139 *3)))))
(((*1 *2)
(-12 (-4 *4 (-174)) (-5 *2 (-1182 (-959 *4))) (-5 *1 (-422 *3 *4))
(-4 *3 (-423 *4))))
@@ -5837,85 +5644,87 @@
(-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) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
-(((*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 *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 (-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 *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 *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 *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)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354))))
- ((*1 *2 *3 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354))))
- ((*1 *1) (-4 *1 (-373)))
- ((*1 *2 *3)
- (-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)))
- ((*1 *2 *1) (-12 (-5 *2 (-912 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109))))
- ((*1 *2 *1 *3)
- (-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 *4 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-762)))))
-(((*1 *1 *1 *1) (-4 *1 (-306))) ((*1 *1 *1) (-4 *1 (-306))))
-(((*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 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-112)) (-5 *1 (-270)))))
+(((*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| *3) (|:| -3687 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1210)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *1) (-5 *1 (-1189))))
(((*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 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *1 *1 *1)
+ (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
+(((*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 *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 *3)
+ (-12 (-4 *4 (-458)) (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef2| *3) (|:| -2915 *4))) (-5 *1 (-978 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *1 *2 *3)
+ (|partial| -12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-1072)))))
+(((*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 *1) (-5 *1 (-295))))
+(((*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 *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 *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 *1 *1 *1)
+ (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-311))
+ (-5 *2 (-413 (-424 (-959 *4)))) (-5 *1 (-1051 *4)))))
+(((*1 *1)
+ (-12 (-4 *1 (-410)) (-1796 (|has| *1 (-6 -4443)))
+ (-1796 (|has| *1 (-6 -4435)))))
+ ((*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 *1 *1 *1 *1) (-4 *1 (-767))))
+(((*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)
+ (-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)
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
(((*1 *1 *2)
(-12
(-5 *2
(-650
(-2
- (|:| -2106
+ (|:| -2107
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(|:| -2340
(-2
@@ -5933,7 +5742,7 @@
(-3 (|:| |str| (-1166 (-227)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -2521
+ (|:| -1600
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite|
"The bottom of range is infinite")
@@ -5942,108 +5751,182 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated"))))))))
(-5 *1 (-565)))))
+(((*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)
+ (-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 *1 *1 *1)
+ (-12 (-5 *1 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-570)) (-5 *2 (-650 (-2 (|:| -3804 *3) (|:| -3079 *4))))
+ (-5 *1 (-702 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))))
+(((*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 *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 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1110 *3 *4)) (-14 *3 (-928))
+ (-14 *4 (-928)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *4 (-799))
+ (-4 *3 (-13 (-856) (-10 -8 (-15 -1426 ((-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 -1426 ((-1186) $))
+ (-15 -2800 ((-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 -1426 ((-1186) $))
+ (-15 -2800 ((-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 (-4 *1 (-395)) (-5 *2 (-112)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-650 *1))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*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)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354))))
+ ((*1 *1) (-4 *1 (-373)))
+ ((*1 *2 *3)
+ (-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)))
+ ((*1 *2 *1) (-12 (-5 *2 (-912 *3)) (-5 *1 (-911 *3)) (-4 *3 (-1109))))
+ ((*1 *2 *1 *3)
+ (-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 *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 -4453))))
+ (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4453))))
+ (-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 *2 *2)
+ (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2))
+ (-4 *2 (-1253 (-171 *3))))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+(((*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 *2 (-158)) (-5 *1 (-880)))))
+(((*1 *1 *1) (-4 *1 (-175)))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
+(((*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 *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 *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)))))
+ (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-4 *1 (-910 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1186)))))
(((*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 *4)
- (-12
- (-5 *3
- (-650
- (-2 (|:| |eqzro| (-650 *8)) (|:| |neqzro| (-650 *8))
- (|:| |wcond| (-650 (-959 *5)))
- (|:| |bsoln|
- (-2 (|:| |partsol| (-1277 (-413 (-959 *5))))
- (|:| -1972 (-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 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*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)
- (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *4 (-777))
- (-5 *2 (-695 (-227))) (-5 *1 (-270)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
- (-5 *2 (-2 (|:| -1452 *1) (|:| |gap| (-777)) (|:| -3691 *1)))
- (-4 *1 (-1074 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2 (-2 (|:| -1452 *1) (|:| |gap| (-777)) (|:| -3691 *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
-(((*1 *2 *3 *4 *5 *6 *7 *6)
- (|partial| -12
- (-5 *5
- (-2 (|:| |contp| *3)
- (|:| -3477 (-650 (-2 (|:| |irr| *10) (|:| -3563 (-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))))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3 *3)
+ (-12 (-5 *3 (-650 (-2 (|:| -3804 (-1182 *6)) (|:| -3994 (-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 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*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) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
(((*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 *3 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-486)))))
+(((*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 *2 *3)
(-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-334)))))
-(((*1 *1) (-5 *1 (-443))))
-(((*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)
+ (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
+ (-4 *3 (-562)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*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)
- (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4))
- (-5 *1 (-534 *4)))))
-(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-835)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+ (-12 (-4 *4 (-856)) (-5 *2 (-1198 (-650 *4))) (-5 *1 (-1197 *4))
+ (-5 *3 (-650 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-910 *3)))))
(((*1 *1 *2) (-12 (-4 *1 (-672 *2)) (-4 *2 (-1227))))
((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1186)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *2 *3)
+ (-12 (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $)))))
+ (-4 *4 (-1253 *3))
+ (-5 *2
+ (-2 (|:| -3827 (-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 (|:| -3827 (-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 (|:| -3827 (-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 (|:| -3827 (-695 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-695 *3))))
+ (-5 *1 (-1286 *4 *3 *5 *6)) (-4 *6 (-415 *3 *5)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
@@ -6112,82 +5995,117 @@
((*1 *1 *2)
(-12 (-5 *2 (-1166 (-2 (|:| |k| (-777)) (|:| |c| *3))))
(-4 *3 (-1058)) (-4 *1 (-1268 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-1222 *3))
- (-4 *3 (-983)))))
-(((*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 (|:| -1452 *3) (|:| -3384 *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 *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) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5))
- (-14 *3 (-570)) (-14 *4 (-777)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-585)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1226))) (-5 *3 (-1226)) (-5 *1 (-687)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-5 *1 (-724 *2)) (-4 *2 (-368)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *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 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1186)) (-5 *2 (-1 (-1182 (-959 *4)) (-959 *4)))
+ (-5 *1 (-1285 *4)) (-4 *4 (-368)))))
+(((*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 *3 *4 *5 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112))
+ (-5 *2 (-1044)) (-5 *1 (-751)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
+(((*1 *2 *2 *3 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *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))))
+ (|:| -3827 (-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 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*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 *1 *2)
(-12 (-5 *2 (-928)) (-5 *1 (-153 *3 *4 *5)) (-14 *3 *2)
(-4 *4 (-368)) (-14 *5 (-1002 *3 *4)))))
-(((*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 (-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)
+ (|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 *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 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1277 (-3 (-474) "undefined"))) (-5 *1 (-1278)))))
-(((*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 *4 *5 *6)
- (|partial| -12 (-5 *4 (-1 *8 *8))
- (-5 *5
- (-1 (-3 (-2 (|:| -2616 *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 *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 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *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 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-758)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
(((*1 *2 *3 *3)
(-12 (-5 *2 (-1 (-384))) (-5 *1 (-1049)) (-5 *3 (-384)))))
-(((*1 *2)
- (-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
- (-4 *3 (-562)))))
-(((*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 *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) (-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))))
@@ -6198,20 +6116,12 @@
((*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 *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 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef2| *3) (|:| |subResultant| *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))))
+(((*1 *2 *3 *3 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
(((*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 (-1227))))
@@ -6220,31 +6130,45 @@
((*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) (|:| -3665 *1) (|:| |upper| *1)))
+ (-5 *2 (-2 (|:| |under| *1) (|:| -1920 *1) (|:| |upper| *1)))
(-4 *1 (-985 *4 *5 *3 *6)))))
(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
-(((*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 (-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 *1 *3)
- (-12 (-5 *3 (-650 *6)) (-4 *6 (-856)) (-4 *4 (-368)) (-4 *5 (-799))
+(((*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)))))
+(((*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 (|:| |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 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+ (-2
+ (|:| |rgl|
+ (-650
+ (-2 (|:| |eqzro| (-650 *11)) (|:| |neqzro| (-650 *11))
+ (|:| |wcond| (-650 (-959 *8)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *8))))
+ (|:| -3827 (-650 (-1277 (-413 (-959 *8))))))))))
+ (|:| |rgsz| (-570))))
+ (-5 *1 (-931 *8 *9 *10 *11)) (-5 *7 (-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 *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 *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)))))
(((*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))))
@@ -6258,25 +6182,24 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-825 *4)) (-4 *4 (-856)) (-4 *1 (-1294 *4 *3))
(-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-443)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-858 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-859 *5 *3))
- (-4 *3 (-858 *5)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
-(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-397)))))
(((*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 *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)))))
+ (-12 (-5 *3 (-1182 *2)) (-4 *2 (-436 *4)) (-4 *4 (-562))
+ (-5 *1 (-32 *4 *2)))))
+(((*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) (-12 (-5 *2 (-1282)) (-5 *1 (-397)))))
+(((*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 *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 *1 *1 *1) (-4 *1 (-479))) ((*1 *1 *1 *1) (-4 *1 (-767))))
(((*1 *2 *1 *3 *4)
(-12 (-5 *3 (-950 (-227))) (-5 *4 (-880)) (-5 *2 (-1282))
(-5 *1 (-474))))
@@ -6294,30 +6217,22 @@
((*1 *2 *3 *3 *3 *3)
(-12 (-5 *2 (-950 (-227))) (-5 *1 (-1223)) (-5 *3 (-227)))))
(((*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)
- (-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)
- (-12 (-5 *3 (-695 (-320 (-227))))
- (-5 *2
- (-2 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))))
- (-5 *1 (-207)))))
-(((*1 *2 *3 *4 *4 *4 *4)
- (-12 (-5 *4 (-227))
+ (-12 (-4 *1 (-354)) (-5 *3 (-570)) (-5 *2 (-1199 (-928) (-777))))))
+(((*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 *2)
+ (-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 *4)
+ (-12 (-4 *5 (-368)) (-4 *5 (-562))
(-5 *2
- (-2 (|:| |brans| (-650 (-650 (-950 *4))))
- (|:| |xValues| (-1103 *4)) (|:| |yValues| (-1103 *4))))
- (-5 *1 (-154)) (-5 *3 (-650 (-650 (-950 *4)))))))
+ (-2 (|:| |minor| (-650 (-928))) (|:| -4308 *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 (-777)) (-4 *1 (-746 *4 *5)) (-4 *4 (-1058))
(-4 *5 (-856)) (-5 *2 (-959 *4))))
@@ -6330,9 +6245,8 @@
((*1 *2 *1 *3)
(-12 (-5 *3 (-777)) (-4 *1 (-1268 *4)) (-4 *4 (-1058))
(-5 *2 (-959 *4)))))
-(((*1 *2)
- (-12 (-5 *2 (-2 (|:| -2762 (-650 *3)) (|:| -1458 (-650 *3))))
- (-5 *1 (-1228 *3)) (-4 *3 (-1109)))))
+(((*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 *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)))))
@@ -6341,130 +6255,96 @@
((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-266))))
((*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 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| (-112)) (|:| -3684 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
- (-5 *1 (-443)))))
+(((*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 *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) (-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)
- (-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 *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 *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 -3799 ($ *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 (-4 *4 (-354)) (-5 *2 (-424 *3)) (-5 *1 (-218 *4 *3))
- (-4 *3 (-1253 *4))))
- ((*1 *2 *3)
- (-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 (-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 (-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 *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))))))
+ (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *4 (-777))
+ (-5 *2 (-695 (-227))) (-5 *1 (-270)))))
+(((*1 *2 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*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 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
+(((*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-980)))))
+(((*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 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-744)))))
(((*1 *2 *1)
(-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-950 *3))))))
+(((*1 *2 *3 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| |cycle?| (-112)) (|:| -4312 (-777)) (|:| |period| (-777))))
+ (-5 *1 (-1166 *4)) (-4 *4 (-1227)) (-5 *3 (-777)))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
+ (-5 *2 (-2 (|:| -1453 *1) (|:| |gap| (-777)) (|:| -3971 *1)))
+ (-4 *1 (-1074 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-2 (|:| -1453 *1) (|:| |gap| (-777)) (|:| -3971 *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
(((*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))))
+ (-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 *2 (-1109)) (-5 *1 (-719 *3 *2 *4)) (-4 *3 (-856))
- (-14 *4
- (-1 (-112) (-2 (|:| -2268 *3) (|:| -3357 *2))
- (-2 (|:| -2268 *3) (|:| -3357 *2)))))))
-(((*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))))))
- ((*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))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))))
+ (-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *2 (-856)))))
(((*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1058)) (-4 *3 (-1109))
- (-5 *2 (-2 (|:| |val| *1) (|:| -3357 (-570)))) (-4 *1 (-436 *3))))
- ((*1 *2 *1)
- (|partial| -12
- (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3357 (-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) (|:| -3357 (-570))))
- (-5 *1 (-957 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-368)
- (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $))
- (-15 -4413 (*7 $))))))))
-(((*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 *3) (-12 (-5 *2 (-115)) (-5 *1 (-114 *3)) (-4 *3 (-1109)))))
+(((*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)
- (-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 *2 *3)
- (-12 (-5 *3 (-1186)) (-4 *4 (-562)) (-4 *4 (-1109))
- (-5 *1 (-579 *4 *2)) (-4 *2 (-436 *4)))))
+ (-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 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4452)) (-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 (-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 (-965 (-777))) (-5 *1 (-337)))))
(((*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))))
@@ -6472,96 +6352,100 @@
(-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)
- (-12 (-5 *3 (-650 (-2 (|:| |deg| (-777)) (|:| -2066 *5))))
- (-4 *5 (-1253 *4)) (-4 *4 (-354)) (-5 *2 (-650 *5))
- (-5 *1 (-218 *4 *5))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-2 (|:| -3801 *5) (|:| -2130 (-570)))))
- (-5 *4 (-570)) (-4 *5 (-1253 *4)) (-5 *2 (-650 *5))
- (-5 *1 (-702 *5)))))
+ (-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 (-650 (-2 (|:| -2106 (-1186)) (|:| -2340 (-443)))))
+ (-12 (-5 *2 (-650 (-2 (|:| -2107 (-1186)) (|:| -2340 (-443)))))
(-5 *1 (-1190)))))
-(((*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 (-933)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-849 (-384))) (-5 *2 (-849 (-227))) (-5 *1 (-309)))))
-(((*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 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
-(((*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 *3) (-12 (-5 *2 (-424 *3)) (-5 *1 (-564 *3)) (-4 *3 (-551)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+ (-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 *3 *4 *5 *6 *7 *6)
+ (|partial| -12
+ (-5 *5
+ (-2 (|:| |contp| *3)
+ (|:| -2638 (-650 (-2 (|:| |irr| *10) (|:| -2199 (-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 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-562))
+ (-5 *2 (-2 (|:| -2990 (-695 *5)) (|:| |vec| (-1277 (-650 (-928))))))
+ (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
+(((*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 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*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 *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 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
-(((*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 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
-(((*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 *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 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))))
+(((*1 *2 *3 *3 *3 *3)
+ (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-486)))))
+(((*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 *1 *1) (-5 *1 (-1072))))
+(((*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 *2 *2 *3)
+ (|partial| -12 (-5 *2 (-629 *4 *5))
+ (-5 *3
+ (-1 (-2 (|:| |ans| *4) (|:| -4413 *4) (|:| |sol?| (-112)))
+ (-570) *4))
+ (-4 *4 (-368)) (-4 *5 (-1253 *4)) (-5 *1 (-580 *4 *5)))))
+(((*1 *2 *3 *3)
+ (|partial| -12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-1248 *4 *3))
+ (-4 *3 (-1253 *4)))))
(((*1 *2 *1)
(-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 (-1212)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
-(((*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 *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 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+(((*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 *2)
(-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
(-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
-(((*1 *1 *1)
- (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))))
+(((*1 *1) (-5 *1 (-443))))
(((*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 *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)))))
+ (-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 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-247 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
(((*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))
@@ -6596,101 +6480,111 @@
(-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 *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 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*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 *1)
(-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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(((*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"))
- (|:| -1972 (-650 (-1277 (-413 *8))))))
- (-5 *1 (-675 *5 *6 *7 *8)))))
-(((*1 *2 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-551)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-173)))))))
-(((*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 *1 *1)
- (-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 (-828)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-52)))))
-(((*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 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
+(((*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 *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 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
(((*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 *3)
- (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4)))
- (-5 *1 (-1197 *4)) (-4 *4 (-856)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-950 *4)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *1 *2 *3 *1)
- (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
- (-4 *3 (-1109)))))
-(((*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))))
+ (-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 (-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))))
+ (-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 *1) (-5 *1 (-131))))
+(((*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 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-52)))))
+(((*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 (-5 *2 (-650 (-950 *3))) (-4 *1 (-1143 *3)) (-4 *3 (-1058)))))
-(((*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))))))
-(((*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 *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) (-12 (-5 *2 (-1282)) (-5 *1 (-1280)))))
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-562)))))
+(((*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 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*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 (-1277 *6))
+ (-5 *1 (-637 *5 *6)))))
(((*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))))
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4))
+ (-5 *1 (-534 *4)))))
+(((*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 (|:| |stiffnessFactor| (-384)) (|:| |stabilityFactor| (-384))))
- (-5 *1 (-207)))))
-(((*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 (-4 *4 (-562)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-90 *4 *5))
- (-5 *3 (-695 *4)) (-4 *5 (-662 *4)))))
+ (-2 (|:| |num| *1) (|:| |den| *5) (|:| |derivden| *5)
+ (|:| |gd| *5)))
+ (-4 *1 (-347 *4 *5 *6)))))
+(((*1 *1 *1 *1)
+ (|partial| -12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*1 *2 *1 *1 *3)
+ (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
+ (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-956 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1)))
+ (-4 *1 (-1253 *3)))))
+(((*1 *2 *3 *2) (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-270)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
(((*1 *1 *1 *1)
(-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
(-14 *4 *3)))
@@ -6699,143 +6593,117 @@
(-14 *4 *3)))
((*1 *1 *1 *1)
(-12 (-5 *1 (-681 *2)) (-4 *2 (-1058)) (-4 *2 (-1109)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*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 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
- (-5 *1 (-592 *3)) (-4 *3 (-368)))))
+(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-316)) (-5 *1 (-835)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3 *4 *5 *6 *5 *3 *7)
+ (-12 (-5 *4 (-570))
+ (-5 *6
+ (-2 (|:| |try| (-384)) (|:| |did| (-384)) (|:| -2159 (-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)) (|:| -2159 (-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 *1)
+ (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109))
+ (-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 *4))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*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 *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)))))
+ (-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 (|:| -4009 (-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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-542)))))
-(((*1 *2 *2) (-12 (-5 *2 (-227)) (-5 *1 (-260)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-928))) (-5 *2 (-650 (-695 (-570))))
- (-5 *1 (-1119)))))
-(((*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 *3 *4 *5 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112))
- (-5 *2 (-1044)) (-5 *1 (-751)))))
-(((*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 *1) (-5 *1 (-142))))
-(((*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)
+ (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
+ (-5 *2 (-1182 *3)))))
(((*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))))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*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 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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 *1 *2 *3 *4)
+ (-12 (-5 *2 (-591)) (-5 *3 (-603)) (-5 *4 (-295)) (-5 *1 (-284)))))
+(((*1 *1) (-5 *1 (-131))))
+(((*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 *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 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
+(((*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 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *3 *4 *3 *3 *4 *4 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458)))))
+(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212)))))
+ ((*1 *1 *1 *1) (-4 *1 (-799))))
(((*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 *1) (-12 (-5 *2 (-697 (-1144))) (-5 *1 (-1160)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
-(((*1 *2 *3)
- (-12
- (-5 *2
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-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 (-1253 (-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 (-1253 (-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 (-1253 (-413 (-570))))))
- ((*1 *2 *3 *4)
- (-12
- (-5 *2
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *1 (-1030 *3)) (-4 *3 (-1253 (-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 (-1253 *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 (-1253 *5)) (-5 *4 (-2 (|:| -4397 *5) (|:| -4410 *5))))))
-(((*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 (-413 (-570))) (-5 *1 (-309)))))
-(((*1 *2 *3)
- (-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 *2 *3)
- (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *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 *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))))
- ((*1 *1 *1)
- (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))))
-(((*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))))))
+ (-12 (-5 *2 (-2 (|:| -3635 *1) (|:| -4439 *1) (|:| |associate| *1)))
+ (-4 *1 (-562)))))
+(((*1 *1)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
+(((*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 *2 *1)
+ (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-1222 *3))
+ (-4 *3 (-983)))))
+(((*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 (-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 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
+ (-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
@@ -6844,7 +6712,7 @@
(-2 (|:| |var| (-1186))
(|:| |arrayIndex| (-650 (-959 (-570))))
(|:| |rand|
- (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868))))))
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868))))))
(|:| |arrayAssignmentBranch|
(-2 (|:| |var| (-1186)) (|:| |rand| (-868))
(|:| |ints2Floats?| (-112))))
@@ -6852,194 +6720,207 @@
(-2 (|:| |switch| (-1185)) (|:| |thenClause| (-334))
(|:| |elseClause| (-334))))
(|:| |returnBranch|
- (-2 (|:| -2017 (-112))
+ (-2 (|:| -4283 (-112))
(|:| -2308
- (-2 (|:| |ints2Floats?| (-112)) (|:| -2753 (-868))))))
+ (-2 (|:| |ints2Floats?| (-112)) (|:| -2756 (-868))))))
(|:| |blockBranch| (-650 (-334)))
(|:| |commentBranch| (-650 (-1168))) (|:| |callBranch| (-1168))
(|:| |forBranch|
- (-2 (|:| -2521 (-1101 (-959 (-570))))
- (|:| |span| (-959 (-570))) (|:| -3613 (-334))))
+ (-2 (|:| -1600 (-1101 (-959 (-570))))
+ (|:| |span| (-959 (-570))) (|:| -3616 (-334))))
(|:| |labelBranch| (-1129))
- (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3613 (-334))))
+ (|:| |loopBranch| (-2 (|:| |switch| (-1185)) (|:| -3616 (-334))))
(|:| |commonBranch|
- (-2 (|:| -3600 (-1186)) (|:| |contents| (-650 (-1186)))))
+ (-2 (|:| -3602 (-1186)) (|:| |contents| (-650 (-1186)))))
(|:| |printBranch| (-650 (-868)))))
(-5 *1 (-334)))))
-(((*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)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
- ((*1 *1 *1) (|partial| -4 *1 (-728))))
-(((*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 *1) (-12 (-5 *2 (-337)) (-5 *1 (-251)))))
+(((*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 *2 *3 *3)
+ (-12 (-5 *2 (-1182 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
+(((*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 *1) (-12 (-5 *2 (-603)) (-5 *1 (-284)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(((*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 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
-(((*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)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-531)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2 *3 *3 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))))
(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-1151 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368))
- (-5 *1 (-1002 *3 *4)))))
-(((*1 *2 *3 *1)
- (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-5 *2 (-112)))))
-(((*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 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *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 *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 *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 *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))))
+ (-12 (-4 *1 (-327 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-132))
+ (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 *4))))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-839 *3)) (-4 *3 (-551)) (-4 *3 (-1109))))
+ (-12 (-5 *2 (-650 (-2 (|:| -1453 *3) (|:| -3387 *4))))
+ (-5 *1 (-741 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-732))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-849 *3)) (-4 *3 (-551)) (-4 *3 (-1109))))
+ (-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
+ (-5 *2 (-1166 (-2 (|:| |k| *4) (|:| |c| *3)))))))
+(((*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 -4452)))))))
+(((*1 *2 *1 *3 *3 *3 *2)
+ (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))))
+(((*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 *2 *2) (-12 (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))))
+(((*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 *3 *2)
+ (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(((*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 *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 (-1006 *3)) (-4 *3 (-174)) (-4 *3 (-551)) (-5 *2 (-112))))
+ (-12 (-4 *1 (-956 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-777)))))
+(((*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 *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 *1 *2 *3 *3 *4 *4)
+ (-12 (-5 *2 (-959 (-570))) (-5 *3 (-1186))
+ (-5 *4 (-1103 (-413 (-570)))) (-5 *1 (-30)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*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 *2 (-112)) (-5 *1 (-1017 *3)) (-4 *3 (-1047 (-413 (-570)))))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4322 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)))))
+ (-12 (-5 *3 (-973 *4)) (-4 *4 (-1109)) (-5 *2 (-1111 *4))
+ (-5 *1 (-974 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-320 (-384))) (-5 *2 (-320 (-227))) (-5 *1 (-309)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
(((*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 *1) (-5 *1 (-1278))))
-(((*1 *2 *1) (-12 (-5 *1 (-1222 *2)) (-4 *2 (-983)))))
-(((*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 *1 *1 *2)
- (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*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))))
- ((*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)))))
-(((*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 *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)))))
+ (-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 -1426 ((-1186) $))))))))
+(((*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 *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) (-12 (-5 *2 (-1282)) (-5 *1 (-765)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12 (-5 *3 (-777)) (-4 *4 (-13 (-562) (-148)))
- (-5 *1 (-1247 *4 *2)) (-4 *2 (-1253 *4)))))
+ (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4))))
+ (-5 *1 (-1285 *4)) (-4 *4 (-368)))))
(((*1 *2 *1)
- (-12
- (-5 *2
- (-650
- (-650
- (-3 (|:| -3600 (-1186))
- (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))))
- (-5 *1 (-1190)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-564 *2)) (-4 *2 (-551)))))
+(((*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 *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 *2 *2 *3 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-1249 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-1186)) (-5 *1 (-618 *3)) (-4 *3 (-1109)))))
+(((*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 *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 (-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 *3 *3)
(-12 (-5 *3 (-928)) (-5 *2 (-777)) (-5 *1 (-1110 *4 *5)) (-14 *4 *3)
(-14 *5 *3))))
-(((*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)
- (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2268 (-1129)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-695 *3)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354))
- (-14 *4 (-928)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-115))))
- ((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-115))))
+(((*1 *2 *1 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
+(((*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 (-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)))))
+ (-12 (-5 *3 (-1 *2 *2 *2)) (-5 *1 (-103 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
(((*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))))
@@ -7048,40 +6929,28 @@
(-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 *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 *2 *3 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
-(((*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 *3
+ (-3
+ (|:| |noa|
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227)))
+ (|:| |lb| (-650 (-849 (-227))))
+ (|:| |cf| (-650 (-320 (-227))))
+ (|:| |ub| (-650 (-849 (-227))))))
+ (|:| |lsa|
+ (-2 (|:| |lfn| (-650 (-320 (-227))))
+ (|:| -2439 (-650 (-227)))))))
+ (-5 *2 (-650 (-1168))) (-5 *1 (-270)))))
+(((*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 *5)) (-4 *5 (-174)) (-5 *1 (-137 *3 *4 *5))
+ (-14 *3 (-570)) (-14 *4 (-777)))))
(((*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 *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) (-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))
@@ -7137,11 +7006,11 @@
(-3
(|:| |nia|
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(|:| |mdnia|
(-2 (|:| |fn| (-320 (-227)))
- (|:| -2521 (-650 (-1103 (-849 (-227)))))
+ (|:| -1600 (-650 (-1103 (-849 (-227)))))
(|:| |abserr| (-227)) (|:| |relerr| (-227))))))
(-5 *1 (-775))))
((*1 *2 *1)
@@ -7157,13 +7026,13 @@
(-5 *2
(-3
(|:| |noa|
- (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227)))
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227)))
(|:| |lb| (-650 (-849 (-227))))
(|:| |cf| (-650 (-320 (-227))))
(|:| |ub| (-650 (-849 (-227))))))
(|:| |lsa|
(-2 (|:| |lfn| (-650 (-320 (-227))))
- (|:| -2438 (-650 (-227)))))))
+ (|:| -2439 (-650 (-227)))))))
(-5 *1 (-847))))
((*1 *2 *1)
(-12
@@ -7182,26 +7051,26 @@
(-4 *4 (-799)) (-4 *5 (-856)) (-4 *1 (-985 *3 *4 *5 *6))))
((*1 *2 *1) (-12 (-4 *1 (-1047 *2)) (-4 *2 (-1227))))
((*1 *1 *2)
- (-2892
+ (-2895
(-12 (-5 *2 (-959 *3))
- (-12 (-1795 (-4 *3 (-38 (-413 (-570)))))
- (-1795 (-4 *3 (-38 (-570)))) (-4 *5 (-620 (-1186))))
+ (-12 (-1796 (-4 *3 (-38 (-413 (-570)))))
+ (-1796 (-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 (-1795 (-4 *3 (-551))) (-1795 (-4 *3 (-38 (-413 (-570)))))
+ (-12 (-1796 (-4 *3 (-551))) (-1796 (-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 (-1795 (-4 *3 (-1001 (-570)))) (-4 *3 (-38 (-413 (-570))))
+ (-12 (-1796 (-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)
- (-2892
+ (-2895
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
- (-12 (-1795 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
+ (-12 (-1796 (-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))
@@ -7211,49 +7080,26 @@
(-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)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-1058))
- (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-1253 *4)))))
+(((*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)))))
(((*1 *2 *3 *3)
- (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3)))
- (-5 *1 (-694 *3 *4 *5 *6)) (-4 *6 (-693 *3 *4 *5))))
- ((*1 *2 *3 *3)
- (-12 (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-706 *3))
- (-4 *3 (-311)))))
-(((*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 *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 (-2569 *3) (-777)))))
- ((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-487 *3 *4))
- (-14 *3 (-650 (-1186))) (-4 *4 (-1058)))))
+ (-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 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1212) (-1011))))))
-(((*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))))))
+ (-12 (-5 *3 (-777)) (-5 *2 (-1182 *4)) (-5 *1 (-534 *4))
+ (-4 *4 (-354)))))
+(((*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 (-585)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
+(((*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 *1 *2 *2) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))))
(((*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))))
@@ -7265,134 +7111,164 @@
((*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) (-12 (-4 *1 (-773 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
(((*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) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
- ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *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 *3)
- (-12 (-5 *3 (-1277 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562))
- (-5 *2 (-112)) (-5 *1 (-644 *4 *5)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-91 *3)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368))
- (-5 *2 (-2 (|:| -2616 (-413 *6)) (|:| |coeff| (-413 *6))))
- (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+ (-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 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))))
+(((*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 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| -3827 (-695 *3)) (|:| |basisDen| *3)
+ (|:| |basisInv| (-695 *3))))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
(((*1 *2)
- (-12 (-4 *4 (-174)) (-5 *2 (-112)) (-5 *1 (-371 *3 *4))
+ (-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)) (-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 (|:| -3725 *5) (|:| -4305 *3))))
- (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6))
- (-4 *7 (-662 (-413 *6))))))
+ ((*1 *2)
+ (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
+ (-5 *2 (-650 (-1277 *3))))))
+(((*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")))
+ (|:| -1600
+ (-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 *1 *1 *1) (-5 *1 (-868))))
+(((*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 *3)
+ (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-5 *2 (-650 *5))
+ (-5 *1 (-897 *4 *5)) (-4 *5 (-1227)))))
(((*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 *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 *3 *4)
- (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
- (-4 *3 (-1074 *5 *6 *7))
- (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3684 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*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))))
+(((*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)))))
+(((*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 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1226))) (-5 *3 (-1226)) (-5 *1 (-687)))))
+(((*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 *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 *1 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*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
- (-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))
+ (-650
+ (-2 (|:| -4308 (-650 *9)) (|:| -3687 *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
- (-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))
+ (-650
+ (-2 (|:| -4308 (-650 *9)) (|:| -3687 *10) (|:| |ineq| (-650 *9)))))
+ (-5 *1 (-1116 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
(-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 *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 (-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 *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 *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 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
(((*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 *3 *4)
- (-12 (-5 *4 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-311))
- (-5 *2 (-777)) (-5 *1 (-461 *5 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-591)) (-5 *1 (-284)))))
-(((*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 (|:| -2616 *3) (|:| |coeff| *3)))
- (-5 *1 (-563 *7 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
- (-5 *1 (-178 *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)))))
-(((*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)))))
+ (-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 *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 *2 *3 *4)
(-12 (-5 *4 (-777)) (-5 *2 (-650 (-1186))) (-5 *1 (-212))
(-5 *3 (-1186))))
@@ -7412,39 +7288,39 @@
((*1 *2 *1)
(-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
(-5 *2 (-650 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-553))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *4 (-777)) (-4 *5 (-354)) (-4 *6 (-1253 *5))
+ (-5 *2
+ (-650
+ (-2 (|:| -3827 (-695 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-695 *6)))))
+ (-5 *1 (-504 *5 *6 *7))
+ (-5 *3
+ (-2 (|:| -3827 (-695 *6)) (|:| |basisDen| *6)
+ (|:| |basisInv| (-695 *6))))
+ (-4 *7 (-1253 *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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *1 *2 *2) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))))
-(((*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 *2)
- (-12 (-5 *2 (-1166 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1058))
- (-5 *3 (-413 (-570))) (-5 *1 (-1170 *4)))))
-(((*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) (|:| -3684 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3))
- (-4 *3 (-1253 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-570)) (-5 *1 (-949)))))
-(((*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 *2)
+ (-12 (-5 *2 (-1277 (-1110 *3 *4))) (-5 *1 (-1110 *3 *4))
+ (-14 *3 (-928)) (-14 *4 (-928)))))
+(((*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 *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 *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 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-552))))))
+(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
(((*1 *2 *1 *3)
(-12 (-5 *2 (-413 (-570))) (-5 *1 (-118 *4)) (-14 *4 *3)
(-5 *3 (-570))))
@@ -7461,185 +7337,241 @@
(-4 *3 (-1253 *2))))
((*1 *2 *1 *3)
(-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798))
- (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3799 (*2 (-1186))))
+ (|has| *2 (-15 ** (*2 *2 *3))) (|has| *2 (-15 -3802 (*2 (-1186))))
(-4 *2 (-1058)))))
-(((*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)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *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) (-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 (-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 -3799 ($ (-1134 *3 (-618 $))))))))))
-(((*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 *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 *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)))))
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*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 (-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 *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 *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 (-5 *2 (-570)) (-5 *1 (-1119)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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 *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 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *1 (-1041 *2))
- (-4 *2 (-13 (-1109) (-10 -8 (-15 * ($ $ $))))))))
+(((*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 *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 *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)) (|:| -3687 *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)) (|:| -3687 *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)) (|:| -3687 *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)) (|:| -3687 *4))))))
+ (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
+(((*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)
+ (-12 (-4 *1 (-354))
+ (-5 *2 (-650 (-2 (|:| -3804 (-570)) (|:| -3994 (-570))))))))
+(((*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 *1) (-5 *1 (-188))))
+(((*1 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
+(((*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 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
+(((*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 *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)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1247 *3 *2))
+ (-4 *2 (-1253 *3)))))
(((*1 *1) (-5 *1 (-188))))
-(((*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 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*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 *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 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))))
+ (-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)) (|:| -3687 *4))))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*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 *2 *3 *3)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
+(((*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 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*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 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *1) (-5 *1 (-188))))
+(((*1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))))
(((*1 *2 *2 *3)
- (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (-4 *4 (-1058))
- (-5 *1 (-1037 *4))))
+ (-12 (-5 *2 (-695 *4)) (-5 *3 (-928)) (|has| *4 (-6 (-4454 "*")))
+ (-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 *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 *2 *1) (-12 (-4 *1 (-431 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148)))
- (-5 *1 (-405 *3 *4)))))
-(((*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 *2 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *1 (-1170 *3)))))
-(((*1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))))
-(((*1 *1) (-5 *1 (-584))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
+ (-12 (-5 *2 (-650 (-695 *4))) (-5 *3 (-928))
+ (|has| *4 (-6 (-4454 "*"))) (-4 *4 (-1058)) (-5 *1 (-1037 *4)))))
(((*1 *1) (-5 *1 (-188))))
-(((*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 (|:| -2616 *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) (|:| -4410 *4) (|:| |sol?| (-112))))
- (-5 *1 (-1022 *8 *4)))))
-(((*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 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *2 (-562)) (-5 *1 (-978 *2 *4))
- (-4 *4 (-1253 *2)))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-927)))))
-(((*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 -3799 ($ *7)))))
- (-4 *7 (-854))
- (-4 *8
- (-13 (-1255 *3 *7) (-368) (-1212)
- (-10 -8 (-15 -3547 ($ $)) (-15 -2898 ($ $)))))
+(((*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
- (-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 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*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 *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) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
+ (-2 (|:| R (-695 *6)) (|:| A (-695 *6)) (|:| |Ainv| (-695 *6))))
+ (-5 *1 (-987 *6)) (-5 *3 (-695 *6)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*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)))))))
+ (-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 (-4454 "*"))) (-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 (-4454 "*"))) (-4 *2 (-1058)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705))))
+ ((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-705)))))
+(((*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 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
+(((*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 *1)
- (-12 (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2466 *1)))
- (-4 *1 (-858 *3)))))
-(((*1 *2 *3)
- (-12 (-14 *4 (-650 (-1186))) (-14 *5 (-777))
+ (-12 (-5 *2 (-2 (|:| -3930 *3) (|:| |coef2| (-788 *3))))
+ (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
+(((*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 (-695 (-171 (-413 (-570)))))
(-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 *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)))))
+ (-2 (|:| |outval| (-171 *4)) (|:| |outmult| (-570))
+ (|:| |outvect| (-650 (-695 (-171 *4)))))))
+ (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-701 *3)) (-4 *3 (-1109))
+ (-5 *2 (-650 (-2 (|:| -2340 *3) (|:| -3587 (-777))))))))
+(((*1 *2 *2) (|partial| -12 (-5 *1 (-593 *2)) (-4 *2 (-551)))))
(((*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)
- (-2892 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1227)))
+ (-2895 (-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))))
@@ -7687,30 +7619,62 @@
((*1 *1 *1 *2)
(-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-368)) (-4 *2 (-1058))
(-4 *3 (-852)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *5 (-1253 *4))
+ (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -4308 *5))))
+ (-5 *1 (-815 *4 *5 *3 *6)) (-4 *3 (-662 *5))
+ (-4 *6 (-662 (-413 *5))))))
(((*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 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-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 (|:| -2308 *3) (|:| -2267 (-1129)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354))
+ (-14 *4 (-928)))))
+(((*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 *1)
+ (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777)))
+ (-5 *1 (-911 *4)))))
+(((*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))))
+ ((*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 *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 *2) (-12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*1 *1 *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 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208))))
- ((*1 *2 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
- (-5 *2 (-650 (-650 (-650 (-777))))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1277 (-777))) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-413 *3))) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+ (-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 *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)))
@@ -7719,8 +7683,8 @@
(-12 (-5 *1 (-216 *2))
(-4 *2
(-13 (-856)
- (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $))
- (-15 -2176 ((-1282) $)))))))
+ (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $))
+ (-15 -2353 ((-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)
@@ -7740,44 +7704,39 @@
((*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 *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 *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 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
-(((*1 *1 *1) (-4 *1 (-175)))
- ((*1 *1 *1)
- (-12 (-4 *1 (-369 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
-(((*1 *1) (-4 *1 (-976))))
-(((*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 (-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) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
-(((*1 *2 *3 *2)
- (-12
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-1182 *3)) (-4 *3 (-373)) (-4 *1 (-333 *3))
+ (-4 *3 (-368)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1109)) (-5 *1 (-971 *3 *2)) (-4 *3 (-1109)))))
+(((*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
- (-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)))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3827 (-650 *4))))
+ (-5 *1 (-812 *5 *6 *7 *4)))))
+(((*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) (-4 *1 (-976))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))))
+(((*1 *1 *1 *1) (-4 *1 (-767))))
+(((*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 *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) (-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 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $))
- (-15 -2176 ((-1282) $)))))))
+ (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $))
+ (-15 -2353 ((-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)
@@ -7800,55 +7759,71 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3))))
((*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 *2 *3 *4)
- (-12 (-4 *5 (-368)) (-4 *5 (-562))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-103 *3)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*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 (|:| |minor| (-650 (-928))) (|:| -4305 *3)
- (|:| |minors| (-650 (-650 (-928)))) (|:| |ops| (-650 *3))))
- (-5 *1 (-90 *5 *3)) (-5 *4 (-928)) (-4 *3 (-662 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-928)) (-5 *1 (-980)))))
-(((*1 *2 *1) (-12 (-5 *2 (-965 (-777))) (-5 *1 (-337)))))
-(((*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)))))
+ (-2 (|:| |deter| (-650 (-1182 *10)))
+ (|:| |dterm|
+ (-650 (-650 (-2 (|:| -2680 (-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)
+ (-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 (-542)) (-5 *1 (-541 *2)) (-4 *2 (-1227))))
((*1 *2 *1) (-12 (-5 *2 (-52)) (-5 *1 (-542)))))
+(((*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 -4443)) (-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 *1) (-12 (-5 *2 (-650 (-1094))) (-5 *1 (-295)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562))
+ (-5 *2 (-112)) (-5 *1 (-644 *4 *5)))))
+(((*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 *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 (-618 *5))) (-5 *3 (-1186)) (-4 *5 (-436 *4))
- (-4 *4 (-1109)) (-5 *1 (-579 *4 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
+ (-12 (-5 *2 (-777))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
(((*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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-564 *2)) (-4 *2 (-551)))))
-(((*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 *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 *2 (-650 (-570))) (-5 *1 (-137 *3 *4 *5)) (-14 *3 (-570))
+ (-14 *4 (-777)) (-4 *5 (-174)))))
+(((*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)
+ (|partial| -12 (-4 *4 (-13 (-562) (-148)))
+ (-5 *2 (-2 (|:| -4400 *3) (|:| -4413 *3))) (-5 *1 (-1247 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-978 *4 *3))
+ (-4 *3 (-1253 *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 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-91 *3)))))
+(((*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 *2 *1)
(-12
(-5 *2
@@ -7861,374 +7836,425 @@
(|:| |ArrayAssignment| "arrayAssignment") (|:| |Save| "save")
(|:| |Stop| "stop") (|:| |Common| "common") (|:| |Print| "print")))
(-5 *1 (-334)))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-570)))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-121 *3)) (-4 *3 (-1253 (-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))
+(((*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 *1 *1 *2) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
+(((*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 *2 *3 *2)
+ (-12
(-5 *2
- (-650
- (-2 (|:| -4305 (-650 *9)) (|:| -3684 *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))
+ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-227))
+ (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
+ (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
+ (-5 *3 (-650 (-266))) (-5 *1 (-264))))
+ ((*1 *1 *2)
+ (-12
(-5 *2
- (-650
- (-2 (|:| -4305 (-650 *9)) (|:| -3684 *10) (|:| |ineq| (-650 *9)))))
- (-5 *1 (-1116 *6 *7 *8 *9 *10)) (-5 *3 (-650 *9)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-112))))
+ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-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)) (|:| -1909 (-227))
+ (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
+ (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
+ (-5 *2 (-1282)) (-5 *1 (-1279))))
((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-852)))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-552))))))
-(((*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 *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 *1) (-4 *1 (-562))))
-(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+ (-12
+ (-5 *2
+ (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -1909 (-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)
+ (-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 *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 *3 *4 *3)
+ (|partial| -12 (-5 *4 (-1 *6 *6)) (-4 *6 (-1253 *5)) (-4 *5 (-368))
+ (-5 *2 (-2 (|:| -4341 (-413 *6)) (|:| |coeff| (-413 *6))))
+ (-5 *1 (-580 *5 *6)) (-5 *3 (-413 *6)))))
+(((*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 *3 *1)
+ (-12 (-4 *4 (-13 (-854) (-368))) (-5 *2 (-112)) (-5 *1 (-1070 *4 *3))
+ (-4 *3 (-1253 *4)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*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 *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 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-403)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112)))))
-(((*1 *1) (-5 *1 (-1072))))
-(((*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 *1 *2 *1) (-12 (-5 *2 (-109)) (-5 *1 (-177)))))
-(((*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 *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 *3)
+ (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-592 *3)) (-4 *3 (-368)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *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) (-12 (-5 *2 (-131)) (-5 *1 (-1196)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*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 *4)
+ (-12 (-5 *4 (-112))
+ (-5 *2
+ (-2 (|:| |contp| (-570))
+ (|:| -2638 (-650 (-2 (|:| |irr| *3) (|:| -2199 (-570)))))))
+ (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570)))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *4 (-112))
+ (-5 *2
+ (-2 (|:| |contp| (-570))
+ (|:| -2638 (-650 (-2 (|:| |irr| *3) (|:| -2199 (-570)))))))
+ (-5 *1 (-1242 *3)) (-4 *3 (-1253 (-570))))))
(((*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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129))))))
- (-4 *4 (-354)) (-5 *2 (-1282)) (-5 *1 (-534 *4)))))
-(((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-650 *11))
- (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3684 *11))))))
- (-5 *6 (-777))
- (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3684 *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))))
- ((*1 *2 *3 *4 *2 *5 *6)
- (-12
- (-5 *5
- (-2 (|:| |done| (-650 *11))
- (|:| |todo| (-650 (-2 (|:| |val| *3) (|:| -3684 *11))))))
- (-5 *6 (-777))
- (-5 *2 (-650 (-2 (|:| |val| (-650 *10)) (|:| -3684 *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)))))
-(((*1 *2 *3 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-758)))))
-(((*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 *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 *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 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-973 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1111 (-1111 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1939 (-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 (|:| -1939 *1) (|:| |coef2| *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*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 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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)
+ (-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 (-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 *1 *1)
+ (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-856)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*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 *3)
- (-12 (-5 *2 (-830)) (-5 *3 (-650 (-1186))) (-5 *1 (-831)))))
-(((*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 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *3 (-650 (-570)))
+ (-5 *1 (-890)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))))
+(((*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 *2 *2 *2 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2))
+ (-4 *2 (-1253 *4)))))
+(((*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 (|:| -3728 *5) (|:| -4308 *3))))
+ (-5 *1 (-815 *5 *6 *3 *7)) (-4 *3 (-662 *6))
+ (-4 *7 (-662 (-413 *6))))))
(((*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 (|:| -4305 *3) (|:| -3897 (-650 *5))))
- (-5 *1 (-1034 *5 *3)) (-5 *4 (-650 *5)) (-4 *3 (-662 *5)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1188 (-413 (-570)))) (-5 *2 (-413 (-570)))
- (-5 *1 (-192)))))
-(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-424 *3)) (-4 *3 (-562))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -3801 *4) (|:| -2130 (-570)))))
- (-4 *4 (-1253 (-570))) (-5 *2 (-777)) (-5 *1 (-448 *4)))))
-(((*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)))))
+ (|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 *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 *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)))))
(((*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 (-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 (-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 *3)
- (-12 (-5 *3 (-775))
- (-5 *2
- (-2 (|:| -3039 (-384)) (|:| -3600 (-1168))
- (|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
- (-5 *1 (-571))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-775)) (-5 *4 (-1072))
- (-5 *2
- (-2 (|:| -3039 (-384)) (|:| -3600 (-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)))
- (|:| -2521 (-650 (-1103 (-849 (-227))))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2
- (-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))
- (|:| |extra| (-1044))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-793)) (-5 *3 (-1072))
- (-5 *4
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2
- (-2 (|:| -3039 (-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 (|:| -3039 (-384)) (|:| |explanations| (-1168))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-814))
- (-5 *2
- (-2 (|:| -3039 (-384)) (|:| -3600 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-811))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-814)) (-5 *4 (-1072))
- (-5 *2
- (-2 (|:| -3039 (-384)) (|:| -3600 (-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)))) (|:| -2438 (-650 (-227)))))
- (-5 *2 (-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))))))
- ((*1 *2 *3 *4)
- (-12 (-4 *1 (-845)) (-5 *3 (-1072))
- (-5 *4
- (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227)))
- (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
- (|:| |ub| (-650 (-849 (-227))))))
- (-5 *2 (-2 (|:| -3039 (-384)) (|:| |explanations| (-1168))))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-847))
- (-5 *2
- (-2 (|:| -3039 (-384)) (|:| -3600 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-846))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-847)) (-5 *4 (-1072))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
(-5 *2
- (-2 (|:| -3039 (-384)) (|:| -3600 (-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 (|:| -3039 (-384)) (|:| |explanations| (-1168))))))
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*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 (-905))
- (-5 *2
- (-2 (|:| -3039 (-384)) (|:| -3600 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-904))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-905)) (-5 *4 (-1072))
- (-5 *2
- (-2 (|:| -3039 (-384)) (|:| -3600 (-1168))
- (|:| |explanations| (-650 (-1168)))))
- (-5 *1 (-904)))))
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-1182 *4))
+ (-5 *1 (-534 *4)))))
+(((*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) (-12 (-5 *3 (-497)) (-5 *2 (-697 (-585))) (-5 *1 (-585)))))
-(((*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 (-1253 *2)) (-4 *2 (-1231)) (-5 *1 (-149 *2 *4 *3))
- (-4 *3 (-1253 (-413 *4))))))
+(((*1 *2 *1 *3 *3)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-610 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1227)) (-5 *2 (-1282)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-844))) (-5 *1 (-141)))))
+(((*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 *3)
- (-12 (-4 *1 (-927)) (-5 *2 (-2 (|:| -1452 (-650 *1)) (|:| -2466 *1)))
- (-5 *3 (-650 *1)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-109))) (-5 *1 (-177)))))
-(((*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 (-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)))))
+ (-12 (-5 *3 (-1186))
+ (-5 *2
+ (-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227)))
+ (|:| |singularities| (-1166 (-227)))))
+ (-5 *1 (-105)))))
(((*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 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -2265 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 (-650 (-650 *4)))) (-5 *2 (-650 (-650 *4)))
+ (-4 *4 (-856)) (-5 *1 (-1197 *4)))))
+(((*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 (-5 *2 (-1282)) (-5 *1 (-868))))
((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-969)))))
-(((*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 (-1198 (-650 *4))) (-4 *4 (-856))
- (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *1) (-5 *1 (-1091))))
+(((*1 *1 *1) (-5 *1 (-868))))
+(((*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 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
- (-4 *3 (-1109)))))
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-1109)) (-4 *2 (-856))
+ (-5 *1 (-1228 *2)))))
(((*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) (|:| -4305 *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) (|:| -4305 (-660 *6 (-413 *6))))))
- (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-973 *3))) (-5 *1 (-973 *3)) (-4 *3 (-1109)))))
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3687 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-2 (|:| -3804 (-1182 *6)) (|:| -3994 (-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 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
((*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 (-1227)))))
-(((*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 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-745 *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) (-1212))))))
-(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1233))))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-1282)) (-5 *1 (-837)))))
+(((*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 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
+(((*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 *1 *2 *2 *2)
(-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 (-1282)) (-5 *1 (-1278))))
((*1 *2 *1 *3 *3)
(-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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)) (|:| -3356 (-650 *7))))
+ (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
(((*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)))))))
-(((*1 *1) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
-(((*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 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
+ (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *3 (-562))
+ (-4 *7 (-956 *3 *5 *6))
+ (-5 *2 (-2 (|:| -3994 (-777)) (|:| -1453 *8) (|:| |radicand| *8)))
+ (-5 *1 (-960 *5 *6 *3 *7 *8)) (-5 *4 (-777))
+ (-4 *8
+ (-13 (-368)
+ (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $))))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-1277 (-320 (-384))))
- (-5 *1 (-309)))))
+ (-12 (|has| *6 (-6 -4453)) (-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 -4453)) (-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))))
+ ((*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))))
+ ((*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))))
+ ((*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)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*1 *2 *3 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-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 *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))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-650
+ (-2 (|:| -4009 (-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 *3 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-754)))))
(((*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))))
@@ -8245,78 +8271,80 @@
((*1 *2 *3 *4)
(-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384)))
(-5 *2 (-1044)) (-5 *1 (-846)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1277 (-320 (-227))))
- (-5 *2
- (-2 (|:| |additions| (-570)) (|:| |multiplications| (-570))
- (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))))
- (-5 *1 (-309)))))
+(((*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 *1) (-12 (-5 *2 (-650 (-972))) (-5 *1 (-109))))
((*1 *2 *1) (-12 (-5 *2 (-45 (-1168) (-780))) (-5 *1 (-115)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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 *4 *5 *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 (-225 *2 *3)) (-4 *2 (-13 (-1058) (-856)))
+ (-14 *3 (-650 (-1186))))))
+(((*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 (-928)) (-4 *5 (-1058))
- (-4 *2 (-13 (-410) (-1047 *5) (-368) (-1212) (-288)))
- (-5 *1 (-449 *5 *3 *2)) (-4 *3 (-1253 *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 *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 *4)
(-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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)
- (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
- (-5 *1 (-336)))))
-(((*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 *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 *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)))
- ((*1 *2 *2)
- (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
- (-4 *2 (-13 (-27) (-1212) (-436 *3) (-10 -8 (-15 -3799 ($ *4)))))
- (-4 *4 (-854))
- (-4 *5
- (-13 (-1255 *2 *4) (-368) (-1212)
- (-10 -8 (-15 -3547 ($ $)) (-15 -2898 ($ $)))))
- (-5 *1 (-428 *3 *2 *4 *5 *6 *7)) (-4 *6 (-992 *5)) (-14 *7 (-1186)))))
-(((*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 (-1182 *4)) (-4 *4 (-354))
+ (-4 *2
+ (-13 (-408)
+ (-10 -7 (-15 -3802 (*2 *4)) (-15 -2400 ((-928) *2))
+ (-15 -3827 ((-1277 *2) (-928))) (-15 -1427 (*2 *2)))))
+ (-5 *1 (-361 *2 *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 *4 *5 *6)
+ (|partial| -12 (-5 *4 (-1 *8 *8))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *7) (|:| -4413 *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 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))))
+(((*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 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-112))
- (-5 *1 (-266)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*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)))))
+ (-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) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+(((*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 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-1047 (-413 *2)))) (-5 *2 (-570))
+ (-5 *1 (-116 *4 *3)) (-4 *3 (-1253 *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)
@@ -8347,10 +8375,10 @@
((*1 *1 *2 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109))))
((*1 *1 *2 *1)
(-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
- (-4 *6 (-240 (-2569 *3) (-777)))
+ (-4 *6 (-240 (-2570 *3) (-777)))
(-14 *7
- (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *6))
- (-2 (|:| -2268 *5) (|:| -3357 *6))))
+ (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *6))
+ (-2 (|:| -2267 *5) (|:| -3994 *6))))
(-5 *1 (-467 *3 *4 *5 *6 *7 *2)) (-4 *5 (-856))
(-4 *2 (-956 *4 *6 (-870 *3)))))
((*1 *1 *1 *2)
@@ -8424,278 +8452,173 @@
(-12 (-4 *1 (-1294 *3 *2)) (-4 *3 (-856)) (-4 *2 (-1058))))
((*1 *1 *1 *2)
(-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))))
-(((*1 *1) (-5 *1 (-603))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))))
-(((*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 *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)
- (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-413 (-570))))
+(((*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 *1) (-5 *1 (-1072))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-227))) (-5 *4 (-777)) (-5 *2 (-695 (-227)))
(-5 *1 (-309)))))
-(((*1 *1 *2 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -1972 (-650 *1))))
- (-4 *1 (-372 *3))))
- ((*1 *2)
- (|partial| -12
- (-5 *2
- (-2 (|:| |particular| (-459 *3 *4 *5 *6))
- (|:| -1972 (-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 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1942 (-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 (|:| -1942 *1) (|:| |coef1| *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
+(((*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) (-12 (-5 *2 (-880)) (-5 *1 (-266))))
+ ((*1 *1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-266)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-1124)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-132)))))
-(((*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)))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*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 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -3930 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *2)
+ (-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 *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 (-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 *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 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+ (-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 *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 *3)
- (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
-(((*1 *2)
- (-12
- (-5 *2
- (-1277 (-650 (-2 (|:| -2308 (-917 *3)) (|:| -2268 (-1129))))))
- (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928))))
- ((*1 *2)
- (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2268 (-1129))))))
- (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) *2))))
- ((*1 *2)
- (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2268 (-1129))))))
- (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
(((*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 *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 *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 *1)
- (|partial| -12 (-5 *2 (-1070 (-1033 *3) (-1182 (-1033 *3))))
- (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))))
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-368)) (-4 *2 (-1253 *4))
+ (-5 *1 (-929 *4 *2)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2) (-12 (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
(((*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))
+ (-12 (-5 *5 (-112)) (-4 *6 (-458)) (-4 *7 (-799)) (-4 *8 (-856))
+ (-4 *3 (-1074 *6 *7 *8))
(-5 *2
- (-2 (|:| |unitPart| *9)
- (|:| |suPart|
- (-650 (-2 (|:| -3801 (-1182 *9)) (|:| -3357 (-570)))))))
- (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)))))
-(((*1 *2 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
+ (-2 (|:| |done| (-650 *4))
+ (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3687 *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)) (|:| -3687 *4))))))
+ (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
(((*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))))
+ (-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 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
- (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2466 *1)))
- (-4 *1 (-858 *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 *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 (|:| -4341 *3) (|:| |coeff| *3)))
+ (-5 *1 (-572 *5 *3 *6)) (-4 *6 (-1109)))))
+(((*1 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-555))))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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 *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)))))
+ (-12 (-5 *4 (-650 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-311))
+ (-5 *2 (-777)) (-5 *1 (-461 *5 *3)))))
+(((*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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-97)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*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 (-2 (|:| |val| (-650 *6)) (|:| -3684 *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)) (|:| -3684 *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 *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))))
+ (-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 *2)
+ (-12 (-5 *2 (-1168)) (-4 *1 (-369 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-591)) (-5 *1 (-284)))))
+(((*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 *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 *3) (-12 (-5 *3 (-928)) (-5 *2 (-911 (-570))) (-5 *1 (-924))))
((*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))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
(((*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 *2 *1) (-12 (-5 *2 (-424 *3)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
-(((*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 *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 (-112)) (-5 *1 (-115)))))
-(((*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 *2 *3)
- (-12
- (-5 *3
- (-650 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570))))))
- (-5 *2 (-650 (-227))) (-5 *1 (-309)))))
-(((*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 *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) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+ (-4 *2 (-1253 *4)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-594 *4))
- (-4 *4 (-354)))))
+ (-12 (-5 *3 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570)))))
+ (-5 *2 (-413 (-570))) (-5 *1 (-1029 *4)) (-4 *4 (-1253 (-570))))))
(((*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 *1 *3)
- (-12 (-5 *3 (-570)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-424 *4)) (-4 *4 (-562)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))))
-(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
+(((*1 *2 *3 *3)
(-12
- (-5 *2
- (-2 (|:| -1452 *3) (|:| |gap| (-777)) (|:| -2573 (-788 *3))
- (|:| -3691 (-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 (|:| -1452 *1) (|:| |gap| (-777)) (|:| -2573 *1)
- (|:| -3691 *1)))
- (-4 *1 (-1074 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
- (-5 *2
- (-2 (|:| -1452 *1) (|:| |gap| (-777)) (|:| -2573 *1)
- (|:| -3691 *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
+ (-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 *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 (|:| -4341 *3) (|:| |coeff| *3)))
+ (-5 *1 (-563 *7 *3)))))
(((*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)))))
+ (|partial| -12 (-5 *3 (-928))
+ (-5 *2 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129))))))
+ (-5 *1 (-351 *4)) (-4 *4 (-354)))))
+(((*1 *2 *2 *3) (-12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))))
+(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-145)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(((*1 *2 *3) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
(((*1 *1 *1 *2 *3)
(-12 (-5 *2 (-1 *4 *4)) (-5 *3 (-777)) (-4 *1 (-233 *4))
(-4 *4 (-1058))))
@@ -8718,137 +8641,112 @@
((*1 *1 *1 *2)
(-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) (-5 *1 (-443))))
-(((*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 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-1227)))))
+(((*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 -1709)))) (-5 *3 (-227))
+ (-5 *2 (-1044)) (-5 *1 (-754)))))
+(((*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)
- (-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 *1)
- (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
- (-4 *4 (-174)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))))
- (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1 *3 *3 *3)
- (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+ (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
+ (-4 *3 (-1109)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-866)) (-5 *2 (-697 (-555))) (-5 *3 (-555)))))
+(((*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 *2 *1 *3) (-12 (-5 *3 (-928)) (-5 *2 (-474)) (-5 *1 (-1278)))))
(((*1 *2 *1)
(-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 (-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 *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)))))
(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(((*1 *1 *1 *2 *2)
- (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2)
- (-14 *4 *2))))
-(((*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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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 *3 (-928)) (-5 *4 (-424 *2)) (-4 *2 (-1253 *5))
- (-5 *1 (-450 *5 *2)) (-4 *5 (-1058)))))
-(((*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)))))
+ (-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 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*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 *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 *3)
+ (-12 (-5 *3 (-650 (-928))) (-5 *2 (-911 (-570))) (-5 *1 (-924)))))
(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *2 (-650 (-570))) (-5 *3 (-650 (-928))) (-5 *4 (-112))
- (-5 *1 (-1119)))))
-(((*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 *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 *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 (-424 *5)) (-4 *5 (-562))
- (-5 *2
- (-2 (|:| -3357 (-777)) (|:| -1452 *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 *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 *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 *3 *1)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112))
- (-5 *1 (-1166 *4)))))
-(((*1 *1) (-5 *1 (-1094))))
+(((*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 *3)
+ (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4))
+ (-4 *4 (-1058)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-899 *3)) (-4 *3 (-1109))))
((*1 *2 *1) (-12 (-4 *1 (-1130 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
-(((*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 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))))
(((*1 *2 *3)
- (-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 *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 *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 *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)))))
+ (-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 *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 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*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 *3 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-562)) (-4 *2 (-458)) (-5 *1 (-978 *2 *3))
+ (-4 *3 (-1253 *2)))))
(((*1 *2 *1)
(-12
(-5 *2
(-650
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227)))))
(-5 *1 (-565))))
((*1 *2 *1)
@@ -8863,36 +8761,49 @@
(|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
(|:| |abserr| (-227)) (|:| |relerr| (-227)))))
(-5 *1 (-809)))))
-(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-413 (-570))) (-5 *1 (-309)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *1 *1 *1 *2)
- (-12 (-5 *2 (-570)) (|has| *1 (-6 -4450)) (-4 *1 (-378 *3))
- (-4 *3 (-1227)))))
+(((*1 *2 *3)
+ (-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 *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 (-1186)) (-5 *2 (-1 *6 *5)) (-5 *1 (-712 *3 *5 *6))
+ (-4 *3 (-620 (-542))) (-4 *5 (-1227)) (-4 *6 (-1227)))))
(((*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))))))
+ (-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 (-533)) (-5 *2 (-697 (-553))))))
(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (|has| *1 (-6 -4440)) (-4 *1 (-410))
- (-5 *2 (-928)))))
+ (-12 (-5 *2 (-424 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-777)) (-4 *4 (-354))
+ (-5 *1 (-534 *4)))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-618 *1)) (-4 *1 (-306)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384)))
+ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
-(((*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 (-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 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+(((*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 *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 -1426 ((-1186) $))))))))
+(((*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 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -8909,186 +8820,49 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*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)
- (-2892
- (-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 -1755 ((-650 *2) *3)))
- (|has| *3 (-15 -2898 (*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)
- (-2892
- (-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 -1755 ((-650 *2) *3)))
- (|has| *3 (-15 -2898 (*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)
- (-2892
- (-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 -1755 ((-650 *2) *3)))
- (|has| *3 (-15 -2898 (*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 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-965 *3)) (-5 *1 (-1173 *4 *3))
- (-4 *3 (-1253 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*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 (-1282)) (-5 *1 (-334)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+ (-12 (-4 *4 (-562)) (-4 *5 (-799)) (-4 *6 (-856))
+ (-4 *7 (-1074 *4 *5 *6))
+ (-5 *2 (-650 (-2 (|:| -4125 *1) (|:| -1765 (-650 *7)))))
+ (-5 *3 (-650 *7)) (-4 *1 (-1220 *4 *5 *6 *7)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*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 (-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 *1) (-5 *1 (-145))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-158)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384)))
+ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+(((*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 *4 (-1109)) (-5 *2 (-896 *3 *5)) (-5 *1 (-892 *3 *4 *5))
(-4 *3 (-1109)) (-4 *5 (-672 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-705)) (-5 *1 (-309)))))
-(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-171 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-764)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-97)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -9108,49 +8882,35 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *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 *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 *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 *5)
- (-12 (-5 *4 (-1 *7 *7))
- (-5 *5 (-1 (-3 (-2 (|:| -2616 *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 *2 *1 *3)
- (-12 (-5 *3 (-570)) (-4 *1 (-327 *4 *2)) (-4 *4 (-1109))
- (-4 *2 (-132)))))
-(((*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 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+(((*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 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
+(((*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 *1 *1) (-5 *1 (-1185)))
((*1 *1 *2)
(-12
(-5 *2
- (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384)))
+ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))))
-(((*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)
- (-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)
+ (-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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -9170,60 +8930,51 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*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 *1 *1)
- (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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)
- (-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 *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 *1 *2)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*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)
+ (-12 (-5 *3 (-695 (-413 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-785 *4))
+ (-4 *4 (-13 (-368) (-854))))))
+(((*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 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
+(((*1 *2 *2) (-12 (-5 *2 (-650 (-320 (-227)))) (-5 *1 (-270)))))
+(((*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 *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 *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 (-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))))))
+ (-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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -9243,27 +8994,24 @@
((*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 (-1244 *3)) (-4 *3 (-1227)))))
-(((*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-828)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551))))
- ((*1 *2 *3)
- (-12 (-5 *2 (-2 (|:| -4406 *3) (|:| -3357 (-777)))) (-5 *1 (-593 *3))
- (-4 *3 (-551)))))
-(((*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 *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 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-497)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-112)) (-5 *1 (-115)))))
+ (-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 (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231))
+ (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4))))))
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-97)))))
(((*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))))
@@ -9276,19 +9024,19 @@
(-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 *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 *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 (-4 *1 (-306)) (-5 *2 (-650 (-115))))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-501)))))
+(((*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 *3 *4)
+ (-12 (-5 *4 (-112)) (-4 *5 (-13 (-368) (-854)))
+ (-5 *2 (-650 (-2 (|:| -2638 (-650 *3)) (|:| -3673 *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 (|:| -2638 (-650 *3)) (|:| -3673 *4))))
+ (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -9305,34 +9053,51 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*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 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192))))
- ((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227))))
- ((*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)))))
-(((*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)
- (-12 (-5 *3 (-959 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1113)) (-5 *1 (-283)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1166 *4)) (-4 *4 (-38 *3)) (-4 *4 (-1058))
+ (-5 *3 (-413 (-570))) (-5 *1 (-1170 *4)))))
+(((*1 *2 *3 *4 *4 *4 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *1 *1) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-373)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3 *4)
+ (-12 (-4 *5 (-311)) (-4 *6 (-378 *5)) (-4 *4 (-378 *5))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3827 (-650 *4))))
+ (-5 *1 (-1133 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
+(((*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 *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 -3799 ($ (-1134 *4 (-618 $))))))))))
+ (-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 *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 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -9349,82 +9114,43 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*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 *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 *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 *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 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
+(((*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 *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 *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) (|:| -3687 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *2 *2)
+ (|partial| -12 (-4 *3 (-368)) (-5 *1 (-903 *2 *3))
+ (-4 *2 (-1253 *3)))))
+(((*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 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
-(((*1 *2 *3 *3 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
+ (-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 *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 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-867))))
+ ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-867)))))
(((*1 *1 *1) (-4 *1 (-95)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -9441,59 +9167,29 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*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) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
-(((*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))))))
-(((*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 (-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 *1 *1 *1)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
-(((*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) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
(((*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 *1 *2 *3 *4)
- (-12 (-5 *3 (-570)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
- (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*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)))))
+ (|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 *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 *1)
+ (-12 (-5 *2 (-650 (-912 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-570)) (-4 *4 (-354))
+ (-5 *1 (-534 *4)))))
(((*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))
@@ -9514,45 +9210,30 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*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 *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 (-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 *3)
- (-12 (-5 *3 (-650 (-950 *4))) (-4 *1 (-1143 *4)) (-4 *4 (-1058))
- (-5 *2 (-777)))))
+(((*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)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-2 (|:| -3897 (-115)) (|:| |w| (-227)))) (-5 *1 (-206)))))
+ (-12 (-5 *3 (-1182 (-570))) (-5 *2 (-570)) (-5 *1 (-949)))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-1244 (-570))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
(((*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)
- (-12 (-5 *3 (-1277 *1)) (-4 *1 (-375 *4 *5)) (-4 *4 (-174))
- (-4 *5 (-1253 *4)) (-5 *2 (-695 *4))))
+ (-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 (-415 *3 *4)) (-4 *3 (-174)) (-4 *4 (-1253 *3))
- (-5 *2 (-695 *3)))))
+ (-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 (-4 *4 (-1227)) (-5 *2 (-777)) (-5 *1 (-184 *4 *3))
- (-4 *3 (-680 *4)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1072)))))
+ (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-322)) (-5 *3 (-227)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
+ ((*1 *1 *1) (-5 *1 (-868))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384)))
+ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
(((*1 *1 *1) (-4 *1 (-95)))
@@ -9574,59 +9255,37 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-928) (-928)))) (-5 *1 (-980)))))
+(((*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 *2)
(-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 *1 *1)
+ (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+(((*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 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))))
+(((*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 *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 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-490 *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 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))))
(((*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)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))))
-(((*1 *2 *2)
- (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
- (-4 *3 (-1253 (-171 *2))))))
-(((*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)))))
+ (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-689 *4 *3)) (-4 *4 (-1109))
+ (-4 *3 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1282)) (-5 *1 (-1147))))
((*1 *2 *3)
- (|partial| -12 (-5 *2 (-413 (-570))) (-5 *1 (-1017 *3))
- (-4 *3 (-1047 *2)))))
-(((*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 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))))
+ (-12 (-5 *3 (-650 (-868))) (-5 *2 (-1282)) (-5 *1 (-1147)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384)))
+ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
(((*1 *1 *1) (-4 *1 (-95)))
@@ -9648,13 +9307,19 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *1)
- (-12 (-4 *1 (-410)) (-1795 (|has| *1 (-6 -4440)))
- (-1795 (|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 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(((*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 *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 *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 (-4 *1 (-269 *2)) (-4 *2 (-856))))
((*1 *1 *2)
(|partial| -12 (-5 *2 (-1186)) (-5 *1 (-870 *3)) (-14 *3 (-650 *2))))
@@ -9667,42 +9332,26 @@
(-12 (-4 *1 (-1255 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-798))
(-5 *2 (-1186))))
((*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1273 *3)) (-14 *3 *2))))
-(((*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 (-2569 *3) (-777)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2268 *2) (|:| -3357 *5))
- (-2 (|:| -2268 *2) (|:| -3357 *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 *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 *1) (-12 (-5 *2 (-215 4 (-130))) (-5 *1 (-585)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*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 *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 *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)))))
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*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 *2 *3 *3)
+ (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1129)) (-4 *4 (-354))
+ (-5 *1 (-534 *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)))))))
+ (|partial| -12 (-5 *2 (-413 (-959 *4))) (-5 *3 (-1186))
+ (-4 *4 (-13 (-562) (-1047 (-570)) (-148))) (-5 *1 (-576 *4)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384)))
+ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
(((*1 *2 *2)
@@ -9717,7 +9366,7 @@
((*1 *1 *1) (-4 *1 (-288)))
((*1 *2 *3)
(-12 (-5 *3 (-424 *4)) (-4 *4 (-562))
- (-5 *2 (-650 (-2 (|:| -1452 (-777)) (|:| |logand| *4))))
+ (-5 *2 (-650 (-2 (|:| -1453 (-777)) (|:| |logand| *4))))
(-5 *1 (-324 *4))))
((*1 *1 *1)
(-12 (-5 *1 (-344 *2 *3 *4)) (-14 *2 (-650 (-1186)))
@@ -9754,66 +9403,40 @@
(-5 *1 (-1172 *3))))
((*1 *1 *1) (-4 *1 (-1215))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058))
- (-5 *3 (-570)))))
+ (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
+(((*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 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |k| (-1186)) (|:| |c| (-1299 *3)))))
- (-5 *1 (-1299 *3)) (-4 *3 (-1058))))
- ((*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)))))
-(((*1 *1) (-5 *1 (-158)))
- ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+ (-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 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124))))
-(((*1 *2 *1)
- (-12
- (-5 *2
- (-1277
- (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227))
- (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -1981 (-570))
- (|:| -4130 (-570)) (|:| |spline| (-570)) (|:| -1643 (-570))
- (|:| |axesColor| (-880)) (|:| -3222 (-570))
- (|:| |unitsColor| (-880)) (|:| |showing| (-570)))))
- (-5 *1 (-1278)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2 *1 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
(((*1 *2 *3 *2)
(-12 (-5 *3 (-928)) (-5 *1 (-1039 *2))
- (-4 *2 (-13 (-1109) (-10 -8 (-15 -3101 ($ $ $))))))))
-(((*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))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *9)))))))))
- (-5 *1 (-931 *9 *10 *11 *12)))))
+ (-4 *2 (-13 (-1109) (-10 -8 (-15 -3104 ($ $ $))))))))
(((*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)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109))
- (-5 *2 (-2 (|:| -1452 (-570)) (|:| |var| (-618 *1))))
- (-4 *1 (-436 *3)))))
+ (-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)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384)))
+ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
(((*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)))))
-(((*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)))))
+ (-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 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -9830,45 +9453,39 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
((*1 *1 *1) (-4 *1 (-1215))))
+(((*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 *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))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| -2415 (-695 (-413 (-959 *4))))
- (|:| |vec| (-650 (-413 (-959 *4)))) (|:| -4006 (-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))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *4)))))))
- (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *3 (-129)) (-5 *2 (-777)))))
-(((*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)
- (-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)
- (-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 (-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))))))
+ (-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 *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 -4402 ((-1134 *3 (-618 $)) $))
+ (-15 -4416 ((-1134 *3 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *3 (-618 $))))))))))
+(((*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 *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 *1 *2)
+ (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-152 *2))
+ (-4 *2 (-1227)))))
+(((*1 *1 *1) (-4 *1 (-875 *2))))
(((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -9885,58 +9502,49 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
((*1 *1 *1) (-4 *1 (-1215))))
-(((*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 *1) (-12 (-5 *2 (-570)) (-5 *1 (-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) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-1280))))
+ ((*1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-1280)))))
+(((*1 *1 *1 *1) (-5 *1 (-163)))
+ ((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-163)))))
+(((*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 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1190)) (-5 *1 (-1189)))))
(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
-(((*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 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-695 *2)) (-4 *4 (-1253 *2))
+ (-4 *2 (-13 (-311) (-10 -8 (-15 -3871 ((-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) (-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 *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)))))
+ (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112))
+ (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-194)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*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 *3)
- (-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))))))
+ (-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 *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 *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 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -9956,78 +9564,74 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
((*1 *1 *1) (-4 *1 (-1215))))
-(((*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 *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 *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")))
- (|:| -2521
- (-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)))))
+ (-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 *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 (-4 *1 (-1132 *3 *4 *2 *5)) (-4 *4 (-1058)) (-4 *5 (-240 *3 *4))
- (-4 *2 (-240 *3 *4)))))
+ (-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 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*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 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
-(((*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)) (|:| -3684 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*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)))))
+ (|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 (-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)))))
+ (-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))
+ (|:| -2638 (-650 (-2 (|:| |irr| *4) (|:| -2199 (-570)))))))
+ (-4 *4 (-1253 (-570))) (-5 *2 (-424 *4)) (-5 *1 (-448 *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 *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 *3 *4)
+ (-12 (-5 *3 (-1168)) (-5 *4 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))))
+(((*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 *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 *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 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -10048,57 +9652,26 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
((*1 *1 *1) (-4 *1 (-1215))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777)))
- (-5 *1 (-911 *4)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))))
-(((*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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-831)))))
(((*1 *2 *3)
- (|partial| -12 (-4 *4 (-13 (-562) (-148)))
- (-5 *2 (-2 (|:| -4397 *3) (|:| -4410 *3))) (-5 *1 (-1247 *4 *3))
- (-4 *3 (-1253 *4)))))
+ (-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 (-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 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
(((*1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *3 *2)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-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)) (|:| -2548 (-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)) (|:| -2548 (-227))
- (|:| |scaleX| (-227)) (|:| |scaleY| (-227)) (|:| |scaleZ| (-227))
- (|:| |deltaX| (-227)) (|:| |deltaY| (-227))))
- (-5 *2 (-1282)) (-5 *1 (-1279))))
- ((*1 *2 *1)
- (-12
- (-5 *2
- (-2 (|:| |theta| (-227)) (|:| |phi| (-227)) (|:| -2548 (-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 *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 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
(-4 *2 (-13 (-436 *3) (-1011)))))
@@ -10119,141 +9692,34 @@
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3))))
((*1 *1 *1) (-4 *1 (-1215))))
-(((*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 *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 *2 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1119)))))
(((*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 *2 *1) (-12 (-5 *2 (-650 (-844))) (-5 *1 (-141)))))
-(((*1 *1 *1) (-5 *1 (-868))))
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| |lm| *1) (|:| |mm| *1) (|:| |rm| *1)))
+ (-4 *1 (-391 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -1939 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-868)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))))
+(((*1 *2 *3 *4 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
(((*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)) (|:| -3353 (-650 *7))))
- (-5 *1 (-986 *4 *5 *6 *7)) (-5 *3 (-650 *7)))))
-(((*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 *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 *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 *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 *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 (-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 *3 (-592 (-413 (-959 *4))))
- (-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-320 *4))
- (-5 *1 (-595 *4)))))
-(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
-(((*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)))))
-(((*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 -1708)))) (-5 *3 (-227))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
-(((*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 *1) (-5 *1 (-1282))))
-(((*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) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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 *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 (-5 *2 (-828)) (-5 *1 (-827)))))
-(((*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 (-5 *2 (-1168)) (-5 *1 (-1196)))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-726)) (-5 *2 (-928))))
- ((*1 *1 *1 *2) (-12 (-4 *1 (-728)) (-5 *2 (-777)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *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 *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) (-4 *1 (-551))))
-(((*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 *1 *1) (-4 *1 (-875 *2))))
-(((*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 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
-(((*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 *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)))))
+ (-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 (-912 (-570))) (-5 *4 (-570)) (-5 *2 (-695 *4))
(-5 *1 (-1037 *5)) (-4 *5 (-1058))))
@@ -10266,28 +9732,175 @@
((*1 *2 *3)
(-12 (-5 *3 (-650 (-650 (-570)))) (-5 *2 (-650 (-695 (-570))))
(-5 *1 (-1037 *4)) (-4 *4 (-1058)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-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 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*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 *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 (-1168)) (-5 *2 (-52)) (-5 *1 (-1205)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
+(((*1 *2 *3 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
+(((*1 *1) (-5 *1 (-1282))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-868)))))
-(((*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 *3 *3 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
+(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-486)))))
+(((*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 (|:| -4341 *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 (|:| -4341 *3) (|:| |coeff| *3)))
+ (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))))
+(((*1 *1 *2 *2 *3 *1)
+ (-12 (-5 *2 (-512)) (-5 *3 (-1113)) (-5 *1 (-295)))))
+(((*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 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
+(((*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
(-2 (|:| |partsol| (-1277 (-413 (-959 *4))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *4)))))))
+ (|:| -3827 (-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 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-4 *2 (-1109))
+ (-5 *1 (-896 *4 *2)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1) (-12 (-5 *2 (-980)) (-5 *1 (-1302)))))
+(((*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) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
+ ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *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 (|:| -3959 (-777)) (|:| -3971 (-777))))
+ (-5 *1 (-777))))
+ ((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*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) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
(((*1 *2 *3 *4 *4 *3)
(-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
(-5 *1 (-757)))))
+(((*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 *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 *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 *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 *1)
+ (-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 *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 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-1302)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109))
+ (-4 *2 (-856)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *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)) (|:| -3687 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-442)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *1 (-1041 *2))
+ (-4 *2 (-13 (-1109) (-10 -8 (-15 * ($ $ $))))))))
+(((*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 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
+(((*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 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
(((*1 *2 *1)
(|partial| -12 (-4 *3 (-13 (-1047 (-570)) (-645 (-570)) (-458)))
(-5 *2
@@ -10300,103 +9913,28 @@
(|:| |%type| (-1168))))
(-5 *1 (-1263 *3 *4 *5 *6)) (-4 *4 (-13 (-27) (-1212) (-436 *3)))
(-14 *5 (-1186)) (-14 *6 *4))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-334)))))
-(((*1 *2 *1)
- (-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 *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 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-777)) (-5 *1 (-103 *3)) (-4 *3 (-1109)))))
-(((*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)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*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 *1 *1 *1)
- (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)) (-4 *2 (-562)))))
-(((*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))
- (-1795 (-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))
- (-1795 (-4 *3 (-1047 (-1186)))) (-1795 (-4 *3 (-1058)))
- (-4 *3 (-893 *5)) (-4 *4 (-620 (-899 *5))))))
-(((*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 *1) (-5 *1 (-603))))
-(((*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 -1652 ((-424 $) $)))))
- (-4 *4 (-1253 *3))
- (-5 *2
- (-2 (|:| -1972 (-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 (|:| -1972 (-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 (|:| -1972 (-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 (|:| -1972 (-695 *4)) (|:| |basisDen| *4)
- (|:| |basisInv| (-695 *4))))
- (-5 *1 (-1286 *3 *4 *5 *6)) (-4 *6 (-415 *4 *5)))))
-(((*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 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1071))))
- ((*1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1071)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))))
+(((*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 *3)
- (-12 (-5 *3 (-650 (-959 *4))) (-4 *4 (-458)) (-5 *2 (-112))
- (-5 *1 (-365 *4 *5)) (-14 *5 (-650 (-1186)))))
+ (-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 (-650 (-786 *4 (-870 *5)))) (-4 *4 (-458))
- (-14 *5 (-650 (-1186))) (-5 *2 (-112)) (-5 *1 (-634 *4 *5)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3684 *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))))
+ (-12 (-5 *3 (-1103 (-570))) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
+(((*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) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
+(((*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 (-2 (|:| |val| (-650 *7)) (|:| -3684 *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)))))
+ (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049))))
+ ((*1 *1 *1 *1) (-4 *1 (-1148))))
(((*1 *2 *1)
(|partial| -12 (-4 *3 (-458)) (-4 *4 (-856)) (-4 *5 (-799))
(-5 *2 (-112)) (-5 *1 (-996 *3 *4 *5 *6))
@@ -10405,393 +9943,514 @@
(-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 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *3)
- (|partial| -12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (-5 *2 (-650 (-227))) (-5 *1 (-206)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-542))) (-5 *1 (-542)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-829)) (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*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))))))
+ (-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 *2 *3)
- (-12 (-5 *2 (-1 (-950 (-227)) (-227) (-227)))
- (-5 *3 (-1 (-227) (-227) (-227) (-227))) (-5 *1 (-258)))))
-(((*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 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
-(((*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 *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 (-5 *2 (-384)) (-5 *1 (-1279))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
-(((*1 *2 *3 *3 *3 *4)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-650 (-542))) (-5 *1 (-542)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-334))) (-5 *1 (-334)))))
+(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-278)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *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 *4)
(-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *1) (-12 (-5 *1 (-614 *2)) (-4 *2 (-1109))))
- ((*1 *1 *1) (-5 *1 (-638))))
-(((*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 (|:| -1452 (-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)))
+(((*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 *3) (-12 (-5 *3 (-413 (-570))) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*1 *2 *3 *4 *2)
+ (-12 (-5 *2 (-650 (-2 (|:| |totdeg| (-777)) (|:| -3303 *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 *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 *1 *1)
+ (-12
(-5 *2
- (-2 (|:| -1452 (-650 (-570))) (|:| |poly| (-650 (-1182 *6)))
- (|:| |prim| (-1182 *6))))
- (-5 *1 (-967 *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 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
-(((*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 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-535)))))
+ (-2 (|:| |polnum| (-788 *3)) (|:| |polden| *3) (|:| -1974 (-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) (|:| -1974 (-777))))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*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 *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 *1)
+ (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
+ (-14 *4 *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 *1 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-112)))))
-(((*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 *2 *3 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -3801 (-1182 *6)) (|:| -3357 (-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 *1) (-12 (-4 *1 (-34)) (-5 *2 (-112)))))
-(((*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 *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))))
- (|:| -1972 (-650 (-1277 (-413 (-959 *8))))))))))
- (|:| |rgsz| (-570))))
- (-5 *1 (-931 *8 *9 *10 *11)) (-5 *7 (-570)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-354)) (-5 *3 (-570)) (-5 *2 (-1199 (-928) (-777))))))
-(((*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 *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 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
+(((*1 *1 *2 *1) (-12 (-5 *1 (-122 *2)) (-4 *2 (-856)))))
+(((*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 *1) (-5 *1 (-584))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
+ (-5 *1 (-336)))))
(((*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)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
+ (-12 (-5 *3 (-695 (-413 (-959 (-570)))))
+ (-5 *2 (-650 (-695 (-320 (-570))))) (-5 *1 (-1040)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-858 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-859 *5 *3))
+ (-4 *3 (-858 *5)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| |gen| *3) (|:| -4389 (-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) (|:| -4389 (-777)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-2 (|:| -3804 *3) (|:| -3994 (-570)))))
+ (-5 *1 (-424 *3)) (-4 *3 (-562)))))
(((*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 *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 (-1253 *4)) (-5 *1 (-580 *4 *5)))))
-(((*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 *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 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))))
+(((*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 (-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 *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 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-145))))
((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-145)))))
-(((*1 *2 *1 *1 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-799)) (-4 *3 (-856))
- (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-956 *4 *5 *3))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1)))
- (-4 *1 (-1253 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1205)))))
+(((*1 *2 *3 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
+(((*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 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-570)) (-5 *2 (-112)))))
(((*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))
+ (-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) (|:| -3827 (-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"))
+ (|:| -3827 (-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"))
+ (|:| -3827 (-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 (|:| -4006 (-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 *2 *3 *4)
- (-12 (-5 *2 (-591)) (-5 *3 (-603)) (-5 *4 (-295)) (-5 *1 (-284)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458)))))
-(((*1 *2 *1 *1 *3) (-12 (-4 *1 (-1153)) (-5 *3 (-570)) (-5 *2 (-112)))))
-(((*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 *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 *3 *3 *4 *4)
- (-12 (-5 *2 (-959 (-570))) (-5 *3 (-1186))
- (-5 *4 (-1103 (-413 (-570)))) (-5 *1 (-30)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4))))
- (-5 *1 (-1285 *4)) (-4 *4 (-368)))))
-(((*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 *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)))))
+ (-2 (|:| |particular| (-3 (-1277 *5) "failed"))
+ (|:| -3827 (-650 (-1277 *5))))))
+ (-5 *1 (-673 *5)) (-5 *4 (-650 (-1277 *5)))))
((*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)))))
+ (-12 (-5 *3 (-650 (-650 *5))) (-4 *5 (-368))
+ (-5 *2
+ (-650
+ (-2 (|:| |particular| (-3 (-1277 *5) "failed"))
+ (|:| -3827 (-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 -4453))))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4453))))
+ (-5 *2
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3827 (-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 -4453))))
+ (-4 *7 (-13 (-378 *5) (-10 -7 (-6 -4453))))
+ (-5 *2
+ (-650
+ (-2 (|:| |particular| (-3 *7 "failed")) (|:| -3827 (-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 (-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 *2 *2 *3)
- (-12 (-4 *4 (-799))
- (-4 *3 (-13 (-856) (-10 -8 (-15 -1425 ((-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 -1425 ((-1186) $))
- (-15 -2798 ((-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 -1425 ((-1186) $))
- (-15 -2798 ((-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 (-1161))))
-(((*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 *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 *2 *1) (-12 (-5 *1 (-592 *2)) (-4 *2 (-368)))))
-(((*1 *2)
- (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174))
- (-5 *2 (-2 (|:| |particular| *1) (|:| -1972 (-650 *1))))
- (-4 *1 (-372 *3))))
- ((*1 *2)
- (|partial| -12
+ (-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| (-459 *3 *4 *5 *6))
- (|:| -1972 (-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 *3 *3 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*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 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-777)))))
-(((*1 *2 *1) (-12 (-5 *2 (-777)) (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
+ (-2 (|:| |particular| (-1277 *7)) (|:| -3827 (-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)) (|:| -3827 (-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)) (|:| -3827 (-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) (|:| -3827 (-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) (|:| -3827 (-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) (|:| -3827 (-650 *6))) "failed")
+ *7 *6))
+ (-4 *6 (-368)) (-4 *7 (-662 *6))
+ (-5 *2 (-2 (|:| |particular| (-1277 *6)) (|:| -3827 (-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 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))))
+(((*1 *2 *2)
+ (|partial| -12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2))
+ (-4 *2 (-680 *3)))))
+(((*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 (-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 *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 *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)))))
+ (-12 (-5 *3 (-650 (-950 *4))) (-4 *1 (-1143 *4)) (-4 *4 (-1058))
+ (-5 *2 (-777)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*1 *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 *2 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-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| (-650 *3)) (|:| -3687 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
+(((*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 *4)
+ (-12 (-4 *5 (-368))
+ (-5 *2
+ (-2 (|:| A (-695 *5))
+ (|:| |eqs|
+ (-650
+ (-2 (|:| C (-695 *5)) (|:| |g| (-1277 *5)) (|:| -4308 *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 (|:| -2990 (-695 *6)) (|:| |vec| (-1277 *5))))
+ (-5 *1 (-819 *5 *6)) (-5 *3 (-695 *6)) (-5 *4 (-1277 *5)))))
+(((*1 *2 *3)
+ (|partial| -12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-2 (|:| -3900 (-115)) (|:| |w| (-227)))) (-5 *1 (-206)))))
+(((*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)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*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 *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 *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 *2 *2)
- (-12 (-4 *2 (-13 (-368) (-10 -8 (-15 ** ($ $ (-413 (-570)))))))
- (-5 *1 (-1137 *3 *2)) (-4 *3 (-1253 *2)))))
-(((*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 (-1191)))))
+(((*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) (-12 (-5 *2 (-1282)) (-5 *1 (-1093 *3)) (-4 *3 (-133)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-750 *3)) (-4 *3 (-174)))))
-(((*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) (-12 (-5 *2 (-1168)) (-5 *1 (-243)))))
-(((*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 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
+(((*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 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-107 *3)))))
(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058))
- (-4 *2 (-1268 *3)))))
+ (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109))
+ (-4 *2 (-856)))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
+ ((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3684 *9))))
+ (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3687 *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))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3684 *9))))
+ (-12 (-5 *3 (-650 (-2 (|:| |val| (-650 *8)) (|:| -3687 *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)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
-(((*1 *1 *2)
- (-12
- (-5 *2
- (-650
- (-2
- (|:| -2106
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1277 (-320 (-227))))
- (|:| |yinit| (-650 (-227))) (|:| |intvals| (-650 (-227)))
- (|:| |g| (-320 (-227))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (|:| -2340
- (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
- (|:| |expense| (-384)) (|:| |accuracy| (-384))
- (|:| |intermediateResults| (-384)))))))
- (-5 *1 (-809)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-854)) (-5 *1 (-307 *3)))))
-(((*1 *2 *2 *3)
- (|partial| -12 (-5 *3 (-777)) (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *1 *2 *1)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
+ (-12 (-4 *2 (-354)) (-4 *2 (-1058)) (-5 *1 (-718 *2 *3))
+ (-4 *3 (-1253 *2)))))
(((*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)))))
+ (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
+(((*1 *2 *3 *3 *3 *3 *4 *5)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570))
+ (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1709))))
+ (-5 *2 (-1044)) (-5 *1 (-752)))))
+(((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
+ (-4 *3 (-1109)))))
+(((*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 *2 *3)
+ (-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458))
+ (-5 *1 (-925 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-431 *3)) (-4 *3 (-1109)) (-5 *2 (-777)))))
+(((*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 *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 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
(((*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 *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)
- (-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)
- (-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) (-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 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-207))))
- ((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 (-384))) (-5 *2 (-384)) (-5 *1 (-207)))))
+ (-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 *2 *2 *2 *3)
+ (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))))
+(((*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 (-4 *4 (-1227)) (-5 *2 (-777)) (-5 *1 (-184 *4 *3))
+ (-4 *3 (-680 *4)))))
(((*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))))
@@ -10805,49 +10464,96 @@
(-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 *3)
- (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))))
-(((*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 *3 *1)
- (-12 (-5 *3 (-512)) (-5 *2 (-697 (-1113))) (-5 *1 (-295)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1015)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-413 *4)) (-4 *4 (-1253 *3)) (-4 *3 (-13 (-368) (-148)))
+ (-5 *1 (-405 *3 *4)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(((*1 *2 *3) (-12 (-5 *3 (-827)) (-5 *2 (-52)) (-5 *1 (-837)))))
(((*1 *1 *1) (-4 *1 (-667))))
-(((*1 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))))
-(((*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 *3 *3 *3 *4)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-763)))))
-(((*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)
+ (-12 (-5 *3 (-777)) (-5 *4 (-570)) (-5 *1 (-451 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777))
+ (-14 *4 (-777)) (-4 *5 (-174)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1072)))))
+(((*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 *1 *1) (-4 *1 (-551))))
-(((*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 *1 *2 *3 *3 *3)
- (-12 (-5 *2 (-1186)) (-5 *3 (-112)) (-5 *1 (-899 *4))
- (-4 *4 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3))
+ (-5 *2 (-413 (-570))))))
(((*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))))
@@ -10859,11 +10565,10 @@
(-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 *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 (|has| *1 (-6 -4449)) (-4 *1 (-34)) (-5 *2 (-777))))
+(((*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) (-12 (|has| *1 (-6 -4452)) (-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))
@@ -10871,89 +10576,74 @@
((*1 *2 *1)
(-12 (-5 *2 (-777)) (-5 *1 (-1300 *3 *4)) (-4 *3 (-1058))
(-4 *4 (-852)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-562)) (-5 *1 (-978 *4 *2))
- (-4 *2 (-1253 *4)))))
-(((*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 *3 *4)
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1158 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
+ (-4 *3 (-1253 *2)))))
+(((*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) (|:| -3684 *4))))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3687 *4))))
(-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *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 *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 *2)
- (-12 (-5 *3 (-650 (-695 *4))) (-5 *2 (-695 *4)) (-4 *4 (-1058))
- (-5 *1 (-1038 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*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 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-928) (-928)))) (-5 *1 (-980)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1009 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-887)))))
+ (-12 (-5 *3 (-320 (-227))) (-5 *2 (-413 (-570))) (-5 *1 (-309)))))
+(((*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 *3 *2) (-12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-243)))))
(((*1 *2 *1 *1) (-12 (-4 *1 (-102)) (-5 *2 (-112))))
((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*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 *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)
+ (-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 (-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 *3 *4 *5 *5 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-1168)) (-5 *5 (-695 (-227)))
- (-5 *2 (-1044)) (-5 *1 (-753)))))
-(((*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 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*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))
+ (-12 (-5 *3 (-570)) (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-1223)))))
+(((*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 *4)
+ (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562))
+ (-4 *3 (-956 *7 *5 *6))
(-5 *2
- (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
- (|:| -4305
- (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
- (|:| |beta| *3)))))
- (-5 *1 (-1024 *6 *3)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))))
-(((*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) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
+ (-2 (|:| -3994 (-777)) (|:| -1453 *3) (|:| |radicand| (-650 *3))))
+ (-5 *1 (-960 *5 *6 *7 *3 *8)) (-5 *4 (-777))
+ (-4 *8
+ (-13 (-368)
+ (-10 -8 (-15 -3802 ($ *3)) (-15 -4402 (*3 $)) (-15 -4416 (*3 $))))))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))))
-(((*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)))))
+ (-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 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
+(((*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 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1 *2 *2)) (-4 *2 (-1268 *4)) (-5 *1 (-1270 *4 *2))
+ (-4 *4 (-38 (-413 (-570)))))))
(((*1 *1 *1 *2)
(|partial| -12 (-4 *1 (-167 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
((*1 *1 *1 *2)
@@ -10975,275 +10665,345 @@
(-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 *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 *1 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*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 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-4 *3 (-1109)))))
-(((*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 *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)
- (-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)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))))
+ (-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 (-4 *1 (-1021)) (-5 *2 (-868)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-490 *3)))))
+(((*1 *2 *2 *3)
+ (-12 (-4 *3 (-368)) (-5 *1 (-289 *3 *2)) (-4 *2 (-1268 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-697 (-284)))) (-5 *1 (-169)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
+(((*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 *1) (|partial| -12 (-4 *1 (-1021)) (-5 *2 (-868)))))
(((*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)
+ (-12 (-4 *1 (-845))
+ (-5 *3
+ (-2 (|:| |fn| (-320 (-227))) (|:| -2439 (-650 (-227)))
+ (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
+ (|:| |ub| (-650 (-849 (-227))))))
+ (-5 *2 (-1044))))
+ ((*1 *2 *3)
+ (-12 (-4 *1 (-845))
+ (-5 *3
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))
+ (-5 *2 (-1044)))))
+(((*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)))))
+(((*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)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *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 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*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 *1)
- (-12 (-5 *2 (-173)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2 *3 *3 *4 *5 *3 *6)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *3 *4 *4 *5 *3)
(-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 *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 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
-(((*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 *1 *1 *2)
- (|partial| -12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))))
-(((*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)))))
+ (-5 *2 (-1044)) (-5 *1 (-758)))))
+(((*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 (-5 *2 (-512)) (-5 *1 (-337)))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*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
+ (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))
+ (-5 *2 (-650 (-227))) (-5 *1 (-309)))))
(((*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 (-1288)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
-(((*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 *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 *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 *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 *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)) (|:| -3698 *6)))
- (-5 *1 (-1025 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *1 *1 *1) (-4 *1 (-311))) ((*1 *1 *1 *1) (-5 *1 (-777)))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*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)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-2 (|:| |preimage| (-650 *3)) (|:| |image| (-650 *3))))
- (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))))
-(((*1 *2 *2 *2 *2 *2 *3)
- (-12 (-5 *2 (-695 *4)) (-5 *3 (-777)) (-4 *4 (-1058))
- (-5 *1 (-696 *4)))))
+(((*1 *2 *2 *3) (-12 (-5 *2 (-570)) (-5 *3 (-777)) (-5 *1 (-567)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-173)))))
+(((*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))))
+ ((*1 *1 *1)
+ (-12 (-4 *1 (-1294 *2 *3)) (-4 *2 (-856)) (-4 *3 (-1058)))))
(((*1 *2 *3)
(-12
(-5 *3
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
- (-5 *2 (-384)) (-5 *1 (-194)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
-(((*1 *1) (-5 *1 (-809))))
-(((*1 *2)
- (-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)
- (-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 *1 *1) (-4 *1 (-1153))))
-(((*1 *1 *1 *1) (-4 *1 (-311))) ((*1 *1 *1 *1) (-5 *1 (-777)))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1942 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*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 (|:| -3154 (-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 *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")) (|:| -1972 (-650 *4))))
- (-5 *1 (-572 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1156 *3)))))
-(((*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 *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 *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 *3)
- (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1277 (-705))) (-5 *1 (-309)))))
-(((*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 *1)
- (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))))
+ (-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 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
(((*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 *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 *1)
- (-12 (-4 *1 (-387 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-2 (|:| |k| *4) (|:| |c| *3))))))
-(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777))
- (-14 *4 (-777)) (-4 *5 (-174)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))))
-(((*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) (-12 (-5 *3 (-847)) (-5 *2 (-1044)) (-5 *1 (-846))))
+ (|partial| -12 (-5 *3 (-959 *4)) (-4 *4 (-1058)) (-4 *4 (-620 *2))
+ (-5 *2 (-384)) (-5 *1 (-791 *4))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-320 (-384)))) (-5 *4 (-650 (-384)))
- (-5 *2 (-1044)) (-5 *1 (-846)))))
-(((*1 *2 *3)
- (-12 (-4 *1 (-845))
- (-5 *3
- (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227)))
- (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
- (|:| |ub| (-650 (-849 (-227))))))
- (-5 *2 (-1044))))
+ (|partial| -12 (-5 *3 (-959 *5)) (-5 *4 (-928)) (-4 *5 (-1058))
+ (-4 *5 (-620 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5))))
((*1 *2 *3)
- (-12 (-4 *1 (-845))
- (-5 *3
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))
- (-5 *2 (-1044)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
+ (|partial| -12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562))
+ (-4 *4 (-620 *2)) (-5 *2 (-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 *2)) (-5 *2 (-384)) (-5 *1 (-791 *5))))
+ ((*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))))
+ ((*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)))))
+(((*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
(-5 *3
- (-2 (|:| -3039 (-384)) (|:| -3600 (-1168))
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-1168))
(|:| |explanations| (-650 (-1168)))))
(-5 *2 (-1044)) (-5 *1 (-309))))
((*1 *2 *3)
(-12
(-5 *3
- (-2 (|:| -3039 (-384)) (|:| -3600 (-1168))
+ (-2 (|:| -3988 (-384)) (|:| -3602 (-1168))
(|:| |explanations| (-650 (-1168))) (|:| |extra| (-1044))))
(-5 *2 (-1044)) (-5 *1 (-309)))))
+(((*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 *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)
+ (-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 *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 *2)
+ (-12 (-4 *2 (-13 (-368) (-854))) (-5 *1 (-183 *2 *3))
+ (-4 *3 (-1253 (-171 *2))))))
+(((*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 -4452) (-6 -4453))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-856)) (-4 *3 (-1227)) (-5 *1 (-1141 *3 *2))
+ (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4452) (-6 -4453)))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*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 (-1304 *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 (-1304 *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 (-1304 *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 (-1304 *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 (-1304 *4 *5 *6))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
+(((*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) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))))
(((*1 *1 *2)
(-12 (-5 *2 (-650 (-912 *3))) (-4 *3 (-1109)) (-5 *1 (-911 *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 *1 *3)
+ (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-1058)) (-4 *4 (-1109))
+ (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3994 (-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)) (|:| -3994 (-570))))
+ (-4 *1 (-436 *4))))
+ ((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3994 (-570))))
+ (-4 *1 (-436 *3))))
+ ((*1 *2 *1)
+ (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3994 (-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) (|:| -3994 (-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) (|:| -3994 (-570))))
+ (-5 *1 (-957 *4 *5 *6 *7 *3))
+ (-4 *3
+ (-13 (-368)
+ (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $))
+ (-15 -4416 (*7 $))))))))
+(((*1 *1 *1 *1) (-4 *1 (-311))) ((*1 *1 *1 *1) (-5 *1 (-777)))
+ ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1156 *3)))))
+(((*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 *1 *1) (-5 *1 (-868)))
+ ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
+(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *2)))))
(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
+(((*1 *2 *3 *1)
+ (|partial| -12 (-4 *1 (-616 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
+(((*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 (-1282)) (-5 *1 (-828)))))
+(((*1 *1) (-5 *1 (-565))))
+(((*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 (-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 *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 *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 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*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 *1) (-12 (-4 *1 (-395)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-594 *4))
+ (-4 *4 (-354)))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570)))))
+ (-4 *2 (-13 (-856) (-21))))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*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 (-5 *3 (-1277 (-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 -4452)))))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-334)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))))
(((*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))))
@@ -11253,64 +11013,32 @@
((*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)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-714 *3)) (-5 *1 (-833 *2 *3)) (-4 *3 (-1058)))))
(((*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 (-650 (-2 (|:| |val| *3) (|:| -3684 *4))))
- (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868))))
- ((*1 *1 *1) (-5 *1 (-868))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*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 *1)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-928))) (-5 *4 (-912 (-570)))
- (-5 *2 (-695 (-570))) (-5 *1 (-596))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-928))) (-5 *2 (-650 (-695 (-570))))
- (-5 *1 (-596))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-928))) (-5 *4 (-650 (-912 (-570))))
- (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*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 *3)
- (-12 (-4 *4 (-38 (-413 (-570))))
- (-5 *2 (-2 (|:| -2733 (-1166 *4)) (|:| -2740 (-1166 *4))))
- (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))))
+ (-12 (-4 *1 (-410)) (-1796 (|has| *1 (-6 -4443)))
+ (-1796 (|has| *1 (-6 -4435)))))
+ ((*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 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-570))) (-5 *2 (-570)) (-5 *1 (-492 *4))
- (-4 *4 (-1253 *2)))))
-(((*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)))))
+ (-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 *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 *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 *1 *2)
(-12 (-5 *2 (-777)) (-5 *1 (-50 *3 *4)) (-4 *3 (-1058))
(-14 *4 (-650 (-1186)))))
@@ -11326,552 +11054,532 @@
(-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 *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 *2 *2)
+ (-12 (-5 *2 (-695 *3))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-714 *3)) (-5 *1 (-833 *2 *3)) (-4 *3 (-1058)))))
+(((*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)
+ (-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 (-570)) (-5 *2 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-424 *4)) (-4 *4 (-562)))))
+(((*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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(((*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))))
+ ((*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 *2) (-12 (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
+(((*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 *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 (|:| -4263 (-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) (|:| -3402 (-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 (|:| -4400 *3) (|:| -4413 *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 *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)))))))
+ (-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 *2)
- (-12 (-4 *3 (-1253 (-413 (-570)))) (-5 *1 (-920 *3 *2))
- (-4 *2 (-1253 (-413 *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 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-950 *4)) (-4 *4 (-1058)) (-5 *1 (-1174 *3 *4))
- (-14 *3 (-928)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1109))
- (-4 *3 (-1227)))))
-(((*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)))))
+ (-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 (-650 (-2 (|:| |val| *3) (|:| -3687 *4))))
+ (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-650 *3))
+ (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-5 *1 (-492 *2)) (-4 *2 (-1253 (-570))))))
+(((*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 (-2570 *3) (-777)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2267 *2) (|:| -3994 *5))
+ (-2 (|:| -2267 *2) (|:| -3994 *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) (-5 *1 (-829))))
+(((*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 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
(((*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)))))
+ (-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)) (|:| -4308 *3))))
+ (-5 *1 (-815 *6 *7 *3 *8)) (-4 *3 (-662 *7))
+ (-4 *8 (-662 (-413 *7)))))
((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-959 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-385 *4))
- (-4 *4 (-13 (-854) (-368))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1190)))))
-(((*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 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
-(((*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 (-4 *1 (-803 *2)) (-4 *2 (-174))))
- ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
-(((*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 *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 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-12 (-5 *4 (-1 (-424 *6) *6)) (-4 *6 (-1253 *5))
+ (-4 *5 (-13 (-368) (-148) (-1047 (-570)) (-1047 (-413 (-570)))))
(-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
+ (-650 (-2 (|:| |frac| (-413 *6)) (|:| -4308 (-660 *6 (-413 *6))))))
+ (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))))
+(((*1 *2 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-212)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-868))))
+ ((*1 *1 *1) (-5 *1 (-868))))
(((*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)
- (|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 *1) (-12 (-5 *2 (-650 (-879 (-1191) (-777)))) (-5 *1 (-337)))))
-(((*1 *2 *3 *3 *3 *3 *4 *4 *3)
+ (-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 *1)
+ (-12
+ (-5 *2
+ (-2 (|:| -1453 *3) (|:| |gap| (-777)) (|:| -3959 (-788 *3))
+ (|:| -3971 (-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 (|:| -1453 *1) (|:| |gap| (-777)) (|:| -3959 *1)
+ (|:| -3971 *1)))
+ (-4 *1 (-1074 *4 *5 *3))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2
+ (-2 (|:| -1453 *1) (|:| |gap| (-777)) (|:| -3959 *1)
+ (|:| -3971 *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *2 *3 *3 *3 *4 *3)
(-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
+ (-5 *1 (-760)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-809)))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
-(((*1 *2 *1) (-12 (-5 *2 (-697 *3)) (-5 *1 (-973 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-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)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109))
- (-5 *2 (-112)))))
+ (-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 *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 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-3 (|:| |fst| (-440)) (|:| -2713 "void")))
- (-5 *2 (-1282)) (-5 *1 (-1189))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-1186))
- (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *2 (-1282))
- (-5 *1 (-1189))))
- ((*1 *2 *3 *4 *1)
- (-12 (-5 *3 (-1186))
- (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *2 (-1282))
- (-5 *1 (-1189)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+ (-12 (-5 *3 (-1168)) (-5 *2 (-216 (-508))) (-5 *1 (-843)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
+(((*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)
+ (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-562)) (-4 *2 (-174)))))
+(((*1 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*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)))))
+(((*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 *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 -3799 ($ (-1134 *3 (-618 $))))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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 *1 (-354))
- (-5 *2 (-650 (-2 (|:| -3801 (-570)) (|:| -3357 (-570))))))))
-(((*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 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-215 4 (-130))) (-5 *1 (-585)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-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 (|:| -2308 *3) (|:| -2268 (-1129)))))))))
- ((*1 *2)
- (-12 (-5 *2 (-777)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354))
- (-14 *4 (-928)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-1109)) (-5 *1 (-971 *3 *2)) (-4 *3 (-1109)))))
-(((*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 (|:| -3154 (-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 *2 *2)
- (-12 (-5 *2 (-777))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $)))))
- (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+ (|partial| -12 (-5 *3 (-1277 *5)) (-4 *5 (-645 *4)) (-4 *4 (-562))
+ (-5 *2 (-1277 *4)) (-5 *1 (-644 *4 *5)))))
(((*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)))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-928))) (-5 *4 (-912 (-570)))
+ (-5 *2 (-695 (-570))) (-5 *1 (-596))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-928))) (-5 *2 (-650 (-695 (-570))))
+ (-5 *1 (-596))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-928))) (-5 *4 (-650 (-912 (-570))))
+ (-5 *2 (-650 (-695 (-570)))) (-5 *1 (-596)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-368)) (-5 *2 (-650 *3)) (-5 *1 (-952 *4 *3))
- (-4 *3 (-1253 *4)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1111 (-1111 *3))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *3 (-650 (-570)))
- (-5 *1 (-890)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-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 *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)))))
+ (-12 (-5 *3 (-249 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-458))
+ (-5 *2 (-487 *4 *5)) (-5 *1 (-637 *4 *5)))))
+(((*1 *1) (-5 *1 (-443))))
+(((*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 *3
- (-650
- (-2 (|:| -4006 (-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 (-1168)) (-5 *1 (-542)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-227))) (-5 *4 (-777)) (-5 *2 (-695 (-227)))
- (-5 *1 (-309)))))
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*1 *1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-531)))))
+(((*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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))))
+(((*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 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
+ (-4 *3 (-423 *4)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -4322 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+ (-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 *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 (-1222 *3)) (-4 *3 (-983)))))
+(((*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 *2)
(-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
(-4 *2 (-13 (-436 *3) (-1212))))))
-(((*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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
-(((*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)
- (-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)
- (-12 (-4 *2 (-562)) (-4 *2 (-458)) (-5 *1 (-978 *2 *3))
- (-4 *3 (-1253 *2)))))
-(((*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 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
(((*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 *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 (-1019 *3)) (-4 *3 (-1227)) (-5 *2 (-650 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-1103 (-849 (-227)))) (-5 *1 (-309)))))
-(((*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 *2 *1 *1) (-12 (-5 *2 (-112)) (-5 *1 (-501)))))
-(((*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 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-227) (-227))) (-5 *1 (-322)) (-5 *3 (-227)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-1 *3 *4)) (-5 *1 (-689 *4 *3)) (-4 *4 (-1109))
- (-4 *3 (-1109)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-1277 *4)) (-5 *3 (-1129)) (-4 *4 (-354))
+(((*1 *2) (-12 (-4 *3 (-174)) (-5 *2 (-1277 *1)) (-4 *1 (-372 *3)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(((*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 *1) (-12 (-4 *1 (-373)) (-5 *2 (-928))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-928))
(-5 *1 (-534 *4)))))
-(((*1 *2 *3 *4)
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
+(((*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 *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 *3 *3 *4)
(-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-1227))))
+ ((*1 *2 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227))
+ (-14 *4 (-570)))))
+(((*1 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442))))
+ ((*1 *2 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))))
(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-334)))))
-(((*1 *2 *1 *2)
- (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-1190)) (-5 *1 (-1189)))))
-(((*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))
- (|:| -3477 (-650 (-2 (|:| |irr| *4) (|:| -3563 (-570)))))))
- (-4 *4 (-1253 (-570))) (-5 *2 (-424 *4)) (-5 *1 (-448 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-831)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-928)) (-5 *1 (-792)))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
-(((*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 *1)
- (-12 (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *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 *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))))
+ ((*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 *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 (-5 *2 (-2 (|:| -2573 (-777)) (|:| -3691 (-777))))
- (-5 *1 (-777))))
- ((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109))
- (-4 *2 (-856)))))
-(((*1 *1 *2) (-12 (-5 *2 (-825 *3)) (-4 *3 (-856)) (-5 *1 (-678 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-115)))))
-(((*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 (-112)) (-5 *1 (-602 *3)) (-4 *3 (-1058))))
+ (-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 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798))
- (-4 *5 (-856)) (-5 *2 (-112)))))
-(((*1 *2 *1 *1)
- (-12 (-4 *3 (-562)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-858 *3))))
- ((*1 *2 *3 *3 *4)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-562)) (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-859 *5 *3))
- (-4 *3 (-858 *5)))))
+ (-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 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3) (-12 (-5 *3 (-828)) (-5 *2 (-52)) (-5 *1 (-835)))))
+(((*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 *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 *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 -4452)))))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4452)) (-4 *1 (-237 *3))
+ (-4 *3 (-1109))))
+ ((*1 *1 *2 *1)
+ (-12 (|has| *1 (-6 -4452)) (-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 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-551)) (-5 *1 (-160 *2)))))
+(((*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 (-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 (-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 *1) (-5 *1 (-142))))
+(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
(((*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 *2)
- (|partial| -12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2))
- (-4 *2 (-680 *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| (-650 *3)) (|:| -3684 *4))))
- (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*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 *1)
+ (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3))))
+ (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
+(((*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 *1)
+ (-12 (-5 *1 (-137 *2 *3 *4)) (-14 *2 (-570)) (-14 *3 (-777))
+ (-4 *4 (-174)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058))
+ (-5 *3 (-570)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-603))) (-5 *1 (-603)))))
+(((*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 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-219)))))
(((*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 *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 *1) (-5 *1 (-142))))
-(((*1 *2 *1 *3) (-12 (-4 *1 (-533)) (-5 *3 (-129)) (-5 *2 (-777)))))
-(((*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 *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 (-1168)) (-5 *2 (-112)) (-5 *1 (-835)))))
-(((*1 *2)
- (-12 (-4 *1 (-354))
- (-5 *2 (-3 "prime" "polynomial" "normal" "cyclic")))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+ (-12 (-5 *4 (-112)) (-4 *5 (-354))
+ (-5 *2
+ (-2 (|:| |cont| *5)
+ (|:| -2638 (-650 (-2 (|:| |irr| *3) (|:| -2199 (-570)))))))
+ (-5 *1 (-218 *5 *3)) (-4 *3 (-1253 *5)))))
(((*1 *2 *3 *3)
- (-12 (-4 *4 (-368)) (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3)))
- (-5 *1 (-772 *3 *4)) (-4 *3 (-714 *4))))
- ((*1 *2 *1 *1)
- (-12 (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *2 (-2 (|:| -2573 *1) (|:| -3691 *1))) (-4 *1 (-858 *3))))
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-1188 (-413 (-570))))
+ (-5 *1 (-192)))))
+(((*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)
- (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
- (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-859 *5 *3))
- (-4 *3 (-858 *5)))))
-(((*1 *2 *1 *2)
- (-12 (|has| *1 (-6 -4450)) (-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 *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)))))
-(((*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)))))
+ (|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 (-928)) (-5 *1 (-707))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-707)))))
(((*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 (-1253 *3))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-741 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-732))))
+ (-12 (-5 *2 (-2 (|:| |var| (-650 (-1186))) (|:| |pred| (-52))))
+ (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124))))
+(((*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 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-112)))))
-(((*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) (-12 (-5 *2 (-1282)) (-5 *1 (-1229)))))
-(((*1 *2 *3 *4 *5)
- (-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 *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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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 *2 (-650 (-2 (|:| |k| *3) (|:| |c| (-1301 *3 *4)))))
+ (-5 *1 (-1301 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058)))))
+(((*1 *2 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-1 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1227)))))
(((*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)
- (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2 *2 *3 *4)
- (|partial| -12
- (-5 *3
- (-1 (-3 (-2 (|:| -2616 *4) (|:| |coeff| *4)) "failed") *4))
- (-4 *4 (-368)) (-5 *1 (-580 *4 *2)) (-4 *2 (-1253 *4)))))
-(((*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 *3 *3 *2 *4)
- (-12 (-5 *3 (-695 *2)) (-5 *4 (-570))
- (-4 *2 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $)))))
- (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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 *1 *2) (-12 (-5 *2 (-413 (-570))) (-5 *1 (-108))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-542))) (-5 *1 (-542)))))
-(((*1 *2 *2 *3)
- (-12 (-4 *4 (-799))
- (-4 *3 (-13 (-856) (-10 -8 (-15 -1425 ((-1186) $))))) (-4 *5 (-562))
- (-5 *1 (-738 *4 *3 *5 *2)) (-4 *2 (-956 (-413 (-959 *5)) *4 *3))))
+ (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
((*1 *2 *2 *3)
- (-12 (-4 *4 (-1058)) (-4 *5 (-799))
- (-4 *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 *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 *3)
+ (-12 (-4 *4 (-38 (-413 (-570))))
+ (-5 *2 (-2 (|:| -2736 (-1166 *4)) (|:| -2743 (-1166 *4))))
+ (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))))
+(((*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 *3 *3 *3)
+ (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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 *1) (-5 *1 (-158)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+(((*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)
+ (-12 (-5 *2 (-1151 *3 *4)) (-14 *3 (-928)) (-4 *4 (-368))
+ (-5 *1 (-1002 *3 *4)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-216 *4))
+ (-4 *4
(-13 (-856)
- (-10 -8 (-15 -1425 ((-1186) $))
- (-15 -2798 ((-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
+ (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 (*2 $))
+ (-15 -2353 (*2 $)))))))
+ ((*1 *2 *1)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3))
+ (-4 *3
(-13 (-856)
- (-10 -8 (-15 -1425 ((-1186) $))
- (-15 -2798 ((-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 *5)
- (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227)))
- (-5 *5 (-112)) (-5 *2 (-1279)) (-5 *1 (-260)))))
+ (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 (*2 $))
+ (-15 -2353 (*2 $)))))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))))
+(((*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 *3)
+ (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112))
+ (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
+(((*1 *1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-112)) (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-570))) (-5 *2 (-570)) (-5 *1 (-492 *4))
+ (-4 *4 (-1253 *2)))))
+(((*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)))))
+(((*1 *1) (-12 (-4 *1 (-1054 *2)) (-4 *2 (-23)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+ (-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 *1 *1 *1) (-4 *1 (-551))))
+(((*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 *1)
+ (-12 (-4 *1 (-616 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
+ (-5 *2 (-112)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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 *3)
(-12
(-5 *3
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(-5 *2
(-2
@@ -11889,7 +11597,7 @@
(-3 (|:| |str| (-1166 (-227)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -2521
+ (|:| -1600
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -11897,111 +11605,197 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-565)))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
-(((*1 *1 *2 *2 *2 *2) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
-(((*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))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-650 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))))
-(((*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 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-112)))))
-(((*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 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*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 *1 *2 *3)
+ (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-109)))))
+(((*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 *1 *1 *2 *2)
+ (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *1) (-5 *1 (-131))))
-(((*1 *2 *3 *2)
- (-12 (-5 *2 (-1 (-950 (-227)) (-950 (-227)))) (-5 *3 (-650 (-266)))
- (-5 *1 (-264))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124))))
+(((*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 (-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 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400))))
- ((*1 *2 *1) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*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 *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)))))))
-(((*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)))))
+ (-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 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
(((*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 -1425 ((-1186) $))))))))
-(((*1 *2 *2 *2 *3 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-1058)) (-5 *1 (-1249 *4 *2))
- (-4 *2 (-1253 *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 *3)
+ (-12 (-4 *4 (-354))
+ (-5 *2 (-650 (-2 (|:| |deg| (-777)) (|:| -3636 *3))))
+ (-5 *1 (-218 *4 *3)) (-4 *3 (-1253 *4)))))
(((*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))))
+ (|:| -3827 (-650 (-1277 (-413 (-959 *4))))))))))
+ (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
+(((*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 *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)
+ (|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 *1)
(-12
- (-5 *3
- (-3
- (|:| |noa|
- (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227)))
- (|:| |lb| (-650 (-849 (-227))))
- (|:| |cf| (-650 (-320 (-227))))
- (|:| |ub| (-650 (-849 (-227))))))
- (|:| |lsa|
- (-2 (|:| |lfn| (-650 (-320 (-227))))
- (|:| -2438 (-650 (-227)))))))
- (-5 *2 (-650 (-1168))) (-5 *1 (-270)))))
+ (-5 *2
+ (-1277
+ (-2 (|:| |scaleX| (-227)) (|:| |scaleY| (-227))
+ (|:| |deltaX| (-227)) (|:| |deltaY| (-227)) (|:| -3917 (-570))
+ (|:| -2785 (-570)) (|:| |spline| (-570)) (|:| -3784 (-570))
+ (|:| |axesColor| (-880)) (|:| -3225 (-570))
+ (|:| |unitsColor| (-880)) (|:| |showing| (-570)))))
+ (-5 *1 (-1278)))))
(((*1 *1 *1)
(-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*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)))))
-(((*1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229))))
+(((*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 *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 *1 *2)
+ (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1058)) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
+(((*1 *2 *3) (-12 (-5 *3 (-650 (-928))) (-5 *2 (-777)) (-5 *1 (-596)))))
+(((*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 -4452) (-6 -4453))))))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-856)) (-4 *3 (-1227)) (-5 *1 (-1141 *3 *2))
+ (-4 *2 (-13 (-610 (-570) *3) (-10 -7 (-6 -4452) (-6 -4453)))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112))))
((*1 *2 *3 *3)
- (-12 (-5 *3 (-650 (-1186))) (-5 *2 (-1282)) (-5 *1 (-1229)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
-(((*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) (|:| -1972 (-650 *4))))
- (-5 *1 (-807 *6 *4 *3)) (-4 *3 (-662 *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)) (|:| -3684 *4))))
- (-5 *1 (-782 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*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 *3)
- (-12 (-4 *4 (-458))
+ (-12 (-5 *2 (-112)) (-5 *1 (-1228 *3)) (-4 *3 (-856))
+ (-4 *3 (-1109)))))
+(((*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 (-1253 *3)) (-4 *3 (-1058)) (-5 *2 (-1182 *3)))))
+(((*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
- (-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)))))))
+ (-2 (|:| |eqzro| (-650 *12)) (|:| |neqzro| (-650 *12))
+ (|:| |wcond| (-650 (-959 *9)))
+ (|:| |bsoln|
+ (-2 (|:| |partsol| (-1277 (-413 (-959 *9))))
+ (|:| -3827 (-650 (-1277 (-413 (-959 *9)))))))))
+ (-5 *1 (-931 *9 *10 *11 *12)))))
+(((*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 *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 (-680 *2)) (-4 *2 (-1227)))))
+(((*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 *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 *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))))
@@ -12009,59 +11803,82 @@
((*1 *2 *1)
(-12 (-4 *2 (-13 (-1109) (-34))) (-5 *1 (-1149 *2 *3))
(-4 *3 (-13 (-1109) (-34))))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1253 (-413 (-570)))) (-5 *1 (-920 *3 *2))
+ (-4 *2 (-1253 (-413 *3))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1204 *4 *5))
- (-4 *4 (-1109)) (-4 *5 (-1109)))))
-(((*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)))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-570)) (-5 *1 (-243))))
+ (-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)
+ (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-143 *2 *4 *3))
+ (-4 *3 (-378 *4))))
((*1 *2 *3)
- (-12 (-5 *3 (-650 (-1168))) (-5 *2 (-570)) (-5 *1 (-243)))))
-(((*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 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *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 *3 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3930 *4)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
(((*1 *1 *2 *3)
(-12 (-5 *1 (-879 *2 *3)) (-4 *2 (-1227)) (-4 *3 (-1227)))))
-(((*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 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
-(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
- ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*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)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1190)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *3 (-1277 *5)) (-4 *5 (-798)) (-5 *2 (-112))
- (-5 *1 (-851 *4 *5)) (-14 *4 (-777)))))
-(((*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
- (-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 *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 *3)
- (-12 (-5 *2 (-2 (|:| -2477 (-570)) (|:| -3477 (-650 *3))))
- (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
-(((*1 *2 *1) (-12 (-4 *1 (-354)) (-5 *2 (-777))))
- ((*1 *2 *1 *1) (|partial| -12 (-4 *1 (-408)) (-5 *2 (-777)))))
+ (-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 *3 *3 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *1) (-5 *1 (-443))))
+(((*1 *2 *3 *2 *4)
+ (-12 (-5 *2 (-650 (-570))) (-5 *3 (-650 (-928))) (-5 *4 (-112))
+ (-5 *1 (-1119)))))
+(((*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")) (|:| -3827 (-650 *6)))
+ *7 *6))
+ (-4 *6 (-368)) (-4 *7 (-662 *6))
+ (-5 *2
+ (-2 (|:| |particular| (-3 (-1277 *6) "failed"))
+ (|:| -3827 (-650 (-1277 *6)))))
+ (-5 *1 (-819 *6 *7)) (-5 *4 (-1277 *6)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-601 *3)) (-4 *3 (-38 *2))
+ (-4 *3 (-1058)))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *3 (-25)) (-4 *3 (-1109))
+ (-5 *2 (-2 (|:| -1453 (-570)) (|:| |var| (-618 *1))))
+ (-4 *1 (-436 *3)))))
+(((*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 *2) (-12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))))
(((*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))
@@ -12070,75 +11887,62 @@
((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
((*1 *2 *1)
(-12 (-4 *1 (-1255 *2 *3)) (-4 *3 (-798)) (-4 *2 (-1058)))))
-(((*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 *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 *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 *3 *1)
- (-12 (-5 *3 (-512)) (-5 *2 (-650 (-972))) (-5 *1 (-295)))))
-(((*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 *1 *1) (-12 (-4 *1 (-551)) (-5 *2 (-112)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-570)) (|has| *1 (-6 -4440)) (-4 *1 (-410))
- (-5 *2 (-928)))))
-(((*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 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+ (-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)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-4 *1 (-560 *2)) (-4 *2 (-13 (-410) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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 *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)))))
+(((*1 *2 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-424 *3)) (-4 *3 (-562)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1253 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-335 *3)) (-4 *3 (-856)))))
+(((*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 *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 *1 *1 *2)
+ (-12 (-5 *2 (-950 *4)) (-4 *4 (-1058)) (-5 *1 (-1174 *3 *4))
+ (-14 *3 (-928)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (-777)) (-4 *1 (-1253 *4)) (-4 *4 (-1058))
- (-5 *2 (-1277 *4)))))
-(((*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 *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))))
+ (-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 *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 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
+ (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4))))
+ (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))))
+(((*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 *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 *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 *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 (-5 *3 (-440))
- (-5 *2
- (-650
- (-3 (|:| -3600 (-1186))
- (|:| -3659 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570)))))))))
- (-5 *1 (-1190)))))
-(((*1 *1) (-5 *1 (-145))) ((*1 *1 *1) (-5 *1 (-868))))
-(((*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))))
+ (|partial| -12 (-5 *4 (-928)) (-4 *5 (-562)) (-5 *2 (-695 *5))
+ (-5 *1 (-963 *5 *3)) (-4 *3 (-662 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1277 (-1277 *4))) (-4 *4 (-1058)) (-5 *2 (-695 *4))
+ (-5 *1 (-1038 *4)))))
(((*1 *1 *2) (-12 (-5 *2 (-928)) (-4 *1 (-373))))
((*1 *2 *3 *3)
(-12 (-5 *3 (-928)) (-5 *2 (-1277 *4)) (-5 *1 (-534 *4))
@@ -12146,77 +11950,56 @@
((*1 *2 *1)
(-12 (-4 *2 (-856)) (-5 *1 (-719 *2 *3 *4)) (-4 *3 (-1109))
(-14 *4
- (-1 (-112) (-2 (|:| -2268 *2) (|:| -3357 *3))
- (-2 (|:| -2268 *2) (|:| -3357 *3)))))))
-(((*1 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551))))
- ((*1 *1 *2) (-12 (-5 *2 (-650 (-928))) (-5 *1 (-980)))))
-(((*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 *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 *1) (-12 (-4 *1 (-1265 *3)) (-4 *3 (-1227)) (-5 *2 (-777)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174)))))
-(((*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 (|:| -3357 (-777)) (|:| -1452 *9) (|:| |radicand| *9)))
- (-5 *1 (-960 *5 *6 *7 *8 *9)) (-5 *4 (-777))
- (-4 *9
- (-13 (-368)
- (-10 -8 (-15 -3799 ($ *8)) (-15 -4399 (*8 $)) (-15 -4413 (*8 $))))))))
-(((*1 *1) (-5 *1 (-829))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-950 *4))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*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 *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 (-112) (-2 (|:| -2267 *2) (|:| -3994 *3))
+ (-2 (|:| -2267 *2) (|:| -3994 *3)))))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-618 *4)) (-5 *1 (-617 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*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)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1166 *3)) (-4 *3 (-1109))
+ (-4 *3 (-1227)))))
+(((*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 *1)
+ (-12 (|has| *1 (-6 -4452)) (-4 *1 (-610 *4 *3)) (-4 *4 (-1109))
+ (-4 *3 (-1227)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*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))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-1166 (-227))) (-5 *2 (-650 (-1168))) (-5 *1 (-309)))))
+(((*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)))))
+(((*1 *1) (-5 *1 (-1278))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *1 *2 *2 *3)
(-12 (-5 *3 (-650 (-1186))) (-4 *4 (-1109))
(-4 *5 (-13 (-1058) (-893 *4) (-620 (-899 *4))))
@@ -12226,133 +12009,107 @@
(-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 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-650 (-777)))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
+(((*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 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*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)
- (-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 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *3 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
+ (-12 (-5 *3 (-424 *5)) (-4 *5 (-562))
+ (-5 *2
+ (-2 (|:| -3994 (-777)) (|:| -1453 *5) (|:| |radicand| (-650 *5))))
+ (-5 *1 (-324 *5)) (-5 *4 (-777))))
+ ((*1 *1 *1 *2) (-12 (-4 *1 (-1011)) (-5 *2 (-570)))))
+(((*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 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| -2990 (-695 (-413 (-959 *4))))
+ (|:| |vec| (-650 (-413 (-959 *4)))) (|:| -4009 (-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))))
+ (|:| -3827 (-650 (-1277 (-413 (-959 *4)))))))
+ (-5 *1 (-931 *4 *5 *6 *7)) (-4 *7 (-956 *4 *6 *5)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-5 *1 (-1222 *2)) (-4 *2 (-983)))))
+(((*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 *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 (-5 *2 (-295)) (-5 *1 (-284)))))
(((*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))))
+ (-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 (-959 *4)) (-5 *1 (-1221 *4))
- (-4 *4 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
- (-4 *5 (-856)) (-5 *2 (-112)))))
+ (-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 *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))))))
+(((*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)
+ (-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)
+ (-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 *1) (-12 (-5 *2 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*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 *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 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458)))))
+ (-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011))
+ (-4 *2 (-1058)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-38 (-413 (-570)))) (-5 *1 (-1270 *3 *2))
+ (-4 *2 (-1268 *3)))))
(((*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 *1) (-12 (-5 *2 (-252)) (-5 *1 (-337)))))
-(((*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)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*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)
- (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 (-570)))) (-5 *1 (-472)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-650 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
-(((*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 -3799 ($ (-1134 *5 (-618 $))))))))))
-(((*1 *2 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
+ (-12
+ (-5 *2 (-2 (|:| -2583 (-650 (-1186))) (|:| -2153 (-650 (-1186)))))
+ (-5 *1 (-1229)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-1190)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-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 *2 *1 *3) (-12 (-4 *1 (-866)) (-5 *3 (-129)) (-5 *2 (-777)))))
(((*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)))))
-(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-827)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-856)) (-5 *1 (-1197 *3)))))
-(((*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 *1 *1) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *3 *2) (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-174))))
+ (-12
+ (-5 *3
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-650 (-227)))))
+ (-5 *2 (-384)) (-5 *1 (-270))))
((*1 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*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 *1 *1 *2)
- (-12 (-5 *2 (-570)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))))
+ (-12 (-5 *3 (-1277 (-320 (-227)))) (-5 *2 (-384)) (-5 *1 (-309)))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-138))))
((*1 *2 *1) (-12 (-5 *2 (-1226)) (-5 *1 (-157))))
((*1 *2 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-1227))))
@@ -12366,43 +12123,46 @@
(-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 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-928)) (-5 *1 (-1110 *3 *4)) (-14 *3 *2)
+ (-14 *4 *2))))
+(((*1 *2 *1)
+ (|partial| -12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058))
+ (-4 *2 (-1237 *3)))))
+(((*1 *2 *1 *1) (-12 (-5 *2 (-570)) (-5 *1 (-384)))))
+(((*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 (-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)))))
-(((*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 *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 *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 -1425 ((-1186) $)))))
- (-4 *6 (-562)))))
-(((*1 *2 *3 *3 *2)
- (-12 (-5 *2 (-695 (-570))) (-5 *3 (-650 (-570))) (-5 *1 (-1119)))))
-(((*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 *1) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))))
-(((*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))))
-(((*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))))
+ (|partial| -12 (-5 *2 (-570)) (-5 *1 (-1209 *3)) (-4 *3 (-1058)))))
+(((*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 *3 *1)
+ (-12 (-5 *3 (-650 *4)) (-4 *4 (-1109)) (-4 *4 (-1227)) (-5 *2 (-112))
+ (-5 *1 (-1166 *4)))))
+(((*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 *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 (-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)
+ (-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 *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 (-1227))))
@@ -12416,267 +12176,285 @@
(-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 *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 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-384)) (-5 *1 (-1072)))))
+(((*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
+(((*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))))
+ ((*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)))))
+(((*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 (-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)))))
+ (-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 *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 (-158)) (-5 *1 (-880)))))
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
+(((*1 *1) (-5 *1 (-1094))))
+(((*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 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-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 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))))
-(((*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 -3799 ($ *7)) (-15 -4399 (*7 $))
- (-15 -4413 (*7 $))))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-868)) (-5 *1 (-396 *3 *4 *5)) (-14 *3 (-777))
- (-14 *4 (-777)) (-4 *5 (-174)))))
-(((*1 *2 *3 *1)
- (-12 (-5 *3 (-1186))
- (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2713 "void"))) (-5 *1 (-1189)))))
+ (-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 (-650 *1)) (|has| *1 (-6 -4453)) (-4 *1 (-1019 *3))
+ (-4 *3 (-1227)))))
+(((*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 (-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 *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 *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 *2) (-12 (-5 *1 (-968 *2)) (-4 *2 (-551)))))
-(((*1 *2 *3 *4 *3)
- (|partial| -12 (-5 *4 (-1186))
- (-4 *5 (-13 (-458) (-148) (-1047 (-570)) (-645 (-570))))
- (-5 *2 (-2 (|:| -2616 *3) (|:| |coeff| *3))) (-5 *1 (-563 *5 *3))
- (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
-(((*1 *1 *2 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
-(((*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)))))
+ (-12 (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *3))
+ (-4 *3 (-13 (-436 *4) (-1011))))))
+(((*1 *2) (-12 (-5 *2 (-1186)) (-5 *1 (-1189)))))
(((*1 *1 *2 *2)
(-12
(-5 *2
- (-3 (|:| I (-320 (-570))) (|:| -1708 (-320 (-384)))
+ (-3 (|:| I (-320 (-570))) (|:| -1709 (-320 (-384)))
(|:| CF (-320 (-171 (-384)))) (|:| |switch| (-1185))))
(-5 *1 (-1185)))))
-(((*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)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-5 *1 (-1009 *3)))))
-(((*1 *2 *3 *4)
- (-12 (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562))
- (-4 *3 (-956 *7 *5 *6))
- (-5 *2
- (-2 (|:| -3357 (-777)) (|:| -1452 *3) (|:| |radicand| (-650 *3))))
- (-5 *1 (-960 *5 *6 *7 *3 *8)) (-5 *4 (-777))
- (-4 *8
- (-13 (-368)
- (-10 -8 (-15 -3799 ($ *3)) (-15 -4399 (*3 $)) (-15 -4413 (*3 $))))))))
+(((*1 *2)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-965 (-718 *3 *4))) (-5 *1 (-718 *3 *4))
+ (-4 *4 (-1253 *3)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
+(((*1 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458)))))
+(((*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 *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 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-697 (-284)))) (-5 *1 (-169)))))
+ (-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 *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)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*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) (-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) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
+ ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-765)))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-1249 *3 *2)) (-4 *2 (-1253 *3)))))
(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-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 *1 *1)
- (-12 (-4 *1 (-1107 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-562)) (-5 *1 (-629 *2 *3)) (-4 *3 (-1253 *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 (-562))
- (-4 *4 (-799)) (-4 *5 (-856)) (-5 *1 (-986 *3 *4 *5 *6)))))
-(((*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 (-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)
- (-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 *2) (-12 (-5 *2 (-112)) (-5 *1 (-765)))))
-(((*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))))
- ((*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 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(((*1 *1 *1 *1)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
-(((*1 *1 *1 *1) (-12 (-5 *1 (-601 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-331 *3)) (-4 *3 (-1227))))
- ((*1 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-522 *3 *4)) (-4 *3 (-1227))
- (-14 *4 (-570)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-551)) (-5 *1 (-160 *2)))))
-(((*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 *2)
- (-12 (-5 *2 (-1 (-1166 *3))) (-5 *1 (-1166 *3)) (-4 *3 (-1227)))))
-(((*1 *2 *1 *3 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1282)) (-5 *1 (-216 *4))
- (-4 *4
- (-13 (-856)
- (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 (*2 $))
- (-15 -2176 (*2 $)))))))
- ((*1 *2 *1)
- (-12 (-5 *2 (-1282)) (-5 *1 (-216 *3))
- (-4 *3
- (-13 (-856)
- (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 (*2 $))
- (-15 -2176 (*2 $)))))))
- ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-508)))))
-(((*1 *2 *3 *3 *4 *4 *3 *4 *4 *3 *3 *3)
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-1107 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *3 *4 *4 *4 *3 *4 *3)
(-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-758)))))
+ (-5 *1 (-757)))))
+(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-145)))
+ ((*1 *1 *1) (-4 *1 (-1153))))
(((*1 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
+ (-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 *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 *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 *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))))
+ (-12 (-5 *2 (-320 *3)) (-4 *3 (-13 (-1058) (-856)))
+ (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-695 *1)) (-5 *4 (-1277 *1)) (-4 *1 (-645 *5))
+ (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -2990 (-695 *5)) (|:| |vec| (-1277 *5))))))
((*1 *2 *3)
- (-12 (-4 *4 (-1001 *2)) (-4 *2 (-562)) (-5 *1 (-1246 *2 *4 *3))
- (-4 *3 (-1253 *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 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-335 *3)) (-4 *3 (-856)))))
-(((*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 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-1186)))))
-(((*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 *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 *1) (-12 (-5 *2 (-570)) (-5 *1 (-384)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-384)) (-5 *1 (-1072)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-650 *1)) (|has| *1 (-6 -4450)) (-4 *1 (-1019 *3))
- (-4 *3 (-1227)))))
-(((*1 *2)
- (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-145)))
- ((*1 *1 *1) (-4 *1 (-1153))))
+ (-12 (-5 *3 (-695 *1)) (-4 *1 (-645 *4)) (-4 *4 (-1058))
+ (-5 *2 (-695 *4)))))
+(((*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)))))
+(((*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 *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 *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 *3)
+ (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*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 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-765)))))
+(((*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))))
+(((*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 (-1279))))
+ ((*1 *2 *1) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1279)))))
+(((*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 *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 *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 *4 *5 *6)
+ (-12 (-5 *4 (-112)) (-5 *5 (-1111 (-777))) (-5 *6 (-777))
+ (-5 *2
+ (-2 (|:| |contp| (-570))
+ (|:| -2638 (-650 (-2 (|:| |irr| *3) (|:| -2199 (-570)))))))
+ (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1129)) (-5 *1 (-849 *3)) (-4 *3 (-1109)))))
+(((*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 *4)
(-12 (-4 *7 (-458)) (-4 *5 (-799)) (-4 *6 (-856)) (-4 *7 (-562))
(-4 *8 (-956 *7 *5 *6))
- (-5 *2 (-2 (|:| -3357 (-777)) (|:| -1452 *3) (|:| |radicand| *3)))
+ (-5 *2 (-2 (|:| -3994 (-777)) (|:| -1453 *3) (|:| |radicand| *3)))
(-5 *1 (-960 *5 *6 *7 *8 *3)) (-5 *4 (-777))
(-4 *3
(-13 (-368)
- (-10 -8 (-15 -3799 ($ *8)) (-15 -4399 (*8 $)) (-15 -4413 (*8 $))))))))
+ (-10 -8 (-15 -3802 ($ *8)) (-15 -4402 (*8 $)) (-15 -4416 (*8 $))))))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1186)))))
+(((*1 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-13 (-368) (-148) (-1047 (-413 (-570)))))
+ (-4 *5 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2289 *5) (|:| -3533 *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 (-1253 *5)) (-5 *2 (-650 (-2 (|:| -2289 *4) (|:| -3533 *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 (-1253 *4)) (-5 *2 (-650 (-2 (|:| -2289 *5) (|:| -3533 *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 (|:| -2289 *4) (|:| -3533 *4))))
+ (-5 *1 (-813 *5 *4 *6 *3)) (-4 *6 (-662 *4))
+ (-4 *3 (-662 (-413 *4))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+ (-5 *2
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*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 *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 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(((*1 *2 *1)
+ (-12
+ (-5 *2
+ (-650
+ (-650
+ (-3 (|:| -3602 (-1186))
+ (|:| -1844 (-650 (-3 (|:| S (-1186)) (|:| P (-959 (-570))))))))))
+ (-5 *1 (-1190)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-1145)))))
+(((*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))
+ (|:| -3701 *6)))
+ (-5 *1 (-1024 *5 *6)) (-5 *3 (-413 *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))
@@ -12684,19 +12462,260 @@
((*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 *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 *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)
+ (|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)
+ (-12 (-4 *4 (-13 (-562) (-1047 (-570)))) (-4 *5 (-436 *4))
+ (-5 *2
+ (-3 (|:| |overq| (-1182 (-413 (-570))))
+ (|:| |overan| (-1182 (-48))) (|:| -2637 (-112))))
+ (-5 *1 (-441 *4 *5 *3)) (-4 *3 (-1253 *5)))))
+(((*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 *2)
+ (-12 (-5 *3 (-1 (-112) *4 *4)) (-4 *4 (-1227)) (-5 *1 (-380 *4 *2))
+ (-4 *2 (-13 (-378 *4) (-10 -7 (-6 -4453)))))))
+(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 (-695 *3))) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
(((*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 *2 *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 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-283)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-879 (-1191) (-777)))) (-5 *1 (-337)))))
+(((*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 *3) (-12 (-5 *3 (-227)) (-5 *2 (-413 (-570))) (-5 *1 (-309)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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))))
+ ((*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)) (|:| -3687 *4))))
+ (-5 *1 (-1117 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
(((*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 *1 *2 *2 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))))
+(((*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)
+ (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2267 (-1129)))))))))
+ ((*1 *2)
+ (-12 (-5 *2 (-695 *3)) (-5 *1 (-358 *3 *4)) (-4 *3 (-354))
+ (-14 *4 (-928)))))
+(((*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 *2)
+ (-12
+ (-5 *2
+ (-2 (|:| |flg| (-3 "nil" "sqfr" "irred" "prime")) (|:| |fctr| *4)
+ (|:| |xpnt| (-570))))
+ (-4 *4 (-13 (-1253 *3) (-562) (-10 -8 (-15 -1939 ($ $ $)))))
+ (-4 *3 (-562)) (-5 *1 (-1256 *3 *4)))))
+(((*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 (-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 (-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 (-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 *3 *4 *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 *3)
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*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 *1)
+ (-12 (-4 *3 (-1227)) (-5 *2 (-650 *1)) (-4 *1 (-1019 *3)))))
(((*1 *1 *1)
(-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-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) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 *6)) (-4 *5 (-1231)) (-4 *6 (-1253 *5))
+ (-5 *2 (-2 (|:| -3994 (-777)) (|:| -1453 *3) (|:| |radicand| *6)))
+ (-5 *1 (-149 *5 *6 *7)) (-5 *4 (-777)) (-4 *7 (-1253 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
+(((*1 *2)
+ (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *2 *3)
+ (-12 (-5 *3 (-570)) (-5 *1 (-702 *2)) (-4 *2 (-1253 *3)))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-858 *3))))
+ ((*1 *2 *3 *3 *4)
+ (-12 (-5 *4 (-99 *5)) (-4 *5 (-368)) (-4 *5 (-1058))
+ (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-859 *5 *3))
+ (-4 *3 (-858 *5)))))
+(((*1 *2 *3 *3 *2)
+ (-12 (-5 *2 (-1044)) (-5 *3 (-1186)) (-5 *1 (-194)))))
+(((*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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1208)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186))
+ (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
+(((*1 *1 *2 *1 *1)
+ (-12 (-5 *2 (-1186)) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
+(((*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 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-809)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1035 (-849 (-570)))) (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
+(((*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 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-777)))))
+(((*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 *1 *1) (-12 (-5 *1 (-298 *2)) (-4 *2 (-21)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-650 (-1191))) (-5 *1 (-1145)))))
+ (-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) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
+ ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-440)))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
+(((*1 *2 *3 *3)
+ (-12 (|has| *2 (-6 (-4454 "*"))) (-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 *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 *1 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (|has| *1 (-6 -4453)) (-4 *1 (-378 *3))
+ (-4 *3 (-1227)))))
+(((*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 *1)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
(((*1 *2 *3 *4)
(-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1186))
(-4 *5 (-13 (-311) (-148))) (-5 *2 (-650 (-298 (-320 *5))))
@@ -12726,26 +12745,275 @@
(-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 *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)
+ (|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)))))
+(((*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) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540))))
+ ((*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1) (-12 (-5 *2 (-697 *3)) (-5 *1 (-973 *3)) (-4 *3 (-1109)))))
+(((*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 (|:| -3827 (-695 *7)) (|:| |basisDen| *7)
+ (|:| |basisInv| (-695 *7)))))
+ (-5 *5 (-777)) (-4 *8 (-1253 *7)) (-4 *7 (-1253 *6)) (-4 *6 (-354))
+ (-5 *2
+ (-2 (|:| -3827 (-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 (-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 *4)
+ (-12 (-5 *3 (-695 (-171 (-413 (-570))))) (-5 *2 (-650 (-171 *4)))
+ (-5 *1 (-770 *4)) (-4 *4 (-13 (-368) (-854))))))
+(((*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 *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 *1) (-4 *1 (-976))))
+(((*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 *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 *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 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540))))
+ ((*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))))
+(((*1 *1 *2 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570))))
+ (-4 *2 (-174)))))
+(((*1 *2)
+ (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-1109)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-570)) (|has| *1 (-6 -4443)) (-4 *1 (-410))
+ (-5 *2 (-928)))))
+(((*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))))))
+ ((*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 *2 *3)
+ (-12 (-5 *1 (-971 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-1109)))))
(((*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))
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-610 *3 *2)) (-4 *3 (-1109))
(-4 *2 (-1227)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-112))))))
+(((*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 *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) (-12 (-5 *1 (-788 *2)) (-4 *2 (-1058)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-2 (|:| -2308 *4) (|:| -2117 (-570)))))
+ (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *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 *1)
+ (-12 (|has| *1 (-6 -4452)) (-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 *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 *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)
(-12 (-5 *2 (-650 (-777))) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
(-4 *4 (-1058)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *1 *1) (-4 *1 (-1069))))
+(((*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 *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 *1 *1)
+ (-12 (-4 *1 (-1019 *3)) (-4 *3 (-1227)) (-4 *3 (-1109))
+ (-5 *2 (-112)))))
+(((*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)
+ (-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 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-777)) (-4 *4 (-1058))
+ (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-1253 *4)))))
(((*1 *2 *1 *1)
(-12
(-5 *2
- (-2 (|:| -1942 (-788 *3)) (|:| |coef1| (-788 *3))
+ (-2 (|:| -1939 (-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 (|:| -1942 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
+ (-5 *2 (-2 (|:| -1939 *1) (|:| |coef1| *1) (|:| |coef2| *1)))
(-4 *1 (-1074 *3 *4 *5)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1103 (-849 (-384)))) (-5 *2 (-1103 (-849 (-227))))
+ (-5 *1 (-309)))))
+(((*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 *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 (-3 (|:| |fst| (-440)) (|:| -2716 "void")))
+ (-5 *2 (-1282)) (-5 *1 (-1189))))
+ ((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186))
+ (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *2 (-1282))
+ (-5 *1 (-1189))))
+ ((*1 *2 *3 *4 *1)
+ (-12 (-5 *3 (-1186))
+ (-5 *4 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *2 (-1282))
+ (-5 *1 (-1189)))))
+(((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *2 *2 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *3 (-695 (-570))) (-5 *1 (-1119)))))
+(((*1 *2 *2)
+ (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *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 *2 *3)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-311)) (-5 *1 (-181 *3)))))
(((*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)))))
@@ -12782,850 +13050,432 @@
(-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 *3)
+ (-12 (-4 *3 (-311)) (-4 *3 (-174)) (-4 *4 (-378 *3))
+ (-4 *5 (-378 *3)) (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3)))
+ (-5 *1 (-694 *3 *4 *5 *6)) (-4 *6 (-693 *3 *4 *5))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *2 (-2 (|:| -3959 *3) (|:| -3971 *3))) (-5 *1 (-706 *3))
+ (-4 *3 (-311)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-650 *4)) (-4 *4 (-856))
+ (-5 *1 (-1197 *4)))))
+(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-283)))))
+(((*1 *2 *3 *1) (-12 (-5 *3 (-1186)) (-5 *2 (-443)) (-5 *1 (-1190)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*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 *1) (-12 (-4 *1 (-311)) (-5 *2 (-777)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))))
-(((*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 (-828)) (-5 *1 (-827)))))
-(((*1 *2 *2 *3 *3)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
-(((*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 *1)
- (-12 (-4 *1 (-701 *3)) (-4 *3 (-1109))
- (-5 *2 (-650 (-2 (|:| -2340 *3) (|:| -3584 (-777))))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1191)) (-5 *1 (-283)))))
-(((*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 *1 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
- (-4 *4 (-378 *2)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-1058)) (-5 *2 (-1277 *3)) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1253 *3)))))
-(((*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 *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 *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 (-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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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 *2) (-12 (-5 *2 (-1168)) (-4 *1 (-395)))))
-(((*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 *3)
- (-12 (-5 *3 (-1186))
+ (-12 (-5 *3 (-413 (-959 *5))) (-5 *4 (-1101 (-849 (-320 *5))))
+ (-4 *5 (-13 (-311) (-148) (-1047 (-570)) (-645 (-570))))
(-5 *2
- (-2 (|:| |zeros| (-1166 (-227))) (|:| |ones| (-1166 (-227)))
- (|:| |singularities| (-1166 (-227)))))
- (-5 *1 (-105)))))
-(((*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 *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))))
- ((*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))))
- ((*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))))
+ (-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 (-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))))
- ((*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)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
-(((*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 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-555))))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-1168)) (-4 *1 (-369 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-928))
- (-5 *2 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2268 (-1129))))))
- (-5 *1 (-351 *4)) (-4 *4 (-354)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-650 (-899 *3))) (-5 *1 (-899 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *3)
- (-12 (-5 *2 (-424 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-570)))))
-(((*1 *1) (-5 *1 (-145))))
-(((*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 *3 (-695 (-413 (-570)))) (-5 *2 (-650 *4)) (-5 *1 (-785 *4))
- (-4 *4 (-13 (-368) (-854))))))
-(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-497)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*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)))))
+ (-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)
+ (-2895
+ (-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 -1755 ((-650 *2) *3)))
+ (|has| *3 (-15 -2023 (*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)
+ (-2895
+ (-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 -1755 ((-650 *2) *3)))
+ (|has| *3 (-15 -2023 (*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)
+ (-2895
+ (-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 -1755 ((-650 *2) *3)))
+ (|has| *3 (-15 -2023 (*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 *3) (-12 (-5 *3 (-777)) (-5 *2 (-1282)) (-5 *1 (-384))))
+ ((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-384)))))
(((*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 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-523)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))))
-(((*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)))))
+ (-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 *2 *3)
- (-12 (-5 *2 (-1182 (-570))) (-5 *1 (-949)) (-5 *3 (-570)))))
-(((*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 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*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 *3)
- (-12 (-5 *2 (-650 (-777))) (-5 *3 (-112)) (-5 *1 (-1174 *4 *5))
- (-14 *4 (-928)) (-4 *5 (-1058)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*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 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-486)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-899 *4)) (-4 *4 (-1109)) (-4 *2 (-1109))
- (-5 *1 (-896 *4 *2)))))
-(((*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 *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 *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 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
- (-5 *1 (-178 *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 *1) (-5 *1 (-584))))
-(((*1 *2 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1205)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+ (-12 (-4 *4 (-38 (-413 (-570))))
+ (-5 *2 (-2 (|:| -2869 (-1166 *4)) (|:| -2879 (-1166 *4))))
+ (-5 *1 (-1172 *4)) (-5 *3 (-1166 *4)))))
+(((*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 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-4 *1 (-107 *3)))))
+ (-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 *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 *3)
(-12 (-5 *2 (-650 (-959 *4))) (-5 *3 (-650 (-1186))) (-4 *4 (-458))
(-5 *1 (-925 *4)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-369 *3 *2)) (-4 *3 (-1109)) (-4 *2 (-1109)))))
-(((*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540))))
- ((*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))))
-(((*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)))))
-(((*1 *1 *1) (-12 (-4 *1 (-662 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*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 *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 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4322 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *1) (-5 *1 (-603))))
-(((*1 *2 *2 *3 *3 *4)
- (-12 (-5 *4 (-777)) (-4 *3 (-562)) (-5 *1 (-978 *3 *2))
- (-4 *2 (-1253 *3)))))
-(((*1 *1) (-5 *1 (-829))))
-(((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-655 *3 *4 *5)) (-4 *3 (-1109))
- (-4 *4 (-23)) (-14 *5 *4))))
+ (-12 (-5 *2 (-650 (-788 *3))) (-5 *1 (-788 *3)) (-4 *3 (-562))
+ (-4 *3 (-1058)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
(((*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)))))
-(((*1 *2) (-12 (-5 *2 (-849 (-570))) (-5 *1 (-540))))
- ((*1 *1) (-12 (-5 *1 (-849 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1 *1 *1) (-5 *1 (-868))) ((*1 *1 *1 *1) (-5 *1 (-868)))
- ((*1 *1 *1) (-5 *1 (-868))))
-(((*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 *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 *1 *1 *2) (-12 (-4 *1 (-408)) (-5 *2 (-777))))
- ((*1 *1 *1) (-4 *1 (-408))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-474)) (-5 *4 (-928)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*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 (-1282)) (-5 *1 (-442)))))
-(((*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 (-5 *2 (-650 (-570))) (-5 *1 (-278)))))
-(((*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) (|:| -1510 *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))
+ (-12
(-5 *2
- (-2 (|:| |answer| (-413 *6)) (|:| -1510 (-413 *6))
- (|:| |specpart| (-413 *6)) (|:| |polypart| *6)))
- (-5 *1 (-569 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *1 *2 *3)
- (-12 (-5 *2 (-474)) (-5 *3 (-650 (-266))) (-5 *1 (-1278))))
- ((*1 *1 *1) (-5 *1 (-1278))))
-(((*1 *1 *1)
- (|partial| -12 (-4 *1 (-372 *2)) (-4 *2 (-174)) (-4 *2 (-562))))
- ((*1 *1 *1) (|partial| -4 *1 (-728))))
-(((*1 *2) (-12 (-5 *2 (-1142 (-227))) (-5 *1 (-1210)))))
-(((*1 *2 *1 *2 *3)
- (|partial| -12 (-5 *2 (-1168)) (-5 *3 (-570)) (-5 *1 (-1072)))))
+ (-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 *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 -4402 ((-1134 *3 (-618 $)) $))
+ (-15 -4416 ((-1134 *3 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *3 (-618 $))))))))))
(((*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)
- (-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 *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 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
-(((*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 *5 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112))
- (-5 *2 (-1044)) (-5 *1 (-751)))))
+ (-12 (-4 *4 (-562)) (-5 *2 (-965 *3)) (-5 *1 (-1173 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *1 *3 *3)
+ (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
(((*1 *1 *1 *2)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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 *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 *1)
- (-12 (-4 *2 (-368)) (-4 *3 (-799)) (-4 *4 (-856))
- (-5 *1 (-510 *2 *3 *4 *5)) (-4 *5 (-956 *2 *3 *4)))))
+ (-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 (-2570 *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) (-12 (-4 *1 (-311)) (-5 *2 (-777)))))
+(((*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 *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 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *3 *3)
- (|partial| -12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| -2573 *3) (|:| -3691 *3))) (-5 *1 (-1248 *4 *3))
- (-4 *3 (-1253 *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 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-135)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
- (-5 *2 (-1182 *3)))))
-(((*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 (-2 (|:| -3128 *1) (|:| -4436 *1) (|:| |associate| *1)))
- (-4 *1 (-562)))))
-(((*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 *3 *2)
- (-12 (-5 *2 (-880)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
-(((*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 *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 *1 *1) (-12 (-4 *1 (-562)) (-5 *2 (-112)))))
-(((*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 *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 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*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 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*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 *2 *3)
- (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *3 (-650 (-880)))
- (-5 *1 (-474)))))
-(((*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 (-928))) (-5 *1 (-890))))
- ((*1 *1 *1) (-5 *1 (-980)))
- ((*1 *1 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
-(((*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 (-372 *3)) (-4 *3 (-174)) (-4 *3 (-562))
- (-5 *2 (-1182 *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 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-173))))))
-(((*1 *2 *1 *3)
- (-12 (-4 *1 (-866)) (-5 *2 (-697 (-1235))) (-5 *3 (-1235)))))
-(((*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 (-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 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-400)))))
-(((*1 *2 *3) (-12 (-5 *3 (-227)) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
-(((*1 *1 *1) (-4 *1 (-1153))))
-(((*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)
- (|partial| -12
- (-5 *2 (-2 (|:| -3897 (-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)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-122 *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)))))
-(((*1 *1 *1 *1) (-12 (-4 *1 (-391 *2)) (-4 *2 (-1109)))))
+ (-12 (-5 *2 (-171 *4)) (-5 *1 (-183 *4 *3))
+ (-4 *4 (-13 (-368) (-854))) (-4 *3 (-1253 *2)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -3801 *4) (|:| -2130 (-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 *2 *1)
- (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
-(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1294 *3 *4)) (-4 *3 (-856)) (-4 *4 (-1058))
- (-5 *2 (-2 (|:| |k| (-825 *3)) (|:| |c| *4))))))
-(((*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 *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 (-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 *1 *2) (-12 (-5 *2 (-185 (-251))) (-5 *1 (-250)))))
+ (-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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *2 *3)
- (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570)))
- (-5 *2 (-1277 (-570))) (-5 *1 (-1304 *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 *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)))))
+ (-12 (-5 *3 (-1186)) (-5 *2 (-542)) (-5 *1 (-541 *4))
+ (-4 *4 (-1227)))))
(((*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)))))
+ (-12 (-4 *3 (-1058)) (-5 *2 (-650 *1)) (-4 *1 (-1143 *3)))))
(((*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 *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 *2 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-1232))))))
-(((*1 *2 *1) (-12 (-4 *1 (-1109)) (-5 *2 (-1168)))))
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -4341 *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 *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 *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 *1) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109))))
- ((*1 *1 *2) (-12 (-5 *1 (-128 *2)) (-4 *2 (-1109)))))
-(((*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 *1 *1 *1) (-5 *1 (-868))))
-(((*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 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+ (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
+ (-4 *3 (-13 (-368) (-1212) (-1011))))))
+(((*1 *1 *2 *3)
+ (-12 (-5 *3 (-1166 *2)) (-4 *2 (-311)) (-5 *1 (-176 *2)))))
+(((*1 *2 *3)
+ (|partial| -12 (-4 *2 (-1109)) (-5 *1 (-1204 *3 *2)) (-4 *3 (-1109)))))
(((*1 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| |fn| (-320 (-227))) (|:| -2438 (-650 (-227)))
- (|:| |lb| (-650 (-849 (-227)))) (|:| |cf| (-650 (-320 (-227))))
- (|:| |ub| (-650 (-849 (-227))))))
- (-5 *1 (-270)))))
-(((*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 *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)))))
+ (-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 *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 *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)
- (-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))))
+ (-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 *4 (-916)) (-4 *5 (-1253 *4)) (-5 *2 (-424 (-1182 *5)))
- (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))))
-(((*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 *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) (|:| -3684 *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)) (|:| -3684 *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) (|:| -3684 *9))))
- (-5 *1 (-1081 *6 *7 *4 *8 *9)))))
-(((*1 *2 *3 *4 *5)
- (-12 (-5 *3 (-2 (|:| |totdeg| (-777)) (|:| -3423 *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)))))
+ (-12 (-4 *1 (-347 *3 *4 *5)) (-4 *3 (-1231)) (-4 *4 (-1253 *3))
+ (-4 *5 (-1253 (-413 *4))) (-5 *2 (-112)))))
+(((*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-695 (-413 (-959 (-570))))) (-5 *2 (-650 (-320 (-570))))
- (-5 *1 (-1040)))))
+ (-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) (|partial| -12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
+(((*1 *2 *1 *3)
+ (-12 (-5 *3 (-570)) (-4 *1 (-327 *4 *2)) (-4 *4 (-1109))
+ (-4 *2 (-132)))))
+(((*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)
+ (-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 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
(((*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 *1) (-5 *1 (-142))) ((*1 *1 *1) (-5 *1 (-145)))
- ((*1 *1 *1) (-4 *1 (-1153))))
-(((*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 *2 (-227)) (-5 *1 (-228))))
- ((*1 *2 *2) (-12 (-5 *2 (-171 (-227))) (-5 *1 (-228)))))
-(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
+ (-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) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*1 *1 *2)
- (-12 (-5 *2 (-695 *4)) (-4 *4 (-1058)) (-5 *1 (-1151 *3 *4))
- (-14 *3 (-777)))))
-(((*1 *2 *2 *2)
- (-12 (-4 *3 (-1227)) (-5 *1 (-184 *3 *2)) (-4 *2 (-680 *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 *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 *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))))))
+ (|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) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-588)))))
(((*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))))
+ (|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)
- (-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 *3)
- (-12
- (-5 *3
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
+ (|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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-334)))))
+(((*1 *1 *1 *1) (-4 *1 (-976))))
+(((*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 *2 *1) (-12 (-5 *2 (-828)) (-5 *1 (-827)))))
+(((*1 *2 *1) (-12 (-4 *1 (-773 *3)) (-4 *3 (-1109)) (-5 *2 (-112)))))
+(((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *1 (-1170 *3)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-1208)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-334)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+(((*1 *2 *1) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-55)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-1186)) (-5 *3 (-384)) (-5 *1 (-1072)))))
+(((*1 *1 *1 *1) (|partial| -4 *1 (-132))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1189)) (-5 *3 (-1186)))))
+(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *2 *3 *4)
+ (|partial| -12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570)))
+ (-5 *2 (-1277 (-413 (-570)))) (-5 *1 (-1305 *4)))))
+(((*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 (|:| |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 *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 *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 (-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)))))
+ (-3 (|:| |ans| (-2 (|:| |ans| *3) (|:| |nosol| (-112))))
+ (|:| -4308
+ (-2 (|:| |b| *3) (|:| |c| *3) (|:| |m| *4) (|:| |alpha| *3)
+ (|:| |beta| *3)))))
+ (-5 *1 (-1024 *6 *3)))))
+(((*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 *3) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+(((*1 *1 *1) (-5 *1 (-227))) ((*1 *1 *1) (-5 *1 (-384)))
+ ((*1 *1) (-5 *1 (-384))))
+(((*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)
+ (-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 *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 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
+ ((*1 *1 *1 *1) (-5 *1 (-868))))
(((*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)))))
@@ -13636,10 +13486,10 @@
(-12 (-4 *1 (-387 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-1109))))
((*1 *1 *1)
(-12 (-14 *2 (-650 (-1186))) (-4 *3 (-174))
- (-4 *5 (-240 (-2569 *2) (-777)))
+ (-4 *5 (-240 (-2570 *2) (-777)))
(-14 *6
- (-1 (-112) (-2 (|:| -2268 *4) (|:| -3357 *5))
- (-2 (|:| -2268 *4) (|:| -3357 *5))))
+ (-1 (-112) (-2 (|:| -2267 *4) (|:| -3994 *5))
+ (-2 (|:| -2267 *4) (|:| -3994 *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))))
@@ -13655,76 +13505,57 @@
(-4 *2 (-856))))
((*1 *1 *1)
(-12 (-5 *1 (-1300 *2 *3)) (-4 *2 (-1058)) (-4 *3 (-852)))))
-(((*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 *1) (-4 *1 (-976))))
-(((*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)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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)
- (-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) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *2 *3 *3 *3)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
-(((*1 *1) (-5 *1 (-512))))
-(((*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 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
- (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))))
-(((*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) (-5 *1 (-584)))
- ((*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 (-1282)) (-5 *1 (-869))))
- ((*1 *2 *3 *1)
- (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1166 *4))
- (-4 *4 (-1109)) (-4 *4 (-1227)))))
-(((*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 (-1253 (-570)))))
- ((*1 *2 *2 *2 *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))
- (-5 *1 (-923 *3 *4 *5 *2)) (-4 *2 (-956 *5 *3 *4))))
- ((*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 *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 (-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))))
- ((*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 (-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)))))
+ (-4 *4 (-856)))))
+(((*1 *2 *1)
+ (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *2))
+ (-2 (|:| -2267 *5) (|:| -3994 *2))))
+ (-4 *2 (-240 (-2570 *3) (-777))) (-5 *1 (-467 *3 *4 *5 *2 *6 *7))
+ (-4 *5 (-856)) (-4 *7 (-956 *4 *2 (-870 *3))))))
+(((*1 *1) (-5 *1 (-1072))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1253 (-570))) (-5 *1 (-492 *3)))))
+(((*1 *1 *2 *3 *4)
+ (-12 (-14 *5 (-650 (-1186))) (-4 *2 (-174))
+ (-4 *4 (-240 (-2570 *5) (-777)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2267 *3) (|:| -3994 *4))
+ (-2 (|:| -2267 *3) (|:| -3994 *4))))
+ (-5 *1 (-467 *5 *2 *3 *4 *6 *7)) (-4 *3 (-856))
+ (-4 *7 (-956 *2 *4 (-870 *5))))))
+(((*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) (-12 (-5 *3 (-227)) (-5 *2 (-705)) (-5 *1 (-309)))))
+(((*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)
+ (-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 *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))))
@@ -13756,14 +13587,14 @@
(-12 (-5 *3 (-1186)) (-5 *2 (-247 (-1168))) (-5 *1 (-216 *4))
(-4 *4
(-13 (-856)
- (-10 -8 (-15 -1941 ((-1168) $ *3)) (-15 -4147 ((-1282) $))
- (-15 -2176 ((-1282) $)))))))
+ (-10 -8 (-15 -1942 ((-1168) $ *3)) (-15 -4150 ((-1282) $))
+ (-15 -2353 ((-1282) $)))))))
((*1 *1 *1 *2)
(-12 (-5 *2 (-998)) (-5 *1 (-216 *3))
(-4 *3
(-13 (-856)
- (-10 -8 (-15 -1941 ((-1168) $ (-1186))) (-15 -4147 ((-1282) $))
- (-15 -2176 ((-1282) $)))))))
+ (-10 -8 (-15 -1942 ((-1168) $ (-1186))) (-15 -4150 ((-1282) $))
+ (-15 -2353 ((-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))))
@@ -13850,67 +13681,97 @@
(-12 (-5 *2 "rest") (-4 *1 (-1265 *3)) (-4 *3 (-1227))))
((*1 *2 *1 *3)
(-12 (-5 *3 "first") (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
-(((*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)))))
-(((*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 *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) (-5 *1 (-584)))
+ ((*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 (-1282)) (-5 *1 (-869))))
+ ((*1 *2 *3 *1)
+ (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1166 *4))
+ (-4 *4 (-1109)) (-4 *4 (-1227)))))
+(((*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 (-1253 (-570)))))
+ ((*1 *2 *2 *2 *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))
+ (-5 *1 (-923 *3 *4 *5 *2)) (-4 *2 (-956 *5 *3 *4))))
+ ((*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 *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 (-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))))
+ ((*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 (-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 *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 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))))
-(((*1 *1) (-5 *1 (-443))))
+(((*1 *2 *3) (-12 (-5 *3 (-928)) (-5 *2 (-1168)) (-5 *1 (-792)))))
+(((*1 *2)
+ (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1282))
+ (-5 *1 (-439 *3 *4)) (-4 *4 (-436 *3)))))
(((*1 *2 *3)
- (-12
- (-5 *3
- (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
- (|:| |expense| (-384)) (|:| |accuracy| (-384))
- (|:| |intermediateResults| (-384))))
- (-5 *2 (-1044)) (-5 *1 (-309)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))))
-(((*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 *4)
- (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227)))
- (-5 *2 (-1279)) (-5 *1 (-260)))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
- (-4 *5 (-240 (-2569 *3) (-777)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2268 *2) (|:| -3357 *5))
- (-2 (|:| -2268 *2) (|:| -3357 *5))))
- (-4 *2 (-856)) (-5 *1 (-467 *3 *4 *2 *5 *6 *7))
- (-4 *7 (-956 *4 *5 (-870 *3))))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-127 *3)))))
-(((*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 *3 (-1277 (-695 *4))) (-4 *4 (-174))
+ (-5 *2 (-1277 (-695 (-959 *4)))) (-5 *1 (-191 *4)))))
+(((*1 *2 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-1015)))))
+(((*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 *2 *1 *3) (-12 (-4 *1 (-34)) (-5 *3 (-777)) (-5 *2 (-112)))))
+(((*1 *2 *3) (-12 (-5 *3 (-384)) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
+(((*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 *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)))))
@@ -13920,10 +13781,10 @@
((*1 *2 *1)
(-12 (-4 *1 (-387 *2 *3)) (-4 *3 (-1109)) (-4 *2 (-1058))))
((*1 *2 *1)
- (-12 (-14 *3 (-650 (-1186))) (-4 *5 (-240 (-2569 *3) (-777)))
+ (-12 (-14 *3 (-650 (-1186))) (-4 *5 (-240 (-2570 *3) (-777)))
(-14 *6
- (-1 (-112) (-2 (|:| -2268 *4) (|:| -3357 *5))
- (-2 (|:| -2268 *4) (|:| -3357 *5))))
+ (-1 (-112) (-2 (|:| -2267 *4) (|:| -3994 *5))
+ (-2 (|:| -2267 *4) (|:| -3994 *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))))
@@ -13940,58 +13801,50 @@
((*1 *1 *1 *2)
(-12 (-4 *1 (-1074 *3 *4 *2)) (-4 *3 (-1058)) (-4 *4 (-799))
(-4 *2 (-856)))))
-(((*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 *1) (-12 (-5 *1 (-1035 *2)) (-4 *2 (-1227)))))
(((*1 *1 *1 *1) (-12 (-5 *1 (-650 *2)) (-4 *2 (-1227)))))
-(((*1 *2)
- (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
- (-4 *4 (-423 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
+(((*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 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-4 *3 (-13 (-368) (-148)))
+ (-5 *2 (-650 (-2 (|:| -3994 (-777)) (|:| -2289 *4) (|:| |num| *4))))
+ (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))))
+(((*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) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551))))
+ ((*1 *1 *1) (-4 *1 (-1069))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058))
- (-5 *3 (-570)))))
-(((*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)))))
- ((*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 *1 *2 *1)
- (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058))
- (-4 *4 (-798)))))
-(((*1 *2 *3 *2 *4)
- (-12 (-5 *3 (-695 *2)) (-5 *4 (-777))
- (-4 *2 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $)))))
- (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-143 *3 *4 *2))
- (-4 *2 (-378 *4))))
- ((*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))))
- ((*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)))))
+ (|partial| -12 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551))))
+ ((*1 *1 *1) (-4 *1 (-1069))))
+(((*1 *1 *1 *2 *1)
+ (-12 (-5 *2 (-570)) (-5 *1 (-1166 *3)) (-4 *3 (-1227))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-650 (-777)))) (-5 *1 (-911 *3)) (-4 *3 (-1109)))))
(((*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))))
((*1 *2 *1)
(-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
- (-4 *6 (-240 (-2569 *3) (-777)))
+ (-4 *6 (-240 (-2570 *3) (-777)))
(-14 *7
- (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *6))
- (-2 (|:| -2268 *5) (|:| -3357 *6))))
+ (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *6))
+ (-2 (|:| -2267 *5) (|:| -3994 *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)
@@ -14000,174 +13853,181 @@
((*1 *1 *1)
(-12 (-4 *1 (-982 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-798))
(-4 *4 (-856)))))
-(((*1 *2 *3 *3)
- (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890))
- (-5 *3 (-650 (-570))))))
-(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
-(((*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 *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 *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 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*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 (-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)))))
+ (-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 (-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)))))
+ (-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 (-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 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189))))
- ((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1190)))))
-(((*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)
- (-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)
- (-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 *1)
- (-12 (-5 *2 (-2 (|:| -4322 *3) (|:| |coef1| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
-(((*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)))))
+ (-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)))))
+(((*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 *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 *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 *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 *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 (-1253 *6))
- (-5 *2
- (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6))
- (-2 (|:| -2616 (-413 *7)) (|:| |coeff| (-413 *7))) "failed"))
- (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
-(((*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 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-542)))))
+ (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-650 (-227)))
+ (-5 *1 (-474)))))
+(((*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 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*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 *1 *2)
+ (-12 (-5 *2 (-1182 *3)) (-4 *3 (-1058)) (-4 *1 (-1253 *3)))))
+(((*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 (-1212)))))
(((*1 *1 *2) (-12 (-5 *2 (-650 *1)) (-4 *1 (-458))))
((*1 *1 *1 *1) (-4 *1 (-458))))
(((*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 *3 *2)
- (-12 (-5 *3 (-777)) (-5 *1 (-862 *2)) (-4 *2 (-38 (-413 (-570))))
- (-4 *2 (-174)))))
-(((*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 *1 *3)
- (|partial| -12 (-5 *3 (-1186)) (-4 *4 (-1058)) (-4 *4 (-1109))
- (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3357 (-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)) (|:| -3357 (-570))))
- (-4 *1 (-436 *4))))
- ((*1 *2 *1)
- (|partial| -12 (-4 *3 (-1121)) (-4 *3 (-1109))
- (-5 *2 (-2 (|:| |var| (-618 *1)) (|:| -3357 (-570))))
- (-4 *1 (-436 *3))))
- ((*1 *2 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |val| (-899 *3)) (|:| -3357 (-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) (|:| -3357 (-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) (|:| -3357 (-570))))
- (-5 *1 (-957 *4 *5 *6 *7 *3))
- (-4 *3
- (-13 (-368)
- (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $))
- (-15 -4413 (*7 $))))))))
-(((*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 *3)
- (-12 (-5 *1 (-433 *3 *2)) (-4 *3 (-13 (-174) (-38 (-413 (-570)))))
- (-4 *2 (-13 (-856) (-21))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*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 *3)
- (-12 (-4 *4 (-13 (-562) (-148))) (-5 *2 (-650 *3))
- (-5 *1 (-1247 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *2 *3 *3 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-760)))))
+(((*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 *1 *2)
+ (-12 (-5 *2 (-695 *5)) (-4 *5 (-1058)) (-5 *1 (-1063 *3 *4 *5))
+ (-14 *3 (-777)) (-14 *4 (-777)))))
+(((*1 *1 *2)
+ (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))))
(((*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)))))
+ (-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) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
+(((*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 *2) (-12 (-5 *2 (-570)) (-5 *1 (-934)))))
(((*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)))))
+ (-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 *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 *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 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868)))))
(((*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 *1 *1)
- (-12 (-4 *1 (-693 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-378 *2))
- (-4 *4 (-378 *2)))))
-(((*1 *2 *1) (-12 (-4 *1 (-373)) (-5 *2 (-928))))
- ((*1 *2 *3)
- (-12 (-5 *3 (-1277 *4)) (-4 *4 (-354)) (-5 *2 (-928))
- (-5 *1 (-534 *4)))))
-(((*1 *2 *3) (-12 (-5 *3 (-828)) (-5 *2 (-52)) (-5 *1 (-835)))))
+(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+(((*1 *1 *1 *1)
+ (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132))
+ (-4 *3 (-798)))))
+(((*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)
+ (-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 *1 *1) (-12 (-5 *1 (-424 *2)) (-4 *2 (-562)))))
+(((*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 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-1166 (-2 (|:| |k| (-570)) (|:| |c| *3))))
- (-5 *1 (-601 *3)) (-4 *3 (-1058)))))
-(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124))))
-(((*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 *1) (-12 (-4 *1 (-1054 *2)) (-4 *2 (-23)))))
-(((*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)))))
+ (-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) (-4 *1 (-245)))
((*1 *1 *1)
(-12 (-4 *2 (-174)) (-5 *1 (-293 *2 *3 *4 *5 *6 *7))
@@ -14175,7 +14035,7 @@
(-14 *6 (-1 (-3 *4 "failed") *4 *4))
(-14 *7 (-1 (-3 *3 "failed") *3 *3 *4))))
((*1 *1 *1)
- (-2892 (-12 (-5 *1 (-298 *2)) (-4 *2 (-368)) (-4 *2 (-1227)))
+ (-2895 (-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 (-1277 *3)) (-4 *3 (-354)) (-5 *1 (-534 *3))))
@@ -14185,116 +14045,142 @@
(-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 *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)))))
+ (-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) (-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 *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) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
-(((*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 *3 *3 *3 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
+(((*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 *3 *4)
+ (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
+(((*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 (|:| -3941 (-777)) (|:| -1743 *8)))
+ (-5 *1 (-918 *4 *5 *6 *7 *8))))
((*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")) (|:| -1972 (-650 *6)))
- *7 *6))
- (-4 *6 (-368)) (-4 *7 (-662 *6))
- (-5 *2
- (-2 (|:| |particular| (-3 (-1277 *6) "failed"))
- (|:| -1972 (-650 (-1277 *6)))))
- (-5 *1 (-819 *6 *7)) (-5 *4 (-1277 *6)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
+ (|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 (|:| -3941 (-777)) (|:| -1743 *6)))
+ (-5 *1 (-919 *4 *5 *6)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+ (-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 (-1102 *2)) (-4 *2 (-1227)))))
+(((*1 *1) (-5 *1 (-158)))
+ ((*1 *2 *1) (-12 (-4 *1 (-1053 *2)) (-4 *2 (-23)))))
+(((*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 *3)
+ (-12 (-5 *3 (-1277 (-320 (-227))))
+ (-5 *2
+ (-2 (|:| |additions| (-570)) (|:| |multiplications| (-570))
+ (|:| |exponentiations| (-570)) (|:| |functionCalls| (-570))))
+ (-5 *1 (-309)))))
(((*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 *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))))))
+ (-12 (-5 *3 (-912 *4)) (-4 *4 (-1109)) (-5 *2 (-650 (-777)))
+ (-5 *1 (-911 *4)))))
+(((*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 -4452)))))))
+(((*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 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-1150 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34))))))
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
(((*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 *2 *2)
- (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
- (-5 *1 (-178 *3)))))
-(((*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 *6)
- (-12 (-5 *4 (-112)) (-5 *5 (-1111 (-777))) (-5 *6 (-777))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-424 *3)) (-4 *3 (-562)) (-5 *1 (-425 *3)))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
(-5 *2
- (-2 (|:| |contp| (-570))
- (|:| -3477 (-650 (-2 (|:| |irr| *3) (|:| -3563 (-570)))))))
- (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
-(((*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)))))
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354))
+ (-5 *2 (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129))))))
+ (-5 *1 (-351 *4)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-653 *3)) (-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 *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)))))
+ (-12 (-5 *2 (-112)) (-5 *3 (-650 (-266))) (-5 *1 (-264)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
(((*1 *2 *3)
- (-12 (-5 *2 (-1 (-950 *3) (-950 *3))) (-5 *1 (-178 *3))
- (-4 *3 (-13 (-368) (-1212) (-1011))))))
-(((*1 *2)
- (-12 (-5 *2 (-1282)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-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 *1 *2)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
@@ -14329,14 +14215,16 @@
((*1 *1 *2 *3)
(-12 (-5 *2 (-413 (-570))) (-4 *4 (-1058)) (-4 *1 (-1260 *4 *3))
(-4 *3 (-1237 *4)))))
+(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
(((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -3106)) (-5 *2 (-112)) (-5 *1 (-623))))
+ (-12 (-5 *3 (|[\|\|]| -3109)) (-5 *2 (-112)) (-5 *1 (-623))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| -1664)) (-5 *2 (-112)) (-5 *1 (-623))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -1954)) (-5 *2 (-112)) (-5 *1 (-623))))
+ (-12 (-5 *3 (|[\|\|]| -1953)) (-5 *2 (-112)) (-5 *1 (-623))))
((*1 *2 *1 *3)
- (-12 (-5 *3 (|[\|\|]| -1623)) (-5 *2 (-112)) (-5 *1 (-697 *4))
+ (-12 (-5 *3 (|[\|\|]| -1624)) (-5 *2 (-112)) (-5 *1 (-697 *4))
(-4 *4 (-619 (-868)))))
((*1 *2 *1 *3)
(-12 (-5 *3 (|[\|\|]| *4)) (-4 *4 (-619 (-868))) (-5 *2 (-112))
@@ -14419,48 +14307,108 @@
(-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 *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 *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 *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)
- (-12 (-5 *2 (-112)) (-5 *1 (-1204 *3 *4)) (-4 *3 (-1109))
- (-4 *4 (-1109)))))
+ (-12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-799))
+ (-4 *5 (-856)) (-5 *2 (-112)))))
+(((*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)) (|:| -3687 *4))))
+ (-5 *1 (-1081 *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)) (|:| -3687 *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)) (|:| -3687 *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)) (|:| -3687 *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)) (|:| -3687 *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)) (|:| -3687 *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)) (|:| -3687 *4))))))
+ (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
(((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-868)))))
+(((*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 *1 *2 *3 *1)
+ (-12 (-14 *4 (-650 (-1186))) (-4 *2 (-174))
+ (-4 *3 (-240 (-2570 *4) (-777)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2267 *5) (|:| -3994 *3))
+ (-2 (|:| -2267 *5) (|:| -3994 *3))))
+ (-5 *1 (-467 *4 *2 *5 *3 *6 *7)) (-4 *5 (-856))
+ (-4 *7 (-956 *2 *3 (-870 *4))))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-1144))) (-5 *1 (-1099)))))
+(((*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 *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 *3)
- (-12 (-5 *3 (-650 (-2 (|:| -2308 *4) (|:| -3223 (-570)))))
- (-4 *4 (-1109)) (-5 *2 (-1 *4)) (-5 *1 (-1026 *4)))))
-(((*1 *2 *2 *2) (-12 (-5 *1 (-160 *2)) (-4 *2 (-551)))))
-(((*1 *2 *2 *2 *3)
- (-12 (-5 *2 (-650 (-570))) (-5 *3 (-695 (-570))) (-5 *1 (-1119)))))
-(((*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 *3 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1186)) (-5 *2 (-542)) (-5 *1 (-541 *4))
- (-4 *4 (-1227)))))
-(((*1 *1 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+ (-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 *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 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
@@ -14495,45 +14443,61 @@
(-4 *3 (-1268 *4))))
((*1 *2 *1)
(-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))))
+(((*1 *2 *1)
+ (-12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1237 *3)))))
(((*1 *1 *1 *1) (-5 *1 (-112))) ((*1 *1 *1 *1) (-4 *1 (-124)))
((*1 *1 *1 *1) (-5 *1 (-1129))))
-(((*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 *1) (-12 (-4 *1 (-841 *3)) (-4 *3 (-1109)) (-5 *2 (-55)))))
-(((*1 *1 *1) (-5 *1 (-227))) ((*1 *1 *1) (-5 *1 (-384)))
- ((*1 *1) (-5 *1 (-384))))
-(((*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 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
-(((*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 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1056)))))
+(((*1 *1 *1)
+ (|partial| -12 (-5 *1 (-298 *2)) (-4 *2 (-732)) (-4 *2 (-1227)))))
+(((*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 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
+(((*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 (|:| -4308 (-650 *9)) (|:| -3687 *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 (|:| -4308 (-650 *9)) (|:| -3687 *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)
- (-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 (-512)) (-5 *1 (-115))))
- ((*1 *1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-115)))))
-(((*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 *2 *2 *3)
- (-12 (-4 *3 (-1058)) (-5 *1 (-450 *3 *2)) (-4 *2 (-1253 *3)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| -1942 (-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 (|:| -1942 *1) (|:| |coef2| *1)))
- (-4 *1 (-1074 *3 *4 *5)))))
+ (-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) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311)))))
+(((*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)
+ (-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 *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 *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 (-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 *1 *1)
+ (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
+ (-4 *4 (-856)) (-4 *2 (-458)))))
+(((*1 *1 *1 *1) (-4 *1 (-113))) ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-950 (-227)))) (-5 *1 (-1278)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1186))
(-4 *4 (-13 (-458) (-1047 (-570)) (-645 (-570)))) (-5 *2 (-52))
@@ -14576,80 +14540,78 @@
(-5 *1 (-465 *7 *3))))
((*1 *2 *1)
(-12 (-4 *1 (-1239 *3 *2)) (-4 *3 (-1058)) (-4 *2 (-1268 *3)))))
-(((*1 *1 *1) (-12 (-5 *1 (-899 *2)) (-4 *2 (-1109)))))
-(((*1 *1 *1 *1) (-4 *1 (-113))) ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*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 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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 *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 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1939 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*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 *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)
- (-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)))))
+ (-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 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-871))))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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)) (|:| -3684 *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)) (|:| -3684 *4))))))
- (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
-(((*1 *2 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-753)))))
-(((*1 *1) (-5 *1 (-334))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))
- (-5 *2 (-413 (-570))) (-5 *1 (-1029 *4)) (-4 *4 (-1253 (-570))))))
-(((*1 *1 *2 *2 *2) (-12 (-5 *1 (-889 *2)) (-4 *2 (-1227)))))
-(((*1 *1 *1 *1) (-4 *1 (-113))) ((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4))
- (-4 *4 (-1058)))))
+ (-12 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890)) (-5 *3 (-570)))))
(((*1 *2 *3)
- (-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)))))
+ (-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 *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 *1) (-5 *1 (-334))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1244 *3)) (-4 *3 (-1227)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227))
- (-5 *2 (-650 *3)))))
+ (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
+ (-4 *3 (-1109)))))
+(((*1 *1 *1 *1) (-4 *1 (-113))) ((*1 *1 *1 *1) (-5 *1 (-868))))
+(((*1 *2) (-12 (-5 *2 (-1156 (-1168))) (-5 *1 (-397)))))
(((*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)))))
+ (-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)
+ (-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)
+ (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3))
+ (-4 *3 (-1253 (-413 *4))))))
+(((*1 *2 *3 *4 *5)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5
+ (-1 (-2 (|:| |ans| *6) (|:| -4413 *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) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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 *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)
+ (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
+(((*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 *1) (-12 (-5 *2 (-112)) (-5 *1 (-145)))))
(((*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))))
@@ -14658,73 +14620,104 @@
(-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 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-867))))
- ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-867)))))
-(((*1 *2 *2 *3)
- (-12 (-5 *2 (-1277 *4)) (-5 *3 (-570)) (-4 *4 (-354))
- (-5 *1 (-534 *4)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
- ((*1 *1 *1) (-5 *1 (-868))))
+(((*1 *2 *1) (-12 (-5 *2 (-227)) (-5 *1 (-828)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-695 *3))
+ (-4 *3 (-13 (-311) (-10 -8 (-15 -3871 ((-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 -3871 ((-424 $) $)))))
+ (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+(((*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 *1 *1) (-4 *1 (-113))) ((*1 *1 *1) (-5 *1 (-868))))
-(((*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 *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 *3 *4 *3 *4 *4 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
+ (-5 *1 (-762)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1) (-12 (-5 *2 (-252)) (-5 *1 (-337)))))
+(((*1 *2 *1)
+ (-12 (-4 *2 (-1253 *3)) (-5 *1 (-405 *3 *2))
+ (-4 *3 (-13 (-368) (-148))))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-437 *3 *2)) (-4 *2 (-436 *3)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-570)) (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*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 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *3 *1)
- (|partial| -12 (-5 *3 (-1 (-112) *2)) (-4 *1 (-152 *2))
- (-4 *2 (-1227)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-695 *2)) (-4 *4 (-1253 *2))
- (-4 *2 (-13 (-311) (-10 -8 (-15 -1652 ((-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)))))
+ (|partial| -12 (-5 *2 (-650 (-1182 *4))) (-5 *3 (-1182 *4))
+ (-4 *4 (-916)) (-5 *1 (-669 *4)))))
+(((*1 *2 *2 *3)
+ (|partial| -12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551))))
+ ((*1 *2 *3)
+ (-12 (-5 *2 (-2 (|:| -4409 *3) (|:| -3994 (-777)))) (-5 *1 (-593 *3))
+ (-4 *3 (-551)))))
(((*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 *1) (-12 (-4 *1 (-1296 *3)) (-4 *3 (-368)) (-5 *2 (-112)))))
-(((*1 *2 *3 *4 *3 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-762)))))
-(((*1 *2 *3 *3 *4 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-762)))))
-(((*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 (-868))) (-5 *1 (-868))))
- ((*1 *1 *1 *1) (-5 *1 (-868))))
+ (-12 (-5 *2 (-112)) (-5 *1 (-39 *3)) (-4 *3 (-1253 (-48))))))
+(((*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)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-650 *3)) (-4 *3 (-1227)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-535)))))
-(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-451 *3)) (-4 *3 (-1058)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-333 *3)) (-4 *3 (-368)) (-4 *3 (-373))
- (-5 *2 (-1182 *3)))))
+(((*1 *1) (-5 *1 (-295))))
+(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))))
(((*1 *2 *3 *1)
(|partial| -12 (-4 *1 (-36 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1109))
- (-5 *2 (-2 (|:| -2106 *3) (|:| -2340 *4))))))
-(((*1 *2 *3 *4 *2)
- (-12 (-5 *2 (-650 (-2 (|:| |totdeg| (-777)) (|:| -3423 *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 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-650 (-320 (-227)))) (-5 *2 (-112)) (-5 *1 (-270)))))
-(((*1 *2 *1) (|partial| -12 (-5 *2 (-1182 *1)) (-4 *1 (-1021)))))
-(((*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)))))
+ (-5 *2 (-2 (|:| -2107 *3) (|:| -2340 *4))))))
+(((*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)
+ (|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 -3802 ($ *7)) (-15 -4402 (*7 $))
+ (-15 -4416 (*7 $))))))))
+(((*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 (-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)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1278))))
((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-1191)))))
+(((*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 *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))))
@@ -14832,65 +14825,75 @@
((*1 *1 *1 *2)
(-12 (-5 *2 (-777)) (-4 *1 (-1265 *3)) (-4 *3 (-1227))))
((*1 *2 *1) (-12 (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *3 *3 *3 *3 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))
- (-5 *2 (-1044)) (-5 *1 (-752)))))
-(((*1 *2 *2 *2 *2 *3)
- (-12 (-4 *3 (-562)) (-5 *1 (-978 *3 *2)) (-4 *2 (-1253 *3)))))
-(((*1 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
-(((*1 *2 *1)
- (-12 (-4 *2 (-13 (-854) (-368))) (-5 *1 (-1070 *2 *3))
- (-4 *3 (-1253 *2)))))
-(((*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 *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)
+ (-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"))
+ (|:| -3827 (-650 (-1277 (-413 *8))))))
+ (-5 *1 (-675 *5 *6 *7 *8)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-567)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
(((*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 *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 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-1198 *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) (|:| -3684 *1))))
- (-4 *1 (-1080 *4 *5 *6 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-765)))))
+(((*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 (-1166 *3)) (-5 *1 (-176 *3)) (-4 *3 (-311)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*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) (|partial| -12 (-5 *2 (-650 (-283))) (-5 *1 (-283))))
+ ((*1 *2 *1) (-12 (-5 *2 (-650 (-1191))) (-5 *1 (-1191)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
+ (-5 *1 (-336)))))
(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3684 *4))))
+ (-12 (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3687 *4))))
(-5 *1 (-1150 *3 *4)) (-4 *3 (-13 (-1109) (-34)))
(-4 *4 (-13 (-1109) (-34))))))
-(((*1 *1) (-5 *1 (-1094))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1013 *3)) (-14 *3 (-570)))))
+(((*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)
(-12
(-5 *3
- (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2438 (-650 (-227)))))
+ (-2 (|:| |lfn| (-650 (-320 (-227)))) (|:| -2439 (-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))
@@ -14912,7 +14915,7 @@
(-5 *1 (-957 *4 *5 *6 *7 *3))
(-4 *3
(-13 (-368)
- (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $)))))))
+ (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*7 $)))))))
((*1 *2 *1)
(-12 (-4 *1 (-982 *3 *4 *5)) (-4 *3 (-1058)) (-4 *4 (-798))
(-4 *5 (-856)) (-5 *2 (-650 *5))))
@@ -14922,61 +14925,42 @@
((*1 *2 *3)
(-12 (-5 *3 (-413 (-959 *4))) (-4 *4 (-562)) (-5 *2 (-650 (-1186)))
(-5 *1 (-1052 *4)))))
-(((*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)
- (-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 *2 *2)
- (-12 (-5 *2 (-112)) (-5 *1 (-448 *3)) (-4 *3 (-1253 (-570))))))
+(((*1 *1 *1)
+ (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
+(((*1 *2 *2) (-12 (-5 *1 (-593 *2)) (-4 *2 (-551)))))
(((*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 *3 *4)
- (-12 (-5 *4 (-1186))
- (-4 *5 (-13 (-1047 (-570)) (-458) (-645 (-570))))
- (-5 *2 (-2 (|:| -2395 *3) (|:| |nconst| *3))) (-5 *1 (-573 *5 *3))
- (-4 *3 (-13 (-27) (-1212) (-436 *5))))))
-(((*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 *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 *3 *3)
- (|partial| -12 (-4 *4 (-13 (-368) (-148) (-1047 (-570))))
- (-4 *5 (-1253 *4))
- (-5 *2 (-2 (|:| -2616 (-413 *5)) (|:| |coeff| (-413 *5))))
- (-5 *1 (-574 *4 *5)) (-5 *3 (-413 *5)))))
-(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *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 *4 *3 *3 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-757)))))
-(((*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)) (|:| -3684 *1))))
- (-4 *1 (-1080 *4 *5 *6 *3)))))
+(((*1 *2 *3)
+ (|partial| -12 (-5 *3 (-618 *4)) (-4 *4 (-1109)) (-4 *2 (-1109))
+ (-5 *1 (-617 *2 *4)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
+ (-4 *4 (-354)))))
+(((*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 *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))))
+ ((*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 *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)
+ (-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 *2)
(-12 (-5 *3 (-1182 (-413 (-1182 *2)))) (-5 *4 (-618 *2))
(-4 *2 (-13 (-436 *5) (-27) (-1212)))
@@ -14993,16 +14977,27 @@
(-4 *6 (-1058))
(-4 *2
(-13 (-368)
- (-10 -8 (-15 -3799 ($ *7)) (-15 -4399 (*7 $)) (-15 -4413 (*7 $)))))
+ (-10 -8 (-15 -3802 ($ *7)) (-15 -4402 (*7 $)) (-15 -4416 (*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))
(-5 *2 (-413 (-959 *5))) (-5 *1 (-1052 *5)) (-4 *5 (-562)))))
+(((*1 *1 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1186)) (-5 *1 (-542))))
+ ((*1 *2 *3 *2)
+ (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542)))))
+ ((*1 *2 *3 *2 *2)
+ (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542)))))
+ ((*1 *2 *3 *2 *2 *2)
+ (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542)))))
+ ((*1 *2 *3 *2 *4)
+ (-12 (-5 *4 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-710 *3))
+ (-4 *3 (-620 (-542))))))
(((*1 *1 *2 *1)
- (-12 (|has| *1 (-6 -4449)) (-4 *1 (-152 *2)) (-4 *2 (-1227))
+ (-12 (|has| *1 (-6 -4452)) (-4 *1 (-152 *2)) (-4 *2 (-1227))
(-4 *2 (-1109))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *3))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *3))
(-4 *3 (-1227))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *1 (-680 *3)) (-4 *3 (-1227))))
@@ -15014,300 +15009,319 @@
((*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 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))))
-(((*1 *1 *1 *2 *3)
- (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-1186)) (-5 *1 (-542))))
- ((*1 *2 *3 *2)
- (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542)))))
- ((*1 *2 *3 *2 *2)
- (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542)))))
- ((*1 *2 *3 *2 *2 *2)
- (-12 (-5 *2 (-1186)) (-5 *1 (-710 *3)) (-4 *3 (-620 (-542)))))
- ((*1 *2 *3 *2 *4)
- (-12 (-5 *4 (-650 (-1186))) (-5 *2 (-1186)) (-5 *1 (-710 *3))
- (-4 *3 (-620 (-542))))))
-(((*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 *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 *1 *2) (-12 (-5 *2 (-650 (-145))) (-5 *1 (-142))))
- ((*1 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-142)))))
(((*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)))))
+ (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-650 (-650 (-173)))))))
+(((*1 *1) (-5 *1 (-474))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-650 *3)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*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 (-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)))))
+ (-12 (-5 *3 (-928)) (-5 *2 (-1277 (-1277 (-570)))) (-5 *1 (-472)))))
+(((*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 *3)
+ (-12 (-5 *3 (-1144)) (-5 *2 (-697 (-284))) (-5 *1 (-169)))))
+(((*1 *1 *1 *2)
+ (-12 (-5 *1 (-1149 *3 *2)) (-4 *3 (-13 (-1109) (-34)))
+ (-4 *2 (-13 (-1109) (-34))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-512)) (-5 *2 (-112)) (-5 *1 (-115)))))
(((*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)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-4 *1 (-910 *3)))))
+ (-12 (-5 *2 (-173)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *1 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
+(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+(((*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 *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 *3)
- (-12 (-4 *4 (-856)) (-5 *2 (-1198 (-650 *4))) (-5 *1 (-1197 *4))
- (-5 *3 (-650 *4)))))
-(((*1 *1 *1) (-5 *1 (-1072))))
-(((*1 *2 *3) (-12 (-5 *3 (-1186)) (-5 *2 (-1282)) (-5 *1 (-1189)))))
+ (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
(((*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 *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 *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)))))
+ (-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 *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)))))
+ (-12 (-5 *2 (-650 (-1182 (-570)))) (-5 *1 (-193)) (-5 *3 (-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 *3 *4)
+ (-12 (-4 *5 (-458)) (-4 *6 (-799)) (-4 *7 (-856))
+ (-4 *3 (-1074 *5 *6 *7))
+ (-5 *2 (-650 (-2 (|:| |val| *3) (|:| -3687 *4))))
+ (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
+(((*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 *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 *3 *3) (-12 (-5 *3 (-570)) (-5 *2 (-112)) (-5 *1 (-559)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-5 *3 (-570)))))
+(((*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)))
+ ((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-4 *2 (-13 (-27) (-1212) (-436 *3) (-10 -8 (-15 -3802 ($ *4)))))
+ (-4 *4 (-854))
+ (-4 *5
+ (-13 (-1255 *2 *4) (-368) (-1212)
+ (-10 -8 (-15 -3550 ($ $)) (-15 -2023 ($ $)))))
+ (-5 *1 (-428 *3 *2 *4 *5 *6 *7)) (-4 *6 (-992 *5)) (-14 *7 (-1186)))))
+(((*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 (-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 *1 *1)
(-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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)))))
-(((*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 *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 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
(((*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 *3 *4 *3 *3 *4 *4 *4 *5)
- (-12 (-5 *3 (-227)) (-5 *4 (-570))
- (-5 *5 (-3 (|:| |fn| (-394)) (|:| |fp| (-64 -1708))))
- (-5 *2 (-1044)) (-5 *1 (-754)))))
-(((*1 *2 *1) (-12 (-5 *2 (-337)) (-5 *1 (-251)))))
-(((*1 *2 *1 *3 *3 *3 *2)
- (-12 (-5 *3 (-777)) (-5 *1 (-681 *2)) (-4 *2 (-1109)))))
+ (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
(((*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 *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 *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 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1182 *4)) (-5 *1 (-362 *4))
- (-4 *4 (-354)))))
-(((*1 *2 *1 *1)
- (-12 (-5 *2 (-112)) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
+ (-12 (-5 *4 (-777)) (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280))))
+ ((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-1280)))))
+(((*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 *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 (-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)
(-12 (-5 *3 (-777)) (-5 *2 (-1 (-384))) (-5 *1 (-1049)))))
-(((*1 *2 *2 *2)
- (-12
- (-5 *2
- (-2 (|:| -1972 (-695 *3)) (|:| |basisDen| *3)
- (|:| |basisInv| (-695 *3))))
- (-4 *3 (-13 (-311) (-10 -8 (-15 -1652 ((-424 $) $)))))
- (-4 *4 (-1253 *3)) (-5 *1 (-505 *3 *4 *5)) (-4 *5 (-415 *3 *4)))))
+(((*1 *1) (-5 *1 (-512))))
(((*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 *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 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-173)))))
-(((*1 *2)
- (-12 (-5 *2 (-1277 (-1110 *3 *4))) (-5 *1 (-1110 *3 *4))
- (-14 *3 (-928)) (-14 *4 (-928)))))
+(((*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) (-12 (-4 *1 (-306)) (-5 *2 (-650 (-115))))))
+(((*1 *2 *1 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*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 -4402 ((-1134 *5 (-618 $)) $))
+ (-15 -4416 ((-1134 *5 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *5 (-618 $))))))))))
(((*1 *2 *2)
- (|partial| -12 (-5 *2 (-1182 *3)) (-4 *3 (-354)) (-5 *1 (-362 *3)))))
+ (-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 *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 *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 *2 *2)
- (|partial| -12 (-4 *3 (-13 (-562) (-148))) (-5 *1 (-1247 *3 *2))
- (-4 *2 (-1253 *3)))))
+ (|partial| -12 (-4 *1 (-1074 *3 *4 *5)) (-4 *3 (-1058))
+ (-4 *4 (-799)) (-4 *5 (-856)) (-5 *2 (-112)))))
+(((*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 *1) (-12 (-4 *1 (-257 *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 *1 *1)
- (-12 (-5 *2 (-2 (|:| -4322 *3) (|:| |coef2| (-788 *3))))
- (-5 *1 (-788 *3)) (-4 *3 (-562)) (-4 *3 (-1058)))))
+ (-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 *4)
+ (-12 (-5 *3 (-650 (-266))) (-5 *4 (-1186)) (-5 *2 (-112))
+ (-5 *1 (-266)))))
+(((*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 *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 *3)
- (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
- (-4 *4 (-562)))))
-(((*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))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
-(((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1049)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *1 *2) (-12 (-5 *2 (-158)) (-5 *1 (-880)))))
+ (-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 *3 *3 *3 *4 *4 *3)
(-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
(-5 *1 (-761)))))
-(((*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 *3 (-1166 (-1166 *4))) (-5 *2 (-1166 *4)) (-5 *1 (-1170 *4))
- (-4 *4 (-38 (-413 (-570)))) (-4 *4 (-1058)))))
-(((*1 *2)
- (-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
+ (-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 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*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 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))))
-(((*1 *2 *3 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef2| *3) (|:| -4322 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*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 *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 *3 *3)
+ (-12 (-5 *2 (-650 (-570))) (-5 *1 (-1119)) (-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 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1160)))))
-(((*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)))))
+ (-12 (-5 *3 (-487 *4 *5)) (-14 *4 (-650 (-1186))) (-4 *5 (-1058))
+ (-5 *2 (-959 *5)) (-5 *1 (-951 *4 *5)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1) (-12 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
(((*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 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-452)) (-5 *3 (-570)))))
-(((*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 *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)))))
+ (-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 *1 *1) (-12 (-5 *1 (-176 *2)) (-4 *2 (-311))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192))))
+ ((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227))))
+ ((*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)))))
+(((*1 *2 *3 *4 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-757)))))
+(((*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)))))
+(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-12 (-5 *3 (-827)) (-5 *4 (-52)) (-5 *2 (-1282)) (-5 *1 (-837)))))
+(((*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 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-142))))
((*1 *1 *1 *2) (-12 (-4 *1 (-1153)) (-5 *2 (-145)))))
-(((*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 *1 *2 *3)
- (-12 (-5 *2 (-512)) (-5 *3 (-650 (-882))) (-5 *1 (-489)))))
-(((*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 -3799 ($ (-1134 *3 (-618 $))))))))))
+(((*1 *2 *3) (-12 (-5 *3 (-868)) (-5 *2 (-1168)) (-5 *1 (-716)))))
+(((*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) (-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 *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) (-12 (-5 *2 (-1144)) (-5 *3 (-295)) (-5 *1 (-169)))))
+(((*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 *1) (-5 *1 (-131))))
+(((*1 *1 *2) (-12 (-5 *2 (-1129)) (-5 *1 (-827)))))
+(((*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 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))))
(((*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 *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 *3) (-12 (-5 *3 (-384)) (-5 *2 (-1168)) (-5 *1 (-309)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
-(((*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 *1 *3) (-12 (-5 *3 (-1129)) (-5 *2 (-112)) (-5 *1 (-827)))))
+ (|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))
+ (-1796 (-4 *5 (-368))) (-4 *5 (-562)) (-5 *2 (-1277 (-413 *5)))
+ (-5 *1 (-644 *5 *4)))))
(((*1 *1) (-5 *1 (-623))))
-(((*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 *1)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*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 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *1 *1 *2)
+ (|partial| -12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-4 *3 (-1058)))))
+(((*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 (|:| -3804 (-1182 *8)) (|:| -3994 (-570)))))
+ (|:| |ctpol| *8)))
+ (-5 *1 (-748 *6 *7 *8 *9)))))
(((*1 *2 *3)
- (-12 (-4 *1 (-916)) (-5 *2 (-424 (-1182 *1))) (-5 *3 (-1182 *1)))))
-(((*1 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-559)))))
+ (-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)))))
+(((*1 *1) (-5 *1 (-603))))
(((*1 *2 *3)
(|partial| -12
(-5 *3
(-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
(|:| |relerr| (-227))))
(-5 *2
(-2
@@ -15325,7 +15339,7 @@
(-3 (|:| |str| (-1166 (-227)))
(|:| |notEvaluated|
"Internal singularities not yet evaluated")))
- (|:| -2521
+ (|:| -1600
(-3 (|:| |finite| "The range is finite")
(|:| |lowerInfinite| "The bottom of range is infinite")
(|:| |upperInfinite| "The top of range is infinite")
@@ -15333,177 +15347,199 @@
"Both top and bottom points are infinite")
(|:| |notEvaluated| "Range not yet evaluated")))))
(-5 *1 (-565)))))
-(((*1 *2 *1 *3)
- (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1072)) (-5 *3 (-1168)))))
-(((*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 *1)
+ (-12 (-4 *2 (-1109)) (-5 *1 (-971 *2 *3)) (-4 *3 (-1109)))))
(((*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 *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 *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))))
+ (-12 (-5 *3 (-959 (-227))) (-5 *2 (-320 (-384))) (-5 *1 (-309)))))
+(((*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) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*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 *4)
+ (-12 (-5 *3 (-650 (-849 (-227)))) (-5 *4 (-227)) (-5 *2 (-650 *4))
+ (-5 *1 (-270)))))
+(((*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 (-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))))
+ (-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 (-4 *4 (-562)) (-5 *2 (-424 *3)) (-5 *1 (-1256 *4 *3))
- (-4 *3 (-13 (-1253 *4) (-562) (-10 -8 (-15 -1942 ($ $ $)))))))
+ (-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 (|:| -4308 *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 (-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))))))
-(((*1 *2 *2 *3)
- (-12 (-5 *3 (-777)) (-4 *4 (-368)) (-5 *1 (-903 *2 *4))
- (-4 *2 (-1253 *4)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+ (-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 *3 *4)
- (-12 (-5 *4 (-1 *3 *3)) (-4 *3 (-1253 *5)) (-4 *5 (-368))
- (-5 *2 (-2 (|:| -3399 (-424 *3)) (|:| |special| (-424 *3))))
- (-5 *1 (-733 *5 *3)))))
-(((*1 *2 *3) (-12 (-5 *2 (-650 (-570))) (-5 *1 (-567)) (-5 *3 (-570)))))
-(((*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))))
+ (-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 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *2 (-474))
- (-5 *1 (-1281))))
- ((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-650 (-950 (-227))))) (-5 *4 (-650 (-266)))
- (-5 *2 (-474)) (-5 *1 (-1281)))))
-(((*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 *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 (|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 *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 *1)
- (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058))
- (-5 *2 (-650 (-650 (-650 (-950 *3))))))))
-(((*1 *2 *2 *1) (|partial| -12 (-5 *2 (-650 *1)) (-4 *1 (-311)))))
-(((*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)
- (-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)))))
+ (-12 (-4 *4 (-916)) (-4 *5 (-1253 *4)) (-5 *2 (-424 (-1182 *5)))
+ (-5 *1 (-914 *4 *5)) (-5 *3 (-1182 *5)))))
+(((*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 *1 *2)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1019 *2)) (-4 *2 (-1227)))))
(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-4 *1 (-680 *3)) (-4 *3 (-1227)) (-5 *2 (-112)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-424 *3)) (-4 *3 (-562)) (-5 *1 (-425 *3)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-250)))))
-(((*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)) (|:| -3684 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *2 *2 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-1056)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-950 (-227)))) (-5 *1 (-1278)))))
+ (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
+ (-4 *3 (-13 (-1109) (-34))))))
+(((*1 *2 *1) (|partial| -12 (-5 *2 (-1113)) (-5 *1 (-283)))))
+(((*1 *2 *2)
+ (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-856)) (-5 *1 (-1197 *3)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-950 *4)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
+ (-4 *4 (-1058)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-397)))))
(((*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)))))
-(((*1 *2 *3 *4 *3 *4 *4 *4)
- (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *2 (-1044))
- (-5 *1 (-762)))))
-(((*1 *1) (-5 *1 (-295))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *4 *5 *3)
+ (-12 (-5 *4 (-1 *7 *7))
+ (-5 *5 (-1 (-3 (-2 (|:| -4341 *6) (|:| |coeff| *6)) "failed") *6))
+ (-4 *6 (-368)) (-4 *7 (-1253 *6))
+ (-5 *2
+ (-3 (-2 (|:| |answer| (-413 *7)) (|:| |a0| *6))
+ (-2 (|:| -4341 (-413 *7)) (|:| |coeff| (-413 *7))) "failed"))
+ (-5 *1 (-580 *6 *7)) (-5 *3 (-413 *7)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-950 (-227))))) (-5 *1 (-474)))))
+(((*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 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-250)))))
+(((*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)
+ (-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 *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 *1 *2 *3 *1)
+ (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
+ (-4 *3 (-1109)))))
+(((*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 *3) (-12 (-5 *3 (-570)) (-5 *1 (-424 *2)) (-4 *2 (-562)))))
(((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-650 (-266))) (-5 *4 (-1186))
(-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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
(((*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 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)) (-4 *2 (-458)))))
-(((*1 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
+ (|partial| -12 (-5 *3 (-695 (-413 (-959 (-570)))))
+ (-5 *2 (-695 (-320 (-570)))) (-5 *1 (-1040)))))
+(((*1 *2 *3 *1)
+ (-12 (-5 *3 (-1 (-112) *4)) (|has| *1 (-6 -4452)) (-4 *1 (-495 *4))
+ (-4 *4 (-1227)) (-5 *2 (-112)))))
(((*1 *2 *3 *4)
- (-12 (-5 *4 (-777)) (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
-(((*1 *2 *2)
- (-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)
- (-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 (-1144)) (-5 *1 (-1287)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1222 *3)) (-4 *3 (-983)))))
+ (-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 *1)
- (-12 (-5 *2 (-777)) (-5 *1 (-1174 *3 *4)) (-14 *3 (-928))
- (-4 *4 (-1058)))))
-(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-397)))))
-(((*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)))))
+ (-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 *1) (-12 (-5 *1 (-697 *2)) (-4 *2 (-619 (-868))))))
+(((*1 *1) (-5 *1 (-443))))
+(((*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 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
+(((*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) (-12 (-5 *1 (-921 *2)) (-4 *2 (-311)))))
(((*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 *1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *1) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-4 *1 (-379 *3 *4))
- (-4 *4 (-174)))))
+(((*1 *1 *2 *3 *1)
+ (-12 (-5 *2 (-512)) (-5 *3 (-650 (-972))) (-5 *1 (-295)))))
+(((*1 *2 *1) (-12 (-5 *2 (-112)) (-5 *1 (-830)))))
+(((*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 *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 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |stiffness| (-384)) (|:| |stability| (-384))
+ (|:| |expense| (-384)) (|:| |accuracy| (-384))
+ (|:| |intermediateResults| (-384))))
+ (-5 *2 (-1044)) (-5 *1 (-309)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-320 (-227))) (-5 *2 (-320 (-413 (-570))))
+ (-5 *1 (-309)))))
(((*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))
@@ -15511,161 +15547,123 @@
(((*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 *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 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-130))))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-650 (-928))) (-5 *4 (-650 (-570)))
- (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174))))
- ((*1 *2 *1) (-12 (-4 *1 (-1006 *2)) (-4 *2 (-174)))))
+ (|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 *1)
+ (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
+ (-4 *3 (-1109)))))
(((*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)
- (-12 (-4 *3 (-1231)) (-4 *4 (-1253 *3)) (-4 *5 (-1253 (-413 *4)))
- (-5 *2 (-1277 *1)) (-4 *1 (-347 *3 *4 *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 *1 *1 *1 *1) (-4 *1 (-551))))
+(((*1 *1 *2) (-12 (-5 *1 (-229 *2)) (-4 *2 (-13 (-368) (-1212))))))
(((*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 (-1265 *2)) (-4 *2 (-1227)))))
-(((*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 (-1253 (-570))))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
-(((*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 *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 *3)
- (-12 (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-218 *4 *3))
- (-4 *3 (-1253 *4)))))
-(((*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 *2 *3)
- (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
-(((*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 (-650 (-928))) (-5 *2 (-1188 (-413 (-570))))
- (-5 *1 (-192)))))
-(((*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 *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 -3799 ($ (-1134 *3 (-618 $)))))))))
+(((*1 *2 *2 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-901 *2 *3)) (-4 *2 (-1253 *3))))
((*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 -3799 ($ (-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 -3799 ($ (-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 -3799 ($ (-1134 *4 (-618 $)))))))
- (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))))
-(((*1 *2 *1 *1 *1)
- (|partial| -12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1)))
- (-4 *1 (-311))))
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *4 (-562))
+ (-5 *2 (-2 (|:| -1453 *4) (|:| -3959 *3) (|:| -3971 *3)))
+ (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4))))
((*1 *2 *1 *1)
- (-12 (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2466 *1)))
- (-4 *1 (-311)))))
-(((*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))
+ (-12 (-4 *3 (-1058)) (-4 *4 (-799)) (-4 *5 (-856))
+ (-5 *2 (-2 (|:| -3959 *1) (|:| -3971 *1))) (-4 *1 (-1074 *3 *4 *5))))
+ ((*1 *2 *1 *1)
+ (-12 (-4 *3 (-562)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| -1453 *3) (|:| -3959 *1) (|:| -3971 *1)))
+ (-4 *1 (-1253 *3)))))
+(((*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 *3 *1) (-12 (-5 *2 (-512)) (-5 *3 (-603)) (-5 *1 (-591)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *1) (-5 *1 (-829))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2))
+ (-4 *2 (-1253 (-171 *3))))))
+(((*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 *3)
+ (-12 (-4 *4 (-1231)) (-4 *5 (-1253 *4))
(-5 *2
- (-2 (|:| |val| (-650 *8))
- (|:| |towers| (-650 (-1155 *5 *6 *7 *8)))))
- (-5 *1 (-1155 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
+ (-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) (-12 (-4 *1 (-1004 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-1182 *3)) (-5 *1 (-41 *4 *3))
+ (-4 *3
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4402 ((-1134 *4 (-618 $)) $))
+ (-15 -4416 ((-1134 *4 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *4 (-618 $))))))))))
(((*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)
- (-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 *3 *3 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-1111 *3)) (-5 *1 (-912 *3)) (-4 *3 (-373))
- (-4 *3 (-1109)))))
-(((*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 *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)
- (-12 (-5 *5 (-570)) (-4 *6 (-799)) (-4 *7 (-856)) (-4 *8 (-311))
- (-4 *9 (-956 *8 *6 *7))
- (-5 *2 (-2 (|:| -3423 (-1182 *9)) (|:| |polval| (-1182 *8))))
- (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)) (-5 *4 (-1182 *8)))))
+ (-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 *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 *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 *1 *1 *2) (-12 (-4 *1 (-1021)) (-5 *2 (-868)))))
(((*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 *3) (-12 (-5 *3 (-512)) (-5 *2 (-697 (-189))) (-5 *1 (-189)))))
+ (|partial| -12 (-4 *3 (-562)) (-4 *3 (-174))
+ (-5 *2 (-2 (|:| |particular| *1) (|:| -3827 (-650 *1))))
+ (-4 *1 (-372 *3))))
+ ((*1 *2)
+ (|partial| -12
+ (-5 *2
+ (-2 (|:| |particular| (-459 *3 *4 *5 *6))
+ (|:| -3827 (-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 *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 *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 *1 *2 *3)
+ (-12 (-5 *2 (-650 (-1186))) (-5 *3 (-52)) (-5 *1 (-899 *4))
+ (-4 *4 (-1109)))))
+(((*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 *1 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-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)
+ (-12 (-5 *2 (-678 *3)) (-4 *3 (-856)) (-4 *1 (-379 *3 *4))
+ (-4 *4 (-174)))))
+(((*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) (-4 *1 (-35)))
((*1 *2 *2)
(-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
@@ -15682,390 +15680,380 @@
((*1 *2 *2)
(-12 (-5 *2 (-1166 *3)) (-4 *3 (-38 (-413 (-570))))
(-5 *1 (-1172 *3)))))
-(((*1 *2 *3) (-12 (-5 *2 (-1 *3)) (-5 *1 (-688 *3)) (-4 *3 (-1109)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *2 (-777)) (-4 *1 (-1253 *3)) (-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)))))
-(((*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 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-334)))))
+(((*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 *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)) (|:| -3701 *6)))
+ (-5 *1 (-1025 *5 *6)) (-5 *3 (-413 *6)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *1 *1)
+ (-12 (-5 *2 (-2 (|:| -1939 (-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 (|:| -1939 *1) (|:| |coef1| *1)))
+ (-4 *1 (-1074 *3 *4 *5)))))
+(((*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 *4 (-368)) (-5 *2 (-650 (-1166 *4))) (-5 *1 (-289 *4 *5))
+ (-5 *3 (-1166 *4)) (-4 *5 (-1268 *4)))))
(((*1 *2 *3)
(-12 (-5 *3 (-1 (-1166 *4) (-1166 *4))) (-5 *2 (-1166 *4))
- (-5 *1 (-1302 *4)) (-4 *4 (-1227))))
+ (-5 *1 (-1303 *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 (-1302 *5)) (-4 *5 (-1227)))))
-(((*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 *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 *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)) (|:| -4305 *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)) (|:| -4305 (-660 *6 (-413 *6))))))
- (-5 *1 (-818 *5 *6)) (-5 *3 (-660 *6 (-413 *6))))))
+ (-5 *2 (-650 (-1166 *5))) (-5 *1 (-1303 *5)) (-4 *5 (-1227)))))
+(((*1 *2 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))))
+(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1280)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1168)) (-5 *2 (-216 (-508))) (-5 *1 (-843)))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
-(((*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) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
-(((*1 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442))))
- ((*1 *2 *2 *2) (-12 (-5 *2 (-394)) (-5 *1 (-442)))))
-(((*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 (-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 (-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 *4)
- (-12 (-5 *4 (-112)) (-4 *5 (-354))
- (-5 *2
- (-2 (|:| |cont| *5)
- (|:| -3477 (-650 (-2 (|:| |irr| *3) (|:| -3563 (-570)))))))
- (-5 *1 (-218 *5 *3)) (-4 *3 (-1253 *5)))))
+ (-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 *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)
- (-12 (-4 *3 (-562)) (-5 *1 (-159 *3 *2)) (-4 *2 (-436 *3))))
+ (-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 *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 *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 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1279)))))
-(((*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 *1 *2)
- (-12 (-5 *2 (-1277 *3)) (-4 *3 (-1058)) (-5 *1 (-718 *3 *4))
- (-4 *4 (-1253 *3)))))
-(((*1 *1 *1) (-12 (-4 *1 (-680 *2)) (-4 *2 (-1227)))))
+ (-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 *1 *1 *2)
+ (-12 (-5 *2 (-570)) (-5 *1 (-320 *3)) (-4 *3 (-562)) (-4 *3 (-1109)))))
(((*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)))))
+ (-12 (-5 *4 (-112)) (-4 *6 (-13 (-458) (-1047 (-570)) (-645 (-570))))
+ (-4 *3 (-13 (-27) (-1212) (-436 *6) (-10 -8 (-15 -3802 ($ *7)))))
+ (-4 *7 (-854))
+ (-4 *8
+ (-13 (-1255 *3 *7) (-368) (-1212)
+ (-10 -8 (-15 -3550 ($ $)) (-15 -2023 ($ $)))))
+ (-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 *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 (-4 *1 (-372 *2)) (-4 *2 (-174)))))
(((*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 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *3 *4 *4)
+ (-12 (-5 *3 (-1 (-171 (-227)) (-171 (-227)))) (-5 *4 (-1103 (-227)))
+ (-5 *2 (-1279)) (-5 *1 (-260)))))
+(((*1 *1 *2 *3 *1 *3)
+ (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
+ (-4 *3 (-1109)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
+(((*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)))))
+(((*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 *1) (-12 (-4 *1 (-533)) (-5 *2 (-697 (-130))))))
+(((*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 *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 *2)
+ (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
+ (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *2 *1) (-12 (-4 *1 (-1130 *2)) (-4 *2 (-1227)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-512)) (-5 *3 (-1127)) (-5 *1 (-1124)))))
(((*1 *2 *1)
- (-12 (-4 *1 (-57 *3 *4 *5)) (-4 *3 (-1227)) (-4 *4 (-378 *3))
- (-4 *5 (-378 *3)) (-5 *2 (-570))))
+ (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
+ (-4 *5 (-240 (-2570 *3) (-777)))
+ (-14 *6
+ (-1 (-112) (-2 (|:| -2267 *2) (|:| -3994 *5))
+ (-2 (|:| -2267 *2) (|:| -3994 *5))))
+ (-4 *2 (-856)) (-5 *1 (-467 *3 *4 *2 *5 *6 *7))
+ (-4 *7 (-956 *4 *5 (-870 *3))))))
+(((*1 *2 *1) (-12 (-5 *2 (-830)) (-5 *1 (-831)))))
+(((*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 (-570)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1277 (-1277 *4))) (-4 *4 (-1058)) (-5 *2 (-695 *4))
- (-5 *1 (-1038 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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 (-5 *2 (-1103 (-227))) (-5 *1 (-933))))
- ((*1 *2 *1) (-12 (-5 *2 (-1103 (-227))) (-5 *1 (-934)))))
-(((*1 *2 *1)
- (|partial| -12 (-4 *1 (-1260 *3 *2)) (-4 *3 (-1058))
- (-4 *2 (-1237 *3)))))
-(((*1 *2 *2) (-12 (-5 *2 (-695 *3)) (-4 *3 (-311)) (-5 *1 (-706 *3)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-112)) (-5 *1 (-279 *4 *3))
- (-4 *3 (-13 (-436 *4) (-1011))))))
-(((*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)
- (-12 (-5 *2 (-320 *3)) (-4 *3 (-13 (-1058) (-856)))
- (-5 *1 (-225 *3 *4)) (-14 *4 (-650 (-1186))))))
-(((*1 *2 *1) (-12 (-4 *1 (-372 *3)) (-4 *3 (-174)) (-5 *2 (-1182 *3)))))
-(((*1 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-1186)))))
-(((*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))
- (|:| -3698 *6)))
- (-5 *1 (-1024 *5 *6)) (-5 *3 (-413 *6)))))
-(((*1 *2 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+ (-4 *6 (-240 *4 *5)) (-4 *7 (-240 *3 *5)) (-5 *2 (-112)))))
+(((*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 *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 *3 (-413 *2)) (-5 *4 (-1 *2 *2)) (-4 *2 (-1253 *5))
+ (-5 *1 (-733 *5 *2)) (-4 *5 (-368)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-650 (-928))) (-5 *4 (-650 (-570)))
+ (-5 *2 (-695 (-570))) (-5 *1 (-1119)))))
+(((*1 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-135)))))
+(((*1 *2 *3) (-12 (-5 *3 (-320 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))))
+(((*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 (-2 (|:| |preimage| (-650 *3)) (|:| |image| (-650 *3))))
+ (-5 *1 (-912 *3)) (-4 *3 (-1109)))))
+(((*1 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-327 *3 *4)) (-4 *3 (-1109))
+ (-4 *4 (-132)))))
+(((*1 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-856)) (-5 *1 (-127 *3)))))
(((*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) (-12 (-5 *2 (-112)) (-5 *1 (-934)))))
-(((*1 *1 *2 *1 *1)
- (-12 (-5 *2 (-1186)) (-5 *1 (-681 *3)) (-4 *3 (-1109)))))
-(((*1 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473))))
- ((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-473)))))
-(((*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 (-1282)) (-5 *1 (-827)))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-650 (-227)))) (-5 *1 (-933)))))
+(((*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 *1 *2) (-12 (-5 *2 (-777)) (-5 *1 (-129)))))
+(((*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 *1) (-5 *1 (-868))))
-(((*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 *1) (-12 (-4 *1 (-187)) (-5 *2 (-650 (-112))))))
-(((*1 *1 *1) (-4 *1 (-1069))))
-(((*1 *2 *1) (-12 (-4 *1 (-1102 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1103 (-849 (-384)))) (-5 *2 (-1103 (-849 (-227))))
- (-5 *1 (-309)))))
-(((*1 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280))))
- ((*1 *2 *2) (-12 (-5 *2 (-880)) (-5 *1 (-1280)))))
-(((*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 *2 (-171 *4)) (-5 *1 (-183 *4 *3))
- (-4 *4 (-13 (-368) (-854))) (-4 *3 (-1253 *2)))))
+ (-12 (-4 *4 (-562)) (-5 *2 (-1277 (-695 *4))) (-5 *1 (-90 *4 *5))
+ (-5 *3 (-695 *4)) (-4 *5 (-662 *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 (-4 *1 (-1102 *3)) (-4 *3 (-1227)) (-5 *2 (-570)))))
+(((*1 *2 *1) (-12 (-4 *1 (-395)) (-5 *2 (-1168)))))
+(((*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)))))
+(((*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 *1) (|partial| -12 (-5 *2 (-512)) (-5 *1 (-283)))))
+(((*1 *2 *2 *2)
+ (-12 (-5 *2 (-1166 *3)) (-4 *3 (-1058)) (-5 *1 (-1170 *3)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*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 -1426 ((-1186) $)))))
+ (-4 *6 (-562)))))
+(((*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)
- (|partial| -12 (-4 *2 (-1109)) (-5 *1 (-1204 *3 *2)) (-4 *3 (-1109)))))
+ (-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 *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 *3 *2)
- (-12 (-5 *2 (-1166 *3)) (-4 *3 (-368)) (-4 *3 (-1058))
- (-5 *1 (-1170 *3)))))
-(((*1 *1 *1 *1 *1) (-4 *1 (-551))))
-(((*1 *2 *1)
- (-12 (-14 *3 (-650 (-1186))) (-4 *4 (-174))
- (-14 *6
- (-1 (-112) (-2 (|:| -2268 *5) (|:| -3357 *2))
- (-2 (|:| -2268 *5) (|:| -3357 *2))))
- (-4 *2 (-240 (-2569 *3) (-777))) (-5 *1 (-467 *3 *4 *5 *2 *6 *7))
- (-4 *5 (-856)) (-4 *7 (-956 *4 *2 (-870 *3))))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1277 (-695 *4))) (-4 *4 (-174))
- (-5 *2 (-1277 (-695 (-959 *4)))) (-5 *1 (-191 *4)))))
+ (-12 (-5 *2 (-950 *3)) (-4 *3 (-13 (-368) (-1212) (-1011)))
+ (-5 *1 (-178 *3)))))
(((*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))))
((*1 *2 *1 *3 *2)
- (-12 (|has| *1 (-6 -4450)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109))
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-292 *3 *2)) (-4 *3 (-1109))
(-4 *2 (-1227)))))
-(((*1 *1 *1)
- (-12 (-5 *1 (-601 *2)) (-4 *2 (-38 (-413 (-570)))) (-4 *2 (-1058)))))
-(((*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))))
- ((*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 (-1220 *4 *5 *6 *7)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-650 (-298 *3))) (-5 *1 (-298 *3)) (-4 *3 (-562))
+ (-4 *3 (-1227)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
(((*1 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-650 *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))))
-(((*1 *2 *1) (-12 (-4 *1 (-803 *2)) (-4 *2 (-174)))))
+(((*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 (-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 *2 *3 *3 *3 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-761)))))
(((*1 *2 *3 *4)
(-12 (-5 *2 (-2 (|:| |part1| *3) (|:| |part2| *4)))
(-5 *1 (-711 *3 *4)) (-4 *3 (-1227)) (-4 *4 (-1227)))))
-(((*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 *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 *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 *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)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -3570 *4)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
+(((*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)
- (-12 (-5 *3 (-650 (-2 (|:| -3801 (-1182 *6)) (|:| -3357 (-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)
- (-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))))
+ (-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)))))
+(((*1 *1 *1 *1) (-12 (-4 *1 (-858 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
(((*1 *2 *3)
- (-12 (-5 *3 (-1182 *4)) (-4 *4 (-354))
- (-4 *2
- (-13 (-408)
- (-10 -7 (-15 -3799 (*2 *4)) (-15 -1884 ((-928) *2))
- (-15 -1972 ((-1277 *2) (-928))) (-15 -3944 (*2 *2)))))
- (-5 *1 (-361 *2 *4)))))
+ (-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 *2)
+ (-12 (-5 *2 (-695 (-570))) (-5 *3 (-650 (-570))) (-5 *1 (-1119)))))
+(((*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 *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 *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))))
((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4450)) (-4 *1 (-495 *3))
+ (-12 (-5 *2 (-1 *3 *3)) (|has| *1 (-6 -4453)) (-4 *1 (-495 *3))
(-4 *3 (-1227)))))
-(((*1 *1) (-12 (-4 *1 (-167 *2)) (-4 *2 (-174)))))
-(((*1 *2 *1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1207)))))
+(((*1 *2 *2 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *2 *3 *3)
+ (-12 (-4 *2 (-562)) (-5 *1 (-978 *2 *3)) (-4 *3 (-1253 *2)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
-(((*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 *2)
(-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
+ (-5 *2 (-384)) (-5 *1 (-194)))))
+(((*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 *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 -4452)))))))
+(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
+ (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
(-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 *2 *3) (-12 (-5 *3 (-777)) (-5 *1 (-593 *2)) (-4 *2 (-551)))))
+ (-2 (|:| -2308 *4) (|:| -3673 *4) (|:| |totalpts| (-570))
+ (|:| |success| (-112))))
+ (-5 *1 (-795)) (-5 *5 (-570)))))
+(((*1 *2 *3)
+ (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4))
+ (-5 *3 (-650 *4)))))
+(((*1 *1 *2 *3) (-12 (-5 *2 (-1168)) (-5 *3 (-829)) (-5 *1 (-828)))))
(((*1 *2 *1 *3)
- (-12 (-4 *1 (-866)) (-5 *2 (-697 (-555))) (-5 *3 (-555)))))
-(((*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 *2 *3 *4)
+ (-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 *2 *2) (-12 (-5 *2 (-570)) (-5 *1 (-260)))))
+(((*1 *2 *3)
(-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 *2 *3)
- (-12 (-5 *2 (-1277 *4)) (-5 *3 (-777)) (-4 *4 (-354))
- (-5 *1 (-534 *4)))))
-(((*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 (-4 *1 (-107 *2)) (-4 *2 (-1227)))))
+ (-650 (-2 (|:| -4400 (-413 (-570))) (|:| -4413 (-413 (-570))))))
+ (-5 *2 (-650 (-413 (-570)))) (-5 *1 (-1029 *4))
+ (-4 *4 (-1253 (-570))))))
+(((*1 *2 *1) (-12 (-5 *2 (-650 (-185 (-140)))) (-5 *1 (-141)))))
(((*1 *2 *1) (-12 (-4 *1 (-983)) (-5 *2 (-1103 (-227))))))
-(((*1 *2 *3)
- (-12 (-5 *3 |RationalNumber|) (-5 *2 (-1 (-570))) (-5 *1 (-1056)))))
-(((*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) (-12 (-4 *1 (-431 *2)) (-4 *2 (-1109)) (-4 *2 (-373)))))
-(((*1 *2 *2 *2)
- (|partial| -12 (-4 *3 (-368)) (-5 *1 (-903 *2 *3))
- (-4 *2 (-1253 *3)))))
-(((*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))))))
-(((*1 *1 *1 *2 *1) (-12 (-4 *1 (-1153)) (-5 *2 (-1244 (-570))))))
+(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
(((*1 *1 *1)
(-12 (-5 *1 (-1174 *2 *3)) (-14 *2 (-928)) (-4 *3 (-1058)))))
+(((*1 *2 *3) (-12 (-5 *3 (-1168)) (-5 *2 (-52)) (-5 *1 (-835)))))
+(((*1 *2 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+(((*1 *2)
+ (-12 (-4 *3 (-562)) (-5 *2 (-650 *4)) (-5 *1 (-43 *3 *4))
+ (-4 *4 (-423 *3)))))
+(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))))
+(((*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 *3)
(-12 (-5 *3 (-413 (-570))) (-4 *4 (-1047 (-570))) (-4 *4 (-562))
(-5 *1 (-32 *4 *2)) (-4 *2 (-436 *4))))
@@ -16137,97 +16125,112 @@
(-5 *1 (-1172 *3))))
((*1 *1 *1 *2)
(-12 (-4 *1 (-1268 *2)) (-4 *2 (-1058)) (-4 *2 (-368)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
+(((*1 *1 *1) (-12 (-5 *1 (-1213 *2)) (-4 *2 (-1109)))))
+(((*1 *1 *1) (-5 *1 (-1072))))
(((*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 *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)))))
+ (-12 (-5 *2 (-650 (-1213 *3))) (-5 *1 (-1213 *3)) (-4 *3 (-1109)))))
(((*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 (-384)) (-5 *2 (-227)) (-5 *1 (-1280))))
- ((*1 *2) (-12 (-5 *2 (-227)) (-5 *1 (-1280)))))
+(((*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)
- (-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 *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) (-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 *1 *2)
- (-12 (-5 *2 (-650 (-650 *3))) (-4 *3 (-1109)) (-5 *1 (-912 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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 (|:| -2616 *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 (|:| -2616 *3) (|:| |coeff| *3)))
- (-5 *1 (-566 *6 *3 *7)) (-4 *7 (-1109)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*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 *1) (-12 (-5 *2 (-570)) (-5 *1 (-921 *3)) (-4 *3 (-311)))))
-(((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
-(((*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 *1)
- (-12 (-5 *1 (-655 *2 *3 *4)) (-4 *2 (-1109)) (-4 *3 (-23))
- (-14 *4 *3))))
+ (-12 (-5 *3 (-928))
+ (-5 *2
+ (-3 (-1182 *4)
+ (-1277 (-650 (-2 (|:| -2308 *4) (|:| -2267 (-1129)))))))
+ (-5 *1 (-351 *4)) (-4 *4 (-354)))))
+(((*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 (-809))))
+(((*1 *2 *2) (-12 (-5 *2 (-973 *3)) (-4 *3 (-1109)) (-5 *1 (-974 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *2 (-570)) (-5 *1 (-451 *3)) (-4 *3 (-410)) (-4 *3 (-1058)))))
+(((*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 *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 (-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 (-2 (|:| |integrand| *3) (|:| |intvar| *3))))
+ (-5 *1 (-592 *3)) (-4 *3 (-368)))))
+(((*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 *1) (-12 (-4 *1 (-257 *2)) (-4 *2 (-1227)))))
+(((*1 *1) (-5 *1 (-55))))
+(((*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)
+ (-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 *3 *4)
- (-12 (-5 *3 (-1186)) (-5 *4 (-959 (-570))) (-5 *2 (-334))
- (-5 *1 (-336)))))
+ (-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 -4453))))
+ (-4 *4 (-13 (-378 *5) (-10 -7 (-6 -4453)))) (-5 *2 (-112))
+ (-5 *1 (-674 *5 *6 *4 *3)) (-4 *3 (-693 *5 *6 *4)))))
+(((*1 *2 *2) (-12 (-5 *2 (-928)) (-5 *1 (-362 *3)) (-4 *3 (-354)))))
+(((*1 *2)
+ (-12
+ (-5 *2
+ (-1277 (-650 (-2 (|:| -2308 (-917 *3)) (|:| -2267 (-1129))))))
+ (-5 *1 (-356 *3 *4)) (-14 *3 (-928)) (-14 *4 (-928))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2267 (-1129))))))
+ (-5 *1 (-357 *3 *4)) (-4 *3 (-354)) (-14 *4 (-3 (-1182 *3) *2))))
+ ((*1 *2)
+ (-12 (-5 *2 (-1277 (-650 (-2 (|:| -2308 *3) (|:| -2267 (-1129))))))
+ (-5 *1 (-358 *3 *4)) (-4 *3 (-354)) (-14 *4 (-928)))))
+(((*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 (-4 *4 (-562)) (-5 *2 (-777)) (-5 *1 (-43 *4 *3))
- (-4 *3 (-423 *4)))))
+ (-12 (-5 *3 (-1277 *4)) (-4 *4 (-645 (-570))) (-5 *2 (-112))
+ (-5 *1 (-1305 *4)))))
(((*1 *2 *2)
(-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
(-4 *2 (-13 (-436 *3) (-1212))))))
-(((*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 *1)
- (-12 (-4 *1 (-610 *2 *3)) (-4 *3 (-1227)) (-4 *2 (-1109))
- (-4 *2 (-856)))))
-(((*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 *2 *1) (-12 (-4 *1 (-1102 *2)) (-4 *2 (-1227)))))
-(((*1 *2 *1)
- (-12 (-4 *1 (-1260 *3 *4)) (-4 *3 (-1058)) (-4 *4 (-1237 *3))
- (-5 *2 (-413 (-570))))))
(((*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) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*1 *1 *1 *2)
- (-12 (-5 *1 (-1149 *2 *3)) (-4 *2 (-13 (-1109) (-34)))
- (-4 *3 (-13 (-1109) (-34))))))
-(((*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)))))
+ (-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 *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 *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 *3 *1)
(-12 (-5 *3 (-1301 *4 *2)) (-4 *1 (-379 *4 *2)) (-4 *4 (-856))
(-4 *2 (-174))))
@@ -16238,48 +16241,39 @@
(-4 *2 (-1058))))
((*1 *2 *1 *3)
(-12 (-4 *2 (-1058)) (-5 *1 (-1300 *2 *3)) (-4 *3 (-852)))))
-(((*1 *2 *1) (-12 (-4 *1 (-1143 *3)) (-4 *3 (-1058)) (-5 *2 (-112)))))
-(((*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 *2) (-12 (-5 *2 (-112)) (-5 *1 (-933)))))
+(((*1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-1196)))))
(((*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 *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 *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) (-12 (-5 *2 (-570)) (-5 *1 (-933)))))
-(((*1 *1) (-5 *1 (-829))))
+(((*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)
+ (-12 (-5 *2 (-1166 (-570))) (-5 *1 (-1170 *4)) (-4 *4 (-1058))
+ (-5 *3 (-570)))))
+(((*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 *1 (-257 *3)) (-4 *3 (-1227)) (-5 *2 (-777))))
((*1 *2 *1) (-12 (-4 *1 (-306)) (-5 *2 (-777))))
((*1 *2 *3)
@@ -16290,22 +16284,26 @@
((*1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868))))
((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
(((*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 *1) (-12 (-4 *1 (-875 *3)) (-5 *2 (-570)))))
-(((*1 *1 *2 *3 *1 *3)
- (-12 (-5 *2 (-899 *4)) (-4 *4 (-1109)) (-5 *1 (-896 *4 *3))
- (-4 *3 (-1109)))))
-(((*1 *2 *1) (-12 (-5 *2 (-830)) (-5 *1 (-831)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-827)))))
-(((*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 *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))))))
+ (-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)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*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 (-5 *3 (-1168)) (-5 *2 (-384)) (-5 *1 (-792)))))
+(((*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 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-535))))
+ ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-535)))))
(((*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))))
@@ -16360,20 +16358,27 @@
(-4 *5 (-13 (-620 (-542)) (-1109))) (-5 *2 (-1142 (-227)))
(-5 *1 (-262 *5)))))
(((*1 *2 *3)
- (-12 (-4 *4 (-856)) (-5 *2 (-650 (-650 *4))) (-5 *1 (-1197 *4))
- (-5 *3 (-650 *4)))))
+ (-12 (-4 *4 (-354)) (-5 *2 (-112)) (-5 *1 (-218 *4 *3))
+ (-4 *3 (-1253 *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) (|:| -3687 *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)) (|:| -3687 *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) (|:| -3687 *9))))
+ (-5 *1 (-1117 *6 *7 *4 *8 *9)))))
(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-182))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-315))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-979))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1003))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1045))))
((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1082)))))
-(((*1 *2) (-12 (-5 *2 (-650 (-1168))) (-5 *1 (-1280)))))
-(((*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 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4449)) (-4 *1 (-152 *3))
+ (-12 (-5 *2 (-1 (-112) *3)) (|has| *1 (-6 -4452)) (-4 *1 (-152 *3))
(-4 *3 (-1227))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-607 *3))))
@@ -16384,19 +16389,43 @@
(-4 *5 (-799)) (-4 *3 (-856)) (-4 *2 (-1074 *4 *5 *3))))
((*1 *2 *1 *3)
(-12 (-5 *3 (-777)) (-5 *1 (-1224 *2)) (-4 *2 (-1227)))))
-(((*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 (-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 *1 *1) (-4 *1 (-1153))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-1058)) (-5 *1 (-718 *3 *2)) (-4 *2 (-1253 *3)))))
(((*1 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-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 *1 *1) (-12 (-4 *1 (-246 *2)) (-4 *2 (-1227)))))
(((*1 *2 *1)
(-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 *3 *4)
- (-12 (-5 *4 (-928)) (-5 *2 (-1182 *3)) (-5 *1 (-1201 *3))
- (-4 *3 (-368)))))
+(((*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 *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))))
@@ -16429,9 +16458,9 @@
(-12 (-5 *2 (-959 *3)) (-4 *3 (-1058)) (-4 *1 (-1074 *3 *4 *5))
(-4 *5 (-620 (-1186))) (-4 *4 (-799)) (-4 *5 (-856))))
((*1 *1 *2)
- (-2892
+ (-2895
(-12 (-5 *2 (-959 (-570))) (-4 *1 (-1074 *3 *4 *5))
- (-12 (-1795 (-4 *3 (-38 (-413 (-570))))) (-4 *3 (-38 (-570)))
+ (-12 (-1796 (-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))
@@ -16442,12 +16471,12 @@
(-4 *3 (-38 (-413 (-570)))) (-4 *5 (-620 (-1186))) (-4 *3 (-1058))
(-4 *4 (-799)) (-4 *5 (-856))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3684 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3687 *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))))
((*1 *2 *3)
- (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3684 *8)))
+ (-12 (-5 *3 (-2 (|:| |val| (-650 *7)) (|:| -3687 *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))))
@@ -16458,188 +16487,201 @@
((*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))
+ (-5 *2 (-786 *4 (-870 *6))) (-5 *1 (-1304 *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 (-1303 *4 *5 *6))
+ (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1304 *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 (-1303 *4 *5 *6))
+ (-5 *2 (-959 (-1033 (-413 *4)))) (-5 *1 (-1304 *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 (-1303 *4 *5 *6))
+ (-5 *2 (-1182 (-1033 (-413 *4)))) (-5 *1 (-1304 *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 (-1303 *4 *5 *6))
+ (-5 *2 (-650 (-786 *4 (-870 *6)))) (-5 *1 (-1304 *4 *5 *6))
(-14 *5 (-650 (-1186))))))
-(((*1 *2 *3 *4)
- (-12 (-5 *3 (-413 (-570))) (-5 *4 (-570)) (-5 *2 (-52))
- (-5 *1 (-1014)))))
+(((*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 *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 *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 *2 *3 *4)
- (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+ (-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)
- (-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 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-334)))))
-(((*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 (-1227)) (-5 *1 (-607 *3))))
- ((*1 *1 *2 *1)
- (-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *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 *3 *3)
- (-12 (-5 *3 (-1250 *5 *4)) (-4 *4 (-826)) (-14 *5 (-1186))
- (-5 *2 (-570)) (-5 *1 (-1123 *4 *5)))))
-(((*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 *1) (-5 *1 (-55))))
-(((*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 *1 *2) (-12 (-5 *2 (-1168)) (-5 *1 (-535))))
- ((*1 *1 *2) (-12 (-5 *2 (-394)) (-5 *1 (-535)))))
+ (-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 *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")) (|:| -1972 (-650 *4))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3827 (-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 (|:| -1972 (-650 (-413 *6))) (|:| -2415 (-695 *5))))
+ (-5 *2 (-2 (|:| -3827 (-650 (-413 *6))) (|:| -2990 (-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")) (|:| -1972 (-650 *4))))
+ (-2 (|:| |particular| (-3 *4 "failed")) (|:| -3827 (-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 (|:| -1972 (-650 (-413 *6))) (|:| -2415 (-695 *5))))
+ (-5 *2 (-2 (|:| -3827 (-650 (-413 *6))) (|:| -2990 (-695 *5))))
(-5 *1 (-816 *5 *6)) (-5 *4 (-650 (-413 *6))))))
-(((*1 *1 *2 *3 *4)
- (-12 (-14 *5 (-650 (-1186))) (-4 *2 (-174))
- (-4 *4 (-240 (-2569 *5) (-777)))
- (-14 *6
- (-1 (-112) (-2 (|:| -2268 *3) (|:| -3357 *4))
- (-2 (|:| -2268 *3) (|:| -3357 *4))))
- (-5 *1 (-467 *5 *2 *3 *4 *6 *7)) (-4 *3 (-856))
- (-4 *7 (-956 *2 *4 (-870 *5))))))
-(((*1 *2 *3) (-12 (-5 *3 (-959 (-227))) (-5 *2 (-227)) (-5 *1 (-309)))))
-(((*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 *3)
- (-12 (-5 *3 (-777)) (-5 *2 (-1 (-1166 (-959 *4)) (-1166 (-959 *4))))
- (-5 *1 (-1285 *4)) (-4 *4 (-368)))))
-(((*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) (|:| -3353 (-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) (|:| -3353 (-650 *8))))
- (-5 *3 (-650 *8)) (-4 *1 (-1220 *5 *6 *7 *8)))))
+(((*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 *2) (-12 (-5 *2 (-1282)) (-5 *1 (-565)))))
+(((*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 (-1227)) (-5 *1 (-607 *3))))
((*1 *1 *2 *1)
(-12 (-5 *2 (-1 (-112) *3)) (-4 *3 (-1227)) (-5 *1 (-1166 *3)))))
-(((*1 *1 *1 *1) (-5 *1 (-868))))
-(((*1 *2 *1) (-12 (-5 *2 (-570)) (-5 *1 (-828)))))
-(((*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 (-1253 (-570)))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-413 (-570)))))
- (-5 *1 (-1029 *3)) (-4 *3 (-1253 (-570)))))
- ((*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 (-1253 *4))))
- ((*1 *2 *3 *2 *2)
- (|partial| -12
- (-5 *2 (-2 (|:| -4397 (-413 (-570))) (|:| -4410 (-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 *1) (-5 *1 (-295))))
+(((*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 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -4322 *4)))
+ (-12 (-4 *4 (-562)) (-5 *2 (-2 (|:| |coef1| *3) (|:| -1939 *3)))
(-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1186)) (-5 *1 (-828)))))
-(((*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 *3 *3 *3 *4 *4 *3)
- (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
- (-5 *1 (-761)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
+(((*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 *1 *2 *1)
+ (-12 (-5 *2 (-1 *4 *4)) (-4 *1 (-330 *3 *4)) (-4 *3 (-1058))
+ (-4 *4 (-798)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *4 (-928)) (-5 *2 (-1182 *3)) (-5 *1 (-1201 *3))
+ (-4 *3 (-368)))))
+(((*1 *1) (-5 *1 (-142))))
+(((*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 (-5 *2 (-227)) (-5 *1 (-260)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-928)) (-5 *2 (-1188 (-413 (-570)))) (-5 *1 (-192)))))
+(((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-120 *2)) (-4 *2 (-1227)))))
+(((*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 *2 *1)
+ (-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 (-1227)) (-5 *1 (-1166 *3)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-1151 *4 *2)) (-14 *4 (-928))
+ (-4 *2 (-13 (-1058) (-10 -7 (-6 (-4454 "*")))))
+ (-5 *1 (-909 *4 *2)))))
+(((*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 *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 (|:| -2680 (-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 *3 *2 *4)
+ (-12 (-5 *3 (-695 *2)) (-5 *4 (-777))
+ (-4 *2 (-13 (-311) (-10 -8 (-15 -3871 ((-424 $) $)))))
+ (-4 *5 (-1253 *2)) (-5 *1 (-505 *2 *5 *6)) (-4 *6 (-415 *2 *5)))))
+(((*1 *1) (-5 *1 (-295))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-413 (-570))) (-5 *4 (-570)) (-5 *2 (-52))
+ (-5 *1 (-1014)))))
+(((*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 (|:| -4341 *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 *2) (-12 (-5 *2 (-112)) (-5 *1 (-1044)))))
+(((*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 *2)
+ (-12 (-5 *3 (-777)) (-5 *1 (-789 *2)) (-4 *2 (-38 (-413 (-570))))
+ (-4 *2 (-174)))))
+(((*1 *2 *3)
+ (-12
+ (-5 *3
+ (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227))))
(-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*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 (-4 *4 (-13 (-368) (-854))) (-5 *2 (-424 *3))
- (-5 *1 (-183 *4 *3)) (-4 *3 (-1253 (-171 *4))))))
+ (-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 (-5 *3 (-777)) (-5 *2 (-695 (-959 *4))) (-5 *1 (-1037 *4))
- (-4 *4 (-1058)))))
+ (-12 (-4 *4 (-354)) (-5 *2 (-424 (-1182 (-1182 *4))))
+ (-5 *1 (-1225 *4)) (-5 *3 (-1182 (-1182 *4))))))
(((*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))))
@@ -16665,102 +16707,57 @@
((*1 *2 *1)
(-12 (-5 *2 (-1292 *3 *4)) (-5 *1 (-1301 *3 *4)) (-4 *3 (-856))
(-4 *4 (-1058)))))
-(((*1 *2 *3) (-12 (-5 *3 (-950 *2)) (-5 *1 (-991 *2)) (-4 *2 (-1058)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1144)) (-5 *1 (-1287)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-4 *4 (-1001 *3)) (-5 *1 (-143 *3 *4 *2))
+ (-4 *2 (-378 *4))))
((*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))))
+ (-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 (-115)) (-4 *5 (-1109)) (-5 *2 (-112))
- (-5 *1 (-435 *4 *5)) (-4 *4 (-436 *5))))
+ (-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 *1)
+ (|partial| -12 (-5 *2 (-1070 (-1033 *3) (-1182 (-1033 *3))))
+ (-5 *1 (-1033 *3)) (-4 *3 (-13 (-854) (-368) (-1031))))))
+(((*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")) (|:| -3827 (-650 *4))))
+ (-5 *1 (-572 *7 *4 *3)) (-4 *3 (-662 *4)) (-4 *3 (-1109)))))
+(((*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 *3)
+ (-12 (-4 *4 (-562)) (-5 *2 (-650 (-777))) (-5 *1 (-978 *4 *3))
+ (-4 *3 (-1253 *4)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-928))) (-5 *2 (-650 (-695 (-570))))
+ (-5 *1 (-1119)))))
+(((*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 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
- (-5 *1 (-437 *4 *5)) (-4 *5 (-436 *4))))
+ (-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 (-115)) (-4 *4 (-562)) (-5 *2 (-112))
- (-5 *1 (-636 *4 *5)) (-4 *5 (-13 (-436 *4) (-1011) (-1212))))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*1 *1 *2) (-12 (-5 *2 (-570)) (-5 *1 (-868)))))
-(((*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
- (|:| -2106
- (-2 (|:| |var| (-1186)) (|:| |fn| (-320 (-227)))
- (|:| -2521 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
- (|:| |relerr| (-227))))
- (|:| -2340
- (-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")))
- (|:| -2521
- (-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
- (|:| -2106
- (-2 (|:| |xinit| (-227)) (|:| |xend| (-227))
- (|:| |fn| (-1277 (-320 (-227)))) (|:| |yinit| (-650 (-227)))
- (|:| |intvals| (-650 (-227))) (|:| |g| (-320 (-227)))
- (|:| |abserr| (-227)) (|:| |relerr| (-227))))
- (|:| -2340
- (-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 *2 *2 *2)
- (-12 (-5 *2 (-413 (-1182 (-320 *3)))) (-4 *3 (-562))
- (-5 *1 (-1139 *3)))))
-(((*1 *2 *2) (|partial| -12 (-5 *1 (-593 *2)) (-4 *2 (-551)))))
-(((*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)))))
+ (-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 *2) (|partial| -12 (-5 *2 (-320 (-227))) (-5 *1 (-270)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-928))) (-5 *2 (-1188 (-413 (-570))))
+ (-5 *1 (-192)))))
(((*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))))
@@ -16858,9 +16855,12 @@
((*1 *2 *3 *3 *3 *4)
(-12 (-5 *3 (-650 (-227))) (-5 *4 (-650 (-266))) (-5 *2 (-1279))
(-5 *1 (-263)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-697 (-879 (-973 *3) (-973 *3)))) (-5 *1 (-973 *3))
- (-4 *3 (-1109)))))
+(((*1 *2 *3 *3 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890))))
+ ((*1 *2 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890))))
+ ((*1 *2 *3 *3)
+ (-12 (-5 *3 (-777)) (-5 *2 (-1166 (-650 (-928)))) (-5 *1 (-890)))))
(((*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 (-1232))) ((*1 *1 *1 *1) (-5 *1 (-1233)))
@@ -16868,101 +16868,101 @@
(((*1 *2 *1 *1)
(-12 (-4 *1 (-1275 *3)) (-4 *3 (-1227)) (-4 *3 (-1058))
(-5 *2 (-695 *3)))))
-(((*1 *2 *1)
- (-12 (-5 *2 (-650 (-52))) (-5 *1 (-899 *3)) (-4 *3 (-1109)))))
-(((*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 (-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 (-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 (-5 *2 (-1166 (-650 (-570)))) (-5 *1 (-890))
+ (-5 *3 (-650 (-570))))))
+(((*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 (|:| -3804 (-1182 *9)) (|:| -3994 (-570)))))))
+ (-5 *1 (-748 *6 *7 *8 *9)) (-5 *3 (-1182 *9)))))
(((*1 *2 *3)
(-12 (-5 *2 (-1 *3 *3)) (-5 *1 (-536 *3)) (-4 *3 (-13 (-732) (-25))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-13 (-368) (-854))) (-5 *1 (-183 *3 *2))
- (-4 *2 (-1253 (-171 *3))))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 *2)) (-4 *2 (-436 *4)) (-5 *1 (-159 *4 *2))
+ (-4 *4 (-562)))))
(((*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 (-112)) (-5 *1 (-1186)))))
-(((*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)
+ (-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 (-5 *3 (-570)) (-5 *4 (-3 "nil" "sqfr" "irred" "prime"))
+ (-5 *1 (-424 *2)) (-4 *2 (-562)))))
(((*1 *1 *1 *2) (-12 (-5 *2 (-650 (-868))) (-5 *1 (-868))))
((*1 *2 *1)
(-12
(-5 *2
- (-2 (|:| -1403 (-650 (-868))) (|:| -3744 (-650 (-868)))
- (|:| |presup| (-650 (-868))) (|:| -2026 (-650 (-868)))
+ (-2 (|:| -4327 (-650 (-868))) (|:| -3271 (-650 (-868)))
+ (|:| |presup| (-650 (-868))) (|:| -3201 (-650 (-868)))
(|:| |args| (-650 (-868)))))
(-5 *1 (-1186)))))
-(((*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 *1 *2) (-12 (-5 *2 (-650 *3)) (-4 *3 (-1109)) (-4 *1 (-910 *3)))))
-(((*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 *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 -3802 ($ *7)) (-15 -4402 (*7 $))
+ (-15 -4416 (*7 $))))))))
+(((*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 *2 *3 *4)
+ (-12 (-5 *2 (-1277 *5)) (-5 *3 (-777)) (-5 *4 (-1129)) (-4 *5 (-354))
+ (-5 *1 (-534 *5)))))
(((*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))))
((*1 *1 *2 *3 *4)
(-12 (-5 *2 (-115)) (-5 *3 (-650 *5)) (-5 *4 (-777)) (-4 *5 (-1109))
(-5 *1 (-618 *5)))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-562)) (-5 *1 (-279 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1011))))))
+(((*1 *2 *1 *3) (-12 (-4 *1 (-133)) (-5 *3 (-777)) (-5 *2 (-1282)))))
(((*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 (-1232))) ((*1 *1 *1 *1) (-5 *1 (-1233)))
((*1 *1 *1 *1) (-5 *1 (-1234))) ((*1 *1 *1 *1) (-5 *1 (-1235))))
-(((*1 *2)
- (-12
- (-5 *2 (-2 (|:| -1458 (-650 (-1186))) (|:| -2762 (-650 (-1186)))))
- (-5 *1 (-1229)))))
-(((*1 *2 *3)
- (|partial| -12 (-5 *2 (-570)) (-5 *1 (-575 *3)) (-4 *3 (-1047 *2)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1168)) (-5 *1 (-828)))))
-(((*1 *2 *1) (-12 (-5 *2 (-650 (-1226))) (-5 *1 (-530)))))
(((*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 *3)
- (-12 (-5 *3 (-650 *4)) (-4 *4 (-854)) (-4 *4 (-368)) (-5 *2 (-777))
- (-5 *1 (-952 *4 *5)) (-4 *5 (-1253 *4)))))
+ (-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 *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 *4 *4 *3)
+ (-12 (-5 *3 (-570)) (-5 *4 (-695 (-227))) (-5 *2 (-1044))
+ (-5 *1 (-753)))))
+(((*1 *2 *3) (-12 (-5 *2 (-112)) (-5 *1 (-593 *3)) (-4 *3 (-551)))))
+(((*1 *2 *3 *4)
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*1 *2 *3 *1)
+ (-12 (-4 *1 (-610 *3 *4)) (-4 *3 (-1109)) (-4 *4 (-1227))
+ (-5 *2 (-112)))))
(((*1 *1 *2 *1)
(-12 (-5 *2 (-1 *3 *3)) (-4 *1 (-47 *3 *4)) (-4 *3 (-1058))
(-4 *4 (-798))))
@@ -17069,9 +17069,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 (|:| -2616 *5) (|:| |coeff| *5)) "failed"))
+ (-5 *4 (-3 (-2 (|:| -4341 *5) (|:| |coeff| *5)) "failed"))
(-4 *5 (-368)) (-4 *6 (-368))
- (-5 *2 (-2 (|:| -2616 *6) (|:| |coeff| *6)))
+ (-5 *2 (-2 (|:| -4341 *6) (|:| |coeff| *6)))
(-5 *1 (-590 *5 *6))))
((*1 *2 *3 *4)
(|partial| -12 (-5 *3 (-1 *2 *5)) (-5 *4 (-3 *5 "failed"))
@@ -17190,7 +17190,7 @@
(-4 *8 (-1058)) (-4 *6 (-799))
(-4 *2
(-13 (-1109)
- (-10 -8 (-15 -3101 ($ $ $)) (-15 * ($ $ $)) (-15 ** ($ $ (-777))))))
+ (-10 -8 (-15 -3104 ($ $ $)) (-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 (-1227))
@@ -17206,8 +17206,8 @@
(-4 *2 (-956 (-959 *4) *5 *6)) (-4 *5 (-799))
(-4 *6
(-13 (-856)
- (-10 -8 (-15 -1425 ((-1186) $))
- (-15 -2798 ((-3 $ "failed") (-1186))))))
+ (-10 -8 (-15 -1426 ((-1186) $))
+ (-15 -2800 ((-3 $ "failed") (-1186))))))
(-5 *1 (-993 *4 *5 *6 *2))))
((*1 *2 *3 *4)
(-12 (-5 *3 (-1 *6 *5)) (-4 *5 (-562)) (-4 *6 (-562))
@@ -17308,81 +17308,52 @@
((*1 *2 *1)
(-12 (-4 *1 (-1275 *2)) (-4 *2 (-1227)) (-4 *2 (-1011))
(-4 *2 (-1058)))))
-(((*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)))))
-(((*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 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
-(((*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 *4 *5 *4)
+ (-12 (-5 *3 (-695 (-227))) (-5 *4 (-570)) (-5 *5 (-112))
+ (-5 *2 (-1044)) (-5 *1 (-751)))))
+(((*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 *1 (-1035 *2)) (-4 *2 (-1227)))))
+(((*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) (-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 *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 *2 *3 *2)
- (-12 (-5 *2 (-650 (-650 (-650 *4)))) (-5 *3 (-650 *4)) (-4 *4 (-856))
- (-5 *1 (-1197 *4)))))
+(((*1 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4402 ((-1134 *3 (-618 $)) $))
+ (-15 -4416 ((-1134 *3 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *3 (-618 $)))))))))
+ ((*1 *2 *2 *2)
+ (-12 (-4 *3 (-562)) (-5 *1 (-41 *3 *2))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4402 ((-1134 *3 (-618 $)) $))
+ (-15 -4416 ((-1134 *3 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *3 (-618 $)))))))))
+ ((*1 *2 *2 *3)
+ (-12 (-5 *3 (-650 *2))
+ (-4 *2
+ (-13 (-368) (-306)
+ (-10 -8 (-15 -4402 ((-1134 *4 (-618 $)) $))
+ (-15 -4416 ((-1134 *4 (-618 $)) $))
+ (-15 -3802 ($ (-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 -4402 ((-1134 *4 (-618 $)) $))
+ (-15 -4416 ((-1134 *4 (-618 $)) $))
+ (-15 -3802 ($ (-1134 *4 (-618 $)))))))
+ (-4 *4 (-562)) (-5 *1 (-41 *4 *2)))))
(((*1 *2 *3 *3)
(-12 (-5 *3 (-777)) (-5 *2 (-1277 (-650 (-570)))) (-5 *1 (-486))))
((*1 *1 *2 *3)
@@ -17390,151 +17361,186 @@
((*1 *1 *2 *3)
(-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 *2 *1 *1)
- (-12 (-5 *2 (-650 (-788 *3))) (-5 *1 (-788 *3)) (-4 *3 (-562))
- (-4 *3 (-1058)))))
-(((*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 *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 *3 *2)
+ (-12 (-4 *1 (-793)) (-5 *2 (-1044))
+ (-5 *3
+ (-2 (|:| |fn| (-320 (-227)))
+ (|:| -1600 (-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)))
+ (|:| -1600 (-1103 (-849 (-227)))) (|:| |abserr| (-227))
+ (|:| |relerr| (-227)))))))
+(((*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 *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 *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)
- (-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 *2 *3) (-12 (-5 *3 (-650 *2)) (-5 *1 (-1201 *2)) (-4 *2 (-368)))))
-(((*1 *2 *2 *2)
- (-12 (-5 *2 (-695 *3)) (-4 *3 (-1058)) (-5 *1 (-696 *3)))))
+ (|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 *3 *1)
- (-12 (-5 *2 (-650 (-1186))) (-5 *1 (-1189)) (-5 *3 (-1186)))))
-(((*1 *1 *1)
- (-12 (-4 *1 (-1074 *2 *3 *4)) (-4 *2 (-1058)) (-4 *3 (-799))
- (-4 *4 (-856)))))
-(((*1 *2)
- (-12 (-4 *3 (-13 (-562) (-1047 (-570)))) (-5 *2 (-1282))
- (-5 *1 (-439 *3 *4)) (-4 *4 (-436 *3)))))
-(((*1 *2 *1)
- (-12 (-4 *3 (-13 (-368) (-148)))
- (-5 *2 (-650 (-2 (|:| -3357 (-777)) (|:| -2288 *4) (|:| |num| *4))))
- (-5 *1 (-405 *3 *4)) (-4 *4 (-1253 *3)))))
-(((*1 *2 *2) (|partial| -12 (-4 *1 (-992 *2)) (-4 *2 (-1212)))))
+ (-12 (-5 *3 (-1186))
+ (-5 *2 (-3 (|:| |fst| (-440)) (|:| -2716 "void"))) (-5 *1 (-1189)))))
+(((*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)
+ (-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 *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) (|:| -2467 *1)))
+ (-4 *1 (-311)))))
+(((*1 *2 *3)
+ (-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 *1 *2 *1 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334))))
((*1 *1 *2 *1) (-12 (-5 *2 (-1185)) (-5 *1 (-334)))))
-(((*1 *1 *2)
- (-12 (-5 *2 (-695 *5)) (-4 *5 (-1058)) (-5 *1 (-1063 *3 *4 *5))
- (-14 *3 (-777)) (-14 *4 (-777)))))
-(((*1 *1 *1 *1)
- (-12 (-4 *1 (-327 *2 *3)) (-4 *2 (-1109)) (-4 *3 (-132))
- (-4 *3 (-798)))))
-(((*1 *2 *1 *3 *4)
- (-12 (-5 *3 (-928)) (-5 *4 (-1168)) (-5 *2 (-1282)) (-5 *1 (-1278)))))
-(((*1 *2 *3 *4 *4 *4 *4 *5 *5 *5)
- (-12 (-5 *3 (-1 (-384) (-384))) (-5 *4 (-384))
- (-5 *2
- (-2 (|:| -2308 *4) (|:| -3670 *4) (|:| |totalpts| (-570))
- (|:| |success| (-112))))
- (-5 *1 (-795)) (-5 *5 (-570)))))
-(((*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)) (|:| -3684 *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)) (|:| -3684 *4))))))
- (-5 *1 (-1078 *6 *7 *8 *3 *4)) (-4 *4 (-1080 *6 *7 *8 *3))))
+(((*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 (-1231)) (-5 *2 (-112)))))
+(((*1 *2 *3)
+ (-12 (-5 *3 (-650 (-227))) (-5 *2 (-1277 (-705))) (-5 *1 (-309)))))
+(((*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 (-1304 *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 (-1304 *5 *6 *7))
+ (-14 *6 (-650 (-1186))) (-14 *7 (-650 (-1186)))))
((*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)) (|:| -3684 *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)) (|:| -3684 *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))
+ (-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 (-1304 *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 (-1304 *4 *5 *6))
+ (-14 *5 (-650 (-1186))) (-14 *6 (-650 (-1186))))))
+(((*1 *2 *1 *1)
+ (-12 (-4 *3 (-368)) (-4 *3 (-1058))
+ (-5 *2 (-2 (|:| |coef1| *1) (|:| |coef2| *1) (|:| -2467 *1)))
+ (-4 *1 (-858 *3)))))
+(((*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 *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 (-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 *1) (-12 (-5 *2 (-1113)) (-5 *1 (-334)))))
+(((*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 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3684 *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))
+ (-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 (|:| |done| (-650 *4))
- (|:| |todo| (-650 (-2 (|:| |val| (-650 *3)) (|:| -3684 *4))))))
- (-5 *1 (-1154 *5 *6 *7 *3 *4)) (-4 *4 (-1118 *5 *6 *7 *3)))))
-(((*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 *3)
- (-12 (-4 *4 (-562))
- (-5 *2 (-2 (|:| |coef1| *3) (|:| |coef2| *3) (|:| -1942 *3)))
- (-5 *1 (-978 *4 *3)) (-4 *3 (-1253 *4)))))
-(((*1 *2 *3)
- (-12 (-4 *4 (-1253 (-413 *2))) (-5 *2 (-570)) (-5 *1 (-920 *4 *3))
- (-4 *3 (-1253 (-413 *4))))))
-(((*1 *2 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
-(((*1 *1 *1 *2) (-12 (-5 *2 (-1 (-112) (-115) (-115))) (-5 *1 (-115)))))
-(((*1 *2 *1) (-12 (-5 *2 (-1282)) (-5 *1 (-828)))))
+ (-2 (|:| |val| (-650 *8))
+ (|:| |towers| (-650 (-1155 *5 *6 *7 *8)))))
+ (-5 *1 (-1155 *5 *6 *7 *8)) (-5 *3 (-650 *8)))))
+(((*1 *1) (-5 *1 (-142))))
(((*1 *2) (-12 (-5 *2 (-839 (-570))) (-5 *1 (-540))))
((*1 *1) (-12 (-5 *1 (-839 *2)) (-4 *2 (-1109)))))
+(((*1 *2 *1)
+ (-12 (-5 *2 (-413 (-570))) (-5 *1 (-323 *3 *4 *5)) (-4 *3 (-368))
+ (-14 *4 (-1186)) (-14 *5 *3))))
+(((*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 *2 *3)
- (|partial| -12 (-5 *3 (-618 *4)) (-4 *4 (-1109)) (-4 *2 (-1109))
- (-5 *1 (-617 *2 *4)))))
-(((*1 *2 *3)
- (-12 (-5 *3 (-1144)) (-5 *2 (-697 (-284))) (-5 *1 (-169)))))
-(((*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) (|:| -3684 *4))))
- (-5 *1 (-1081 *5 *6 *7 *3 *4)) (-4 *4 (-1080 *5 *6 *7 *3)))))
-(((*1 *2 *1 *3) (-12 (-5 *3 (-227)) (-5 *2 (-1282)) (-5 *1 (-828)))))
-(((*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 *2)
- (-12 (-4 *3 (-458)) (-5 *1 (-1218 *3 *2))
- (-4 *2 (-13 (-436 *3) (-1212))))))
+ (-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 *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 (-827)) (-5 *4 (-52)) (-5 *2 (-1282)) (-5 *1 (-837)))))
+ (-12 (-5 *3 (-227)) (-5 *4 (-570)) (-5 *2 (-1044)) (-5 *1 (-764)))))
+(((*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 *1)
+ (-12 (|has| *1 (-6 -4453)) (-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 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227))))
+ ((*1 *1 *1 *1)
+ (-12 (|has| *1 (-6 -4453)) (-4 *1 (-1265 *2)) (-4 *2 (-1227)))))
+(((*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 *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)
- (|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))
- (-1795 (-4 *5 (-368))) (-4 *5 (-562)) (-5 *2 (-1277 (-413 *5)))
- (-5 *1 (-644 *5 *4)))))
+ (-12 (-5 *3 (-1186)) (-4 *5 (-368)) (-5 *2 (-650 (-1221 *5)))
+ (-5 *1 (-1285 *5)) (-5 *4 (-1221 *5)))))
(((*1 *2)
(-12 (-4 *2 (-13 (-436 *3) (-1011))) (-5 *1 (-279 *3 *2))
(-4 *3 (-562))))
@@ -17542,801 +17548,798 @@
(-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 (-1212))))
-(((*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 *1) (-12 (-4 *1 (-1001 *2)) (-4 *2 (-562)) (-4 *2 (-551))))
- ((*1 *1 *1) (-4 *1 (-1069))))
-(((*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 (-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 *3 *4)
- (-12 (-4 *4 (-368)) (-5 *2 (-650 (-1166 *4))) (-5 *1 (-289 *4 *5))
- (-5 *3 (-1166 *4)) (-4 *5 (-1268 *4)))))
-((-1310 . 733467) (-1311 . 733215) (-1312 . 733005) (-1313 . 732904)
- (-1314 . 732785) (-1315 . 732532) (-1316 . 732213) (-1317 . 732126)
- (-1318 . 732030) (-1319 . 731533) (-1320 . 731462) (-1321 . 731244)
- (-1322 . 731167) (-1323 . 731056) (-1324 . 730949) (-1325 . 730896)
- (-1326 . 730822) (-1327 . 730726) (-1328 . 730611) (-1329 . 730461)
- (-1330 . 730335) (-1331 . 728605) (-1332 . 728383) (-1333 . 728290)
- (-1334 . 728193) (-1335 . 728075) (-1336 . 727962) (-1337 . 727896)
- (-1338 . 727729) (-1339 . 727614) (-1340 . 727516) (-1341 . 727434)
- (-1342 . 727355) (-1343 . 727281) (-1344 . 727140) (-1345 . 726700)
- (-1346 . 726596) (-1347 . 726281) (-1348 . 726167) (-1349 . 725737)
- (-1350 . 725540) (-1351 . 725248) (-1352 . 725182) (-1353 . 724749)
- (-1354 . 722893) (-1355 . 722217) (-1356 . 707987) (-1357 . 707857)
- (-1358 . 707739) (-1359 . 707679) (-1360 . 707626) (-1361 . 707540)
- (-1362 . 707430) (-1363 . 707208) (-1364 . 707113) (-1365 . 706804)
- (-1366 . 706152) (-1367 . 706078) (-1368 . 705661) (-1369 . 705394)
- (-1370 . 705270) (-1371 . 705217) (-1372 . 705013) (-1373 . 704911)
- (-1374 . 704823) (-1375 . 704394) (-1376 . 704276) (-1377 . 704197)
- (-1378 . 704098) (-1379 . 703876) (-1380 . 703773) (-1381 . 699710)
- (-1382 . 699474) (-1383 . 699409) (-1384 . 699309) (-1385 . 696894)
- (-1386 . 696842) (-1387 . 696789) (-1388 . 695947) (-1389 . 695881)
- (-1390 . 695827) (-1391 . 695753) (-1392 . 694786) (-1393 . 694684)
- (-1394 . 694422) (-1395 . 694203) (-1396 . 694093) (-1397 . 693937)
- (-1398 . 693884) (-1399 . 693734) (-1400 . 693706) (-1401 . 692636)
- (-1402 . 692584) (-1403 . 692550) (-1404 . 692383) (-1405 . 691865)
- (-1406 . 691740) (-1407 . 691611) (-1408 . 691537) (-1409 . 691244)
- (-1410 . 690216) (-1411 . 690113) (-1412 . 689546) (-1413 . 689519)
- (-1414 . 689289) (-1415 . 689168) (-1416 . 689010) (-1417 . 688843)
- (-1418 . 688705) (-1419 . 688652) (-1420 . 688509) (-1421 . 688421)
- (-1422 . 688204) (-1423 . 688061) (-1424 . 687964) (-1425 . 684297)
- (-1426 . 684199) (-1427 . 684026) (-1428 . 683970) (-1429 . 683882)
- (-1430 . 683757) (-1431 . 683270) (-1432 . 683154) (-1433 . 683096)
- (-1434 . 682785) (-1435 . 682681) (-1436 . 680336) (-1437 . 680170)
- (-1438 . 680015) (-1439 . 679962) (-1440 . 679910) (-1441 . 679803)
- (-1442 . 679748) (-1443 . 679621) (-1444 . 679193) (-1445 . 679165)
- (-1446 . 679116) (-1447 . 678925) (-1448 . 678768) (-1449 . 678558)
- (-1450 . 677296) (-1451 . 677224) (-1452 . 676866) (-1453 . 676663)
- (-1454 . 676555) (-1455 . 676483) (-1456 . 676343) (-1457 . 676237)
- (-1458 . 676180) (-1459 . 676035) (-1460 . 675940) (-1461 . 675811)
- (-1462 . 675715) (-1463 . 675620) (-1464 . 675522) (-1465 . 675432)
- (-1466 . 675242) (-1467 . 675193) (-1468 . 675123) (-1469 . 674989)
- (-1470 . 674917) (-1471 . 674329) (-1472 . 674263) (-1473 . 674180)
- (-1474 . 674035) (-1475 . 673757) (-1476 . 673641) (-1477 . 673523)
- (-1478 . 673341) (-1479 . 673093) (-1480 . 672997) (** . 670003)
- (-1482 . 669925) (-1483 . 669858) (-1484 . 669668) (-1485 . 669570)
- (-1486 . 669499) (-1487 . 669362) (-1488 . 669277) (-1489 . 669217)
- (-1490 . 669161) (-1491 . 668634) (-1492 . 668537) (-1493 . 668291)
- (-1494 . 668114) (-1495 . 668035) (-1496 . 667962) (-1497 . 667726)
- (-1498 . 667580) (-1499 . 667485) (-1500 . 667421) (-1501 . 667369)
- (-1502 . 667142) (-1503 . 666916) (-1504 . 666597) (-1505 . 666394)
- (-1506 . 666247) (-1507 . 666124) (-1508 . 665872) (-1509 . 665672)
- (-1510 . 665494) (-1511 . 665364) (-1512 . 665309) (-1513 . 665232)
- (-1514 . 665175) (-1515 . 663207) (-1516 . 663121) (-1517 . 662889)
- (-1518 . 662770) (-1519 . 662486) (-1520 . 662449) (-1521 . 662350)
- (-1522 . 662184) (-1523 . 662096) (-1524 . 661983) (-1525 . 661872)
- (-1526 . 661771) (-1527 . 661669) (-1528 . 661597) (-1529 . 661565)
- (-1530 . 661506) (-1531 . 661211) (-1532 . 661177) (-1533 . 660879)
- (-1534 . 660780) (-1535 . 660700) (-1536 . 660651) (-1537 . 660533)
- (-1538 . 660131) (-1539 . 660049) (-1540 . 659774) (-1541 . 659723)
- (-1542 . 659649) (-1543 . 659530) (-1544 . 659402) (-1545 . 659292)
- (-1546 . 659219) (-1547 . 659122) (-1548 . 659004) (-1549 . 658870)
- (-1550 . 658817) (-1551 . 658710) (-1552 . 658464) (-1553 . 658322)
- (-1554 . 657996) (-1555 . 657940) (-1556 . 657838) (-1557 . 657650)
- (-1558 . 657577) (-1559 . 657374) (-1560 . 657115) (-1561 . 656916)
- (-1562 . 656158) (-1563 . 656053) (-1564 . 656004) (-1565 . 655840)
- (-1566 . 655752) (-1567 . 655675) (-1568 . 655101) (-1569 . 654949)
- (-1570 . 654761) (-1571 . 654492) (-1572 . 654433) (-1573 . 654211)
- (-1574 . 654056) (-1575 . 653948) (-1576 . 653871) (-1577 . 653799)
- (-1578 . 653237) (-1579 . 653163) (-1580 . 652987) (-1581 . 652737)
- (-1582 . 652497) (-1583 . 652394) (-1584 . 652360) (-1585 . 652265)
- (-1586 . 652171) (-1587 . 651662) (-1588 . 651523) (-1589 . 651013)
- (-1590 . 650800) (-1591 . 649836) (-1592 . 649720) (-1593 . 649626)
- (-1594 . 649520) (-1595 . 649436) (-1596 . 648990) (-1597 . 648893)
- (-1598 . 648733) (-1599 . 648524) (-1600 . 648439) (-1601 . 648259)
- (-1602 . 648052) (-1603 . 647924) (-1604 . 647786) (-1605 . 647677)
- (-1606 . 647565) (-1607 . 647506) (-1608 . 647115) (-1609 . 646960)
- (-1610 . 646757) (-1611 . 646661) (-1612 . 646604) (-1613 . 646567)
- (-1614 . 646371) (-1615 . 646243) (-1616 . 646193) (-1617 . 646097)
- (-1618 . 646023) (-1619 . 645969) (-1620 . 645839) (-1621 . 645393)
- (-1622 . 645303) (-1623 . 645244) (-1624 . 645131) (-1625 . 644879)
- (-1626 . 644793) (-1627 . 644727) (-1628 . 644504) (-1629 . 644476)
- (-1630 . 644366) (-1631 . 644220) (-1632 . 644153) (-1633 . 644091)
- (-1634 . 643866) (-1635 . 643813) (-1636 . 643735) (-1637 . 643664)
- (-1638 . 643578) (-1639 . 643281) (-1640 . 643082) (-1641 . 643014)
- (-1642 . 642913) (-1643 . 642659) (-1644 . 642476) (-1645 . 642323)
- (-1646 . 642185) (-1647 . 641818) (-1648 . 641744) (-1649 . 641576)
- (-1650 . 641481) (-1651 . 641381) (-1652 . 640108) (-1653 . 639844)
- (-1654 . 639464) (-1655 . 639351) (-1656 . 639269) (-1657 . 637973)
- (-1658 . 637918) (-1659 . 637834) (-1660 . 637645) (-1661 . 637574)
- (-1662 . 637491) (-1663 . 637218) (-1664 . 637190) (-1665 . 637119)
- (-1666 . 636948) (-1667 . 636893) (-1668 . 636825) (-1669 . 636615)
- (-1670 . 636498) (-1671 . 636427) (-1672 . 636142) (-1673 . 636063)
- (-1674 . 635759) (-1675 . 635649) (-1676 . 635561) (-1677 . 635422)
- (-1678 . 635279) (-1679 . 635205) (-1680 . 635018) (-1681 . 634850)
- (-1682 . 634796) (-1683 . 634681) (-1684 . 634486) (-1685 . 634330)
- (-1686 . 634200) (-1687 . 634090) (-1688 . 634005) (-1689 . 633869)
- (-1690 . 633728) (-1691 . 633618) (-1692 . 633566) (-1693 . 633347)
- (-1694 . 633297) (-1695 . 633202) (-1696 . 633059) (-1697 . 632960)
- (-1698 . 632829) (-1699 . 632572) (-1700 . 632460) (-1701 . 632153)
- (-1702 . 632067) (-1703 . 631959) (-1704 . 631904) (-1705 . 631370)
- (-1706 . 631225) (-1707 . 630979) (-1708 . 630901) (-1709 . 630824)
- (-1710 . 630730) (-1711 . 630561) (-1712 . 630311) (-1713 . 630101)
- (-1714 . 630016) (-1715 . 629964) (-1716 . 629798) (-1717 . 629624)
- (-1718 . 629402) (-1719 . 629176) (-1720 . 629021) (-1721 . 628884)
- (-1722 . 628798) (-1723 . 628591) (-1724 . 628370) (-1725 . 628187)
- (-1726 . 628056) (-1727 . 627986) (-1728 . 627954) (-1729 . 627849)
- (-1730 . 627766) (-1731 . 627650) (-1732 . 627404) (-1733 . 627176)
- (-1734 . 627078) (-1735 . 626831) (-1736 . 626721) (-1737 . 626516)
- (-1738 . 626345) (-1739 . 625899) (-1740 . 625839) (-1741 . 625240)
- (-1742 . 624381) (-1743 . 624052) (-1744 . 623942) (-1745 . 623451)
- (-1746 . 623365) (-1747 . 623150) (-1748 . 623013) (-1749 . 622854)
- (-1750 . 622647) (-1751 . 622527) (-1752 . 622447) (-1753 . 622276)
- (-1754 . 622098) (-1755 . 620802) (-1756 . 620773) (-1757 . 620615)
- (-1758 . 620565) (-1759 . 620112) (-1760 . 620028) (-1761 . 619537)
- (-1762 . 619363) (-1763 . 619205) (-1764 . 619047) (-1765 . 618951)
- (-1766 . 618874) (-1767 . 618786) (-1768 . 618626) (-1769 . 618252)
- (-1770 . 614245) (-1771 . 614192) (-1772 . 614086) (-1773 . 613962)
- (-1774 . 613895) (-1775 . 613812) (-1776 . 613740) (-1777 . 613536)
- (-1778 . 613398) (-1779 . 613304) (-1780 . 613235) (-1781 . 613183)
- (-1782 . 613112) (-1783 . 613021) (-1784 . 612926) (-1785 . 612816)
- (-1786 . 612709) (-1787 . 612638) (-1788 . 612492) (-1789 . 612214)
- (-1790 . 612114) (-1791 . 612058) (-1792 . 611913) (-1793 . 611738)
- (-1794 . 611593) (-1795 . 611534) (-1796 . 611446) (-1797 . 611349)
- (-1798 . 611246) (-1799 . 610852) (-1800 . 610708) (-1801 . 610509)
- (-1802 . 610456) (-1803 . 610390) (-1804 . 610292) (-1805 . 610194)
- (-1806 . 609861) (-1807 . 609753) (-1808 . 609700) (-1809 . 609635)
- (-1810 . 609573) (-1811 . 609417) (-1812 . 609389) (-1813 . 609288)
- (-1814 . 608728) (-1815 . 608662) (-1816 . 608630) (-1817 . 608571)
- (-1818 . 608353) (-1819 . 608185) (-1820 . 608011) (-1821 . 607925)
- (-1822 . 607752) (-1823 . 607687) (-1824 . 607631) (-1825 . 605865)
- (-1826 . 605565) (-1827 . 605482) (-1828 . 605341) (-1829 . 605232)
- (-1830 . 605074) (-1831 . 604881) (-1832 . 604812) (-1833 . 604638)
- (-1834 . 604553) (-1835 . 604483) (-1836 . 604100) (-1837 . 604002)
- (-1838 . 602547) (-1839 . 602490) (-1840 . 602398) (-1841 . 602321)
- (-1842 . 602205) (-1843 . 602115) (-1844 . 602057) (-1845 . 601925)
- (-1846 . 601872) (-1847 . 601779) (-1848 . 601397) (-1849 . 601147)
- (-1850 . 600760) (-1851 . 597097) (-1852 . 595607) (-1853 . 595513)
- (-1854 . 595398) (-1855 . 595125) (-1856 . 594988) (-1857 . 594171)
- (-1858 . 593937) (-1859 . 593823) (-1860 . 593723) (-1861 . 593449)
- (-1862 . 593344) (-1863 . 593243) (-1864 . 592912) (-1865 . 592846)
- (-1866 . 592751) (-1867 . 592518) (-1868 . 592382) (-1869 . 592301)
- (-1870 . 592244) (-1871 . 592191) (-1872 . 591587) (-1873 . 591529)
- (-1874 . 591328) (-1875 . 591081) (-1876 . 590923) (-1877 . 590187)
- (-1878 . 589811) (-1879 . 589759) (-1880 . 589623) (-1881 . 589558)
- (-1882 . 589446) (-1883 . 589380) (-1884 . 589236) (-1885 . 589133)
- (-1886 . 588970) (-1887 . 588841) (-1888 . 588713) (-1889 . 588606)
- (-1890 . 588492) (-1891 . 588354) (-1892 . 588258) (-1893 . 588139)
- (-1894 . 588002) (-1895 . 586924) (-1896 . 586783) (-1897 . 586677)
- (-1898 . 586549) (-1899 . 586462) (-1900 . 586409) (-1901 . 585982)
- (-1902 . 585632) (-1903 . 585480) (-1904 . 585322) (-1905 . 585126)
- (-1906 . 584995) (-1907 . 584837) (-1908 . 584501) (-1909 . 584286)
- (-1910 . 584164) (-1911 . 583281) (-1912 . 583123) (-1913 . 583053)
- (-1914 . 582956) (-1915 . 582312) (-1916 . 581868) (-1917 . 581680)
- (-1918 . 581579) (-1919 . 581247) (-1920 . 581147) (-1921 . 581077)
- (-1922 . 581003) (-1923 . 580908) (-1924 . 580849) (-1925 . 580675)
- (-1926 . 580579) (-1927 . 579407) (-1928 . 579185) (-1929 . 579112)
- (-1930 . 578825) (-1931 . 578697) (-1932 . 577984) (-1933 . 577928)
- (-1934 . 577833) (-1935 . 577613) (-1936 . 577585) (-1937 . 577512)
- (-1938 . 577397) (-1939 . 577055) (-1940 . 576845) (-1941 . 571676)
- (-1942 . 570574) (-1943 . 570216) (-1944 . 569996) (-1945 . 569869)
- (-1946 . 569725) (-1947 . 569697) (-1948 . 569614) (-1949 . 569548)
- (-1950 . 569390) (-1951 . 569262) (-1952 . 569176) (-1953 . 569055)
- (-1954 . 569027) (-1955 . 568712) (-1956 . 567575) (-1957 . 567361)
- (-1958 . 567178) (-1959 . 566993) (-1960 . 566420) (-1961 . 566033)
- (-1962 . 565887) (-1963 . 565722) (-1964 . 565126) (-1965 . 565044)
- (-1966 . 564945) (-1967 . 564896) (-1968 . 564795) (-1969 . 564686)
- (-1970 . 564573) (-1971 . 564487) (-1972 . 563619) (-1973 . 563511)
- (-1974 . 563221) (-1975 . 562691) (-1976 . 562592) (-1977 . 562296)
- (-1978 . 562046) (-1979 . 561309) (-1980 . 561090) (-1981 . 560997)
- (-1982 . 560876) (-1983 . 560842) (-1984 . 560679) (-1985 . 560563)
- (-1986 . 560427) (-1987 . 559759) (-1988 . 559705) (-1989 . 559645)
- (-1990 . 559494) (-1991 . 559287) (-1992 . 559160) (-1993 . 559023)
- (-1994 . 558886) (-1995 . 558763) (-1996 . 558704) (-1997 . 557708)
- (-1998 . 557549) (-1999 . 557423) (-2000 . 557371) (-2001 . 557286)
- (-2002 . 557021) (-2003 . 556962) (-2004 . 556815) (-2005 . 556742)
- (-2006 . 556656) (-2007 . 556556) (-2008 . 556300) (-2009 . 556019)
- (-2010 . 555987) (-2011 . 555913) (-2012 . 555850) (-2013 . 555671)
- (-2014 . 555492) (-2015 . 555411) (-2016 . 555330) (-2017 . 555025)
- (-2018 . 554931) (-2019 . 554807) (-2020 . 554527) (-2021 . 554424)
- (-2022 . 554153) (-2023 . 554082) (-2024 . 553544) (-2025 . 553449)
- (-2026 . 553415) (-2027 . 553253) (-2028 . 553095) (-2029 . 553040)
- (-2030 . 551259) (-2031 . 551041) (-2032 . 550962) (-2033 . 550792)
- (-2034 . 550686) (-2035 . 550159) (-2036 . 550065) (-2037 . 550013)
- (-2038 . 549927) (-2039 . 549503) (-2040 . 549355) (-2041 . 549269)
- (-2042 . 548878) (-2043 . 548755) (-2044 . 548508) (-2045 . 548282)
- (-2046 . 548193) (-2047 . 548074) (-2048 . 547954) (-2049 . 547902)
- (-2050 . 547475) (-2051 . 547351) (-2052 . 547264) (-2053 . 547206)
- (-2054 . 547085) (-2055 . 546975) (-2056 . 546524) (-2057 . 546465)
- (-2058 . 546073) (-2059 . 546023) (-2060 . 545889) (-2061 . 545793)
- (-2062 . 545701) (-2063 . 545617) (-2064 . 545200) (-2065 . 545040)
- (-2066 . 544943) (-2067 . 544836) (-2068 . 544122) (-2069 . 544011)
- (-2070 . 543955) (-2071 . 543927) (-2072 . 543821) (-2073 . 543793)
- (-2074 . 543663) (-2075 . 543469) (-2076 . 543275) (-2077 . 543204)
- (-2078 . 542911) (-2079 . 542804) (-2080 . 542727) (-2081 . 542616)
- (-2082 . 542542) (-2083 . 542454) (-2084 . 542397) (-2085 . 542343)
- (-2086 . 542315) (-2087 . 542006) (-2088 . 541906) (-2089 . 541757)
- (-2090 . 541578) (-2091 . 540975) (-2092 . 540861) (-2093 . 540806)
- (-2094 . 540503) (-2095 . 540407) (-2096 . 540283) (-2097 . 540151)
- (-2098 . 540099) (-2099 . 539939) (-2100 . 539862) (-2101 . 539704)
- (-2102 . 539652) (-2103 . 539599) (-2104 . 539540) (-2105 . 539269)
- (-2106 . 539115) (-2107 . 539020) (-2108 . 538967) (-2109 . 538844)
- (-2110 . 538648) (-2111 . 538620) (-2112 . 538536) (-2113 . 538441)
- (-2114 . 538345) (-2115 . 538246) (-2116 . 538089) (-2117 . 537990)
- (-2118 . 537931) (-2119 . 537753) (-2120 . 537716) (-2121 . 537664)
- (-2122 . 537576) (-2123 . 536688) (-2124 . 536486) (-2125 . 536309)
- (-2126 . 536130) (-2127 . 536071) (-2128 . 535943) (-2129 . 535890)
- (-2130 . 533776) (-2131 . 533406) (-2132 . 533304) (-2133 . 533198)
- (-2134 . 533023) (-2135 . 532970) (-2136 . 532855) (-2137 . 532331)
- (-2138 . 532250) (-2139 . 532198) (-2140 . 532043) (-2141 . 531964)
- (-2142 . 531912) (-2143 . 531757) (-2144 . 529979) (-2145 . 529626)
- (-2146 . 529520) (-2147 . 529312) (-2148 . 529278) (-2149 . 528055)
- (-2150 . 527976) (-2151 . 527906) (-2152 . 527853) (-2153 . 527767)
- (-2154 . 527627) (-2155 . 527457) (-2156 . 527126) (-2157 . 526795)
- (-2158 . 526739) (-2159 . 526534) (-2160 . 526448) (-2161 . 526354)
- (-2162 . 526249) (-2163 . 526177) (-2164 . 526122) (-2165 . 525980)
- (-2166 . 525845) (-2167 . 525782) (-2168 . 525564) (-2169 . 525494)
- (-2170 . 525357) (-2171 . 524931) (-2172 . 524388) (-2173 . 523944)
- (-2174 . 523860) (-2175 . 523738) (-2176 . 523316) (-2177 . 523233)
- (-2178 . 523108) (-2179 . 523030) (-2180 . 522866) (-2181 . 522762)
- (-2182 . 522703) (-2183 . 522651) (-2184 . 522568) (-2185 . 522484)
- (-2186 . 521973) (-2187 . 521924) (-2188 . 521757) (-2189 . 521458)
- (-2190 . 521316) (-2191 . 521237) (-2192 . 521160) (-2193 . 520646)
- (-2194 . 520550) (-2195 . 520466) (-2196 . 520139) (-2197 . 520062)
- (-2198 . 519906) (-2199 . 519734) (-2200 . 519592) (-2201 . 519519)
- (-2202 . 519284) (-2203 . 519229) (-2204 . 519088) (-2205 . 518917)
- (-2206 . 518335) (-2207 . 518222) (-2208 . 518109) (-2209 . 517499)
- (-2210 . 517430) (-2211 . 516939) (-2212 . 516431) (-2213 . 515872)
- (-2214 . 515699) (-2215 . 515631) (-2216 . 515535) (-2217 . 515476)
- (-2218 . 515419) (-2219 . 515167) (-2220 . 515077) (-2221 . 514873)
- (-2222 . 514609) (-2223 . 514496) (-2224 . 514278) (-2225 . 513719)
- (-2226 . 513628) (-2227 . 513455) (-2228 . 513307) (-2229 . 513204)
- (-2230 . 513149) (-2231 . 512489) (-2232 . 512406) (-2233 . 512353)
- (-2234 . 512300) (-2235 . 512140) (-2236 . 512030) (-2237 . 511706)
- (-2238 . 511618) (-2239 . 511534) (-2240 . 511449) (-2241 . 511314)
- (-2242 . 511262) (-2243 . 511071) (-2244 . 511019) (-2245 . 510746)
- (-2246 . 510633) (-2247 . 510552) (-2248 . 510439) (-2249 . 508850)
- (-2250 . 508740) (-2251 . 508706) (-2252 . 508543) (-2253 . 508456)
- (-2254 . 508399) (-2255 . 508024) (-2256 . 507669) (-2257 . 506489)
- (-2258 . 506383) (-2259 . 506355) (-2260 . 506017) (-2261 . 505944)
- (-2262 . 505862) (-2263 . 505774) (-2264 . 505702) (-2265 . 505575)
- (-2266 . 505280) (-2267 . 505168) (-2268 . 504841) (-2269 . 504668)
- (-2270 . 504612) (-2271 . 504431) (-2272 . 504239) (-2273 . 504059)
- (-2274 . 503960) (-2275 . 503762) (-2276 . 503599) (-2277 . 503500)
- (-2278 . 503405) (-2279 . 503062) (-2280 . 502968) (-2281 . 502901)
- (-2282 . 502846) (-2283 . 502718) (-2284 . 502639) (-2285 . 502457)
- (-2286 . 502204) (-2287 . 502052) (-2288 . 501721) (-2289 . 501606)
- (-2290 . 501484) (-2291 . 501192) (-2292 . 501094) (-2293 . 500978)
- (-2294 . 500917) (-2295 . 500743) (-2296 . 500671) (-2297 . 500570)
- (-2298 . 500496) (-2299 . 500377) (-2300 . 500297) (-2301 . 500213)
- (-2302 . 500103) (-2303 . 499972) (-2304 . 499829) (-2305 . 499671)
- (-2306 . 499558) (-2307 . 499477) (-2308 . 499165) (-2309 . 498923)
- (-2310 . 498736) (-2311 . 498663) (-2312 . 498445) (-2313 . 498193)
- (-2314 . 498140) (-2315 . 498069) (-2316 . 497910) (-2317 . 497842)
- (-2318 . 497715) (-2319 . 497644) (-2320 . 497558) (-2321 . 497159)
- (-2322 . 497051) (-2323 . 496840) (-2324 . 496682) (-2325 . 496529)
- (-2326 . 496314) (-2327 . 496262) (-2328 . 496143) (-2329 . 496057)
- (-2330 . 495712) (-2331 . 495684) (-2332 . 495588) (-2333 . 495493)
- (-2334 . 495385) (-2335 . 495329) (-2336 . 495206) (-2337 . 494958)
- (-2338 . 494893) (-2339 . 494838) (-2340 . 493636) (-2341 . 493557)
- (-2342 . 493411) (-2343 . 492754) (-2344 . 492635) (-2345 . 492479)
- (-2346 . 492426) (-2347 . 492349) (-2348 . 492158) (-2349 . 492013)
- (-2350 . 491832) (-2351 . 491736) (-2352 . 491561) (-2353 . 491251)
- (-2354 . 491198) (-2355 . 490710) (-2356 . 490479) (-2357 . 490428)
- (-2358 . 490247) (-2359 . 489712) (-2360 . 489233) (-2361 . 489110)
- (-2362 . 488855) (-2363 . 488771) (-2364 . 488360) (-2365 . 488308)
- (-2366 . 488217) (-2367 . 488149) (-2368 . 488021) (-2369 . 487877)
- (-2370 . 487807) (-2371 . 487779) (-2372 . 487451) (-2373 . 487252)
- (-2374 . 487057) (-2375 . 486832) (-2376 . 486737) (-2377 . 486512)
- (-2378 . 486226) (-2379 . 486045) (-2380 . 485669) (-2381 . 485617)
- (-2382 . 485544) (-2383 . 485449) (-2384 . 485028) (-2385 . 484875)
- (-2386 . 484812) (-2387 . 484744) (-2388 . 484684) (-2389 . 484313)
- (-2390 . 484240) (-2391 . 484160) (-2392 . 484107) (-2393 . 484019)
- (-2394 . 483918) (-2395 . 483819) (-2396 . 483738) (-2397 . 483679)
- (-2398 . 483584) (-2399 . 483419) (-2400 . 483364) (-2401 . 482741)
- (-2402 . 482674) (-2403 . 482597) (-2404 . 482405) (-2405 . 482187)
- (-2406 . 482016) (-2407 . 481916) (-2408 . 481740) (-2409 . 481399)
- (-2410 . 481347) (-2411 . 481192) (-2412 . 481134) (-2413 . 481038)
- (-2414 . 480908) (-2415 . 480804) (-2416 . 480751) (-2417 . 480358)
- (-2418 . 480190) (-2419 . 480069) (-2420 . 479850) (-2421 . 479753)
- (-2422 . 479668) (-2423 . 479568) (-2424 . 479396) (-2425 . 479229)
- (-2426 . 478820) (-2427 . 478743) (-2428 . 478264) (-2429 . 478191)
- (-2430 . 478157) (-2431 . 476959) (-2432 . 476862) (-2433 . 476704)
- (-2434 . 476651) (-2435 . 476366) (-2436 . 476313) (-2437 . 475940)
- (-2438 . 475815) (-2439 . 475719) (-2440 . 475539) (-2441 . 475465)
- (-2442 . 475391) (-2443 . 475321) (-2444 . 475271) (-2445 . 475187)
- (-2446 . 475074) (-2447 . 475000) (-2448 . 474398) (-2449 . 474179)
- (-2450 . 474015) (-2451 . 473798) (-2452 . 473689) (-2453 . 473402)
- (-2454 . 473350) (-2455 . 473227) (-2456 . 473173) (-2457 . 472886)
- (-2458 . 472706) (-2459 . 472616) (-2460 . 472514) (-2461 . 472445)
- (-2462 . 472348) (-2463 . 472244) (-2464 . 471948) (-2465 . 471817)
- (-2466 . 471206) (-2467 . 471045) (-2468 . 470944) (-2469 . 470789)
- (-2470 . 470253) (-2471 . 470179) (-2472 . 470084) (-2473 . 470032)
- (-2474 . 469937) (-2475 . 469612) (-2476 . 469533) (-2477 . 469449)
- (-2478 . 468916) (-2479 . 468837) (-2480 . 468454) (-2481 . 468284)
- (-2482 . 468213) (-2483 . 468130) (-2484 . 467794) (-2485 . 467696)
- (-2486 . 467326) (-2487 . 467148) (-2488 . 466980) (-2489 . 466899)
- (-2490 . 466786) (-2491 . 466716) (-2492 . 466597) (-2493 . 466415)
- (-2494 . 466255) (-2495 . 466166) (-2496 . 466076) (-2497 . 465678)
- (-2498 . 465594) (-2499 . 465370) (-2500 . 465193) (-2501 . 465003)
- (-2502 . 464926) (-2503 . 464616) (-2504 . 464195) (-2505 . 464065)
- (-2506 . 463968) (-2507 . 463936) (-2508 . 463129) (-2509 . 462970)
- (-2510 . 462942) (-2511 . 462864) (-2512 . 462654) (-2513 . 462548)
- (-2514 . 462486) (-2515 . 462361) (-2516 . 462265) (-2517 . 461993)
- (-2518 . 461896) (-2519 . 461583) (-2520 . 461356) (-2521 . 461217)
- (-2522 . 460860) (-2523 . 460314) (-2524 . 460257) (-2525 . 460049)
- (-2526 . 459732) (-2527 . 459645) (-2528 . 459268) (-2529 . 459185)
- (-2530 . 459129) (-2531 . 458980) (-2532 . 458800) (-2533 . 458704)
- (-2534 . 458560) (-2535 . 458487) (-2536 . 458358) (-2537 . 458280)
- (-2538 . 458117) (-2539 . 458034) (-2540 . 457950) (-2541 . 457816)
- (-2542 . 457672) (-2543 . 457601) (-2544 . 457448) (-2545 . 457393)
- (-2546 . 457140) (-2547 . 456279) (-2548 . 456000) (-2549 . 455920)
- (-2550 . 455868) (-2551 . 455604) (-2552 . 455521) (-2553 . 455177)
- (-2554 . 455105) (-2555 . 454729) (-2556 . 454603) (-2557 . 454460)
- (-2558 . 454373) (-2559 . 454295) (-2560 . 454200) (-2561 . 453988)
- (-2562 . 453894) (-2563 . 453786) (-2564 . 453435) (-2565 . 453093)
- (-2566 . 452878) (-2567 . 452598) (-2568 . 452495) (-2569 . 452128)
- (-2570 . 451965) (-2571 . 451531) (-2572 . 451430) (-2573 . 451180)
- (-2574 . 451149) (-2575 . 450686) (-2576 . 450582) (-2577 . 450374)
- (-2578 . 450304) (-2579 . 450273) (-2580 . 450223) (-2581 . 450140)
- (-2582 . 449776) (-2583 . 449693) (-2584 . 449063) (-2585 . 448931)
- (-2586 . 448785) (-2587 . 448454) (-2588 . 448299) (-2589 . 448028)
- (-2590 . 447933) (-2591 . 447773) (-2592 . 447677) (-2593 . 447591)
- (-2594 . 447518) (-2595 . 447422) (-2596 . 446876) (-2597 . 446824)
- (-2598 . 446738) (-2599 . 446234) (-2600 . 446137) (-2601 . 445979)
- (-2602 . 445929) (-2603 . 445805) (-2604 . 445732) (-2605 . 445663)
- (-2606 . 445497) (-2607 . 445367) (-2608 . 445221) (-2609 . 444905)
- (-2610 . 444484) (-2611 . 444413) (-2612 . 444300) (-2613 . 444184)
- (-2614 . 444018) (-2615 . 443610) (-2616 . 443555) (-2617 . 443403)
- (-2618 . 443251) (-2619 . 443209) (-2620 . 442552) (-2621 . 441908)
- (-2622 . 441422) (-2623 . 441297) (-2624 . 441176) (-2625 . 441018)
- (-2626 . 440628) (-2627 . 440554) (-2628 . 440441) (-2629 . 440351)
- (-2630 . 439937) (-2631 . 439685) (-2632 . 439582) (-2633 . 439434)
- (-2634 . 439287) (-2635 . 439069) (-2636 . 438901) (-2637 . 438806)
- (-2638 . 438568) (-2639 . 438226) (-2640 . 438142) (-2641 . 437522)
- (-2642 . 437398) (-2643 . 437344) (-2644 . 437083) (-2645 . 436885)
- (-2646 . 436829) (-2647 . 436773) (-2648 . 436687) (-2649 . 436508)
- (-2650 . 436445) (-2651 . 435900) (-2652 . 434752) (-2653 . 434667)
- (-2654 . 434573) (-2655 . 434472) (-2656 . 434084) (-2657 . 433968)
- (-2658 . 433894) (-2659 . 433790) (-2660 . 433663) (-2661 . 433484)
- (-2662 . 433404) (-2663 . 433334) (-2664 . 433092) (-2665 . 433026)
- (-2666 . 432970) (-2667 . 432695) (-2668 . 432238) (-2669 . 431976)
- (-2670 . 431893) (-2671 . 431788) (-2672 . 431638) (-2673 . 430640)
- (-2674 . 430612) (-2675 . 430396) (-2676 . 429686) (-2677 . 429609)
- (-2678 . 429467) (-2679 . 429394) (-2680 . 429236) (-2681 . 429170)
- (-2682 . 429033) (-2683 . 428959) (-2684 . 428873) (-2685 . 428734)
- (-2686 . 428602) (-2687 . 428543) (-2688 . 428080) (-2689 . 428011)
- (-2690 . 427879) (-2691 . 427775) (-2692 . 427481) (-2693 . 427219)
- (-2694 . 427150) (-2695 . 426676) (-2696 . 426309) (-2697 . 426131)
- (-2698 . 426074) (-2699 . 425958) (-2700 . 425924) (-2701 . 425773)
- (-2702 . 425739) (-2703 . 425623) (-2704 . 425521) (-2705 . 425413)
- (-2706 . 425362) (-2707 . 425228) (-2708 . 425176) (-2709 . 425045)
- (-2710 . 424481) (-2711 . 424428) (-2712 . 424295) (-2713 . 424266)
- (-2714 . 424145) (-2715 . 424086) (-2716 . 424013) (-2717 . 423819)
- (-2718 . 423578) (-2719 . 423477) (-2720 . 423181) (-2721 . 423075)
- (-2722 . 422943) (-2723 . 422814) (-2724 . 422621) (-2725 . 422492)
- (-2726 . 422259) (-2727 . 422207) (-2728 . 422176) (-2729 . 422117)
- (-2730 . 421157) (-2731 . 420929) (-2732 . 420801) (-2733 . 420072)
- (-2734 . 418732) (-2735 . 418701) (-2736 . 418543) (-2737 . 418228)
- (-2738 . 418151) (-2739 . 418047) (-2740 . 417318) (-2741 . 417086)
- (-2742 . 416727) (-2743 . 416333) (-2744 . 416278) (-2745 . 415854)
- (-2746 . 415750) (-2747 . 415655) (-2748 . 415542) (-2749 . 414477)
- (-2750 . 414274) (-2751 . 413598) (-2752 . 413368) (-2753 . 413230)
- (-2754 . 412886) (-2755 . 412402) (-2756 . 412306) (-2757 . 412234)
- (-2758 . 412157) (-2759 . 411806) (-2760 . 411734) (-2761 . 411632)
- (-2762 . 411575) (-2763 . 411522) (-2764 . 411437) (-2765 . 411324)
- (-2766 . 410760) (-2767 . 410551) (-2768 . 410259) (-2769 . 409965)
- (-2770 . 409895) (-2771 . 409821) (-2772 . 409373) (-2773 . 409122)
- (-2774 . 408558) (-2775 . 408405) (-2776 . 408260) (-2777 . 408088)
- (-2778 . 407940) (-2779 . 407801) (-2780 . 407167) (-2781 . 407052)
- (-2782 . 406692) (-2783 . 406627) (-2784 . 406593) (-2785 . 406512)
- (-2786 . 406256) (-2787 . 406156) (-2788 . 405592) (-2789 . 404366)
- (-2790 . 404194) (-2791 . 404041) (-2792 . 403756) (-2793 . 403562)
- (-2794 . 403449) (-2795 . 403388) (-2796 . 403248) (-2797 . 402810)
- (-2798 . 402292) (-2799 . 402240) (-2800 . 401962) (-2801 . 401288)
- (-2802 . 401116) (-2803 . 401048) (-2804 . 400814) (-2805 . 399996)
- (-2806 . 399894) (-2807 . 399842) (-2808 . 399642) (-2809 . 399569)
- (-2810 . 399346) (-2811 . 399227) (-2812 . 399150) (-2813 . 399077)
- (-2814 . 398403) (-2815 . 398231) (-2816 . 398174) (-2817 . 398077)
- (-2818 . 397857) (-2819 . 397576) (-2820 . 397307) (-2821 . 397202)
- (-2822 . 397061) (-2823 . 396922) (-2824 . 396773) (-2825 . 396036)
- (-2826 . 395878) (-2827 . 395755) (-2828 . 395148) (-2829 . 394968)
- (-2830 . 394885) (-2831 . 394109) (-2832 . 393925) (-2833 . 393876)
- (-2834 . 393723) (-2835 . 393161) (-2836 . 393045) (-2837 . 392979)
- (-2838 . 392905) (-2839 . 392817) (-2840 . 392765) (-2841 . 392518)
- (-2842 . 390290) (-2843 . 390094) (-2844 . 389869) (-2845 . 389307)
- (-2846 . 389060) (-2847 . 388991) (-2848 . 388917) (-2849 . 388844)
- (-2850 . 388781) (-2851 . 388698) (-2852 . 388540) (-2853 . 388222)
- (-2854 . 388084) (-2855 . 387522) (-2856 . 387463) (-2857 . 387298)
- (-2858 . 386993) (-2859 . 386507) (-2860 . 386437) (-2861 . 386343)
- (-2862 . 385922) (-2863 . 385732) (-2864 . 385680) (-2865 . 385608)
- (-2866 . 384933) (-2867 . 384591) (-2868 . 384492) (-2869 . 384408)
- (-2870 . 384213) (-2871 . 384082) (-2872 . 383958) (-2873 . 383872)
- (-2874 . 383794) (-2875 . 382577) (-2876 . 381902) (-2877 . 381656)
- (-2878 . 381471) (-2879 . 381394) (-2880 . 381195) (-2881 . 381036)
- (-2882 . 380939) (-2883 . 380679) (-2884 . 380545) (-2885 . 380359)
- (-2886 . 380169) (-2887 . 379494) (-2888 . 379427) (-2889 . 379360)
- (-2890 . 379238) (-2891 . 379168) (-2892 . 378996) (-2893 . 378918)
- (-2894 . 378865) (-2895 . 378728) (-2896 . 378675) (-2897 . 378571)
- (-2898 . 371628) (-2899 . 371065) (-2900 . 370979) (-2901 . 370825)
- (-2902 . 370627) (-12 . 370455) (-2904 . 370361) (-2905 . 370224)
- (-2906 . 370120) (-2907 . 370067) (-2908 . 369988) (-2909 . 369935)
- (-2910 . 369861) (-2911 . 369266) (-2912 . 369085) (-2913 . 368933)
- (-2914 . 368738) (-2915 . 368350) (-2916 . 368266) (-2917 . 368153)
- (-2918 . 368012) (-2919 . 367983) (-2920 . 367869) (-2921 . 367737)
- (-2922 . 367592) (-2923 . 367361) (-2924 . 367158) (-2925 . 366998)
- (-2926 . 366853) (-2927 . 366745) (-2928 . 366679) (-2929 . 366517)
- (-2930 . 365766) (-2931 . 365659) (-2932 . 365607) (-2933 . 365240)
- (-2934 . 364970) (-2935 . 364890) (-2936 . 364770) (-2937 . 364675)
- (-2938 . 364546) (-2939 . 364494) (-2940 . 364305) (-2941 . 364277)
- (-2942 . 363445) (-2943 . 363149) (-2944 . 362603) (-2945 . 362520)
- (-2946 . 362400) (-2947 . 362240) (-2948 . 362146) (-2949 . 362093)
- (-2950 . 361950) (-2951 . 361215) (-2952 . 361072) (-2953 . 360938)
- (-2954 . 360886) (-2955 . 360675) (-2956 . 360196) (-2957 . 360123)
- (-2958 . 359937) (-2959 . 358151) (-2960 . 357722) (-2961 . 357474)
- (-2962 . 357199) (-2963 . 357111) (-2964 . 356967) (-2965 . 356715)
- (-2966 . 356611) (-2967 . 356293) (-2968 . 356152) (-2969 . 355999)
- (-2970 . 355774) (-2971 . 355132) (-2972 . 355046) (-2973 . 354606)
- (-2974 . 354518) (-2975 . 354466) (-2976 . 354305) (-2977 . 354005)
- (-2978 . 353880) (-2979 . 353779) (-2980 . 353707) (-2981 . 353612)
- (-2982 . 353312) (-2983 . 352904) (-2984 . 352831) (-2985 . 352738)
- (-2986 . 352457) (-2987 . 352122) (-2988 . 352038) (-2989 . 352010)
- (* . 347743) (-2991 . 347541) (-2992 . 347446) (-2993 . 347348)
- (-2994 . 347195) (-2995 . 346691) (-2996 . 346445) (-2997 . 346124)
- (-2998 . 346026) (-2999 . 345871) (-3000 . 345800) (-3001 . 345748)
- (-3002 . 345583) (-3003 . 345495) (-3004 . 345193) (-3005 . 345105)
- (-3006 . 344982) (-3007 . 344769) (-3008 . 344090) (-3009 . 343999)
- (-3010 . 343947) (-3011 . 343859) (-3012 . 343757) (-3013 . 343705)
- (-3014 . 343568) (-3015 . 343502) (-3016 . 343327) (-3017 . 343082)
- (-3018 . 343022) (-3019 . 342890) (-3020 . 342812) (-3021 . 342653)
- (-3022 . 342381) (-3023 . 342298) (-3024 . 341779) (-3025 . 341676)
- (-3026 . 341521) (-3027 . 341409) (-3028 . 341067) (-3029 . 340948)
- (-3030 . 340860) (-3031 . 340733) (-3032 . 340524) (-3033 . 340409)
- (-3034 . 340350) (-3035 . 340240) (-3036 . 340125) (-3037 . 340009)
- (-3038 . 339935) (-3039 . 336636) (-3040 . 336325) (-3041 . 336160)
- (-3042 . 335929) (-3043 . 335340) (-3044 . 335135) (-3045 . 335038)
- (-3046 . 334986) (-3047 . 334753) (-3048 . 334657) (-3049 . 334537)
- (-3050 . 334457) (-3051 . 334317) (-3052 . 334230) (-3053 . 334171)
- (-3054 . 334075) (-3055 . 333877) (-3056 . 333724) (-3057 . 333527)
- (-3058 . 333414) (-3059 . 332612) (-3060 . 332470) (-3061 . 332404)
- (-3062 . 332245) (-3063 . 331837) (-3064 . 331471) (-3065 . 331416)
- (-3066 . 331256) (-3067 . 331227) (-3068 . 331111) (-3069 . 331051)
- (-3070 . 330872) (-3071 . 330765) (-3072 . 330678) (-3073 . 330621)
- (-3074 . 330590) (-3075 . 330237) (-3076 . 330112) (-3077 . 330053)
- (-3078 . 329865) (-3079 . 329232) (-3080 . 329071) (-3081 . 329003)
- (-3082 . 328488) (-3083 . 328344) (-3084 . 328171) (-3085 . 328106)
- (-3086 . 328040) (-3087 . 327885) (-3088 . 327790) (-3089 . 327711)
- (-3090 . 327501) (-3091 . 327435) (-3092 . 327358) (-3093 . 327287)
- (-3094 . 327161) (-3095 . 326998) (-3096 . 326878) (-3097 . 326622)
- (-3098 . 326563) (-3099 . 326511) (-3100 . 326272) (-3101 . 325086)
- (-3102 . 324847) (-3103 . 324748) (-3104 . 324488) (-3105 . 324379)
- (-3106 . 324351) (-3107 . 324245) (-3108 . 324186) (-3109 . 323972)
- (-3110 . 323846) (-3111 . 322664) (-3112 . 322582) (-3113 . 322499)
- (-3114 . 322418) (-3115 . 322320) (-3116 . 322267) (-3117 . 322158)
- (-3118 . 322063) (-3119 . 321824) (-3120 . 321722) (-3121 . 321690)
- (-3122 . 319482) (-3123 . 319151) (-3124 . 318866) (-3125 . 318722)
- (-3126 . 318454) (-3127 . 318353) (-3128 . 318164) (-3129 . 318040)
- (-3130 . 317988) (-3131 . 317506) (-3132 . 317438) (-3133 . 317335)
- (-3134 . 317121) (-3135 . 316610) (-9 . 316582) (-3137 . 316489)
- (-3138 . 316461) (-3139 . 316408) (-3140 . 316309) (-3141 . 316177)
- (-3142 . 316064) (-3143 . 315993) (-3144 . 315807) (-3145 . 315606)
- (-8 . 315578) (-3147 . 315544) (-3148 . 315473) (-3149 . 315275)
- (-3150 . 315132) (-3151 . 315046) (-3152 . 314792) (-7 . 314764)
- (-3154 . 314653) (-3155 . 314497) (-3156 . 314426) (-3157 . 314343)
- (-3158 . 314277) (-3159 . 314221) (-3160 . 313972) (-3161 . 313788)
- (-3162 . 313570) (-3163 . 313388) (-3164 . 313103) (-3165 . 313008)
- (-3166 . 312805) (-3167 . 312129) (-3168 . 311931) (-3169 . 311854)
- (-3170 . 311751) (-3171 . 311533) (-3172 . 311410) (-3173 . 311131)
- (-3174 . 311065) (-3175 . 311007) (-3176 . 310935) (-3177 . 310839)
- (-3178 . 310780) (-3179 . 309964) (-3180 . 309825) (-3181 . 309701)
- (-3182 . 309601) (-3183 . 309314) (-3184 . 309262) (-3185 . 309144)
- (-3186 . 308978) (-3187 . 308882) (-3188 . 308789) (-3189 . 308624)
- (-3190 . 307961) (-3191 . 306663) (-3192 . 306448) (-3193 . 306254)
- (-3194 . 306025) (-3195 . 305771) (-3196 . 305613) (-3197 . 305561)
- (-3198 . 305358) (-3199 . 305285) (-3200 . 305170) (-3201 . 305029)
- (-3202 . 304955) (-3203 . 304902) (-3204 . 304803) (-3205 . 304488)
- (-3206 . 304417) (-3207 . 303991) (-3208 . 303750) (-3209 . 303635)
- (-3210 . 303261) (-3211 . 302723) (-3212 . 302426) (-3213 . 302303)
- (-3214 . 302237) (-3215 . 302142) (-3216 . 296803) (-3217 . 296497)
- (-3218 . 296379) (-3219 . 296221) (-3220 . 296143) (-3221 . 295389)
- (-3222 . 295005) (-3223 . 294567) (-3224 . 294208) (-3225 . 294099)
- (-3226 . 294044) (-3227 . 293867) (-3228 . 293737) (-3229 . 293687)
- (-3230 . 293542) (-3231 . 293281) (-3232 . 293140) (-3233 . 292662)
- (-3234 . 292558) (-3235 . 292415) (-3236 . 292359) (-3237 . 292330)
- (-3238 . 292200) (-3239 . 292140) (-3240 . 292081) (-3241 . 291931)
- (-3242 . 291280) (-3243 . 290683) (-3244 . 290194) (-3245 . 290096)
- (-3246 . 289994) (-3247 . 289901) (-3248 . 289842) (-3249 . 289099)
- (-3250 . 289005) (-3251 . 288909) (-3252 . 288856) (-3253 . 288724)
- (-3254 . 288623) (-3255 . 288456) (-3256 . 288386) (-3257 . 288334)
- (-3258 . 288211) (-3259 . 288090) (-3260 . 287941) (-3261 . 286760)
- (-3262 . 286692) (-3263 . 286396) (-3264 . 286020) (-3265 . 285898)
- (-3266 . 285816) (-3267 . 285557) (-3268 . 285474) (-3269 . 285311)
- (-3270 . 283879) (-3271 . 283802) (-3272 . 283741) (-3273 . 283545)
- (-3274 . 283485) (-3275 . 283174) (-3276 . 282813) (-3277 . 282785)
- (-3278 . 282558) (-3279 . 282439) (-3280 . 282308) (-3281 . 282214)
- (-3282 . 282161) (-3283 . 282109) (-3284 . 282046) (-3285 . 281799)
- (-3286 . 281651) (-3287 . 281471) (-3288 . 281352) (-3289 . 281320)
- (-3290 . 281268) (-3291 . 281105) (-3292 . 281005) (-3293 . 280737)
- (-3294 . 280613) (-3295 . 280491) (-3296 . 280132) (-3297 . 280081)
- (-3298 . 279935) (-3299 . 279702) (-3300 . 279523) (-3301 . 279070)
- (-3302 . 278966) (-3303 . 278867) (-3304 . 278749) (-3305 . 278517)
- (-3306 . 278410) (-3307 . 278250) (-3308 . 278198) (-3309 . 278126)
- (-3310 . 278040) (-3311 . 277689) (-3312 . 277601) (-3313 . 277546)
- (-3314 . 277268) (-3315 . 277216) (-3316 . 276970) (-3317 . 276793)
- (-3318 . 275365) (-3319 . 275307) (-3320 . 275234) (-3321 . 274648)
- (-3322 . 274565) (-3323 . 274464) (-3324 . 274368) (-3325 . 274215)
- (-3326 . 274153) (-3327 . 274087) (-3328 . 273841) (-3329 . 273356)
- (-3330 . 272990) (-3331 . 272922) (-3332 . 272831) (-3333 . 272696)
- (-3334 . 272627) (-3335 . 272553) (-3336 . 272426) (-3337 . 272331)
- (-3338 . 272258) (-3339 . 272117) (-3340 . 272037) (-3341 . 271908)
- (-3342 . 271825) (-3343 . 271773) (-3344 . 271635) (-3345 . 271533)
- (-3346 . 271221) (-3347 . 270930) (-3348 . 270814) (-3349 . 270641)
- (-3350 . 270570) (-3351 . 270225) (-3352 . 269639) (-3353 . 269582)
- (-3354 . 269508) (-3355 . 269425) (-3356 . 269115) (-3357 . 268647)
- (-3358 . 268563) (-3359 . 268494) (-3360 . 268107) (-3361 . 267309)
- (-3362 . 266831) (-3363 . 266613) (-3364 . 266301) (-3365 . 266166)
- (-3366 . 266073) (-3367 . 266002) (-3368 . 265783) (-3369 . 265510)
- (-3370 . 265367) (-3371 . 265251) (-3372 . 264825) (-3373 . 264607)
- (-3374 . 264454) (-3375 . 264162) (-3376 . 263782) (-3377 . 263144)
- (-3378 . 262897) (-3379 . 262768) (-3380 . 262718) (-3381 . 262638)
- (-3382 . 262352) (-3383 . 262300) (-3384 . 262024) (-3385 . 261962)
- (-3386 . 261722) (-3387 . 261636) (-3388 . 261563) (-3389 . 261309)
- (-3390 . 261118) (-3391 . 260743) (-3392 . 260690) (-3393 . 260259)
- (-3394 . 260117) (-3395 . 259745) (-3396 . 259194) (-3397 . 259009)
- (-3398 . 258917) (-3399 . 258839) (-3400 . 258761) (-3401 . 258617)
- (-3402 . 258150) (-3403 . 257944) (-3404 . 257782) (-3405 . 257583)
- (-3406 . 257467) (-3407 . 257371) (-3408 . 257307) (-3409 . 257226)
- (-3410 . 257154) (-3411 . 257101) (-3412 . 256985) (-3413 . 256901)
- (-3414 . 256829) (-3415 . 256586) (-3416 . 256205) (-3417 . 256108)
- (-3418 . 253267) (-3419 . 253148) (-3420 . 253033) (-3421 . 252980)
- (-3422 . 252909) (-3423 . 252811) (-3424 . 251619) (-3425 . 251591)
- (-3426 . 251510) (-3427 . 251432) (-3428 . 251162) (-3429 . 250711)
- (-3430 . 250378) (-3431 . 250267) (-3432 . 250071) (-3433 . 249905)
- (-3434 . 249457) (-3435 . 249319) (-3436 . 249186) (-3437 . 249103)
- (-3438 . 249051) (-3439 . 247605) (-3440 . 247458) (-3441 . 247217)
- (-3442 . 247143) (-3443 . 246739) (-3444 . 246677) (-3445 . 246570)
- (-3446 . 245947) (-3447 . 245809) (-3448 . 245648) (-3449 . 245358)
- (-3450 . 245169) (-3451 . 244818) (-3452 . 244524) (-3453 . 244456)
- (-3454 . 244074) (-3455 . 243959) (-3456 . 243749) (-3457 . 243672)
- (-3458 . 243520) (-3459 . 243364) (-3460 . 243278) (-3461 . 243028)
- (-3462 . 242934) (-3463 . 242624) (-3464 . 242483) (-3465 . 242354)
- (-3466 . 242076) (-3467 . 241589) (-3468 . 241512) (-3469 . 241382)
- (-3470 . 241299) (-3471 . 241198) (-3472 . 241096) (-3473 . 241041)
- (-3474 . 240864) (-3475 . 240812) (-3476 . 231362) (-3477 . 231022)
- (-3478 . 230945) (-3479 . 230887) (-3480 . 230813) (-3481 . 230742)
- (-3482 . 229561) (-3483 . 229461) (-3484 . 229333) (-3485 . 229259)
- (-3486 . 229191) (-3487 . 228968) (-3488 . 228650) (-3489 . 228259)
- (-3490 . 227292) (-3491 . 227177) (-3492 . 226826) (-3493 . 226699)
- (-3494 . 226546) (-3495 . 226493) (-3496 . 226398) (-3497 . 226315)
- (-3498 . 226120) (-3499 . 225254) (-3500 . 224908) (-3501 . 224720)
- (-3502 . 224577) (-3503 . 224507) (-3504 . 224300) (-3505 . 224107)
- (-3506 . 224017) (-3507 . 223951) (-3508 . 223880) (-3509 . 223806)
- (-3510 . 222870) (-3511 . 222767) (-3512 . 222718) (-3513 . 222662)
- (-3514 . 222531) (-3515 . 222146) (-3516 . 221660) (-3517 . 221560)
- (-3518 . 221486) (-3519 . 221320) (-3520 . 220969) (-3521 . 220594)
- (-3522 . 220508) (-3523 . 220426) (-3524 . 220356) (-3525 . 220264)
- (-3526 . 220195) (-3527 . 220072) (-3528 . 220012) (-3529 . 219719)
- (-3530 . 219391) (-3531 . 219246) (-3532 . 219117) (-3533 . 218971)
- (-3534 . 218828) (-3535 . 218751) (-3536 . 218429) (-3537 . 218337)
- (-3538 . 218202) (-3539 . 218033) (-3540 . 217698) (-3541 . 217626)
- (-3542 . 217592) (-3543 . 216979) (-3544 . 216814) (-3545 . 216755)
- (-3546 . 216649) (-3547 . 214487) (-3548 . 213901) (-3549 . 213815)
- (-3550 . 213629) (-3551 . 213541) (-3552 . 213489) (-3553 . 212404)
- (-3554 . 212327) (-3555 . 211900) (-3556 . 211667) (-3557 . 210779)
- (-3558 . 210601) (-3559 . 210535) (-3560 . 210310) (-3561 . 209389)
- (-3562 . 209294) (-3563 . 209186) (-3564 . 208959) (-3565 . 208875)
- (-3566 . 208776) (-3567 . 208714) (-3568 . 208442) (-3569 . 208356)
- (-3570 . 207653) (-3571 . 207372) (-3572 . 207192) (-3573 . 207118)
- (-3574 . 207090) (-3575 . 206741) (-3576 . 206689) (-3577 . 206635)
- (-3578 . 206208) (-3579 . 206109) (-3580 . 206030) (-3581 . 205941)
- (-3582 . 205727) (-3583 . 205628) (-3584 . 205389) (-3585 . 205011)
- (-3586 . 204484) (-3587 . 204304) (-3588 . 204171) (-3589 . 204105)
- (-3590 . 204049) (-3591 . 203826) (-3592 . 203589) (-3593 . 203456)
- (-3594 . 203218) (-3595 . 203144) (-3596 . 203092) (-3597 . 203058)
- (-3598 . 203030) (-3599 . 202979) (-3600 . 202333) (-3601 . 202179)
- (-3602 . 201931) (-3603 . 201816) (-3604 . 201753) (-3605 . 201635)
- (-3606 . 201383) (-3607 . 201311) (-3608 . 201220) (-3609 . 201022)
- (-3610 . 200924) (-3611 . 200787) (-3612 . 199945) (-3613 . 199353)
- (-3614 . 198617) (-3615 . 198586) (-3616 . 198485) (-3617 . 198313)
- (-3618 . 197924) (-3619 . 197517) (-3620 . 197243) (-3621 . 197144)
- (-3622 . 197056) (-3623 . 196919) (-3624 . 193310) (-3625 . 193153)
- (-3626 . 193073) (-3627 . 192854) (-3628 . 192801) (-3629 . 192486)
- (-3630 . 192364) (-3631 . 192297) (-3632 . 192215) (-3633 . 192164)
- (-3634 . 192111) (-3635 . 191896) (-3636 . 191839) (-3637 . 191784)
- (-3638 . 191696) (-3639 . 191533) (-3640 . 191106) (-3641 . 190921)
- (-3642 . 190797) (-3643 . 190467) (-3644 . 189593) (-3645 . 189227)
- (-3646 . 189159) (-3647 . 189103) (-3648 . 188963) (-3649 . 188720)
- (-3650 . 188650) (-3651 . 188595) (-3652 . 188243) (-3653 . 187907)
- (-3654 . 187299) (-3655 . 187247) (-3656 . 187194) (-3657 . 187121)
- (-3658 . 187066) (-3659 . 187005) (-3660 . 186926) (-3661 . 186845)
- (-3662 . 186689) (-3663 . 186618) (-3664 . 186518) (-3665 . 186417)
- (-3666 . 186348) (-3667 . 186252) (-3668 . 186077) (-3669 . 185959)
- (-3670 . 185650) (-3671 . 185597) (-3672 . 185528) (-3673 . 185276)
- (-3674 . 185036) (-3675 . 184865) (-3676 . 184812) (-3677 . 184757)
- (-3678 . 184592) (-3679 . 184353) (-3680 . 184298) (-3681 . 184053)
- (-3682 . 183970) (-3683 . 183721) (-3684 . 183659) (-3685 . 183420)
- (-3686 . 183322) (-3687 . 183288) (-3688 . 183125) (-3689 . 182728)
- (-3690 . 182625) (-3691 . 182417) (-3692 . 182272) (-3693 . 182096)
- (-3694 . 181822) (-3695 . 181681) (-3696 . 181563) (-3697 . 181389)
- (-3698 . 181316) (-3699 . 181288) (-3700 . 179746) (-3701 . 179687)
- (-3702 . 179591) (-3703 . 179453) (-3704 . 179379) (-3705 . 179226)
- (-3706 . 179138) (-3707 . 179045) (-3708 . 178975) (-3709 . 178946)
- (-3710 . 178818) (-3711 . 178724) (-3712 . 178585) (-3713 . 178293)
- (-3714 . 178131) (-3715 . 177975) (-3716 . 177832) (-3717 . 177240)
- (-3718 . 177100) (-3719 . 177048) (-3720 . 176963) (-3721 . 176552)
- (-3722 . 176493) (-3723 . 176377) (-3724 . 176289) (-3725 . 175872)
- (-3726 . 175665) (-3727 . 175538) (-3728 . 175397) (-3729 . 173265)
- (-3730 . 173237) (-3731 . 172791) (-3732 . 172696) (-3733 . 172603)
- (-3734 . 172501) (-3735 . 172333) (-3736 . 172238) (-3737 . 172080)
- (-3738 . 172028) (-3739 . 171855) (-3740 . 171774) (-3741 . 171622)
- (-3742 . 171555) (-3743 . 171476) (-3744 . 171375) (-3745 . 171347)
- (-3746 . 171251) (-3747 . 171179) (-3748 . 171117) (-3749 . 171047)
- (-3750 . 170973) (-3751 . 170843) (-3752 . 170673) (-3753 . 170482)
- (-3754 . 170388) (-3755 . 170229) (-3756 . 169062) (-3757 . 168938)
- (-3758 . 168821) (-3759 . 168717) (-3760 . 168594) (-3761 . 168499)
- (-3762 . 168447) (-3763 . 168392) (-3764 . 168355) (-3765 . 168207)
- (-3766 . 167989) (-3767 . 167893) (-3768 . 167756) (-3769 . 167609)
- (-3770 . 167555) (-3771 . 167499) (-3772 . 167425) (-3773 . 167198)
- (-3774 . 166106) (-3775 . 164704) (-3776 . 164409) (-3777 . 164308)
- (-3778 . 164164) (-3779 . 164021) (-3780 . 163454) (-3781 . 163335)
- (-3782 . 163224) (-3783 . 163156) (-3784 . 162516) (-3785 . 161214)
- (-3786 . 161073) (-3787 . 160911) (-3788 . 160683) (-3789 . 160517)
- (-3790 . 160448) (-3791 . 160313) (-3792 . 160218) (-3793 . 159722)
- (-3794 . 159644) (-3795 . 159486) (-3796 . 159302) (-3797 . 159178)
- (-3798 . 158973) (-3799 . 140398) (-3800 . 140306) (-3801 . 134792)
- (-3802 . 134616) (-3803 . 134300) (-3804 . 134248) (-3805 . 134124)
- (-3806 . 133905) (-3807 . 133569) (-3808 . 133519) (-3809 . 133464)
- (-3810 . 133398) (-3811 . 130577) (-3812 . 130424) (-3813 . 130302)
- (-3814 . 129909) (-3815 . 129817) (-3816 . 129698) (-3817 . 129556)
- (-3818 . 129472) (-3819 . 129419) (-3820 . 128987) (-3821 . 128843)
- (-3822 . 128728) (-3823 . 128286) (-3824 . 128200) (-3825 . 128057)
- (-3826 . 128001) (-3827 . 127900) (-3828 . 127749) (-3829 . 127642)
- (-3830 . 127582) (-3831 . 127481) (-3832 . 127323) (-3833 . 126988)
- (-3834 . 126936) (-3835 . 126730) (-3836 . 126418) (-3837 . 126319)
- (-3838 . 125642) (-3839 . 125527) (-3840 . 125425) (-3841 . 125307)
- (-3842 . 125122) (-3843 . 125042) (-3844 . 124777) (-3845 . 124331)
- (-3846 . 124229) (-3847 . 124161) (-3848 . 124060) (-3849 . 123744)
- (-3850 . 123715) (-3851 . 123591) (-3852 . 123488) (-3853 . 123435)
- (-3854 . 123385) (-3855 . 123242) (-3856 . 123139) (-3857 . 123079)
- (-3858 . 123045) (-3859 . 122281) (-3860 . 122043) (-3861 . 121828)
- (-3862 . 121775) (-3863 . 121516) (-3864 . 121403) (-3865 . 121269)
- (-3866 . 121047) (-3867 . 120767) (-3868 . 120564) (-3869 . 120486)
- (-3870 . 120352) (-3871 . 120152) (-3872 . 120080) (-3873 . 119791)
- (-3874 . 119447) (-3875 . 119367) (-3876 . 119188) (-3877 . 119015)
- (-3878 . 118890) (-3879 . 118604) (-3880 . 118527) (-3881 . 118133)
- (-3882 . 118084) (-3883 . 118005) (-3884 . 117933) (-3885 . 117845)
- (-3886 . 117785) (-3887 . 117683) (-3888 . 117296) (-3889 . 117116)
- (-3890 . 116889) (-3891 . 116671) (-3892 . 116491) (-3893 . 116403)
- (-3894 . 116186) (-3895 . 116064) (-3896 . 115991) (-3897 . 115912)
- (-3898 . 115809) (-3899 . 115743) (-3900 . 115665) (-3901 . 115579)
- (-3902 . 115499) (-3903 . 115251) (-3904 . 115133) (-3905 . 115029)
- (-3906 . 114967) (-3907 . 114824) (-3908 . 114693) (-3909 . 114622)
- (-3910 . 114507) (-3911 . 114391) (-3912 . 112761) (-3913 . 112665)
- (-3914 . 112608) (-3915 . 112580) (-3916 . 112389) (-3917 . 112321)
- (-3918 . 112226) (-3919 . 111967) (-3920 . 111870) (-3921 . 111731)
- (-3922 . 111661) (-3923 . 111260) (-3924 . 111042) (-3925 . 110986)
- (-3926 . 110902) (-3927 . 110684) (-3928 . 110604) (-3929 . 107823)
- (-3930 . 107605) (-3931 . 107506) (-3932 . 106202) (-3933 . 106146)
- (-3934 . 105674) (-3935 . 105367) (-3936 . 104863) (-3937 . 104720)
- (-3938 . 104462) (-3939 . 104364) (-3940 . 104293) (-3941 . 104186)
- (-3942 . 103671) (-3943 . 103643) (-3944 . 103341) (-3945 . 103032)
- (-3946 . 102930) (-3947 . 102826) (-3948 . 102683) (-3949 . 102612)
- (-3950 . 102459) (-3951 . 102132) (-3952 . 102051) (-3953 . 101985)
- (-3954 . 101933) (-3955 . 101901) (-3956 . 101435) (-3957 . 101331)
- (-3958 . 101229) (-3959 . 100867) (-3960 . 100638) (-3961 . 100556)
- (-3962 . 100413) (-3963 . 100308) (-3964 . 100231) (-3965 . 100203)
- (-3966 . 100030) (-3967 . 99708) (-3968 . 99548) (-3969 . 99411)
- (-3970 . 99327) (-3971 . 99299) (-3972 . 99217) (-3973 . 99143)
- (-3974 . 99065) (-3975 . 98724) (-3976 . 98621) (-3977 . 98529)
- (-3978 . 98328) (-3979 . 97744) (-3980 . 97451) (-3981 . 97347)
- (-3982 . 97011) (-3983 . 94950) (-3984 . 94778) (-3985 . 94700)
- (-3986 . 94538) (-3987 . 94483) (-3988 . 93888) (-3989 . 93778)
- (-3990 . 93734) (-3991 . 93700) (-3992 . 93636) (-3993 . 93559)
- (-3994 . 93507) (-3995 . 93352) (-3996 . 93274) (-3997 . 93178)
- (-3998 . 93090) (-3999 . 93028) (-4000 . 92976) (-4001 . 92823)
- (-4002 . 92766) (-4003 . 92738) (-4004 . 92530) (-4005 . 92457)
- (-4006 . 91207) (-4007 . 87047) (-4008 . 86731) (-4009 . 86679)
- (-4010 . 86612) (-4011 . 86535) (-4012 . 86480) (-4013 . 86322)
- (-4014 . 86220) (-4015 . 85914) (-4016 . 85777) (-4017 . 85635)
- (-4018 . 85478) (-4019 . 85207) (-4020 . 85126) (-4021 . 85074)
- (-4022 . 85000) (-4023 . 84920) (-4024 . 84827) (-4025 . 84707)
- (-4026 . 84636) (-4027 . 84115) (-4028 . 84055) (-4029 . 84003)
- (-4030 . 83902) (-4031 . 83784) (-4032 . 83551) (-4033 . 83448)
- (-4034 . 83381) (-4035 . 83307) (-4036 . 82963) (-4037 . 82844)
- (-4038 . 82770) (-4039 . 82718) (-4040 . 82652) (-4041 . 82596)
- (-4042 . 82511) (-4043 . 82442) (-4044 . 82233) (-4045 . 81931)
- (-4046 . 81271) (-4047 . 81110) (-4048 . 81032) (-4049 . 80914)
- (-4050 . 80855) (-4051 . 80782) (-4052 . 80732) (-4053 . 80599)
- (-4054 . 80499) (-4055 . 80347) (-4056 . 80298) (-4057 . 79714)
- (-4058 . 79352) (-4059 . 79188) (-4060 . 79100) (-4061 . 79048)
- (-4062 . 78971) (-4063 . 78890) (-4064 . 78819) (-4065 . 78627)
- (-4066 . 78566) (-4067 . 78429) (-4068 . 78266) (-4069 . 78151)
- (-4070 . 78049) (-4071 . 77880) (-4072 . 77798) (-4073 . 77706)
- (-4074 . 77565) (-4075 . 77462) (-4076 . 77430) (-4077 . 77402)
- (-4078 . 77373) (-4079 . 77295) (-4080 . 77200) (-4081 . 77172)
- (-4082 . 76769) (-4083 . 76510) (-4084 . 76366) (-4085 . 76241)
- (-4086 . 76139) (-4087 . 75746) (-4088 . 75622) (-4089 . 74803)
- (-4090 . 74642) (-4091 . 74472) (-4092 . 74081) (-4093 . 74002)
- (-4094 . 73869) (-4095 . 73789) (-4096 . 73694) (-4097 . 73589)
- (-4098 . 73458) (-4099 . 73294) (-4100 . 73158) (-4101 . 73060)
- (-4102 . 72812) (-4103 . 72645) (-4104 . 72565) (-4105 . 72358)
- (-4106 . 72278) (-4107 . 71715) (-4108 . 71399) (-4109 . 71302)
- (-4110 . 71221) (-4111 . 70357) (-4112 . 70283) (-4113 . 69972)
- (-4114 . 69851) (-4115 . 69688) (-4116 . 69473) (-4117 . 68910)
- (-4118 . 68757) (-4119 . 68691) (-4120 . 68612) (-4121 . 68484)
- (-4122 . 68325) (-4123 . 68195) (-4124 . 68129) (-4125 . 67950)
- (-4126 . 67660) (-4127 . 67537) (-4128 . 67394) (-4129 . 66832)
- (-4130 . 66739) (-4131 . 66673) (-4132 . 66548) (-4133 . 66302)
- (-4134 . 66063) (-4135 . 65841) (-4136 . 65630) (-4137 . 65579)
- (-4138 . 65445) (-4139 . 64572) (-4140 . 64010) (-4141 . 63626)
- (-4142 . 63549) (-4143 . 63484) (-4144 . 63456) (-4145 . 63272)
- (-4146 . 63189) (-4147 . 62435) (-4148 . 62256) (-4149 . 62070)
- (-4150 . 62018) (-4151 . 61702) (-4152 . 61484) (-4153 . 61418)
- (-4154 . 60856) (-4155 . 60753) (-4156 . 60570) (-4157 . 60449)
- (-4158 . 60294) (-4159 . 60208) (-4160 . 60136) (-4161 . 60102)
- (-4162 . 59970) (-4163 . 59408) (-4164 . 59152) (-4165 . 59075)
- (-4166 . 58696) (-4167 . 58582) (-4168 . 58395) (-4169 . 58246)
- (-4170 . 58167) (-4171 . 58070) (-4172 . 57841) (-4173 . 57746)
- (-4174 . 57658) (-4175 . 57605) (-4176 . 57043) (-4177 . 55925)
- (-4178 . 55869) (-4179 . 55540) (-4180 . 55321) (-4181 . 55205)
- (-4182 . 55067) (-4183 . 54973) (-4184 . 54920) (-4185 . 54682)
- (-4186 . 54599) (-4187 . 54547) (-4188 . 54469) (-4189 . 54258)
- (-4190 . 54023) (-4191 . 53941) (-4192 . 53787) (-4193 . 53569)
- (-4194 . 53350) (-4195 . 53078) (-4196 . 52821) (-4197 . 52640)
- (-4198 . 52494) (-4199 . 52443) (-4200 . 52151) (-4201 . 51924)
- (-4202 . 51830) (-4203 . 51778) (-4204 . 51624) (-4205 . 51208)
- (-4206 . 51110) (-4207 . 51028) (-4208 . 50888) (-4209 . 50836)
- (-4210 . 50748) (-4211 . 50535) (-4212 . 50399) (-4213 . 50325)
- (-4214 . 50186) (-4215 . 49922) (-4216 . 49806) (-4217 . 49547)
- (-4218 . 49450) (-4219 . 49422) (-4220 . 49088) (-4221 . 49017)
- (-4222 . 48964) (-4223 . 48912) (-4224 . 48784) (-4225 . 48725)
- (-4226 . 47148) (-4227 . 46978) (-4228 . 46941) (-4229 . 46855)
- (-4230 . 46784) (-4231 . 46557) (-4232 . 45717) (-4233 . 45665)
- (-4234 . 45415) (-4235 . 45209) (-4236 . 45064) (-4237 . 44993)
- (-4238 . 44861) (-4239 . 44795) (-4240 . 44668) (-4241 . 44567)
- (-4242 . 44376) (-4243 . 44275) (-4244 . 44163) (-4245 . 43782)
- (-4246 . 43667) (-4247 . 43552) (-4248 . 43464) (-4249 . 43335)
- (-4250 . 43000) (-4251 . 42743) (-4252 . 42621) (-4253 . 42374)
- (-4254 . 42324) (-4255 . 41794) (-4256 . 41743) (-4257 . 41315)
- (-4258 . 41284) (-4259 . 41118) (-4260 . 41062) (-4261 . 41013)
- (-4262 . 40954) (-4263 . 40853) (-4264 . 40583) (-4265 . 40509)
- (-4266 . 40302) (-4267 . 39820) (-4268 . 38668) (-4269 . 38550)
- (-4270 . 38390) (-4271 . 38228) (-4272 . 38176) (-4273 . 38055)
- (-4274 . 37967) (-4275 . 37860) (-4276 . 37765) (-4277 . 36975)
- (-4278 . 36849) (-4279 . 36647) (-4280 . 36518) (-4281 . 36417)
- (-4282 . 36090) (-4283 . 35982) (-4284 . 35909) (-4285 . 35839)
- (-4286 . 34923) (-4287 . 34560) (-4288 . 34465) (-4289 . 34185)
- (-4290 . 34029) (-4291 . 33259) (-4292 . 33129) (-4293 . 32490)
- (-4294 . 31965) (-4295 . 31820) (-4296 . 31279) (-4297 . 31228)
- (-4298 . 31047) (-4299 . 30346) (-4300 . 30203) (-4301 . 30080)
- (-4302 . 30011) (-4303 . 29982) (-4304 . 29849) (-4305 . 29639)
- (-4306 . 29585) (-4307 . 29532) (-4308 . 29400) (-4309 . 29338)
- (-4310 . 29140) (-4311 . 29069) (-4312 . 29037) (-4313 . 28985)
- (-4314 . 28886) (-4315 . 28785) (-4316 . 28580) (-4317 . 28450)
- (-4318 . 28346) (-4319 . 28263) (-4320 . 27871) (-4321 . 27819)
- (-4322 . 27432) (-4323 . 25176) (-4324 . 25082) (-4325 . 24937)
- (-4326 . 24781) (-4327 . 24728) (-4328 . 24441) (-4329 . 24391)
- (-4330 . 24338) (-4331 . 23877) (-4332 . 23759) (-4333 . 23567)
- (-4334 . 23382) (-4335 . 23103) (-4336 . 23051) (-4337 . 22984)
- (-4338 . 22931) (-4339 . 22874) (-4340 . 22778) (-4341 . 22680)
- (-4342 . 22594) (-4343 . 22370) (-4344 . 22262) (-4345 . 22234)
- (-4346 . 21947) (-4347 . 21737) (-4348 . 21684) (-4349 . 21265)
- (-4350 . 21237) (-4351 . 21099) (-4352 . 21003) (-4353 . 20839)
- (-4354 . 20686) (-4355 . 20406) (-4356 . 20322) (-4357 . 20188)
- (-4358 . 20129) (-4359 . 19958) (-4360 . 19862) (-4361 . 19809)
- (-4362 . 19531) (-4363 . 19373) (-4364 . 18926) (-4365 . 18766)
- (-4366 . 18709) (-4367 . 18534) (-4368 . 18482) (-4369 . 18304)
- (-4370 . 18124) (-4371 . 18000) (-4372 . 17893) (-4373 . 17833)
- (-4374 . 17642) (-4375 . 17453) (-4376 . 17328) (-4377 . 17211)
- (-4378 . 17018) (-4379 . 16961) (-4380 . 12418) (-4381 . 11875)
- (-4382 . 11789) (-4383 . 11559) (-4384 . 11528) (-4385 . 11475)
- (-4386 . 11443) (-4387 . 10243) (-4388 . 10169) (-4389 . 9416)
- (-4390 . 9309) (-4391 . 9244) (-4392 . 9086) (-4393 . 8911)
- (-4394 . 8850) (-4395 . 7507) (-4396 . 6628) (-4397 . 6290)
- (-4398 . 6202) (-4399 . 5498) (-4400 . 4915) (-4401 . 4783)
- (-4402 . 4665) (-4403 . 4482) (-4404 . 4100) (-4405 . 3918)
- (-4406 . 3672) (-4407 . 3638) (-4408 . 3490) (-4409 . 3434)
- (-4410 . 3096) (-4411 . 3013) (-4412 . 2939) (-4413 . 2258)
- (-4414 . 2145) (-4415 . 2063) (-4416 . 1936) (-4417 . 1771)
- (-4418 . 1654) (-4419 . 1531) (-4420 . 1497) (-4421 . 1298)
- (-4422 . 1199) (-4423 . 987) (-4424 . 834) (-4425 . 411) (-4426 . 344)
- (-4427 . 276) (-4428 . 85) (-4429 . 30)) \ No newline at end of file
+(((*1 *2 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279))))
+ ((*1 *2) (-12 (-5 *2 (-384)) (-5 *1 (-1279)))))
+(((*1 *2 *1 *3)
+ (-12 (-4 *1 (-560 *3)) (-4 *3 (-13 (-410) (-1212))) (-5 *2 (-112)))))
+(((*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)
+ (|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)))))
+((-1311 . 733435) (-1312 . 733220) (-1313 . 733131) (-1314 . 733030)
+ (-1315 . 732777) (-1316 . 732652) (-1317 . 732513) (-1318 . 732342)
+ (-1319 . 731981) (-1320 . 731823) (-1321 . 731735) (-1322 . 731613)
+ (-1323 . 731215) (-1324 . 731043) (-1325 . 730926) (-1326 . 730819)
+ (-1327 . 730791) (-1328 . 730281) (-1329 . 730228) (-1330 . 729646)
+ (-1331 . 729507) (-1332 . 729364) (-1333 . 729220) (-1334 . 728337)
+ (-1335 . 728253) (-1336 . 727864) (-1337 . 727751) (-1338 . 727558)
+ (-1339 . 727345) (-1340 . 727202) (-1341 . 726975) (-1342 . 726862)
+ (-1343 . 726604) (-1344 . 726455) (-1345 . 726203) (-1346 . 726045)
+ (-1347 . 725638) (-1348 . 725414) (-1349 . 725099) (-1350 . 724135)
+ (-1351 . 723938) (-1352 . 723780) (-1353 . 723723) (-1354 . 723610)
+ (-1355 . 723491) (-1356 . 722815) (-1357 . 708585) (-1358 . 708487)
+ (-1359 . 708399) (-1360 . 708329) (-1361 . 708225) (-1362 . 708048)
+ (-1363 . 707774) (-1364 . 707552) (-1365 . 707481) (-1366 . 707172)
+ (-1367 . 707056) (-1368 . 706925) (-1369 . 706315) (-1370 . 706048)
+ (-1371 . 705925) (-1372 . 705708) (-1373 . 705504) (-1374 . 705405)
+ (-1375 . 705317) (-1376 . 704999) (-1377 . 704902) (-1378 . 704712)
+ (-1379 . 704613) (-1380 . 704391) (-1381 . 704134) (-1382 . 700071)
+ (-1383 . 699977) (-1384 . 699908) (-1385 . 699301) (-1386 . 699207)
+ (-1387 . 699100) (-1388 . 698957) (-1389 . 698647) (-1390 . 698506)
+ (-1391 . 698062) (-1392 . 697974) (-1393 . 697007) (-1394 . 696885)
+ (-1395 . 696394) (-1396 . 696288) (-1397 . 696108) (-1398 . 696055)
+ (-1399 . 695540) (-1400 . 695443) (-1401 . 695415) (-1402 . 695227)
+ (-1403 . 694806) (-1404 . 694653) (-1405 . 694516) (-1406 . 694349)
+ (-1407 . 694102) (-1408 . 694019) (-1409 . 693935) (-1410 . 693883)
+ (-1411 . 693375) (-1412 . 693347) (-1413 . 693249) (-1414 . 693148)
+ (-1415 . 692923) (-1416 . 692793) (-1417 . 692636) (-1418 . 692469)
+ (-1419 . 692331) (-1420 . 692281) (-1421 . 691835) (-1422 . 690807)
+ (-1423 . 690031) (-1424 . 689784) (-1425 . 689611) (-1426 . 685944)
+ (-1427 . 685642) (-1428 . 685469) (-1429 . 685413) (-1430 . 685081)
+ (-1431 . 685001) (-1432 . 684969) (-1433 . 684327) (-1434 . 683840)
+ (-1435 . 683529) (-1436 . 682999) (-1437 . 682902) (-1438 . 680557)
+ (-1439 . 680454) (-1440 . 680145) (-1441 . 680077) (-1442 . 679929)
+ (-1443 . 679841) (-1444 . 679657) (-1445 . 679229) (-1446 . 679143)
+ (-1447 . 679090) (-1448 . 678990) (-1449 . 678183) (-1450 . 677973)
+ (-1451 . 677922) (-1452 . 677873) (-1453 . 677515) (-1454 . 677355)
+ (-1455 . 676788) (-1456 . 676608) (-1457 . 676512) (-1458 . 676410)
+ (-1459 . 676285) (-1460 . 675845) (-1461 . 675775) (-1462 . 675460)
+ (-1463 . 675301) (-1464 . 674873) (-1465 . 674846) (-1466 . 674787)
+ (-1467 . 674578) (-1468 . 674459) (-1469 . 674306) (-1470 . 674202)
+ (-1471 . 674086) (-1472 . 673998) (-1473 . 673924) (-1474 . 673896)
+ (-1475 . 673774) (-1476 . 673608) (-1477 . 673492) (-1478 . 673374)
+ (-1479 . 673289) (-1480 . 673257) (-1481 . 673200) (** . 670206)
+ (-1483 . 670063) (-1484 . 670005) (-1485 . 669910) (-1486 . 669858)
+ (-1487 . 669791) (-1488 . 669713) (-1489 . 669664) (-1490 . 669604)
+ (-1491 . 669538) (-1492 . 669358) (-1493 . 669306) (-1494 . 669054)
+ (-1495 . 668983) (-1496 . 668879) (-1497 . 668660) (-1498 . 668486)
+ (-1499 . 668325) (-1500 . 668115) (-1501 . 668033) (-1502 . 667974)
+ (-1503 . 667747) (-1504 . 667581) (-1505 . 667453) (-1506 . 667363)
+ (-1507 . 667200) (-1508 . 667126) (-1509 . 666973) (-1510 . 666867)
+ (-1511 . 666737) (-1512 . 666627) (-1513 . 666327) (-1514 . 666231)
+ (-1515 . 666174) (-1516 . 666123) (-1517 . 666022) (-1518 . 665790)
+ (-1519 . 665690) (-1520 . 665552) (-1521 . 665397) (-1522 . 665193)
+ (-1523 . 665105) (-1524 . 665024) (-1525 . 664962) (-1526 . 664837)
+ (-1527 . 664615) (-1528 . 664562) (-1529 . 664490) (-1530 . 664220)
+ (-1531 . 664096) (-1532 . 664062) (-1533 . 663953) (-1534 . 663901)
+ (-1535 . 663637) (-1536 . 663571) (-1537 . 663518) (-1538 . 663400)
+ (-1539 . 663327) (-1540 . 663226) (-1541 . 663101) (-1542 . 662886)
+ (-1543 . 662812) (-1544 . 662760) (-1545 . 662648) (-1546 . 662526)
+ (-1547 . 662413) (-1548 . 662166) (-1549 . 662114) (-1550 . 661827)
+ (-1551 . 661755) (-1552 . 661698) (-1553 . 661602) (-1554 . 661395)
+ (-1555 . 661036) (-1556 . 660977) (-1557 . 658749) (-1558 . 658531)
+ (-1559 . 658499) (-1560 . 658392) (-1561 . 658264) (-1562 . 658169)
+ (-1563 . 658114) (-1564 . 657842) (-1565 . 657360) (-1566 . 657269)
+ (-1567 . 656803) (-1568 . 656412) (-1569 . 656216) (-1570 . 656165)
+ (-1571 . 656110) (-1572 . 655841) (-1573 . 655711) (-1574 . 654998)
+ (-1575 . 654698) (-1576 . 654610) (-1577 . 654297) (-1578 . 654179)
+ (-1579 . 653617) (-1580 . 653471) (-1581 . 653375) (-1582 . 653150)
+ (-1583 . 652977) (-1584 . 652873) (-1585 . 652746) (-1586 . 652494)
+ (-1587 . 652086) (-1588 . 652030) (-1589 . 651867) (-1590 . 651640)
+ (-1591 . 651480) (-1592 . 651233) (-1593 . 651176) (-1594 . 650943)
+ (-1595 . 650795) (-1596 . 650693) (-1597 . 650665) (-1598 . 650570)
+ (-1599 . 650497) (-1600 . 650358) (-1601 . 649931) (-1602 . 649769)
+ (-1603 . 649562) (-1604 . 649493) (-1605 . 649456) (-1606 . 649277)
+ (-1607 . 649174) (-1608 . 648945) (-1609 . 648896) (-1610 . 648741)
+ (-1611 . 648538) (-1612 . 648445) (-1613 . 648225) (-1614 . 648040)
+ (-1615 . 647683) (-1616 . 647631) (-1617 . 647549) (-1618 . 647353)
+ (-1619 . 647298) (-1620 . 646845) (-1621 . 646771) (-1622 . 646580)
+ (-1623 . 646552) (-1624 . 646493) (-1625 . 646212) (-1626 . 645666)
+ (-1627 . 645542) (-1628 . 645421) (-1629 . 645198) (-1630 . 645125)
+ (-1631 . 644997) (-1632 . 644893) (-1633 . 644233) (-1634 . 644090)
+ (-1635 . 643933) (-1636 . 643880) (-1637 . 643545) (-1638 . 643472)
+ (-1639 . 643142) (-1640 . 643085) (-1641 . 642997) (-1642 . 642947)
+ (-1643 . 642848) (-1644 . 642765) (-1645 . 642702) (-1646 . 642597)
+ (-1647 . 642513) (-1648 . 642171) (-1649 . 641854) (-1650 . 640980)
+ (-1651 . 640873) (-1652 . 640754) (-1653 . 640658) (-1654 . 640605)
+ (-1655 . 640487) (-1656 . 640404) (-1657 . 640327) (-1658 . 639031)
+ (-1659 . 639003) (-1660 . 638793) (-1661 . 638427) (-1662 . 638340)
+ (-1663 . 638245) (-1664 . 638217) (-1665 . 637898) (-1666 . 637824)
+ (-1667 . 637592) (-1668 . 637539) (-1669 . 637511) (-1670 . 637353)
+ (-1671 . 637282) (-1672 . 637080) (-1673 . 636703) (-1674 . 636483)
+ (-1675 . 636415) (-1676 . 636305) (-1677 . 635515) (-1678 . 635428)
+ (-1679 . 635374) (-1680 . 635214) (-1681 . 635107) (-1682 . 634789)
+ (-1683 . 634616) (-1684 . 634560) (-1685 . 634465) (-1686 . 634338)
+ (-1687 . 634255) (-1688 . 634145) (-1689 . 634019) (-1690 . 633923)
+ (-1691 . 633793) (-1692 . 633683) (-1693 . 633523) (-1694 . 633201)
+ (-1695 . 633063) (-1696 . 632965) (-1697 . 632821) (-1698 . 632765)
+ (-1699 . 632625) (-1700 . 632496) (-1701 . 631999) (-1702 . 631553)
+ (-1703 . 631229) (-1704 . 631157) (-1705 . 631098) (-1706 . 630938)
+ (-1707 . 630793) (-1708 . 630765) (-1709 . 630687) (-1710 . 630534)
+ (-1711 . 630291) (-1712 . 630142) (-1713 . 630041) (-1714 . 629970)
+ (-1715 . 629880) (-1716 . 629792) (-1717 . 629706) (-1718 . 629541)
+ (-1719 . 629404) (-1720 . 628900) (-1721 . 628817) (-1722 . 628747)
+ (-1723 . 628567) (-1724 . 628240) (-1725 . 628022) (-1726 . 627909)
+ (-1727 . 627825) (-1728 . 627474) (-1729 . 627390) (-1730 . 627085)
+ (-1731 . 626839) (-1732 . 626773) (-1733 . 626718) (-1734 . 626622)
+ (-1735 . 626552) (-1736 . 626444) (-1737 . 626367) (-1738 . 626115)
+ (-1739 . 626030) (-1740 . 626002) (-1741 . 625914) (-1742 . 625315)
+ (-1743 . 624869) (-1744 . 624010) (-1745 . 623852) (-1746 . 623531)
+ (-1747 . 623179) (-1748 . 623035) (-1749 . 622941) (-1750 . 622868)
+ (-1751 . 622757) (-1752 . 622637) (-1753 . 622582) (-1754 . 622496)
+ (-1755 . 621200) (-1756 . 621065) (-1757 . 620983) (-1758 . 620825)
+ (-1759 . 620727) (-1760 . 620599) (-1761 . 620263) (-1762 . 620190)
+ (-1763 . 620116) (-1764 . 619200) (-1765 . 619026) (-1766 . 618973)
+ (-1767 . 618921) (-1768 . 618855) (-1769 . 618577) (-1770 . 618203)
+ (-1771 . 614196) (-1772 . 613775) (-1773 . 613669) (-1774 . 613583)
+ (-1775 . 613428) (-1776 . 613299) (-1777 . 612691) (-1778 . 612328)
+ (-1779 . 612190) (-1780 . 612116) (-1781 . 612088) (-1782 . 612017)
+ (-1783 . 611965) (-1784 . 611774) (-1785 . 611696) (-1786 . 611506)
+ (-1787 . 611385) (-1788 . 611314) (-1789 . 611236) (-1790 . 611184)
+ (-1791 . 611089) (-1792 . 611037) (-1793 . 610941) (-1794 . 610831)
+ (-1795 . 610656) (-1796 . 610597) (-1797 . 610420) (-1798 . 610079)
+ (-1799 . 610027) (-1800 . 609633) (-1801 . 609581) (-1802 . 609266)
+ (-1803 . 609183) (-1804 . 609130) (-1805 . 608850) (-1806 . 608735)
+ (-1807 . 608462) (-1808 . 608316) (-1809 . 608258) (-1810 . 608193)
+ (-1811 . 608090) (-1812 . 608018) (-1813 . 607990) (-1814 . 607825)
+ (-1815 . 607611) (-1816 . 607527) (-1817 . 607454) (-1818 . 607395)
+ (-1819 . 607265) (-1820 . 606679) (-1821 . 606529) (-1822 . 604763)
+ (-1823 . 604696) (-1824 . 604631) (-1825 . 604518) (-1826 . 604176)
+ (-1827 . 603975) (-1828 . 603792) (-1829 . 603704) (-1830 . 603649)
+ (-1831 . 603515) (-1832 . 602876) (-1833 . 602777) (-1834 . 602651)
+ (-1835 . 602568) (-1836 . 602506) (-1837 . 602408) (-1838 . 602327)
+ (-1839 . 600872) (-1840 . 600288) (-1841 . 599986) (-1842 . 599801)
+ (-1843 . 599657) (-1844 . 599596) (-1845 . 599303) (-1846 . 598778)
+ (-1847 . 598725) (-1848 . 596995) (-1849 . 596770) (-1850 . 596657)
+ (-1851 . 592994) (-1852 . 592893) (-1853 . 591403) (-1854 . 591319)
+ (-1855 . 590746) (-1856 . 590658) (-1857 . 590579) (-1858 . 590508)
+ (-1859 . 590363) (-1860 . 590141) (-1861 . 590063) (-1862 . 589789)
+ (-1863 . 589693) (-1864 . 588104) (-1865 . 587909) (-1866 . 587805)
+ (-1867 . 587592) (-1868 . 587205) (-1869 . 587124) (-1870 . 587067)
+ (-1871 . 586914) (-1872 . 586373) (-1873 . 586280) (-1874 . 586149)
+ (-1875 . 586039) (-1876 . 585792) (-1877 . 585639) (-1878 . 584903)
+ (-1879 . 584567) (-1880 . 584476) (-1881 . 584330) (-1882 . 584275)
+ (-1883 . 584119) (-1884 . 583938) (-1885 . 583841) (-1886 . 583786)
+ (-1887 . 583623) (-1888 . 583561) (-1889 . 583527) (-1890 . 583355)
+ (-1891 . 583231) (-1892 . 583066) (-1893 . 583014) (-1894 . 582761)
+ (-1895 . 582690) (-1896 . 581989) (-1897 . 581912) (-1898 . 581794)
+ (-1899 . 581631) (-1900 . 581503) (-1901 . 581416) (-1902 . 581350)
+ (-1903 . 581264) (-1904 . 581186) (-1905 . 580976) (-1906 . 580888)
+ (-1907 . 580292) (-1908 . 580192) (-1909 . 579913) (-1910 . 579770)
+ (-1911 . 577802) (-1912 . 577736) (-1913 . 577251) (-1914 . 576607)
+ (-1915 . 576520) (-1916 . 576442) (-1917 . 576280) (-1918 . 576179)
+ (-1919 . 576099) (-1920 . 575998) (-1921 . 575875) (-1922 . 575708)
+ (-1923 . 575622) (-1924 . 575567) (-1925 . 575201) (-1926 . 575142)
+ (-1927 . 575085) (-1928 . 573913) (-1929 . 572696) (-1930 . 572627)
+ (-1931 . 572560) (-1932 . 572491) (-1933 . 572227) (-1934 . 572158)
+ (-1935 . 572039) (-1936 . 571924) (-1937 . 571856) (-1938 . 571741)
+ (-1939 . 570639) (-1940 . 570281) (-1941 . 569926) (-1942 . 564757)
+ (-1943 . 564511) (-1944 . 563916) (-1945 . 563849) (-1946 . 563675)
+ (-1947 . 563382) (-1948 . 563299) (-1949 . 563203) (-1950 . 563174)
+ (-1951 . 562890) (-1952 . 562792) (-1953 . 562764) (-1954 . 561627)
+ (-1955 . 561536) (-1956 . 560356) (-1957 . 560171) (-1958 . 560061)
+ (-1959 . 559976) (-1960 . 559906) (-1961 . 559788) (-1962 . 559444)
+ (-1963 . 559311) (-1964 . 559274) (-1965 . 559192) (-1966 . 559148)
+ (-1967 . 559071) (-1968 . 559001) (-1969 . 558923) (-1970 . 558870)
+ (-1971 . 558798) (-1972 . 558744) (-1973 . 558665) (-1974 . 558566)
+ (-1975 . 558495) (-1976 . 558443) (-1977 . 558284) (-1978 . 558250)
+ (-1979 . 558197) (-1980 . 557814) (-1981 . 557745) (-1982 . 557369)
+ (-1983 . 557316) (-1984 . 557150) (-1985 . 557076) (-1986 . 556921)
+ (-1987 . 556680) (-1988 . 556583) (-1989 . 556519) (-1990 . 556382)
+ (-1991 . 556325) (-1992 . 556073) (-1993 . 555947) (-1994 . 555815)
+ (-1995 . 555674) (-1996 . 555586) (-1997 . 555507) (-1998 . 555392)
+ (-1999 . 555132) (-2000 . 555055) (-2001 . 554963) (-2002 . 554910)
+ (-2003 . 554712) (-2004 . 554599) (-2005 . 554159) (-2006 . 554107)
+ (-2007 . 553733) (-2008 . 553681) (-2009 . 553547) (-2010 . 553470)
+ (-2011 . 553366) (-2012 . 553081) (-2013 . 552746) (-2014 . 552714)
+ (-2015 . 552610) (-2016 . 552499) (-2017 . 551961) (-2018 . 551806)
+ (-2019 . 551682) (-2020 . 551527) (-2021 . 551341) (-2022 . 551225)
+ (-2023 . 544282) (-2024 . 544229) (-2025 . 544157) (-2026 . 544105)
+ (-2027 . 544004) (-2028 . 543890) (-2029 . 543593) (-2030 . 541815)
+ (-2031 . 541737) (-2032 . 541547) (-2033 . 541461) (-2034 . 541371)
+ (-2035 . 541337) (-2036 . 540964) (-2037 . 540865) (-2038 . 540435)
+ (-2039 . 540333) (-2040 . 539980) (-2041 . 539857) (-2042 . 539799)
+ (-2043 . 539645) (-2044 . 539480) (-2045 . 539384) (-2046 . 539179)
+ (-2047 . 538887) (-2048 . 538855) (-2049 . 538789) (-2050 . 538683)
+ (-2051 . 538339) (-2052 . 538109) (-2053 . 537911) (-2054 . 537779)
+ (-2055 . 537720) (-2056 . 537540) (-2057 . 537410) (-2058 . 537351)
+ (-2059 . 537285) (-2060 . 537190) (-2061 . 536982) (-2062 . 536902)
+ (-2063 . 536558) (-2064 . 536464) (-2065 . 536371) (-2066 . 536265)
+ (-2067 . 536191) (-2068 . 536084) (-2069 . 535980) (-2070 . 535685)
+ (-2071 . 535252) (-2072 . 534946) (-2073 . 534912) (-2074 . 534733)
+ (-2075 . 534249) (-2076 . 534112) (-2077 . 533730) (-2078 . 533144)
+ (-2079 . 533070) (-2080 . 532963) (-2081 . 532665) (-2082 . 530809)
+ (-2083 . 530651) (-2084 . 529428) (-2085 . 529332) (-2086 . 529159)
+ (-2087 . 529055) (-2088 . 528805) (-2089 . 528619) (-2090 . 528549)
+ (-2091 . 528497) (-2092 . 528398) (-2093 . 528268) (-2094 . 528190)
+ (-2095 . 528120) (-2096 . 527995) (-2097 . 527923) (-2098 . 527870)
+ (-2099 . 527483) (-2100 . 527395) (-2101 . 527345) (-2102 . 527267)
+ (-2103 . 526513) (-2104 . 526433) (-2105 . 526315) (-2106 . 526262)
+ (-2107 . 526108) (-2108 . 526031) (-2109 . 525745) (-2110 . 525666)
+ (-2111 . 525572) (-2112 . 525488) (-2113 . 525436) (-2114 . 525225)
+ (-2115 . 525165) (-2116 . 525116) (-2117 . 524678) (-2118 . 524592)
+ (-2119 . 524515) (-2120 . 524164) (-2121 . 524049) (-2122 . 523996)
+ (-2123 . 523883) (-2124 . 522798) (-2125 . 522563) (-2126 . 522161)
+ (-2127 . 521802) (-2128 . 521743) (-2129 . 521603) (-2130 . 521209)
+ (-2131 . 521137) (-2132 . 521063) (-2133 . 520790) (-2134 . 520716)
+ (-2135 . 520639) (-2136 . 520586) (-2137 . 520504) (-2138 . 520422)
+ (-2139 . 520252) (-2140 . 520197) (-2141 . 520095) (-2142 . 520046)
+ (-2143 . 519909) (-2144 . 519728) (-2145 . 519495) (-2146 . 518893)
+ (-2147 . 518675) (-2148 . 518344) (-2149 . 518069) (-2150 . 517990)
+ (-2151 . 517813) (-2152 . 517734) (-2153 . 517677) (-2154 . 516860)
+ (-2155 . 516708) (-2156 . 516489) (-2157 . 515601) (-2158 . 515382)
+ (-2159 . 515326) (-2160 . 515275) (-2161 . 514944) (-2162 . 514814)
+ (-2163 . 514742) (-2164 . 514689) (-2165 . 514455) (-2166 . 514260)
+ (-2167 . 514096) (-2168 . 513918) (-2169 . 513646) (-2170 . 513572)
+ (-2171 . 513522) (-2172 . 513317) (-2173 . 513229) (-2174 . 513144)
+ (-2175 . 512756) (-2176 . 512642) (-2177 . 512425) (-2178 . 512200)
+ (-2179 . 511943) (-2180 . 511824) (-2181 . 511679) (-2182 . 511593)
+ (-2183 . 511480) (-2184 . 511420) (-2185 . 511320) (-2186 . 511225)
+ (-2187 . 511141) (-2188 . 511092) (-2189 . 510983) (-2190 . 510837)
+ (-2191 . 510709) (-2192 . 510615) (-2193 . 510354) (-2194 . 510145)
+ (-2195 . 509758) (-2196 . 509471) (-2197 . 509358) (-2198 . 509253)
+ (-2199 . 509145) (-2200 . 508973) (-2201 . 508922) (-2202 . 508812)
+ (-2203 . 508671) (-2204 . 508566) (-2205 . 508274) (-2206 . 508094)
+ (-2207 . 508065) (-2208 . 507964) (-2209 . 507912) (-2210 . 507685)
+ (-2211 . 507393) (-2212 . 506915) (-2213 . 506842) (-2214 . 506770)
+ (-2215 . 506211) (-2216 . 505917) (-2217 . 505690) (-2218 . 505359)
+ (-2219 . 505245) (-2220 . 505122) (-2221 . 505038) (-2222 . 504811)
+ (-2223 . 504756) (-2224 . 504659) (-2225 . 504555) (-2226 . 503996)
+ (-2227 . 503778) (-2228 . 503708) (-2229 . 503576) (-2230 . 503510)
+ (-2231 . 503456) (-2232 . 503346) (-2233 . 503247) (-2234 . 503153)
+ (-2235 . 503035) (-2236 . 502892) (-2237 . 502750) (-2238 . 502676)
+ (-2239 . 502496) (-2240 . 502401) (-2241 . 502306) (-2242 . 502161)
+ (-2243 . 501874) (-2244 . 501602) (-2245 . 501550) (-2246 . 501416)
+ (-2247 . 501281) (-2248 . 501225) (-2249 . 501137) (-2250 . 500689)
+ (-2251 . 500456) (-2252 . 500225) (-2253 . 500045) (-2254 . 499959)
+ (-2255 . 499805) (-2256 . 499430) (-2257 . 499377) (-2258 . 499314)
+ (-2259 . 499285) (-2260 . 499068) (-2261 . 498817) (-2262 . 498681)
+ (-2263 . 498478) (-2264 . 498388) (-2265 . 497685) (-2266 . 497587)
+ (-2267 . 497260) (-2268 . 497153) (-2269 . 497023) (-2270 . 496805)
+ (-2271 . 496652) (-2272 . 496530) (-2273 . 496449) (-2274 . 496289)
+ (-2275 . 496008) (-2276 . 495906) (-2277 . 495766) (-2278 . 495520)
+ (-2279 . 495450) (-2280 . 495390) (-2281 . 495317) (-2282 . 495172)
+ (-2283 . 495027) (-2284 . 494974) (-2285 . 494900) (-2286 . 494831)
+ (-2287 . 494743) (-2288 . 494601) (-2289 . 494270) (-2290 . 494211)
+ (-2291 . 494074) (-2292 . 493926) (-2293 . 493823) (-2294 . 493219)
+ (-2295 . 493111) (-2296 . 493083) (-2297 . 492986) (-2298 . 492773)
+ (-2299 . 492447) (-2300 . 492367) (-2301 . 492217) (-2302 . 491791)
+ (-2303 . 491652) (-2304 . 491586) (-2305 . 491528) (-2306 . 491462)
+ (-2307 . 491358) (-2308 . 491046) (-2309 . 490697) (-2310 . 490561)
+ (-2311 . 490505) (-2312 . 489962) (-2313 . 489311) (-2314 . 488677)
+ (-2315 . 488599) (-2316 . 488398) (-2317 . 488236) (-2318 . 488184)
+ (-2319 . 487888) (-2320 . 487814) (-2321 . 487712) (-2322 . 487115)
+ (-2323 . 486671) (-2324 . 486585) (-2325 . 486225) (-2326 . 485474)
+ (-2327 . 485316) (-2328 . 485185) (-2329 . 484758) (-2330 . 484619)
+ (-2331 . 484431) (-2332 . 484347) (-2333 . 483858) (-2334 . 483793)
+ (-2335 . 483713) (-2336 . 483606) (-2337 . 483230) (-2338 . 483151)
+ (-2339 . 482990) (-2340 . 481788) (-2341 . 481524) (-2342 . 481451)
+ (-2343 . 481353) (-2344 . 481231) (-2345 . 481197) (-2346 . 480949)
+ (-2347 . 480897) (-2348 . 480530) (-2349 . 480429) (-2350 . 480340)
+ (-2351 . 480224) (-2352 . 480021) (-2353 . 479599) (-2354 . 479497)
+ (-2355 . 479379) (-2356 . 479298) (-2357 . 479162) (-2358 . 479082)
+ (-2359 . 478868) (-2360 . 478713) (-2361 . 478454) (-2362 . 478195)
+ (-2363 . 478112) (-2364 . 478019) (-2365 . 477915) (-2366 . 477659)
+ (-2367 . 477594) (-2368 . 477474) (-2369 . 477375) (-2370 . 476839)
+ (-2371 . 476742) (-2372 . 476543) (-2373 . 476484) (-2374 . 476359)
+ (-2375 . 476297) (-2376 . 476197) (-2377 . 476102) (-2378 . 475724)
+ (-2379 . 475612) (-2380 . 475387) (-2381 . 475313) (-2382 . 475285)
+ (-2383 . 474527) (-2384 . 474449) (-2385 . 473706) (-2386 . 473553)
+ (-2387 . 473410) (-2388 . 473281) (-2389 . 473215) (-2390 . 473120)
+ (-2391 . 472593) (-2392 . 472259) (-2393 . 472206) (-2394 . 472101)
+ (-2395 . 471937) (-2396 . 471843) (-2397 . 471558) (-2398 . 471427)
+ (-2399 . 471375) (-2400 . 471231) (-2401 . 471051) (-2402 . 470999)
+ (-2403 . 470928) (-2404 . 470851) (-2405 . 470633) (-2406 . 470584)
+ (-2407 . 470480) (-2408 . 470384) (-2409 . 470190) (-2410 . 470119)
+ (-2411 . 470016) (-2412 . 469827) (-2413 . 469732) (-2414 . 469599)
+ (-2415 . 469546) (-2416 . 469382) (-2417 . 469329) (-2418 . 469270)
+ (-2419 . 469155) (-2420 . 469042) (-2421 . 469014) (-2422 . 468885)
+ (-2423 . 468560) (-2424 . 468494) (-2425 . 468442) (-2426 . 468354)
+ (-2427 . 468222) (-2428 . 468170) (-2429 . 468109) (-2430 . 468013)
+ (-2431 . 467717) (-2432 . 467589) (-2433 . 467533) (-2434 . 467454)
+ (-2435 . 467326) (-2436 . 467243) (-2437 . 467166) (-2438 . 467065)
+ (-2439 . 466940) (-2440 . 466800) (-2441 . 466743) (-2442 . 466636)
+ (-2443 . 466090) (-2444 . 465867) (-2445 . 465783) (-2446 . 465724)
+ (-2447 . 465150) (-2448 . 465066) (-2449 . 464899) (-2450 . 464871)
+ (-2451 . 464433) (-2452 . 464350) (-2453 . 464236) (-2454 . 463703)
+ (-2455 . 463570) (-2456 . 461993) (-2457 . 461841) (-2458 . 461771)
+ (-2459 . 461260) (-2460 . 461208) (-2461 . 461017) (-2462 . 460897)
+ (-2463 . 460759) (-2464 . 460521) (-2465 . 460442) (-2466 . 460272)
+ (-2467 . 459661) (-2468 . 459473) (-2469 . 459350) (-2470 . 459183)
+ (-2471 . 459115) (-2472 . 458837) (-2473 . 458677) (-2474 . 458581)
+ (-2475 . 458198) (-2476 . 458124) (-2477 . 458087) (-2478 . 458028)
+ (-2479 . 457729) (-2480 . 457608) (-2481 . 457513) (-2482 . 457445)
+ (-2483 . 457326) (-2484 . 457232) (-2485 . 457180) (-2486 . 457010)
+ (-2487 . 456924) (-2488 . 456702) (-2489 . 456560) (-2490 . 456411)
+ (-2491 . 456152) (-2492 . 455918) (-2493 . 455890) (-2494 . 455837)
+ (-2495 . 455700) (-2496 . 455610) (-2497 . 455539) (-2498 . 455468)
+ (-2499 . 455389) (-2500 . 455321) (-2501 . 455224) (-2502 . 454406)
+ (-2503 . 454329) (-2504 . 454232) (-2505 . 453154) (-2506 . 453011)
+ (-2507 . 452928) (-2508 . 452877) (-2509 . 452650) (-2510 . 451388)
+ (-2511 . 451311) (-2512 . 451015) (-2513 . 450913) (-2514 . 450774)
+ (-2515 . 450526) (-2516 . 450385) (-2517 . 449650) (-2518 . 449314)
+ (-2519 . 449217) (-2520 . 448377) (-2521 . 448305) (-2522 . 447791)
+ (-2523 . 447415) (-2524 . 447363) (-2525 . 447293) (-2526 . 447085)
+ (-2527 . 446942) (-2528 . 446836) (-2529 . 446721) (-2530 . 446623)
+ (-2531 . 446571) (-2532 . 446368) (-2533 . 446246) (-2534 . 446150)
+ (-2535 . 445950) (-2536 . 445732) (-2537 . 445362) (-2538 . 445199)
+ (-2539 . 445136) (-2540 . 444886) (-2541 . 444778) (-2542 . 444694)
+ (-2543 . 444612) (-2544 . 444539) (-2545 . 444483) (-2546 . 444325)
+ (-2547 . 444147) (-2548 . 443286) (-2549 . 443168) (-2550 . 443116)
+ (-2551 . 442971) (-2552 . 442899) (-2553 . 442640) (-2554 . 442313)
+ (-2555 . 442090) (-2556 . 442006) (-2557 . 441848) (-2558 . 441596)
+ (-2559 . 441428) (-2560 . 441341) (-2561 . 441270) (-2562 . 441130)
+ (-2563 . 441047) (-2564 . 440970) (-2565 . 440897) (-2566 . 440679)
+ (-2567 . 440583) (-2568 . 440511) (-2569 . 440430) (-2570 . 440063)
+ (-2571 . 439931) (-2572 . 439497) (-2573 . 439391) (-2574 . 439360)
+ (-2575 . 436579) (-2576 . 436522) (-2577 . 436445) (-2578 . 436332)
+ (-2579 . 436241) (-2580 . 436210) (-2581 . 436144) (-2582 . 436067)
+ (-2583 . 436010) (-2584 . 435897) (-2585 . 435267) (-2586 . 435170)
+ (-2587 . 434952) (-2588 . 434864) (-2589 . 434666) (-2590 . 434596)
+ (-2591 . 434469) (-2592 . 434324) (-2593 . 434253) (-2594 . 434142)
+ (-2595 . 433922) (-2596 . 433823) (-2597 . 433663) (-2598 . 433544)
+ (-2599 . 433446) (-2600 . 432942) (-2601 . 432841) (-2602 . 432746)
+ (-2603 . 432672) (-2604 . 432486) (-2605 . 432430) (-2606 . 432361)
+ (-2607 . 432080) (-2608 . 432027) (-2609 . 431881) (-2610 . 431690)
+ (-2611 . 431561) (-2612 . 431473) (-2613 . 431272) (-2614 . 431003)
+ (-2615 . 430531) (-2616 . 430407) (-2617 . 430355) (-2618 . 430130)
+ (-2619 . 430029) (-2620 . 429933) (-2621 . 429899) (-2622 . 429842)
+ (-2623 . 429737) (-2624 . 429430) (-2625 . 429335) (-2626 . 429268)
+ (-2627 . 419818) (-2628 . 419744) (-2629 . 419363) (-2630 . 419268)
+ (-2631 . 419197) (-2632 . 419143) (-2633 . 419040) (-2634 . 418899)
+ (-2635 . 418395) (-2636 . 418312) (-2637 . 418144) (-2638 . 417804)
+ (-2639 . 417518) (-2640 . 417403) (-2641 . 417305) (-2642 . 417277)
+ (-2643 . 417079) (-2644 . 417021) (-2645 . 416949) (-2646 . 416768)
+ (-2647 . 416712) (-2648 . 416597) (-2649 . 416507) (-2650 . 416364)
+ (-2651 . 416055) (-2652 . 415739) (-2653 . 415600) (-2654 . 415396)
+ (-2655 . 415322) (-2656 . 414946) (-2657 . 414858) (-2658 . 414668)
+ (-2659 . 414568) (-2660 . 414482) (-2661 . 414430) (-2662 . 414371)
+ (-2663 . 414291) (-2664 . 414239) (-2665 . 414145) (-2666 . 414074)
+ (-2667 . 414018) (-2668 . 413743) (-2669 . 413408) (-2670 . 413359)
+ (-2671 . 413210) (-2672 . 412956) (-2673 . 412832) (-2674 . 412369)
+ (-2675 . 412300) (-2676 . 412227) (-2677 . 411046) (-2678 . 410976)
+ (-2679 . 410797) (-2680 . 410686) (-2681 . 410617) (-2682 . 410398)
+ (-2683 . 410298) (-2684 . 410246) (-2685 . 410151) (-2686 . 410091)
+ (-2687 . 409938) (-2688 . 409806) (-2689 . 409203) (-2690 . 409069)
+ (-2691 . 408937) (-2692 . 408781) (-2693 . 408677) (-2694 . 408627)
+ (-2695 . 408365) (-2696 . 407944) (-2697 . 407853) (-2698 . 407725)
+ (-2699 . 407672) (-2700 . 407606) (-2701 . 407549) (-2702 . 407477)
+ (-2703 . 407363) (-2704 . 407292) (-2705 . 407237) (-2706 . 406943)
+ (-2707 . 406848) (-2708 . 406774) (-2709 . 406621) (-2710 . 406542)
+ (-2711 . 405954) (-2712 . 405899) (-2713 . 405816) (-2714 . 405747)
+ (-2715 . 405681) (-2716 . 405652) (-2717 . 405542) (-2718 . 405479)
+ (-2719 . 405411) (-2720 . 405283) (-2721 . 404980) (-2722 . 404914)
+ (-2723 . 404782) (-2724 . 404716) (-2725 . 404242) (-2726 . 404089)
+ (-2727 . 403866) (-2728 . 403759) (-2729 . 403691) (-2730 . 403639)
+ (-2731 . 403509) (-2732 . 403387) (-2733 . 403304) (-2734 . 403248)
+ (-2735 . 403152) (-2736 . 402423) (-2737 . 402056) (-2738 . 402025)
+ (-2739 . 401954) (-2740 . 401636) (-2741 . 401576) (-2742 . 401510)
+ (-2743 . 400781) (-2744 . 400636) (-2745 . 400452) (-2746 . 400328)
+ (-2747 . 400236) (-2748 . 400058) (-2749 . 399912) (-2750 . 399541)
+ (-2751 . 398574) (-2752 . 398395) (-2753 . 398117) (-2754 . 397985)
+ (-2755 . 397309) (-2756 . 397171) (-2757 . 396953) (-2758 . 396837)
+ (-2759 . 396695) (-2760 . 396417) (-2761 . 396302) (-2762 . 396229)
+ (-2763 . 395939) (-2764 . 395855) (-2765 . 395739) (-2766 . 395557)
+ (-2767 . 395505) (-2768 . 394941) (-2769 . 394907) (-2770 . 394807)
+ (-2771 . 394727) (-2772 . 394376) (-2773 . 394233) (-2774 . 393948)
+ (-2775 . 393766) (-2776 . 393606) (-2777 . 393042) (-2778 . 392989)
+ (-2779 . 392838) (-2780 . 392666) (-2781 . 392610) (-2782 . 392522)
+ (-2783 . 392395) (-2784 . 392280) (-2785 . 392187) (-2786 . 392092)
+ (-2787 . 392058) (-2788 . 391810) (-2789 . 391666) (-2790 . 391589)
+ (-2791 . 391025) (-2792 . 389799) (-2793 . 389627) (-2794 . 389482)
+ (-2795 . 389381) (-2796 . 389228) (-2797 . 389162) (-2798 . 389076)
+ (-2799 . 388980) (-2800 . 388462) (-2801 . 388304) (-2802 . 388101)
+ (-2803 . 387985) (-2804 . 387311) (-2805 . 387139) (-2806 . 386994)
+ (-2807 . 386895) (-2808 . 386842) (-2809 . 386717) (-2810 . 386615)
+ (-2811 . 386563) (-2812 . 386365) (-2813 . 386287) (-2814 . 386168)
+ (-2815 . 386091) (-2816 . 385948) (-2817 . 385274) (-2818 . 385102)
+ (-2819 . 385014) (-2820 . 384919) (-2821 . 384838) (-2822 . 384592)
+ (-2823 . 384539) (-2824 . 384472) (-2825 . 384416) (-2826 . 384339)
+ (-2827 . 384231) (-2828 . 383494) (-2829 . 383397) (-2830 . 383338)
+ (-2831 . 383255) (-2832 . 383016) (-2833 . 382826) (-2834 . 382725)
+ (-2835 . 382666) (-2836 . 382563) (-2837 . 382512) (-2838 . 381950)
+ (-2839 . 381847) (-2840 . 381752) (-2841 . 381557) (-2842 . 381335)
+ (-2843 . 381201) (-2844 . 381103) (-2845 . 380885) (-2846 . 380614)
+ (-2847 . 380463) (-2848 . 379901) (-2849 . 379757) (-2850 . 379592)
+ (-2851 . 378726) (-2852 . 378515) (-2853 . 378420) (-2854 . 378349)
+ (-2855 . 378242) (-2856 . 378119) (-2857 . 378067) (-2858 . 377505)
+ (-2859 . 377159) (-2860 . 376960) (-2861 . 376905) (-2862 . 376419)
+ (-2863 . 376368) (-2864 . 376237) (-2865 . 376100) (-2866 . 376047)
+ (-2867 . 375768) (-2868 . 375708) (-2869 . 375033) (-2870 . 374980)
+ (-2871 . 374792) (-2872 . 374169) (-2873 . 374035) (-2874 . 373969)
+ (-2875 . 373884) (-2876 . 373726) (-2877 . 373603) (-2878 . 373039)
+ (-2879 . 372364) (-2880 . 372297) (-2881 . 372231) (-2882 . 372088)
+ (-2883 . 371889) (-2884 . 371505) (-2885 . 371449) (-2886 . 371396)
+ (-2887 . 371324) (-2888 . 371128) (-2889 . 371076) (-2890 . 370401)
+ (-2891 . 370331) (-2892 . 370233) (-2893 . 370111) (-2894 . 369919)
+ (-2895 . 369747) (-2896 . 369670) (-2897 . 369642) (-2898 . 369115)
+ (-2899 . 368982) (-2900 . 368886) (-2901 . 368680) (-2902 . 368117)
+ (-2903 . 368019) (-2904 . 367826) (-2905 . 367655) (-12 . 367483)
+ (-2907 . 367418) (-2908 . 367321) (-2909 . 367237) (-2910 . 367178)
+ (-2911 . 367057) (-2912 . 366745) (-2913 . 366412) (-2914 . 365817)
+ (-2915 . 365717) (-2916 . 365627) (-2917 . 365443) (-2918 . 365348)
+ (-2919 . 365102) (-2920 . 364963) (-2921 . 364822) (-2922 . 364763)
+ (-2923 . 364664) (-2924 . 364556) (-2925 . 364380) (-2926 . 364314)
+ (-2927 . 364231) (-2928 . 364054) (-2929 . 363930) (-2930 . 363834)
+ (-2931 . 363157) (-2932 . 363084) (-2933 . 362743) (-2934 . 362690)
+ (-2935 . 362638) (-2936 . 362368) (-2937 . 362297) (-2938 . 362118)
+ (-2939 . 362039) (-2940 . 361939) (-2941 . 361840) (-2942 . 361725)
+ (-2943 . 361531) (-2944 . 361469) (-2945 . 360637) (-2946 . 360563)
+ (-2947 . 360511) (-2948 . 360459) (-2949 . 360386) (-2950 . 360229)
+ (-2951 . 359942) (-2952 . 359701) (-2953 . 359599) (-2954 . 359443)
+ (-2955 . 359340) (-2956 . 359185) (-2957 . 358869) (-2958 . 358633)
+ (-2959 . 358581) (-2960 . 358482) (-2961 . 358297) (-2962 . 358196)
+ (-2963 . 358095) (-2964 . 358046) (-2965 . 357988) (-2966 . 357922)
+ (-2967 . 357776) (-2968 . 357658) (-2969 . 357599) (-2970 . 357334)
+ (-2971 . 357038) (-2972 . 356478) (-2973 . 356422) (-2974 . 356326)
+ (-2975 . 356223) (-2976 . 356128) (-2977 . 355962) (-2978 . 355784)
+ (-2979 . 355678) (-2980 . 355232) (-2981 . 355166) (-2982 . 355035)
+ (-2983 . 354905) (-2984 . 354722) (-2985 . 354658) (-2986 . 354621)
+ (-2987 . 354525) (-2988 . 354423) (-2989 . 354294) (-2990 . 354190)
+ (-2991 . 354158) (-2992 . 353773) (* . 349506) (-2994 . 349385)
+ (-2995 . 349333) (-2996 . 349168) (-2997 . 349116) (-2998 . 348923)
+ (-2999 . 348855) (-3000 . 348637) (-3001 . 348584) (-3002 . 348098)
+ (-3003 . 347943) (-3004 . 347717) (-3005 . 347629) (-3006 . 346966)
+ (-3007 . 346865) (-3008 . 346736) (-3009 . 346613) (-3010 . 346445)
+ (-3011 . 345766) (-3012 . 345666) (-3013 . 345273) (-3014 . 345187)
+ (-3015 . 344868) (-3016 . 343570) (-3017 . 342682) (-3018 . 342366)
+ (-3019 . 342133) (-3020 . 341888) (-3021 . 341714) (-3022 . 341640)
+ (-3023 . 341472) (-3024 . 341400) (-3025 . 341128) (-3026 . 340925)
+ (-3027 . 340710) (-3028 . 340508) (-3029 . 340477) (-3030 . 340448)
+ (-3031 . 340362) (-3032 . 340243) (-3033 . 339892) (-3034 . 339771)
+ (-3035 . 339737) (-3036 . 339590) (-3037 . 339413) (-3038 . 339219)
+ (-3039 . 339160) (-3040 . 339036) (-3041 . 338962) (-3042 . 338789)
+ (-3043 . 338414) (-3044 . 338195) (-3045 . 337964) (-3046 . 337708)
+ (-3047 . 337585) (-3048 . 337406) (-3049 . 337152) (-3050 . 337049)
+ (-3051 . 336089) (-3052 . 336033) (-3053 . 335947) (-3054 . 335850)
+ (-3055 . 335763) (-3056 . 335686) (-3057 . 335434) (-3058 . 335276)
+ (-3059 . 335148) (-3060 . 335095) (-3061 . 334867) (-3062 . 334567)
+ (-3063 . 334485) (-3064 . 334400) (-3065 . 334241) (-3066 . 333862)
+ (-3067 . 333662) (-3068 . 333610) (-3069 . 333557) (-3070 . 333507)
+ (-3071 . 333379) (-3072 . 333296) (-3073 . 333226) (-3074 . 333126)
+ (-3075 . 333039) (-3076 . 332925) (-3077 . 332747) (-3078 . 332544)
+ (-3079 . 330430) (-3080 . 330287) (-3081 . 328947) (-3082 . 328806)
+ (-3083 . 328737) (-3084 . 328565) (-3085 . 328050) (-3086 . 327863)
+ (-3087 . 327790) (-3088 . 327420) (-3089 . 327317) (-3090 . 327159)
+ (-3091 . 327050) (-3092 . 326927) (-3093 . 326760) (-3094 . 326611)
+ (-3095 . 326496) (-3096 . 326394) (-3097 . 326334) (-3098 . 326019)
+ (-3099 . 325899) (-3100 . 325741) (-3101 . 325332) (-3102 . 325272)
+ (-3103 . 325193) (-3104 . 324007) (-3105 . 323901) (-3106 . 323760)
+ (-3107 . 323726) (-3108 . 323649) (-3109 . 323621) (-3110 . 323428)
+ (-3111 . 323135) (-3112 . 323058) (-3113 . 322961) (-3114 . 321779)
+ (-3115 . 321697) (-3116 . 321461) (-3117 . 321387) (-3118 . 321212)
+ (-3119 . 320448) (-3120 . 320344) (-3121 . 320199) (-3122 . 319720)
+ (-3123 . 319618) (-3124 . 319389) (-3125 . 317181) (-3126 . 317116)
+ (-3127 . 317001) (-3128 . 316948) (-3129 . 316710) (-3130 . 316478)
+ (-3131 . 316347) (-3132 . 316218) (-3133 . 316145) (-3134 . 316050)
+ (-3135 . 315951) (-3136 . 315427) (-3137 . 315374) (-3138 . 315015)
+ (-9 . 314987) (-3140 . 314730) (-3141 . 314677) (-3142 . 314643)
+ (-3143 . 314497) (-3144 . 314409) (-3145 . 314094) (-3146 . 314013)
+ (-3147 . 313879) (-3148 . 313485) (-8 . 313457) (-3150 . 313345)
+ (-3151 . 313202) (-3152 . 312004) (-3153 . 311951) (-3154 . 311729)
+ (-3155 . 311674) (-7 . 311646) (-3157 . 311339) (-3158 . 311242)
+ (-3159 . 310920) (-3160 . 309802) (-3161 . 309677) (-3162 . 309406)
+ (-3163 . 309157) (-3164 . 308733) (-3165 . 308453) (-3166 . 308036)
+ (-3167 . 307950) (-3168 . 307815) (-3169 . 307657) (-3170 . 306981)
+ (-3171 . 306925) (-3172 . 306866) (-3173 . 306795) (-3174 . 306691)
+ (-3175 . 306488) (-3176 . 306364) (-3177 . 306256) (-3178 . 306198)
+ (-3179 . 306145) (-3180 . 305976) (-3181 . 305647) (-3182 . 304831)
+ (-3183 . 304293) (-3184 . 304105) (-3185 . 304010) (-3186 . 303932)
+ (-3187 . 303877) (-3188 . 303658) (-3189 . 303563) (-3190 . 302930)
+ (-3191 . 302837) (-3192 . 302703) (-3193 . 302590) (-3194 . 302509)
+ (-3195 . 301975) (-3196 . 301848) (-3197 . 301619) (-3198 . 301503)
+ (-3199 . 301342) (-3200 . 300500) (-3201 . 300466) (-3202 . 299401)
+ (-3203 . 299201) (-3204 . 298955) (-3205 . 298884) (-3206 . 298812)
+ (-3207 . 298674) (-3208 . 298606) (-3209 . 298444) (-3210 . 298378)
+ (-3211 . 297952) (-3212 . 297880) (-3213 . 297677) (-3214 . 297600)
+ (-3215 . 297547) (-3216 . 297461) (-3217 . 297367) (-3218 . 297209)
+ (-3219 . 297065) (-3220 . 291726) (-3221 . 291608) (-3222 . 291492)
+ (-3223 . 291398) (-3224 . 290999) (-3225 . 290615) (-3226 . 290562)
+ (-3227 . 290389) (-3228 . 290334) (-3229 . 290225) (-3230 . 290067)
+ (-3231 . 289581) (-3232 . 289412) (-3233 . 289328) (-3234 . 289220)
+ (-3235 . 288982) (-3236 . 287201) (-3237 . 287136) (-3238 . 287055)
+ (-3239 . 286930) (-3240 . 286680) (-3241 . 286469) (-3242 . 286397)
+ (-3243 . 286314) (-3244 . 286096) (-3245 . 286030) (-3246 . 285909)
+ (-3247 . 285757) (-3248 . 285547) (-3249 . 285304) (-3250 . 285146)
+ (-3251 . 285067) (-3252 . 284912) (-3253 . 284845) (-3254 . 284687)
+ (-3255 . 284602) (-3256 . 284449) (-3257 . 284068) (-3258 . 283484)
+ (-3259 . 283389) (-3260 . 283337) (-3261 . 283167) (-3262 . 283088)
+ (-3263 . 282698) (-3264 . 282646) (-3265 . 281465) (-3266 . 281250)
+ (-3267 . 281153) (-3268 . 280791) (-3269 . 280712) (-3270 . 280606)
+ (-3271 . 280505) (-3272 . 280392) (-3273 . 280226) (-3274 . 280174)
+ (-3275 . 280055) (-3276 . 279891) (-3277 . 279831) (-3278 . 279621)
+ (-3279 . 279094) (-3280 . 279066) (-3281 . 278976) (-3282 . 278802)
+ (-3283 . 278749) (-3284 . 278630) (-3285 . 278542) (-3286 . 278448)
+ (-3287 . 278385) (-3288 . 278319) (-3289 . 277905) (-3290 . 277809)
+ (-3291 . 277266) (-3292 . 277044) (-3293 . 276958) (-3294 . 276887)
+ (-3295 . 276835) (-3296 . 276567) (-3297 . 276515) (-3298 . 276438)
+ (-3299 . 276366) (-3300 . 276114) (-3301 . 276028) (-3302 . 275802)
+ (-3303 . 275704) (-3304 . 275359) (-3305 . 275278) (-3306 . 275192)
+ (-3307 . 275121) (-3308 . 275051) (-3309 . 274903) (-3310 . 274673)
+ (-3311 . 274621) (-3312 . 274466) (-3313 . 274438) (-3314 . 273246)
+ (-3315 . 273175) (-3316 . 273049) (-3317 . 272902) (-3318 . 272656)
+ (-3319 . 272232) (-3320 . 272158) (-3321 . 270730) (-3322 . 270677)
+ (-3323 . 270604) (-3324 . 270467) (-3325 . 270439) (-3326 . 270343)
+ (-3327 . 270151) (-3328 . 270099) (-3329 . 269936) (-3330 . 269690)
+ (-3331 . 269542) (-3332 . 269324) (-3333 . 269194) (-3334 . 269162)
+ (-3335 . 269076) (-3336 . 268981) (-3337 . 268903) (-3338 . 268842)
+ (-3339 . 268715) (-3340 . 268459) (-3341 . 268373) (-3342 . 268278)
+ (-3343 . 268108) (-3344 . 268034) (-3345 . 267583) (-3346 . 267376)
+ (-3347 . 267268) (-3348 . 267166) (-3349 . 267029) (-3350 . 266738)
+ (-3351 . 266679) (-3352 . 266288) (-3353 . 266097) (-3354 . 265859)
+ (-3355 . 265106) (-3356 . 265049) (-3357 . 264828) (-3358 . 264495)
+ (-3359 . 264439) (-3360 . 264276) (-3361 . 264192) (-3362 . 264123)
+ (-3363 . 264000) (-3364 . 263948) (-3365 . 263854) (-3366 . 263512)
+ (-3367 . 263405) (-3368 . 263294) (-3369 . 263159) (-3370 . 262976)
+ (-3371 . 262853) (-3372 . 262580) (-3373 . 262437) (-3374 . 262322)
+ (-3375 . 261896) (-3376 . 261657) (-3377 . 261498) (-3378 . 261251)
+ (-3379 . 261167) (-3380 . 260529) (-3381 . 260464) (-3382 . 260216)
+ (-3383 . 260085) (-3384 . 260035) (-3385 . 259839) (-3386 . 259737)
+ (-3387 . 259461) (-3388 . 259399) (-3389 . 259159) (-3390 . 258920)
+ (-3391 . 258694) (-3392 . 258570) (-3393 . 257950) (-3394 . 257792)
+ (-3395 . 257739) (-3396 . 257308) (-3397 . 257142) (-3398 . 257072)
+ (-3399 . 257007) (-3400 . 256456) (-3401 . 256287) (-3402 . 256209)
+ (-3403 . 256110) (-3404 . 256021) (-3405 . 255917) (-3406 . 255488)
+ (-3407 . 255364) (-3408 . 254021) (-3409 . 253905) (-3410 . 253253)
+ (-3411 . 253221) (-3412 . 253166) (-3413 . 252718) (-3414 . 252636)
+ (-3415 . 252582) (-3416 . 252463) (-3417 . 252203) (-3418 . 252085)
+ (-3419 . 252031) (-3420 . 251908) (-3421 . 249067) (-3422 . 248188)
+ (-3423 . 248073) (-3424 . 247999) (-3425 . 247894) (-3426 . 247761)
+ (-3427 . 247682) (-3428 . 247590) (-3429 . 247509) (-3430 . 247389)
+ (-3431 . 247119) (-3432 . 247045) (-3433 . 246936) (-3434 . 246841)
+ (-3435 . 246580) (-3436 . 246492) (-3437 . 246354) (-3438 . 246301)
+ (-3439 . 246218) (-3440 . 246135) (-3441 . 245989) (-3442 . 245848)
+ (-3443 . 245742) (-3444 . 245690) (-3445 . 245492) (-3446 . 245440)
+ (-3447 . 245338) (-3448 . 244755) (-3449 . 244132) (-3450 . 243994)
+ (-3451 . 243878) (-3452 . 243826) (-3453 . 243169) (-3454 . 243066)
+ (-3455 . 243007) (-3456 . 242580) (-3457 . 242524) (-3458 . 242469)
+ (-3459 . 242337) (-3460 . 242260) (-3461 . 242014) (-3462 . 241895)
+ (-3463 . 240449) (-3464 . 240417) (-3465 . 240331) (-3466 . 240117)
+ (-3467 . 239993) (-3468 . 239956) (-3469 . 239678) (-3470 . 239560)
+ (-3471 . 239483) (-3472 . 239255) (-3473 . 239108) (-3474 . 238952)
+ (-3475 . 238924) (-3476 . 238798) (-3477 . 238711) (-3478 . 238563)
+ (-3479 . 238384) (-3480 . 238201) (-3481 . 238124) (-3482 . 238026)
+ (-3483 . 237973) (-3484 . 237732) (-3485 . 237703) (-3486 . 237620)
+ (-3487 . 237562) (-3488 . 237344) (-3489 . 237281) (-3490 . 236899)
+ (-3491 . 236799) (-3492 . 236408) (-3493 . 236161) (-3494 . 236087)
+ (-3495 . 236010) (-3496 . 235932) (-3497 . 235851) (-3498 . 235730)
+ (-3499 . 235634) (-3500 . 235089) (-3501 . 234907) (-3502 . 232492)
+ (-3503 . 232382) (-3504 . 232191) (-3505 . 231787) (-3506 . 231692)
+ (-3507 . 231485) (-3508 . 231387) (-3509 . 231277) (-3510 . 231140)
+ (-3511 . 229992) (-3512 . 229844) (-3513 . 228908) (-3514 . 228703)
+ (-3515 . 228641) (-3516 . 228496) (-3517 . 228468) (-3518 . 228321)
+ (-3519 . 227870) (-3520 . 227817) (-3521 . 227732) (-3522 . 227566)
+ (-3523 . 227510) (-3524 . 227339) (-3525 . 227158) (-3526 . 227051)
+ (-3527 . 226648) (-3528 . 226556) (-3529 . 226497) (-3530 . 226441)
+ (-3531 . 226332) (-3532 . 226238) (-3533 . 225910) (-3534 . 225827)
+ (-3535 . 225666) (-3536 . 225606) (-3537 . 225510) (-3538 . 225433)
+ (-3539 . 225174) (-3540 . 225082) (-3541 . 224987) (-3542 . 224595)
+ (-3543 . 224521) (-3544 . 224420) (-3545 . 224307) (-3546 . 223694)
+ (-3547 . 223404) (-3548 . 223075) (-3549 . 222900) (-3550 . 220738)
+ (-3551 . 220594) (-3552 . 220508) (-3553 . 220458) (-3554 . 220219)
+ (-3555 . 219831) (-3556 . 219604) (-3557 . 219522) (-3558 . 219095)
+ (-3559 . 218985) (-3560 . 218796) (-3561 . 218486) (-3562 . 218420)
+ (-3563 . 218295) (-3564 . 217374) (-3565 . 217240) (-3566 . 217208)
+ (-3567 . 217092) (-3568 . 216000) (-3569 . 215873) (-3570 . 215811)
+ (-3571 . 215320) (-3572 . 215267) (-3573 . 214916) (-3574 . 214814)
+ (-3575 . 214634) (-3576 . 214560) (-3577 . 214229) (-3578 . 214133)
+ (-3579 . 213838) (-3580 . 213784) (-3581 . 213619) (-3582 . 213520)
+ (-3583 . 213434) (-3584 . 213140) (-3585 . 212652) (-3586 . 212259)
+ (-3587 . 212020) (-3588 . 211735) (-3589 . 211643) (-3590 . 211539)
+ (-3591 . 211438) (-3592 . 211321) (-3593 . 211106) (-3594 . 211038)
+ (-3595 . 210801) (-3596 . 210570) (-3597 . 210446) (-3598 . 210319)
+ (-3599 . 210235) (-3600 . 210201) (-3601 . 210057) (-3602 . 209411)
+ (-3603 . 209257) (-3604 . 209113) (-3605 . 208990) (-3606 . 208853)
+ (-3607 . 208471) (-3608 . 208420) (-3609 . 208367) (-3610 . 207548)
+ (-3611 . 207280) (-3612 . 207101) (-3613 . 206958) (-3614 . 206541)
+ (-3615 . 205699) (-3616 . 205107) (-3617 . 204908) (-3618 . 204877)
+ (-3619 . 204718) (-3620 . 204603) (-3621 . 204422) (-3622 . 204336)
+ (-3623 . 204175) (-3624 . 204105) (-3625 . 203945) (-3626 . 203844)
+ (-3627 . 200235) (-3628 . 199668) (-3629 . 199569) (-3630 . 199350)
+ (-3631 . 199143) (-3632 . 198933) (-3633 . 198398) (-3634 . 198228)
+ (-3635 . 198039) (-3636 . 197942) (-3637 . 197700) (-3638 . 197581)
+ (-3639 . 197369) (-3640 . 197289) (-3641 . 197137) (-3642 . 196658)
+ (-3643 . 196267) (-3644 . 196143) (-3645 . 195429) (-3646 . 195363)
+ (-3647 . 195295) (-3648 . 195142) (-3649 . 194971) (-3650 . 194848)
+ (-3651 . 194692) (-3652 . 194613) (-3653 . 194502) (-3654 . 194450)
+ (-3655 . 193810) (-3656 . 193353) (-3657 . 192930) (-3658 . 192752)
+ (-3659 . 192666) (-3660 . 192411) (-3661 . 192278) (-3662 . 192176)
+ (-3663 . 191694) (-3664 . 191638) (-3665 . 191376) (-3666 . 190074)
+ (-3667 . 190007) (-3668 . 189978) (-3669 . 189728) (-3670 . 189553)
+ (-3671 . 189469) (-3672 . 189374) (-3673 . 189065) (-3674 . 188803)
+ (-3675 . 188720) (-3676 . 188692) (-3677 . 188624) (-3678 . 188483)
+ (-3679 . 188430) (-3680 . 188356) (-3681 . 188288) (-3682 . 188238)
+ (-3683 . 188144) (-3684 . 187733) (-3685 . 187628) (-3686 . 187379)
+ (-3687 . 187317) (-3688 . 187214) (-3689 . 187108) (-3690 . 186946)
+ (-3691 . 186841) (-3692 . 186650) (-3693 . 186197) (-3694 . 186145)
+ (-3695 . 185835) (-3696 . 185704) (-3697 . 185476) (-3698 . 185448)
+ (-3699 . 185234) (-3700 . 185084) (-3701 . 185011) (-3702 . 184956)
+ (-3703 . 184872) (-3704 . 184781) (-3705 . 184640) (-3706 . 184476)
+ (-3707 . 184346) (-3708 . 183835) (-3709 . 183669) (-3710 . 182671)
+ (-3711 . 182601) (-3712 . 182110) (-3713 . 181981) (-3714 . 181913)
+ (-3715 . 181777) (-3716 . 181583) (-3717 . 181490) (-3718 . 181462)
+ (-3719 . 181393) (-3720 . 181265) (-3721 . 180778) (-3722 . 180680)
+ (-3723 . 180652) (-3724 . 180458) (-3725 . 180242) (-3726 . 180107)
+ (-3727 . 180036) (-3728 . 179619) (-3729 . 179475) (-3730 . 179345)
+ (-3731 . 179097) (-3732 . 176965) (-3733 . 176894) (-3734 . 176795)
+ (-3735 . 176700) (-3736 . 175990) (-3737 . 175904) (-3738 . 175821)
+ (-3739 . 175751) (-3740 . 175584) (-3741 . 175532) (-3742 . 175359)
+ (-3743 . 175066) (-3744 . 174934) (-3745 . 174438) (-3746 . 174361)
+ (-3747 . 174064) (-3748 . 174036) (-3749 . 173935) (-3750 . 173855)
+ (-3751 . 173793) (-3752 . 173715) (-3753 . 173573) (-3754 . 173374)
+ (-3755 . 173046) (-3756 . 172944) (-3757 . 172737) (-3758 . 172655)
+ (-3759 . 171488) (-3760 . 171386) (-3761 . 171269) (-3762 . 171111)
+ (-3763 . 171038) (-3764 . 170970) (-3765 . 170915) (-3766 . 170716)
+ (-3767 . 170400) (-3768 . 170348) (-3769 . 170249) (-3770 . 170065)
+ (-3771 . 169986) (-3772 . 169828) (-3773 . 169774) (-3774 . 169673)
+ (-3775 . 169478) (-3776 . 169301) (-3777 . 169204) (-3778 . 167802)
+ (-3779 . 167753) (-3780 . 167616) (-3781 . 167513) (-3782 . 167447)
+ (-3783 . 167323) (-3784 . 167069) (-3785 . 166958) (-3786 . 166877)
+ (-3787 . 166811) (-3788 . 166710) (-3789 . 166505) (-3790 . 166368)
+ (-3791 . 166185) (-3792 . 166050) (-3793 . 165944) (-3794 . 165080)
+ (-3795 . 164971) (-3796 . 164796) (-3797 . 164722) (-3798 . 164630)
+ (-3799 . 164561) (-3800 . 164408) (-3801 . 164380) (-3802 . 145805)
+ (-3803 . 145731) (-3804 . 140217) (-3805 . 140157) (-3806 . 140044)
+ (-3807 . 139868) (-3808 . 139782) (-3809 . 139729) (-3810 . 139393)
+ (-3811 . 139255) (-3812 . 138917) (-3813 . 138843) (-3814 . 136022)
+ (-3815 . 135711) (-3816 . 135579) (-3817 . 135186) (-3818 . 135067)
+ (-3819 . 134981) (-3820 . 134614) (-3821 . 134519) (-3822 . 134446)
+ (-3823 . 134325) (-3824 . 133893) (-3825 . 133778) (-3826 . 133336)
+ (-3827 . 132468) (-3828 . 132390) (-3829 . 132150) (-3830 . 132007)
+ (-3831 . 131933) (-3832 . 131860) (-3833 . 131778) (-3834 . 131677)
+ (-3835 . 131514) (-3836 . 131179) (-3837 . 131020) (-3838 . 130912)
+ (-3839 . 130741) (-3840 . 130663) (-3841 . 130495) (-3842 . 130354)
+ (-3843 . 130266) (-3844 . 130148) (-3845 . 129933) (-3846 . 129853)
+ (-3847 . 129563) (-3848 . 129480) (-3849 . 129385) (-3850 . 129330)
+ (-3851 . 129235) (-3852 . 129155) (-3853 . 129083) (-3854 . 128564)
+ (-3855 . 128034) (-3856 . 127869) (-3857 . 127657) (-3858 . 127501)
+ (-3859 . 127401) (-3860 . 127272) (-3861 . 127145) (-3862 . 127049)
+ (-3863 . 126950) (-3864 . 126735) (-3865 . 126632) (-3866 . 126373)
+ (-3867 . 126260) (-3868 . 126166) (-3869 . 125927) (-3870 . 125874)
+ (-3871 . 124601) (-3872 . 124518) (-3873 . 124223) (-3874 . 124135)
+ (-3875 . 123846) (-3876 . 123550) (-3877 . 123395) (-3878 . 123270)
+ (-3879 . 123215) (-3880 . 123107) (-3881 . 122843) (-3882 . 122791)
+ (-3883 . 122679) (-3884 . 122617) (-3885 . 122488) (-3886 . 122238)
+ (-3887 . 122126) (-3888 . 121881) (-3889 . 121530) (-3890 . 121428)
+ (-3891 . 121048) (-3892 . 120910) (-3893 . 120737) (-3894 . 120685)
+ (-3895 . 120343) (-3896 . 119606) (-3897 . 119523) (-3898 . 119181)
+ (-3899 . 119098) (-3900 . 119019) (-3901 . 118906) (-3902 . 118594)
+ (-3903 . 118538) (-3904 . 118385) (-3905 . 118166) (-3906 . 118078)
+ (-3907 . 117839) (-3908 . 117624) (-3909 . 117232) (-3910 . 117150)
+ (-3911 . 117034) (-3912 . 116853) (-3913 . 116796) (-3914 . 116680)
+ (-3915 . 115050) (-3916 . 114923) (-3917 . 114830) (-3918 . 114550)
+ (-3919 . 114452) (-3920 . 114400) (-3921 . 114345) (-3922 . 114172)
+ (-3923 . 113980) (-3924 . 113952) (-3925 . 113918) (-3926 . 113797)
+ (-3927 . 113588) (-3928 . 113187) (-3929 . 113084) (-3930 . 112697)
+ (-3931 . 112617) (-3932 . 112546) (-3933 . 112462) (-3934 . 112282)
+ (-3935 . 110978) (-3936 . 110770) (-3937 . 110736) (-3938 . 110621)
+ (-3939 . 110458) (-3940 . 110295) (-3941 . 108039) (-3942 . 107850)
+ (-3943 . 107751) (-3944 . 107406) (-3945 . 107333) (-3946 . 107274)
+ (-3947 . 107111) (-3948 . 107010) (-3949 . 106613) (-3950 . 106519)
+ (-3951 . 106369) (-3952 . 105783) (-3953 . 105712) (-3954 . 105385)
+ (-3955 . 105187) (-3956 . 101027) (-3957 . 100911) (-3958 . 100801)
+ (-3959 . 100551) (-3960 . 100448) (-3961 . 100303) (-3962 . 99941)
+ (-3963 . 98871) (-3964 . 98788) (-3965 . 98625) (-3966 . 98551)
+ (-3967 . 98235) (-3968 . 98120) (-3969 . 97984) (-3970 . 97521)
+ (-3971 . 97313) (-3972 . 97260) (-3973 . 96987) (-3974 . 96904)
+ (-3975 . 96805) (-3976 . 96753) (-3977 . 96637) (-3978 . 95969)
+ (-3979 . 95865) (-3980 . 95720) (-3981 . 95628) (-3982 . 95578)
+ (-3983 . 95483) (-3984 . 95412) (-3985 . 93351) (-3986 . 93041)
+ (-3987 . 92974) (-3988 . 89675) (-3989 . 89621) (-3990 . 89413)
+ (-3991 . 89237) (-3992 . 89184) (-3993 . 89013) (-3994 . 88545)
+ (-3995 . 88202) (-3996 . 88125) (-3997 . 87814) (-3998 . 87754)
+ (-3999 . 87684) (-4000 . 87410) (-4001 . 86949) (-4002 . 86894)
+ (-4003 . 86507) (-4004 . 86413) (-4005 . 86358) (-4006 . 86217)
+ (-4007 . 86052) (-4008 . 85901) (-4009 . 84651) (-4010 . 84601)
+ (-4011 . 84483) (-4012 . 84415) (-4013 . 84348) (-4014 . 83550)
+ (-4015 . 83392) (-4016 . 83185) (-4017 . 82596) (-4018 . 82513)
+ (-4019 . 82395) (-4020 . 82203) (-4021 . 81993) (-4022 . 81938)
+ (-4023 . 81460) (-4024 . 81408) (-4025 . 81306) (-4026 . 81179)
+ (-4027 . 80974) (-4028 . 80800) (-4029 . 80279) (-4030 . 79915)
+ (-4031 . 79730) (-4032 . 79613) (-4033 . 79485) (-4034 . 79267)
+ (-4035 . 78961) (-4036 . 78864) (-4037 . 78727) (-4038 . 78653)
+ (-4039 . 78625) (-4040 . 78542) (-4041 . 78490) (-4042 . 78205)
+ (-4043 . 77893) (-4044 . 77814) (-4045 . 77677) (-4046 . 77540)
+ (-4047 . 77488) (-4048 . 77356) (-4049 . 75814) (-4050 . 75747)
+ (-4051 . 75668) (-4052 . 75575) (-4053 . 75393) (-4054 . 75251)
+ (-4055 . 75018) (-4056 . 74895) (-4057 . 74836) (-4058 . 74690)
+ (-4059 . 74637) (-4060 . 74333) (-4061 . 74080) (-4062 . 74009)
+ (-4063 . 73852) (-4064 . 73793) (-4065 . 73716) (-4066 . 73620)
+ (-4067 . 73524) (-4068 . 73193) (-4069 . 73136) (-4070 . 73048)
+ (-4071 . 72896) (-4072 . 72677) (-4073 . 72406) (-4074 . 71410)
+ (-4075 . 71290) (-4076 . 71135) (-4077 . 70997) (-4078 . 70901)
+ (-4079 . 70762) (-4080 . 70647) (-4081 . 70531) (-4082 . 70450)
+ (-4083 . 70291) (-4084 . 70211) (-4085 . 69940) (-4086 . 69866)
+ (-4087 . 69768) (-4088 . 69625) (-4089 . 69407) (-4090 . 69285)
+ (-4091 . 69211) (-4092 . 69071) (-4093 . 68945) (-4094 . 68850)
+ (-4095 . 68697) (-4096 . 68611) (-4097 . 68537) (-4098 . 68457)
+ (-4099 . 68304) (-4100 . 68012) (-4101 . 67932) (-4102 . 67880)
+ (-4103 . 67821) (-4104 . 67661) (-4105 . 67573) (-4106 . 67349)
+ (-4107 . 67162) (-4108 . 67082) (-4109 . 66519) (-4110 . 66227)
+ (-4111 . 66129) (-4112 . 66036) (-4113 . 65951) (-4114 . 65855)
+ (-4115 . 65759) (-4116 . 65666) (-4117 . 65558) (-4118 . 65178)
+ (-4119 . 65010) (-4120 . 64447) (-4121 . 64331) (-4122 . 64211)
+ (-4123 . 64013) (-4124 . 63748) (-4125 . 63589) (-4126 . 63503)
+ (-4127 . 63474) (-4128 . 63446) (-4129 . 62884) (-4130 . 62761)
+ (-4131 . 62707) (-4132 . 62460) (-4133 . 62399) (-4134 . 62328)
+ (-4135 . 62269) (-4136 . 62116) (-4137 . 62043) (-4138 . 61915)
+ (-4139 . 61628) (-4140 . 61513) (-4141 . 61384) (-4142 . 60511)
+ (-4143 . 60337) (-4144 . 59775) (-4145 . 59715) (-4146 . 59518)
+ (-4147 . 59490) (-4148 . 59343) (-4149 . 59249) (-4150 . 58495)
+ (-4151 . 58399) (-4152 . 58213) (-4153 . 58003) (-4154 . 57808)
+ (-4155 . 57728) (-4156 . 57510) (-4157 . 56948) (-4158 . 56876)
+ (-4159 . 56824) (-4160 . 56751) (-4161 . 56638) (-4162 . 56092)
+ (-4163 . 55953) (-4164 . 55900) (-4165 . 55768) (-4166 . 55206)
+ (-4167 . 55050) (-4168 . 54764) (-4169 . 54663) (-4170 . 54562)
+ (-4171 . 54476) (-4172 . 53674) (-4173 . 53382) (-4174 . 53330)
+ (-4175 . 52911) (-4176 . 52837) (-4177 . 52707) (-4178 . 52655)
+ (-4179 . 52093) (-4180 . 51975) (-4181 . 51875) (-4182 . 51733)
+ (-4183 . 51647) (-4184 . 51485) (-4185 . 51457) (-4186 . 51372)
+ (-4187 . 51286) (-4188 . 51167) (-4189 . 50934) (-4190 . 50678)
+ (-4191 . 50612) (-4192 . 50456) (-4193 . 50359) (-4194 . 50221)
+ (-4195 . 50148) (-4196 . 50012) (-4197 . 49858) (-4198 . 49774)
+ (-4199 . 49671) (-4200 . 49490) (-4201 . 49209) (-4202 . 48801)
+ (-4203 . 48643) (-4204 . 48500) (-4205 . 48404) (-4206 . 47988)
+ (-4207 . 47847) (-4208 . 47593) (-4209 . 47483) (-4210 . 47401)
+ (-4211 . 47334) (-4212 . 46968) (-4213 . 46916) (-4214 . 46884)
+ (-4215 . 46834) (-4216 . 46242) (-4217 . 46078) (-4218 . 45968)
+ (-4219 . 45837) (-4220 . 45646) (-4221 . 45302) (-4222 . 45247)
+ (-4223 . 45173) (-4224 . 45049) (-4225 . 44909) (-4226 . 44756)
+ (-4227 . 44704) (-4228 . 44561) (-4229 . 44186) (-4230 . 44067)
+ (-4231 . 44004) (-4232 . 43844) (-4233 . 43792) (-4234 . 43719)
+ (-4235 . 43439) (-4236 . 43281) (-4237 . 43062) (-4238 . 42856)
+ (-4239 . 42714) (-4240 . 42640) (-4241 . 42461) (-4242 . 42432)
+ (-4243 . 42347) (-4244 . 42181) (-4245 . 42097) (-4246 . 41985)
+ (-4247 . 41935) (-4248 . 41563) (-4249 . 41450) (-4250 . 41398)
+ (-4251 . 41219) (-4252 . 41103) (-4253 . 40974) (-4254 . 40563)
+ (-4255 . 40433) (-4256 . 40299) (-4257 . 40204) (-4258 . 40123)
+ (-4259 . 39938) (-4260 . 39872) (-4261 . 39841) (-4262 . 39781)
+ (-4263 . 39725) (-4264 . 39644) (-4265 . 39585) (-4266 . 39269)
+ (-4267 . 39210) (-4268 . 39118) (-4269 . 38975) (-4270 . 38733)
+ (-4271 . 37581) (-4272 . 37525) (-4273 . 37346) (-4274 . 37265)
+ (-4275 . 36844) (-4276 . 36728) (-4277 . 36557) (-4278 . 36458)
+ (-4279 . 36380) (-4280 . 36193) (-4281 . 36108) (-4282 . 35906)
+ (-4283 . 35601) (-4284 . 35494) (-4285 . 35406) (-4286 . 35335)
+ (-4287 . 35239) (-4288 . 35169) (-4289 . 35096) (-4290 . 34952)
+ (-4291 . 34883) (-4292 . 34789) (-4293 . 34633) (-4294 . 33863)
+ (-4295 . 33806) (-4296 . 33599) (-4297 . 33486) (-4298 . 33328)
+ (-4299 . 33173) (-4300 . 33122) (-4301 . 32655) (-4302 . 32437)
+ (-4303 . 32385) (-4304 . 32176) (-4305 . 32060) (-4306 . 32029)
+ (-4307 . 31749) (-4308 . 31539) (-4309 . 31412) (-4310 . 30965)
+ (-4311 . 30857) (-4312 . 30795) (-4313 . 30589) (-4314 . 30518)
+ (-4315 . 30266) (-4316 . 29964) (-4317 . 29823) (-4318 . 29720)
+ (-4319 . 29367) (-4320 . 29266) (-4321 . 29100) (-4322 . 28940)
+ (-4323 . 28863) (-4324 . 28810) (-4325 . 28648) (-4326 . 27988)
+ (-4327 . 27954) (-4328 . 27926) (-4329 . 27518) (-4330 . 27362)
+ (-4331 . 27075) (-4332 . 27018) (-4333 . 26946) (-4334 . 26875)
+ (-4335 . 26676) (-4336 . 26158) (-4337 . 25997) (-4338 . 25718)
+ (-4339 . 25665) (-4340 . 25531) (-4341 . 25476) (-4342 . 25030)
+ (-4343 . 24855) (-4344 . 24781) (-4345 . 24685) (-4346 . 24526)
+ (-4347 . 24448) (-4348 . 24396) (-4349 . 23969) (-4350 . 23874)
+ (-4351 . 23722) (-4352 . 23670) (-4353 . 23494) (-4354 . 23426)
+ (-4355 . 23362) (-4356 . 23244) (-4357 . 23033) (-4358 . 22683)
+ (-4359 . 22531) (-4360 . 22438) (-4361 . 22260) (-4362 . 22010)
+ (-4363 . 21951) (-4364 . 21898) (-4365 . 21620) (-4366 . 21141)
+ (-4367 . 20989) (-4368 . 20887) (-4369 . 20845) (-4370 . 20665)
+ (-4371 . 20425) (-4372 . 20262) (-4373 . 20106) (-4374 . 20033)
+ (-4375 . 19875) (-4376 . 19802) (-4377 . 19634) (-4378 . 18977)
+ (-4379 . 18853) (-4380 . 17421) (-4381 . 17318) (-4382 . 17176)
+ (-4383 . 12633) (-4384 . 12583) (-4385 . 12387) (-4386 . 12201)
+ (-4387 . 12106) (-4388 . 12075) (-4389 . 10875) (-4390 . 10231)
+ (-4391 . 10124) (-4392 . 10090) (-4393 . 10017) (-4394 . 9940)
+ (-4395 . 9807) (-4396 . 9632) (-4397 . 9571) (-4398 . 9440)
+ (-4399 . 7654) (-4400 . 7316) (-4401 . 7256) (-4402 . 6552)
+ (-4403 . 6457) (-4404 . 6222) (-4405 . 6161) (-4406 . 6061)
+ (-4407 . 5903) (-4408 . 5721) (-4409 . 5475) (-4410 . 5441)
+ (-4411 . 5012) (-4412 . 4875) (-4413 . 4537) (-4414 . 4346)
+ (-4415 . 4272) (-4416 . 3591) (-4417 . 3497) (-4418 . 3301)
+ (-4419 . 3246) (-4420 . 3016) (-4421 . 2864) (-4422 . 2616)
+ (-4423 . 2582) (-4424 . 2246) (-4425 . 2086) (-4426 . 1350)
+ (-4427 . 1161) (-4428 . 652) (-4429 . 511) (-4430 . 200) (-4431 . 79)
+ (-4432 . 30)) \ No newline at end of file